* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0f172a;
    --primary-dark: #0b111e;
    --marquee-bg: #0b2e83;
    --accent: #4f7ce7;
    --accent-light: #6996ff;
    --accent-hover: #a2beff;
    --text-light: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --section-pad: 80px 50px;
    --max-width: 1440px;
    --radius: 12px;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 50px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 640px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-sub {
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3d6ad4;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(79, 124, 231, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #fff;
}

/* Skeleton */
#skeleton-overlay {
    position: fixed;
    inset: 0;
    background: var(--primary-blue);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#skeleton-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.skel-shimmer {
    background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
    background-size: 200% 100%;
    animation: skelShimmer 1.5s infinite linear;
    border-radius: 4px;
}

@keyframes skelShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skel-top { height: 40px; width: 100%; margin-bottom: 25px; }
.skel-header { display: flex; justify-content: space-between; align-items: center; padding: 0 50px; max-width: 1440px; margin: 0 auto 80px; width: 100%; }
.skel-logo { width: 180px; height: 40px; }
.skel-nav { display: flex; gap: 30px; }
.skel-nav-item { width: 70px; height: 20px; }
.skel-hero { padding: 0 50px; max-width: 1440px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 20px; }
.skel-h1 { width: 40%; height: 50px; border-radius: 8px; margin-bottom: 15px; }
.skel-h1-short { width: 25%; height: 50px; border-radius: 8px; }
.skel-p { width: 45%; height: 16px; margin-top: 10px; }
.skel-p-short { width: 35%; height: 16px; }
.skel-btn-group { display: flex; gap: 15px; margin-top: 30px; }
.skel-btn { width: 160px; height: 45px; border-radius: 30px; }

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #0f172a 0%, #4f7ce7 50%, #020617 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    gap: 16px;
    font-size: 14px;
    text-align: center;
    flex-wrap: wrap;
    color: var(--text-light);
}

.top-banner p {
    font-weight: 500;
    letter-spacing: 0.3px;
}

.countdown {
    display: flex;
    gap: 8px;
}

.time-box {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 3px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
}

.time-box span.num {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #ffffff;
}

.top-banner .badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero */
.hero-wrapper {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    background: var(--primary-blue);
    color: var(--text-light);
}

.bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
}

.bg-left { width: 45%; background: var(--primary-blue); }
.bg-right { width: 55%; position: relative; }

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-right::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -2px;
    width: 102%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 10;
    pointer-events: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    z-index: 999;
    position: relative;
    overflow: visible;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    position: static;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 0.9;
    display: flex;
    flex-direction: column;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-decoration: none;
}

.logo span.sub {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 500;
    text-align: right;
    opacity: 0.8;
    margin-top: 2px;
    color: var(--text-light);
}

nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

nav > a,
.has-mega > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s;
}

