/* Kuzey Menkul Değerler A.Ş.
   Official Design Replication - Light Theme Corporate Layout with Teal Accent
   Designed by Antigravity (Google DeepMind) */

/* Global Styles & Variables */
:root {
    --color-bg-light: #ffffff;
    --color-bg-card: #ECECEC;
    --color-bg-card-alt: #F7F7F7;
    --color-text-dark: #000000;
    --color-text-muted: #555555;
    --color-text-light: #ffffff;
    --color-primary-teal: #00C7B4;
    --color-primary-teal-hover: #00A898;
    --color-border-gray: #E0E0E0;
    --font-stack: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --transition-speed: 0.3s;
    --border-radius-large: 32px;
    --border-radius-medium: 16px;
    --border-radius-small: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-family: var(--font-stack);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container-main {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header (Masaüstü) */
.main-header {
    background-color: #000000;
    color: var(--color-text-light);
    height: 82px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
    display: flex;
    align-items: center;
}

.header-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-logo img {
    display: block;
}

/* Nav Menu */
.desktop-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.desktop-nav .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
    padding: 8px 12px;
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--color-primary-teal);
}

.desktop-nav .nav-link i {
    font-size: 10px;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 250px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    z-index: 1100;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--color-text-dark);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-menu li a i {
    color: var(--color-primary-teal);
    width: 16px;
}