nav > a:hover,
.has-mega > a:hover {
    color: var(--accent-hover);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-right .phone {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.btn-light {
    background: #fff;
    color: var(--primary-blue);
    padding: 11px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--accent-light);
    color: #fff;
    transform: translateY(-1px);
}

.login {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    transition: color 0.3s;
}

.login:hover { color: #dae5ff; }

.mobile-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    z-index: 9999;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 20px 50px 60px;
    z-index: 10;
    position: relative;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-text-box h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-text-box h1 span {
    color: #fff5e4;
}

.hero-text-box p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
    opacity: 0.92;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.hero-tags span {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(79, 124, 231, 0.25);
    border: 1px solid rgba(79, 124, 231, 0.4);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    z-index: 20;
}

.pos-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 24px;
    color: var(--text-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 340px;
    margin-left: auto;
}

.pos-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.pos-card-header .label {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pos-card-header .table {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

.pos-stat {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.pos-stat .num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.pos-stat .lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pos-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.pos-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.pos-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    padding-top: 12px;
    border-top: 2px solid var(--text-dark);
}

.qr-float {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    min-width: 140px;
}

.qr-float .title {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.qr-float .value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
}

.order-float {
    position: absolute;
    top: -15px;
    right: -20px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(79, 124, 231, 0.4);
    animation: bounce 3s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Mega Menu */
.has-mega {
    position: static;
}

.has-mega > a {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
    padding: 8px 4px;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    padding-top: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    pointer-events: none;
    margin-top: -8px;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
}

@media (min-width: 1025px) {
    .has-mega.is-mega-open .mega-menu,
    .has-mega:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .has-mega.is-mega-open > a i,
    .has-mega:hover > a i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
}

@media (max-width: 1024px) {
    .has-mega.active .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 320px;
    gap: 32px;
}

.mega-col h4 {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    font-weight: 700;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 4px;
}

.mega-item:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.mega-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.mega-icon-box i {
    color: var(--accent);
    font-size: 16px;
}

.mega-item:hover .mega-icon-box {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(79, 124, 231, 0.3);
}

.mega-item:hover .mega-icon-box i { color: #fff; }

.m-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.m-desc {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
    display: block;
    margin-top: 2px;
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-title .badge {
    vertical-align: middle;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-hover);
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-btn:hover {
    color: #ffffff;
    gap: 14px;
}

.mega-banner {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    background: var(--primary-blue);
    min-height: 260px;
}

.mega-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.has-mega:hover .mega-banner img,
.has-mega.active .mega-banner img {
    transform: scale(1.08);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.banner-content h5 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 6px;
}

.banner-content p {
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.5;
}

.badge {
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.bg-new { background: #dcfce7; color: #166534; }
.bg-pro { background: #fef08a; color: #854d0e; }

/* Marquee */
.text-marquee {
    width: 100%;
    padding: 16px 0;
    overflow: hidden;
    background: var(--marquee-bg);
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scroll 80s linear infinite;
}

.marquee-content.paused { animation-play-state: paused; }

.brand-item {
    font-size: 16px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    transition: color 0.3s;
}

.brand-item:hover { color: #fff; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Stats */
.stats-bar {
    background: var(--primary-dark);
    padding: 50px;
}

.stats-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.stats-item {
    text-align: center;
}

.stats-num {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: -0.5px;
}

.stats-label {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 6px;
}

/* Trust Section */
.section-trust {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.trust-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(79, 124, 231, 0.1);
    transform: translateY(-3px);
}

.trust-card .icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-card .icon i {
    color: var(--accent);
    font-size: 20px;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.trust-card .highlight {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

/* Modules */
.section-modules {
    padding: var(--section-pad);
    background: #fff;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.module-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 100%);
    color: #fff;
    border-color: transparent;
}

.module-card.featured .section-tag { color: var(--accent-hover); }
.module-card.featured h3 { color: #fff; }
.module-card.featured p { color: #cbd5e1; }
.module-card.featured li { color: #e2e8f0; }
.module-card.featured .module-icon { background: rgba(255, 255, 255, 0.1); }
.module-card.featured .module-icon i { color: #fff; }

.module-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.module-icon i {
    font-size: 22px;
    color: var(--accent);
}

.module-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}

.module-card > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.module-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.module-card li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.module-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 11px;
}

.module-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.module-link:hover { gap: 10px; }

.module-card.featured .module-link { color: var(--accent-hover); }

/* Business Types */
.section-business {
    padding: var(--section-pad);
    background: var(--primary-blue);
    color: #fff;
}

.section-business .section-title { color: #fff; }
.section-business .section-sub { color: #94a3b8; }

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.business-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    text-align: center;
}

.business-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.business-card > i {
    font-size: 32px;
    color: var(--accent-light);
    margin-bottom: 16px;
    display: block;
}

.business-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.business-card p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 20px;
}

.business-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(162, 190, 255, 0.35);
    background: rgba(105, 150, 255, 0.12);
    transition: all 0.3s ease;
}

.business-card a i {
    font-size: 12px;
    margin: 0;
    color: inherit;
    line-height: 1;
}

.business-card a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    gap: 12px;
    transform: none;
}

/* Steps */
.section-steps {
    padding: var(--section-pad);
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.step-num {
    width: 56px;
    height: 56px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why */
.section-why {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border-light);
}

.why-card i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* References */
.section-references {
    padding: var(--section-pad);
    background: #fff;
}

.ref-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ref-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.ref-logo:hover {
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(79, 124, 231, 0.2);
}

.ref-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--accent);
}

.testimonial p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial .author {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.testimonial .role {
    font-size: 12px;
    color: var(--text-muted);
}

/* Integrations */
.section-integrations {
    padding: var(--section-pad);
    background: var(--primary-dark);
    color: #fff;
}

.section-integrations .section-title { color: #fff; }
.section-integrations .section-sub { color: #94a3b8; }

.int-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.int-logo {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    transition: all 0.3s;
}

.int-logo:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
}

.int-logo img {
    max-height: 36px;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.int-logo:hover img { opacity: 1; }

/* Pricing */
.section-pricing {
    padding: var(--section-pad);
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 2px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.price-card.popular {
    border-color: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(79, 124, 231, 0.2);
}

.price-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 4px;
}

.price-card .plan-tag {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.price-card .price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.price-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-card .price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 7px 0;
    padding-left: 22px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #16a34a;
    font-size: 11px;
}

.price-card .btn-primary,
.price-card .btn-secondary {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.section-faq {
    padding: var(--section-pad);
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 16px;
}

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* CTA */
.section-cta {
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 50%, var(--accent) 100%);
    text-align: center;
    color: #fff;
}

.section-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 16px;
}

.section-cta p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-cta .btn-light {
    padding: 14px 32px;
    font-size: 16px;
}

.section-cta .btn-outline {
    padding: 14px 32px;
    font-size: 16px;
}

/* Footer */
.gm-footer {
    background: #080812;
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 56px 0 24px;
}

.gm-footer a {
    transition: color 0.2s;
}

.gm-footer a:hover {
    color: #fff;
}

.gm-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

.gm-footer-tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    max-width: 52rem;
    margin: 0 auto 2.5rem;
    letter-spacing: -0.02em;
}

.gm-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(200px, 1fr);
    gap: 1.5rem 1.5rem;
}

.gm-footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.gm-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gm-footer-col li {
    margin-bottom: 0.55rem;
}

.gm-footer-col a {
    color: #94a3b8;
    font-weight: 500;
    font-size: 0.8125rem;
}

.gm-footer-contact a.gm-footer-accent {
    color: #facc15;
    font-weight: 700;
}

.gm-footer-contact a.gm-footer-accent:hover {
    color: #fde047;
}

.gm-footer-cards {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.gm-footer-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    min-height: 4.5rem;
}

.gm-footer-card p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #cbd5e1;
    padding-right: 4.5rem;
}

.gm-footer-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    color: #0f172a;
}

.gm-footer-badge--gold { background: #facc15; }
.gm-footer-badge--violet { background: #c4b5fd; color: #1e1b4b; }
.gm-footer-badge--orange { background: #fdba74; color: #431407; }

.gm-footer-mid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gm-footer-mid h5 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.85rem;
}

.gm-footer-store-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gm-footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    background: #fff;
    color: #0f172a;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s;
}

.gm-footer-store-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.gm-footer-store-btn i {
    font-size: 1.1rem;
}

.gm-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gm-footer-social a {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.gm-footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.gm-footer-brand-lg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.gm-footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 0.95;
    display: flex;
    flex-direction: column;
}

.gm-footer-logo span.sub {
    font-family: var(--font-main);
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-align: right;
    margin-top: 0.2rem;
}

.gm-footer-brand-sub {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 0.35rem;
}

.gm-footer-payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    padding: 1.75rem 0 1.25rem;
}

.gm-footer-payments i {
    font-size: 1.5rem;
    color: #e2e8f0;
}

.gm-footer-payments .gm-pay-band {
    display: block;
    height: 28px;
    width: auto;
    max-width: min(100%, 456px);
    object-fit: contain;
}

.gm-pay-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}

.gm-pay-ssl {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
}

.gm-pay-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #e2e8f0;
}

.gm-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    padding-bottom: 1rem;
}

.gm-footer-legal a {
    color: #64748b;
}

.gm-footer-legal a:hover {
    color: #fff;
}

.gm-footer-dot {
    color: #334155;
    user-select: none;
}

.gm-footer-copy {
    text-align: center;
    font-size: 0.7rem;
    color: #475569;
    font-weight: 500;
    padding-bottom: 0.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #16a34a;
    color: #fff;
    transform: scale(1.08);
}

/* Mobile menu extras */
.mobile-menu-logo,
.mobile-promo-banner,
.mobile-menu-footer {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
    .mega-content { grid-template-columns: repeat(2, 1fr); }
    .mega-banner { display: none; }
    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(3, 1fr); }

    .gm-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gm-footer-cards {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gm-footer-card {
        flex: 1;
        min-width: 220px;
    }

    .gm-footer-mid {
        grid-template-columns: 1fr 1fr;
    }

    .gm-footer-brand-lg {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 1024px) {
    .bg-left { width: 100%; }
    .bg-right { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }

    header { padding: 20px; }

    .mobile-toggle { display: block; }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--primary-blue);
        flex-direction: column;
        align-items: stretch;
        padding: 50px 22px 25px;
        gap: 16px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 9998;
        overflow-y: auto;
    }

    .nav-wrapper.active { right: 0; }

    nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .header-right {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .hero-content { padding: 20px; }

    .has-mega { width: 100%; }

    .mega-menu {
        position: static;
        width: 100%;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        transform: none;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .mega-menu::before {
        display: none;
    }

    .has-mega.active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 16px;
        pointer-events: auto;
    }

    .mega-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mega-col h4 { color: var(--accent-hover); border-color: rgba(255,255,255,0.1); }
    .m-title { color: #fff; }
    .m-desc { color: #94a3b8; }
    .mega-item:hover { background: rgba(255,255,255,0.05); }

    .mobile-menu-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: var(--font-heading);
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 8px;
    }

    .mobile-menu-logo span.sub {
        font-size: 13px;
        font-weight: 500;
        opacity: 0.8;
        margin-top: 6px;
    }

    .mobile-promo-banner {
        display: block;
        position: relative;
        margin: 16px 0;
        border-radius: 12px;
        overflow: hidden;
        height: 130px;
    }

    .mobile-promo-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-promo-banner .promo-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    }

    .mobile-promo-banner .promo-content {
        position: absolute;
        inset: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }

    .promo-content .badge {
        background: var(--accent);
        color: #fff;
        width: max-content;
        margin-bottom: 6px;
    }

    .promo-content h5 {
        font-family: var(--font-heading);
        font-size: 16px;
        margin-bottom: 8px;
    }

    .promo-content a {
        font-size: 13px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 8px;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .mobile-socials a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

    .trust-grid,
    .business-grid,
    .why-grid,
    .testimonials,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid { grid-template-columns: 1fr; }

    .gm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gm-footer-mid {
        grid-template-columns: 1fr 1fr;
    }

    .gm-footer-brand-lg {
        grid-column: 1 / -1;
        justify-content: flex-start;
        margin-top: 0.5rem;
    }

    .container { padding: 0 20px; }
    .stats-bar,
    .section-trust,
    .section-modules,
    .section-business,
    .section-steps,
    .section-why,
    .section-references,
    .section-integrations,
    .section-pricing,
    .section-faq,
    .section-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gm-footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .top-banner { flex-direction: column; gap: 8px; }

    .stats-container,
    .trust-grid,
    .modules-grid,
    .business-grid,
    .why-grid,
    .testimonials,
    .pricing-grid,
    .gm-footer-grid {
        grid-template-columns: 1fr;
    }

    .gm-footer-mid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gm-footer-brand-lg {
        justify-content: flex-start;
    }

    .price-card.popular { transform: none; }

    .gm-footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .gm-footer-dot { display: none; }
}

/* =========================================
   İÇ SAYFALAR (Biz Kimiz vb.)
   ========================================= */

.page-inner {
    background: #fff;
}

.inner-header-wrap {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Ana sayfa: header hero dışına alındığında hero üst boşluğu */
.hero-wrapper .hero-content {
    padding-top: 40px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a5f 60%, #2d4a6f 100%);
    color: #fff;
    padding: 50px 50px 70px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 124, 231, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #94a3b8;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: var(--accent-hover);
    font-weight: 500;
}

.breadcrumb i {
    font-size: 10px;
    color: #64748b;
}

.page-hero .section-tag {
    color: var(--accent-hover);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-hero h1 span {
    color: #fff5e4;
}

.page-hero-lead {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.92;
    max-width: 720px;
}

.page-section {
    padding: var(--section-pad);
}

.page-story {
    background: var(--bg-light);
}

.page-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-split-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.page-split-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.page-split-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.page-split-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 12px;
    color: #fff;
}

.page-split-badge .num {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-light);
}

.page-split-badge .lbl {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline */
.page-timeline {
    background: #fff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), #e2e8f0);
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    z-index: 1;
}

.timeline-item--today::before {
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(79, 124, 231, 0.25);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Mission Vision Values */
.page-mvv {
    background: var(--primary-blue);
    padding: 60px 50px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mvv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    color: #fff;
    transition: all 0.3s;
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.mvv-card--featured {
    background: linear-gradient(135deg, var(--accent) 0%, #3d6ad4 100%);
    border-color: transparent;
}

.mvv-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mvv-icon i {
    font-size: 20px;
    color: var(--accent-hover);
}

.mvv-card--featured .mvv-icon {
    background: rgba(255, 255, 255, 0.2);
}

.mvv-card--featured .mvv-icon i {
    color: #fff;
}

.mvv-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.mvv-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
}

.mvv-card--featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Office bar */
.page-office-bar {
    background: #eff6ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
    padding: 18px 50px;
}

.page-office-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.page-office-bar i {
    color: var(--accent);
}

.page-office-bar .sep {
    color: #cbd5e1;
}

/* Team */
.page-team {
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.team-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(79, 124, 231, 0.12);
    transform: translateY(-4px);
}

.team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, #3d6ad4 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

.page-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 32px;
    border-left: 4px solid var(--accent);
    background: #fff;
    border-radius: 0 12px 12px 0;
}

.page-quote p {
    font-size: 17px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Altyapımız sayfası */
.feature-check-list {
    list-style: none;
    margin-top: 20px;
}

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.feature-check-list i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.wiki-topics-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.wiki-topics-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-light);
}

.wiki-topics-header i {
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wiki-topics-header strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-dark);
}

.wiki-topics-header span {
    font-size: 13px;
    color: var(--text-muted);
}

.wiki-topics-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.wiki-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.wiki-topic:nth-child(odd) {
    border-right: 1px solid #f1f5f9;
}

.wiki-topic:hover {
    background: #f8fafc;
}

.wiki-topic i {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 14px;
}

.page-portals {
    background: var(--bg-light);
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portal-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.portal-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(79, 124, 231, 0.12);
    transform: translateY(-4px);
}

.portal-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.portal-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portal-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.page-arch {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.arch-stack {
    max-width: 560px;
    margin: 0 auto 24px;
}

.arch-layer {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 22px;
}

.arch-layer--accent {
    background: rgba(79, 124, 231, 0.2);
    border-color: rgba(105, 150, 255, 0.4);
}

.arch-layer--edge {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
}

.arch-layer-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-hover);
    flex-shrink: 0;
}

.arch-layer-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 4px;
}

.arch-layer-text span {
    font-size: 13px;
    color: #94a3b8;
}

.arch-arrow {
    text-align: center;
    padding: 6px 0;
    color: #475569;
    font-size: 14px;
}

.arch-flow-note {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.infra-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.infra-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(79, 124, 231, 0.1);
}

.infra-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.infra-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.infra-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.page-docs {
    background: var(--bg-light);
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.docs-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.docs-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(79, 124, 231, 0.1);
}

.docs-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 6px;
    background: #eff6ff;
    color: var(--accent);
    margin-bottom: 14px;
}

.docs-badge--violet {
    background: #f3e8ff;
    color: #7c3aed;
}

.docs-badge--orange {
    background: #fff7ed;
    color: #ea580c;
}

.docs-badge--green {
    background: #ecfdf5;
    color: #059669;
}

.docs-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.docs-meta {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.docs-card p:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Bayi basvurusu sayfasi */
.dealer-summary-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.dealer-summary-head h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin: 12px 0 22px;
}

.dealer-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    background: #eff6ff;
    border-radius: 999px;
    padding: 7px 12px;
}

.dealer-summary-list {
    display: grid;
    gap: 16px;
}

.dealer-summary-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.dealer-summary-item i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealer-summary-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.dealer-summary-item span {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

.dealer-summary-foot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.dealer-summary-foot div {
    background: var(--primary-blue);
    color: #fff;
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
}

.dealer-summary-foot strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 6px;
}

.dealer-summary-foot span {
    font-size: 12px;
    line-height: 1.5;
    color: #cbd5e1;
}

.dealer-step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dealer-step-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
}

.dealer-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 18px;
}

.dealer-step-card h3 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.dealer-step-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
}

.dealer-form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.dealer-form,
.dealer-contact-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.dealer-input-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.dealer-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dealer-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.dealer-field input,
.dealer-field textarea {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.dealer-field input:focus,
.dealer-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(79, 124, 231, 0.12);
}

.dealer-field textarea {
    resize: vertical;
    min-height: 150px;
    margin-bottom: 18px;
}

.dealer-contact-top h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin: 10px 0 12px;
}

.dealer-contact-top p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.dealer-contact-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.dealer-contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-dark);
    background: #f8fafc;
    font-weight: 500;
}

.dealer-contact-list a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.dealer-contact-list i {
    width: 18px;
    text-align: center;
}

.dealer-contact-note {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 18px;
}

.dealer-contact-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.dealer-contact-note p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Referanslarimiz sayfasi */
.page-references-showcase {
    background: var(--bg-light);
}

.reference-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.reference-logo-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    min-height: 150px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.reference-logo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 30px rgba(79, 124, 231, 0.12);
}

.reference-logo-card img {
    max-width: 100%;
    max-height: 68px;
    object-fit: contain;
    filter: saturate(0.95);
}

.reference-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reference-testimonial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.reference-testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.reference-testimonial-card .author {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.reference-testimonial-card .role {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

/* Iletisim sayfasi */
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 14px 32px rgba(79, 124, 231, 0.12);
}

.contact-info-card--static:hover {
    transform: none;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-info-card span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.6;
}

.contact-purpose-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.contact-purpose-item {
    border: 1px solid var(--border-light);
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px 18px;
}

.contact-purpose-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-purpose-item span {
    display: block;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .page-hero,
    .page-section,
    .page-mvv,
    .page-office-bar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mvv-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portal-grid,
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-step-grid,
    .dealer-input-grid,
    .dealer-summary-foot {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-form-wrap {
        grid-template-columns: 1fr;
    }

    .reference-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reference-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .mvv-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-office-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .page-office-bar .sep {
        display: none;
    }

    .portal-grid,
    .infra-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }

    .dealer-step-grid,
    .dealer-input-grid,
    .dealer-summary-foot {
        grid-template-columns: 1fr;
    }

    .reference-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .wiki-topics-list {
        grid-template-columns: 1fr;
    }

    .wiki-topic:nth-child(odd) {
        border-right: none;
    }
}

/* Inner page form / referans yardımcıları */
.dealer-form-alert { padding: 14px 18px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.dealer-form-alert--success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.dealer-form-alert--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.dealer-captcha { margin-bottom: 20px; }
.dealer-captcha label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.dealer-captcha-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dealer-captcha-q { background: #fff; border: 1px solid var(--border-light); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.dealer-captcha-row input { width: 100px; padding: 10px 12px; border: 1px solid var(--border-light); border-radius: 10px; }
.dealer-form-note { margin-top: 12px; font-size: 12px; color: var(--text-muted); text-align: center; }
.reference-empty { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 40px 20px; }
.reference-pager { display: flex; justify-content: center; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.reference-pager a, .reference-pager span { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 14px; font-weight: 700; border: 1px solid var(--border-light); color: var(--text-muted); }
.reference-pager a:hover { border-color: var(--accent); color: var(--accent); }
.reference-pager .is-active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =========================================
   YASAL SAYFALAR (sekmeler + metin)
   ========================================= */

.page-legal {
    padding-top: 40px;
    background: #f8fafc;
}

.legal-wrap {
    max-width: 820px;
}

.legal-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 14px;
}

.legal-tabs a {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.legal-tabs a:hover {
    background: #f1f5f9;
    color: var(--primary-blue, #1e3a5f);
}

.legal-tabs a.is-active {
    background: var(--primary-blue, #1e3a5f);
    color: #fff;
}

.legal-body {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 16px;
    padding: 32px 28px;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1.25rem;
    margin-bottom: 0.35rem;
}

.legal-body p,
.legal-body li {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.75;
}

.legal-body ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.4rem;
}

.legal-body a {
    color: var(--accent, #4f7ce7);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.88rem;
}

.legal-body table th,
.legal-body table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
}

.legal-body table th {
    background: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

.legal-divider {
    border-top: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}

.legal-alert {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    margin: 1.25rem 0;
}

.legal-alert p {
    color: #92400e;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 640px) {
    .legal-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .legal-body {
        padding: 24px 18px;
    }
}

/* Karşılaştırma tabloları (Neden GaziMenu vb.) */
.compare-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 560px;
}

.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.compare-table thead th {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table thead th.is-accent {
    background: var(--accent);
}

.compare-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody th {
    font-weight: 600;
    color: var(--text-dark);
}

.compare-table td.is-muted {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ecfdf5;
    color: #047857;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 999px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