.dropdown-menu li a:hover {
    background-color: #F3F4F6;
    color: var(--color-primary-teal);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn-header-search,
.header-actions .btn-header-action {
    background-color: #000000 !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}

.header-actions .btn-header-search:hover,
.header-actions .btn-header-action:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

/* General Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 99px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Nav Menu */
.mobile-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom-left-radius: var(--border-radius-large);
    border-bottom-right-radius: var(--border-radius-large);
    padding: 20px 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-link {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
    border-left: 2px solid var(--color-primary-teal);
}

.mobile-submenu.active {
    display: flex;
}

.mobile-submenu a {
    color: #cccccc;
    font-size: 14px;
    padding: 4px 0;
    display: block;
}

.mobile-menu-list .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    border-top: 1px solid #222222;
    padding-top: 15px;
}

.btn-esube-mobile {
    width: 100%;
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-hesapac-mobile {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
}

/* Home Hero Slider Section */
.hero-slider-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.hero-slider-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.hero-slide {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    min-height: 480px;
}

.hero-slide.active {
    display: grid;
}

.hero-slide-badge {
    background-color: rgba(0, 199, 180, 0.1);
    color: var(--color-primary-teal);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-slide-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #000000;
    margin-bottom: 20px;
}

.hero-slide-title span {
    color: var(--color-primary-teal);
}

.hero-slide-desc {
    font-size: 18px;
    color: #444444;
    margin-bottom: 15px;
    max-width: 600px;
}
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    max-width: 650px;
}

.hero-slide-cta {
    font-size: 15px;
    color: #000000;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

.btn-hero-action {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 36px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-hero-action:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
}

/* App Mockup Graphic styling */
.hero-slide-media {
    display: flex;
    justify-content: center;
}

.mockup-web-container {
    width: 440px;
    height: 300px;
    background-color: #ffffff;
    border: 1px solid var(--color-border-gray);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.web-browser-header {
    height: 38px;
    background-color: #F3F4F6;
    border-bottom: 1px solid var(--color-border-gray);
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.browser-address-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    font-size: 11px;
    color: var(--color-text-muted);
    padding: 2px 24px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.web-browser-content {
    display: flex;
    flex-grow: 1;
    height: calc(100% - 38px);
}

.browser-sidebar {
    width: 48px;
    background-color: #111827;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 16px;
    color: #ffffff;
}

.sidebar-logo {
    font-weight: 800;
    font-size: 12px;
    color: var(--color-primary-teal);
    margin-bottom: 8px;
}

.sidebar-item {
    font-size: 12px;
    color: #9CA3AF;
    cursor: pointer;
}

.sidebar-item.active {
    color: var(--color-primary-teal);
}

.browser-main-panel {
    flex-grow: 1;
    background-color: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F3F4F6;
    padding-bottom: 8px;
}

.panel-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.user-badge {
    width: 20px;
    height: 20px;
    background-color: var(--color-primary-teal);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-portfolio {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panel-portfolio .lbl {
    font-size: 10px;
    color: var(--color-text-muted);
}

.panel-portfolio .val {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.panel-portfolio .change-tag {
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.panel-portfolio .change-tag.up {
    color: #10b981;
}

.panel-chart-placeholder {
    flex-grow: 1;
    background-color: #F9FAFB;
    border: 1px dashed #E5E7EB;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(180deg, rgba(0, 199, 180, 0.1) 0%, rgba(0, 199, 180, 0) 100%);
    border-top: 2px solid var(--color-primary-teal);
}

.hero-slider-dots {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 30px;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #dddddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.hero-slider-dots .dot.active {
    background-color: var(--color-primary-teal);
    width: 25px;
    border-radius: 5px;
}

/* Home Grid Section */
.home-grid-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-large);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.grid-card .card-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.grid-card .card-header p {
    font-size: 14px;
    color: #555555;
    margin-bottom: 25px;
}

/* Services Links List */
.services-list-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-list-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 14px 20px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.services-list-links li a i.fa-arrow-right {
    font-size: 12px;
    color: #888888;
    transition: transform var(--transition-speed) ease;
}

.services-list-links li a:hover {
    background-color: #000000;
    color: #ffffff;
}

.services-list-links li a:hover i.fa-arrow-right {
    transform: translateX(4px);
    color: #ffffff;
}

.services-list-links li a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-list-links li a span i {
    color: var(--color-primary-teal);
}

/* Platform stores list style */
.platform-stores {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-badge-card {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px 20px;
    gap: 15px;
    position: relative;
}

.store-icon {
    font-size: 24px;
    color: var(--color-primary-teal);
    width: 32px;
}

.store-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.store-info p {
    font-size: 11px;
    color: #777777;
    margin-top: 2px;
}

.store-link-arrow {
    position: absolute;
    right: 20px;
    color: #aaaaaa;
}

.store-badge-card:hover {
    background-color: #000000;
    color: #ffffff;
}

.store-badge-card:hover .store-info h4,
.store-badge-card:hover .store-info p,
.store-badge-card:hover .store-link-arrow {
    color: #ffffff;
}

/* Announcements List */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-item {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
}

.announcement-date {
    font-size: 11px;
    color: var(--color-primary-teal);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.announcement-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 6px;
}

.announcement-item p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
    margin-bottom: 8px;
}

.announcement-item a {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-teal);
    text-decoration: underline;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--color-bg-card-alt);
    padding: 80px 0;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
}

.section-title-wrapper p {
    font-size: 16px;
    color: #555555;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-us-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.why-icon {
    font-size: 36px;
    color: var(--color-primary-teal);
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.why-us-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Kuzey Analiz YouTube Section */
.kuzey-analiz-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.analiz-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.analiz-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.analiz-info p {
    font-size: 16px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-youtube {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-youtube:hover {
    opacity: 0.9;
}

.youtube-mockup-card {
    background-color: #000000;
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.mockup-video-thumbnail {
    height: 220px;
    background: linear-gradient(135deg, #1f1f1f 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.mockup-video-thumbnail .play-icon {
    font-size: 64px;
    color: #ff0000;
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0,0,0,0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.mockup-video-info {
    padding: 20px;
}

.mockup-video-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.mockup-video-info p {
    font-size: 12px;
    color: #888888;
}

/* Newsletter Section (Kuzey Bülten) */
.kuzey-bulten-section {
    background-color: var(--color-bg-card);
    padding: 60px 0;
}

.bulten-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bulten-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 12px;
}

.bulten-content p {
    font-size: 16px;
    color: #555555;
}

.bulten-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bulten-form .input-row {
    display: flex;
    gap: 10px;
}

.bulten-form input[type="email"] {
    flex-grow: 1;
    background-color: #ffffff;
    border: 1px solid var(--color-border-gray);
    padding: 14px 20px;
    border-radius: 99px;
    font-size: 14px;
    outline: none;
}

.bulten-form input[type="email"]:focus {
    border-color: var(--color-primary-teal);
}

.btn-bulten-submit {
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 99px;
    padding: 0 30px;
}

.btn-bulten-submit:hover {
    background-color: var(--color-primary-teal);
    color: #000000;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-primary-teal);
}

.checkbox-row label {
    font-size: 11px;
    color: #666666;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-row label a {
    color: #000000;
    text-decoration: underline;
}

.newsletter-home-success {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.newsletter-home-success .success-icon {
    font-size: 32px;
    color: #10b981;
    margin-bottom: 10px;
}

.newsletter-home-success h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.newsletter-home-success p {
    font-size: 13px;
    color: #666666;
}

/* Footer Styles */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 20px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.5fr repeat(4, 1.1fr) 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-k {
    margin-bottom: 20px;
    width: 48px;
    height: 60px;
}

.footer-social-circles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 15px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.social-circle:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.btn-footer-hesap-ac {
    background-color: #000000;
    color: #ffffff !important;
    border: 1.5px solid #ffffff;
    border-radius: 99px;
    padding: 10px 32px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 160px;
}

.btn-footer-hesap-ac:hover {
    background-color: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    padding-bottom: 0;
    text-transform: none;
    letter-spacing: 0.3px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #9ca3af; /* Gray-400 brand color matching live website */
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-warnings-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 20px;
}

.warning-box {
    padding: 15px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.5;
}

.warning-scam {
    background-color: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.warning-scam i {
    font-size: 16px;
    margin-top: 2px;
}

.warning-spk {
    background-color: #111111;
    border: 1px solid #222222;
    color: #888888;
}

.footer-bottom {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #888888;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    color: #888888;
}

.footer-bottom-links a:hover {
    color: var(--color-primary-teal);
    text-decoration: underline;
}

/* Cookie Consent Bar Modal */
.cookie-banner-modal {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--color-border-gray);
    border-radius: 20px;
    padding: 20px;
    z-index: 2000;
    max-width: 480px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner-modal.active {
    transform: translateY(0);
}

.cookie-content p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.cookie-content a {
    color: var(--color-primary-teal);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: #000000;
    color: #ffffff;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 99px;
}

.btn-cookie-settings {
    background-color: transparent;
    border: 1px solid var(--color-border-gray);
    color: #555555;
    font-size: 11px;
    padding: 6px 16px;
    border-radius: 99px;
}

/* Subpages Styling */
.subpage-banner {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0;
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
}

.breadcrumbs {
    font-size: 12px;
    color: #888888;
    margin-bottom: 10px;
}

.breadcrumbs a {
    color: #888888;
}

.breadcrumbs a:hover {
    color: var(--color-primary-teal);
}

.subpage-title {
    font-size: 32px;
    font-weight: 800;
}

.subpage-main {
    padding: 50px 0;
}

.subpage-rich-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 18px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    position: relative;
    padding-left: 15px;
}

.content-block h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background-color: var(--color-primary-teal);
}

.content-block p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.shadow-card {
    background-color: var(--color-bg-card-alt);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--color-border-gray);
}

.accent-border {
    border-left: 5px solid var(--color-primary-teal);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.adv-card {
    background-color: #ffffff;
    border: 1px solid var(--color-border-gray);
    border-radius: 16px;
    padding: 24px;
}

.adv-icon {
    font-size: 24px;
    color: var(--color-primary-teal);
    margin-bottom: 12px;
}

.adv-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.adv-card p {
    font-size: 13px;
    color: #666666;
    margin-bottom: 0;
}

/* Steps Horizontal */
.steps-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.step-col {
    text-align: center;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-primary-teal);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-col p {
    font-size: 12px;
    color: #666666;
}

.btn-primary-teal {
    background-color: var(--color-primary-teal);
    color: #ffffff;
}

.btn-primary-teal:hover {
    background-color: var(--color-primary-teal-hover);
}

/* Platform Page Layout */
.platform-section-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.platform-section-block.reverse-layout {
    grid-template-columns: 0.9fr 1.1fr;
}

.platform-section-block.reverse-layout .platform-text-side {
    order: 2;
}

.platform-tag {
    font-size: 11px;
    color: var(--color-primary-teal);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.platform-text-side h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.platform-text-side h3 {
    font-size: 20px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 15px;
}

.platform-text-side p {
    font-size: 15px;
    color: #666666;
    margin-bottom: 20px;
}

.features-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.features-bullet-list li {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-bullet-list li i {
    color: var(--color-primary-teal);
}

.store-buttons-row {
    display: flex;
    gap: 12px;
}

.btn-store {
    background-color: #000000;
    color: #ffffff;
    font-size: 13px;
    padding: 10px 24px;
    border-radius: 99px;
}

.btn-store:hover {
    background-color: var(--color-primary-teal);
    color: #000000;
}

.btn-outline-black {
    border: 1px solid #000000;
    color: #000000;
    background-color: transparent;
}

.btn-outline-black:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Platform Visual Mockup Graphics */
.platform-media-side {
    display: flex;
    justify-content: center;
}

.visual-mobile-frame {
    width: 260px;
    height: 480px;
    background-color: #ECECEC;
    border: 10px solid #262626;
    border-radius: 32px;
    padding: 10px;
}

.screen-view {
    background-color: #000000;
    height: 100%;
    border-radius: 18px;
    padding: 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.screen-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #888888;
}

.app-dashboard-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-card-bist {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.mini-card-bist .lbl {
    font-size: 9px;
    color: #888888;
}

.mini-card-bist .val {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.mini-card-bist .pct.up {
    color: #10b981;
    font-size: 9px;
    font-weight: 700;
}

.mini-card-stock {
    background-color: #111111;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-row {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
}

.st-row .chg.positive {
    color: #10b981;
}

/* Web Frame simulator */
.visual-web-frame {
    width: 100%;
    max-width: 440px;
    border: 1px solid var(--color-border-gray);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.web-title-bar {
    background-color: #f1f3f4;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.web-title-bar .dots {
    display: flex;
    gap: 4px;
}

.web-title-bar .dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ff5f56;
}

.web-title-bar .dots span:nth-child(2) { background-color: #ffbd2e; }
.web-title-bar .dots span:nth-child(3) { background-color: #27c93f; }

.web-url {
    font-size: 10px;
    color: #888888;
}

.web-content-sim {
    height: 200px;
    display: grid;
    grid-template-columns: 80px 1fr;
    background-color: #ffffff;
}

.web-sidebar {
    background-color: #f8f9fa;
    border-right: 1px solid #eeeeee;
}

.web-main-area {
    padding: 15px;
    display: flex;
    align-items: flex-end;
}

.chart-line-sim {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 199, 180, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-top: 2px solid var(--color-primary-teal);
    border-bottom-left-radius: 0;
}

/* Esube Frame simulator */
.visual-esube-frame {
    width: 260px;
    height: 380px;
    background-color: #ECECEC;
    border-radius: 20px;
    padding: 12px;
}

.esube-dashboard-sim {
    background-color: #ffffff;
    height: 100%;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.esube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.esube-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.esube-balance-box {
    background-color: var(--color-bg-card-alt);
    border-radius: 8px;
    padding: 12px;
}

.esube-balance-box .title {
    font-size: 9px;
    color: #888888;
}

.esube-balance-box .amount {
    font-size: 16px;
    font-weight: 700;
    display: block;
}

.esube-quick-actions {
    display: flex;
    gap: 10px;
}

.esube-quick-actions span {
    flex-grow: 1;
    background-color: var(--color-bg-card);
    font-size: 10px;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-border-gray);
    margin: 40px 0;
}

/* Piyasalar Page Styling */
.live-market-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.market-data-card {
    background-color: var(--color-bg-card-alt);
    border: 1px solid var(--color-border-gray);
    border-radius: 20px;
    padding: 20px;
}

.market-data-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.market-data-card .m-name {
    font-size: 13px;
    font-weight: 700;
    color: #666666;
}

.market-data-card .m-indicator {
    font-size: 14px;
}

.market-data-card .m-indicator.up { color: #10b981; }
.market-data-card .m-indicator.down { color: #ef4444; }

.market-data-card .m-value {
    font-size: 24px;
    font-weight: 800;
    color: #000000;
    font-family: monospace;
}

.market-data-card .m-change {
    font-size: 12px;
    font-weight: 700;
}

.market-data-card .m-change.up { color: #10b981; }
.market-data-card .m-change.down { color: #ef4444; }

.market-showcase-section {
    margin-top: 50px;
}

.market-showcase-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.market-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.showcase-card {
    background-color: var(--color-bg-card);
    border-radius: 24px;
    padding: 30px 20px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.sc-header i {
    font-size: 20px;
    color: var(--color-primary-teal);
}

.sc-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.showcase-card p {
    font-size: 12px;
    color: #555555;
    line-height: 1.5;
}

/* Analiz Page Styling */
.analiz-video-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.video-section-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 25px;
}

.video-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.youtube-video-card {
    background-color: #000000;
    border-radius: 20px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.yt-thumb {
    height: 160px;
    background-color: #262626;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yt-thumb i {
    font-size: 40px;
    color: #ff0000;
}

.yt-dur {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.yt-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yt-info h4 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}

.yt-info p {
    font-size: 11px;
    color: #888888;
}

.bulletins-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.col-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-border-gray);
    padding-bottom: 10px;
}

.col-head h3 {
    font-size: 20px;
    font-weight: 700;
}

.col-head .view-all {
    font-size: 13px;
    color: var(--color-primary-teal);
    font-weight: 700;
}

.bulletin-cards-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.original-bulletin-card {
    background-color: var(--color-bg-card);
    border-radius: 24px;
    padding: 24px;
}

.original-bulletin-card .date {
    font-size: 11px;
    color: var(--color-primary-teal);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.original-bulletin-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
}

.original-bulletin-card p {
    font-size: 12px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.original-bulletin-card .read-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Hakkımızda / Corporate Page Layout */
.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.mgmt-card {
    background-color: var(--color-bg-card-alt);
    border: 1px solid var(--color-border-gray);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.mgmt-card .role {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--color-primary-teal);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.mgmt-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.corporate-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.corporate-info-table th,
.corporate-info-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border-gray);
    font-size: 14px;
}

.corporate-info-table th {
    font-weight: 700;
    color: #000000;
    width: 250px;
}

.corporate-info-table td {
    color: #555555;
}

.corporate-info-table.matrix-table {
    border: 1px solid var(--color-border-gray);
}

.corporate-info-table.matrix-table th {
    background-color: var(--color-bg-card);
}

.corporate-info-table.matrix-table tr:hover {
    background-color: var(--color-bg-card-alt);
}

.status-yes {
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.financial-reports-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.financial-reports-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    font-size: 14px;
}

.financial-reports-list li a i {
    color: #ef4444;
}

.financial-reports-list li a:hover {
    color: var(--color-primary-teal);
    text-decoration: underline;
}

/* Account opening form styles */
.about-register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-field label {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
}

.input-field input {
    background-color: #ffffff;
    border: 1px solid var(--color-border-gray);
    padding: 12px 16px;
    border-radius: var(--border-radius-small);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.input-field input:focus {
    border-color: var(--color-primary-teal);
}

/* SSS / FAQ Page Styles */
.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-search-wrapper input {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--color-border-gray);
    padding: 16px 20px;
    padding-left: 50px;
    border-radius: 99px;
    font-size: 15px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-search-wrapper input:focus {
    border-color: var(--color-primary-teal);
}

.faq-search-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    font-size: 18px;
}

.faq-categories-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.faq-tab {
    background-color: #ffffff;
    border: 1px solid var(--color-primary-teal);
    color: #000000;
    padding: 10px 24px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.faq-tab:hover,
.faq-tab.active {
    background-color: var(--color-primary-teal);
    color: #000000;
}

.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background-color: #ffffff;
    border: 1.5px solid var(--color-primary-teal);
    border-radius: 99px;
    padding: 16px 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    overflow: hidden;
}

.faq-accordion-item.active {
    border-radius: 24px;
    background-color: var(--color-primary-teal);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.faq-question i {
    font-size: 14px;
}

.faq-accordion-item .fa-plus-minus::before {
    content: "\f067"; /* Plus icon */
}

.faq-accordion-item.active .fa-plus-minus::before {
    content: "\f068"; /* Minus icon */
}

.faq-answer {
    display: none;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

.faq-accordion-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

/* Tablet / Responsive Layout modifications */
@media (max-width: 1024px) {
    .hero-slide {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-slide-media {
        order: -1;
    }
    .hero-slider-dots {
        justify-content: center;
    }
    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .analiz-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bulten-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .platform-section-block,
    .platform-section-block.reverse-layout {
        grid-template-columns: 1fr;
    }
    .platform-section-block.reverse-layout .platform-text-side {
        order: initial;
    }
    .live-market-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .market-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    .video-grid-three {
        grid-template-columns: 1fr 1fr;
    }
    .bulletins-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .search-box,
    .header-actions .btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-slide-title {
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    .hero-slide-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        margin-top: 20px;
    }
    .hero-slide-cta {
        font-size: 14px;
    }
    .mockup-web-container {
        width: 100%;
        max-width: 320px;
        height: 220px;
        margin: 0 auto;
    }
    .grid-layout {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .form-grid-two {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .steps-horizontal {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .live-market-cards-grid {
        grid-template-columns: 1fr;
    }
    .market-showcase-grid {
        grid-template-columns: 1fr;
    }
    .video-grid-three {
        grid-template-columns: 1fr;
    }
    .management-grid {
        grid-template-columns: 1fr;
    }
    .corporate-info-table th {
        width: 100%;
        display: block;
        padding-bottom: 2px;
    }
    .corporate-info-table td {
        display: block;
        padding-top: 2px;
    }
    .bulten-form .input-row {
        flex-direction: column;
    }
}
