:root {
    --primary: #1E3A8A;
    --primary-dark: #0B1E48;
    --primary-light: #2563EB;
    --accent: #d9ab64;
    --accent-hover: #c5964f;
    --accent-soft: rgba(217, 171, 100, 0.12);
    --secondary: #10B981;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(30, 58, 138, 0.15);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: #030d1d;
    color: #94a3b8;
    font-size: 12.5px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-item { display: flex; align-items: center; gap: 7px; color: #cbd5e1; font-weight: 500; }
.top-item i { color: #d9ab64; font-size: 13.5px; }
.top-bar-right .top-item i { color: #38bdf8; }
.top-divider { color: rgba(255, 255, 255, 0.2); }
.top-item a:hover { color: #ffffff; }

.navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    position: relative;
}
.logo-area { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
    height: 58px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.brand-mark {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-text span { color: var(--accent); }
.logo-tag {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    position: relative;
    padding: 8px 0;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.nav-esnaf {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    padding: 6px 0;
}
.nav-esnaf img {
    height: 26px;
    width: auto;
    display: block;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-links .nav-mobile-cta { display: none; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border-color);
    background: white;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-dark);
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #0d1b2a;
    box-shadow: 0 4px 14px rgba(217, 171, 100, 0.4);
    font-weight: 800;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(217, 171, 100, 0.55);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.8px solid var(--border-color);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: #0b1e48;
    background: var(--accent-soft);
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-light {
    background: white;
    color: var(--primary-dark);
    font-weight: 800;
}
.btn-ghost-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.25);
}

section { padding: 90px 0; position: relative; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header.what-is { max-width: 820px; }
.what-copy { margin-top: 8px; }
.what-copy p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}
.what-copy p:last-child { margin-bottom: 0; }
.what-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 20px !important;
    font-weight: 700;
    color: var(--primary-dark) !important;
    font-style: italic;
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #966b26;
    background: rgba(217, 171, 100, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.section-desc { font-size: 16px; color: var(--text-muted); }

.hero {
    position: relative;
    padding: 70px 0 100px;
    background:
        radial-gradient(circle at 80% 20%, rgba(217, 171, 100, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(30, 58, 138, 0.06) 0%, transparent 40%),
        #FFFFFF;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
}
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(217, 171, 100, 0.12);
    border: 1px solid rgba(217, 171, 100, 0.3);
    border-radius: 50px;
    color: #926727;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-title {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-title span.highlight { color: var(--accent); }
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 34px;
    line-height: 1.65;
    max-width: 580px;
}
.hero-buttons { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: #475569; }
.trust-item i { font-size: 18px; color: var(--secondary); }

.hero-visual { position: relative; }
.phone-shots {
    position: relative;
    width: min(100%, 420px);
    margin: 0 auto;
    aspect-ratio: 768 / 1376;
}
.phone-shots img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}
.phone-shots img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
    .phone-shots img { transition: none; }
}
.phone-content { padding: 20px 18px; }
.app-user-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.app-user-info h5 { font-size: 14px; font-weight: 800; }
.app-user-info span { font-size: 11px; color: var(--text-muted); }
.app-wallet-card {
    background: linear-gradient(135deg, #1E3A8A, #2563EB 60%, var(--accent));
    border-radius: 18px;
    padding: 18px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.wallet-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.85; }
.wallet-balance { font-size: 26px; font-weight: 800; font-family: 'Outfit', sans-serif; margin: 6px 0 14px; }
.wallet-footer { display: flex; justify-content: space-between; font-size: 11px; }
.qr-box-container {
    background: var(--bg-light);
    border: 2px dashed #CBD5E1;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    margin-bottom: 16px;
}
.qr-instruction { font-size: 11px; font-weight: 700; color: var(--primary); }
.qr-limit-badge {
    display: inline-block;
    background: #ECFDF5;
    color: #047857;
    font-size: 10.5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 4px;
}
.floating-feature-card {
    position: absolute;
    background: white;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: floatSlow 4s ease-in-out infinite alternate;
}
.floating-feature-card.pos-1 { top: 40px; left: -35px; }
.floating-feature-card.pos-2 { bottom: 40px; right: -25px; animation-delay: -2s; }
.icon-circle-sm {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
@keyframes floatSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.audience-card {
    background: white;
    border: 1.5px solid #F1F5F9;
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: var(--transition);
}
.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 171, 100, 0.4);
}
.audience-card h3 { font-size: 22px; font-weight: 800; color: var(--primary-dark); margin: 16px 0 10px; }
.audience-card p { font-size: 14.5px; color: var(--text-muted); flex: 1; }
.audience-card .btn { margin-top: 22px; align-self: flex-start; }

.cta-band {
    background: linear-gradient(135deg, #0B1E48, #1E3A8A);
    border-radius: var(--radius-xl);
    padding: 48px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(217, 171, 100, 0.25);
}
.cta-band h3 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.cta-band p { color: #CBD5E1; }

.mv-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(217, 171, 100, 0.12) 0%, transparent 36%),
        radial-gradient(circle at 88% 80%, rgba(30, 58, 138, 0.08) 0%, transparent 40%),
        #FFFFFF;
}
.manifesto {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}
.manifesto .section-title { margin-bottom: 18px; }
.manifesto p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 14px;
}
.manifesto p:last-child { margin-bottom: 0; }
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.mv-card {
    border-radius: 28px;
    padding: 40px 36px 36px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: var(--shadow-md);
}
.mv-card.mission {
    background: linear-gradient(180deg, #FFFCF6 0%, #FBF7EF 100%);
    border: 1.5px solid rgba(217, 171, 100, 0.35);
    color: var(--text-main);
}
.mv-card.vision {
    background: linear-gradient(160deg, #07122a 0%, #1E3A8A 100%);
    border: 1px solid rgba(217, 171, 100, 0.28);
    color: #F8FAFC;
}
.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.mv-card.mission .mv-icon {
    background: rgba(217, 171, 100, 0.18);
    color: #926727;
}
.mv-card.vision .mv-icon {
    background: rgba(217, 171, 100, 0.16);
    color: #f3d7a8;
}
.mv-kicker {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.mv-card.mission .mv-kicker { color: #966b26; }
.mv-card.vision .mv-kicker { color: #f3d7a8; }
.mv-card h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.mv-card.mission h3 { color: var(--primary-dark); }
.mv-card.vision h3 { color: white; }
.mv-card p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 14px;
}
.mv-card p:last-child { margin-bottom: 0; }
.mv-card.mission p { color: #475569; }
.mv-card.vision p { color: #CBD5E1; }
.mv-quote {
    margin: 40px auto 0;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

@media (max-width: 1024px) {
    .mv-grid { grid-template-columns: 1fr; }
    .mv-quote { font-size: 22px; }
}

.page-hero { padding: 72px 0 64px; overflow: hidden; }
.page-hero h1 {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 12px 0 16px;
}
.page-hero .lead { font-size: 18px; max-width: 640px; line-height: 1.65; }
.page-hero .lead + .lead { margin-top: 12px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.page-hero.navy {
    background:
        radial-gradient(circle at 88% 10%, rgba(217, 171, 100, 0.22) 0%, transparent 36%),
        linear-gradient(135deg, #07122a, #1E3A8A);
    color: white;
}
.page-hero.navy .lead { color: #CBD5E1; }
.page-hero.cream {
    background: linear-gradient(180deg, #FBF7EF 0%, #FFFFFF 100%);
}
.page-hero.playful {
    background: linear-gradient(135deg, #12265c 0%, #1E3A8A 48%, #926727 160%);
    color: white;
}
.page-hero.playful .lead { color: rgba(255,255,255,0.82); }
.page-hero.slate {
    background:
        radial-gradient(circle at 12% 80%, rgba(217, 171, 100, 0.12) 0%, transparent 40%),
        #F8FAFC;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.stat-tile {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 22px;
}
.stat-tile .num { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 900; color: var(--accent); }
.stat-tile .txt { font-size: 13px; color: #CBD5E1; margin-top: 4px; }

.about-grid, .student-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-main-img-box {
    background: linear-gradient(135deg, #1E3A8A, #0F172A);
    border-radius: var(--radius-xl);
    padding: 45px 35px;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 171, 100, 0.2);
}
.flag-watermark {
    position: absolute;
    right: -25px;
    bottom: -25px;
    font-size: 160px;
    opacity: 0.08;
    color: white;
}
.pillar-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
    background: white;
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.pillar-card:hover {
    transform: translateX(6px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.pillar-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(217, 171, 100, 0.12);
    color: #926727;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; flex-shrink: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px 22px;
}
.value-card h4 { font-size: 17px; font-weight: 800; margin: 12px 0 8px; color: var(--primary-dark); }
.value-card p { font-size: 13.5px; color: var(--text-muted); }

.parent-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.parent-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1.5px solid #F1F5F9;
    padding: 34px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.parent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 171, 100, 0.4);
}
.parent-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    background: #F8FAFC;
    color: var(--text-muted);
}
.parent-icon-wrapper {
    width: 64px; height: 64px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 22px;
}
.bg-accent-light { background: rgba(217, 171, 100, 0.14); color: #926727; }
.bg-blue-light { background: #EFF6FF; color: var(--primary-light); }
.bg-green-light { background: #ECFDF5; color: var(--secondary); }
.parent-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--primary-dark); }
.parent-card p { font-size: 14.5px; color: var(--text-muted); }

.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.how-card {
    background: white;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}
.how-n {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.fun-features-list { display: grid; gap: 20px; }
.fun-feature-item {
    background: white;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
}
.fun-badge-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.fun-app-showcase {
    background: linear-gradient(135deg, #1E3A8A, #2c497f 60%, var(--accent));
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.35);
}
.student-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    align-self: stretch;
    min-height: 100%;
}
.student-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 360px;
}

.merchant-flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 50px; }
.flow-step-card {
    background: #F8FAFC;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
}
.flow-step-card:hover {
    transform: translateY(-6px);
    background: #FFFFFF;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.step-number {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white; font-weight: 800; font-size: 16px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.step-img-slot {
    height: 120px;
    background: #F1F5F9;
    border-radius: 12px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: #64748B; font-size: 12px; font-weight: 600;
    border: 2px dashed #CBD5E1;
    padding: 10px;
}
.step-img-slot i { font-size: 32px; color: #926727; margin-bottom: 8px; }
.esnaf-banner {
    background: linear-gradient(135deg, #0B1E48, #1E3A8A);
    border-radius: var(--radius-xl);
    padding: 50px;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(217, 171, 100, 0.25);
}
.esnaf-banner h3 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-dark), #162a5b);
    padding: 50px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-form-panel { padding: 50px 40px; background: white; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    font-family: inherit;
    font-size: 14.5px;
    background: white;
}
.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 171, 100, 0.2);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-status {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 14px;
    padding: 10px 12px;
    border-radius: 10px;
}
.form-status.is-ok { background: #ECFDF5; color: #047857; }
.form-status.is-err { background: #FEF2F2; color: #B91C1C; }
.form-status[hidden] { display: none; }

footer {
    background: #040914;
    color: #94A3B8;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(217, 171, 100, 0.15);
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 36px;
}
.footer-brand-logo {
    height: 72px;
    width: auto;
    max-width: 320px;
    display: block;
    object-fit: contain;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
}
.store-lead { font-size: 13px; margin-bottom: 14px; }
.store-links { display: flex; flex-direction: column; gap: 10px; }
.store-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}
.store-btn:hover { border-color: var(--accent); color: white; }
.store-btn i { font-size: 20px; width: 22px; text-align: center; }
.store-btn .fa-google-play { color: #34D399; font-size: 18px; }
.store-btn small { display: block; font-size: 9px; opacity: 0.7; font-weight: 500; }
.store-btn strong { display: block; font-size: 12px; font-weight: 700; }
.footer-col h5 { color: white; font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-yerli {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(217, 171, 100, 0.28);
    background: linear-gradient(135deg, rgba(217, 171, 100, 0.08), rgba(255,255,255,0.03));
    border-radius: 18px;
    margin-top: 22px;
    max-width: 360px;
}
.yerli-seal {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: block;
}
.footer-yerli strong {
    display: block;
    color: #f3d7a8;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.footer-yerli span {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.45;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
}
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #64748B;
}
.pay-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-badges img {
    height: 18px;
    width: auto;
    max-height: 18px;
    display: block;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.screen-placeholder {
    height: 280px;
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748B;
    border: 2px dashed #CBD5E1;
    padding: 20px;
}
.screen-placeholder i { font-size: 42px; color: var(--accent); margin-bottom: 10px; }

@media (max-width: 1024px) {
    .hero-grid, .about-grid, .student-layout, .esnaf-banner, .contact-box, .cta-band {
        grid-template-columns: 1fr;
    }
    .cta-band { align-items: flex-start; }
    .parent-feature-grid, .audience-grid, .how-grid { grid-template-columns: 1fr 1fr; }
    .merchant-flow-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-title, .page-hero h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    section { padding: 52px 0; }
    .container { padding: 0 16px; }
    .page-hero { padding: 40px 0 36px; }
    .section-title { font-size: 28px; }
    .section-header { margin-bottom: 32px; }
    .top-bar { display: none; }
    .nav-toggle { display: inline-flex; }
    .logo-tag { display: none; }
    .logo-text { font-size: 20px; }
    .brand-logo { height: 44px; max-width: 220px; }
    .brand-mark { height: 40px; }
    .navbar .container { height: 72px; }
    .phone-shots { max-width: 280px; }
    .student-visual img { min-height: 220px; }
    .hero { padding: 36px 0 48px; }
    .hero-subtitle { font-size: 16px; }
    .cta-band { padding: 28px 22px; }
    .footer-brand-logo { height: 52px; max-width: min(240px, 100%); }
    .footer-grid { gap: 28px; }
    .mv-card { padding: 28px 22px; }
    .mv-card h3 { font-size: 22px; }
    .mv-quote { font-size: 20px; }
    .legal-doc { padding: 24px 16px; }
    .nav-actions .btn-primary,
    .nav-actions .btn-outline { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 16px;
        box-shadow: var(--shadow-md);
    }
    body.nav-open .nav-links { display: flex; }
    body.nav-open .nav-links .nav-mobile-cta {
        display: inline-flex;
        justify-content: center;
        margin: 10px 0 8px;
    }
    .nav-link { padding: 14px 0; }
    .nav-esnaf img { height: 32px; }
    .nav-link::after { display: none; }
    .nav-actions .btn-outline { display: none; }
    .parent-feature-grid, .audience-grid, .how-grid,
    .merchant-flow-grid, .values-grid, .footer-grid, .stat-row {
        grid-template-columns: 1fr;
    }
    .hero-title, .page-hero h1 { font-size: 32px; }
    .floating-feature-card { display: none; }
    .footer-yerli { max-width: none; }
    .contact-form-panel, .contact-info-panel, .esnaf-banner, .cta-band { padding: 28px 22px; }
    .contact-form-panel > form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .hero-title, .page-hero h1 { font-size: 26px; }
    .brand-logo { height: 40px; max-width: 200px; }
    .btn { padding: 11px 18px; }
    .audience-card, .parent-card { padding: 24px 20px; }
}

.legal-section { padding-top: 12px; padding-bottom: 80px; }
.legal-doc {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px 48px 40px;
    box-shadow: var(--shadow-sm);
}
.legal-doc section { padding: 0; margin: 0 0 32px; }
.legal-doc section:last-child { margin-bottom: 0; }
.legal-doc h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}
.legal-doc p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 12px;
}
.legal-doc p:last-child { margin-bottom: 0; }
.legal-doc strong { color: var(--primary-dark); font-weight: 700; }
.legal-doc a { color: var(--primary); font-weight: 700; }
.legal-doc a:hover { color: var(--accent-hover); }
.legal-table-wrap { overflow-x: auto; margin: 8px 0 4px; }
.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.legal-table th,
.legal-table td {
    text-align: left;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    vertical-align: top;
    line-height: 1.55;
}
.legal-table th {
    background: #F8FAFC;
    color: var(--primary-dark);
    font-weight: 800;
    white-space: nowrap;
}
.legal-table td { color: #475569; }
.legal-list {
    margin: 0 0 12px;
    padding-left: 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}
.legal-list li { margin-bottom: 6px; }
@media (max-width: 768px) {
    .legal-doc { padding: 28px 22px; }
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 4000;
    background: #07122a;
    color: #E2E8F0;
    border: 1px solid rgba(217, 171, 100, 0.28);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 24px 50px -18px rgba(7, 18, 42, 0.65);
    display: none;
}
.cookie-banner.is-open { display: block; }
.cookie-banner h3 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.cookie-banner p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0 0 16px;
    max-width: 820px;
}
.cookie-banner a { color: var(--accent); font-weight: 700; }
.cookie-banner a:hover { color: #f3d7a8; }
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    border: 1.5px solid transparent;
    font-family: inherit;
}
.cookie-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #E2E8F0;
    border-color: rgba(255,255,255,0.14);
}
.cookie-btn-ghost:hover { border-color: var(--accent); color: #fff; }
.cookie-btn-accept {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #0d1b2a;
}
.cookie-settings {
    display: none;
    margin: 4px 0 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.cookie-settings.is-open { display: grid; gap: 12px; }
.cookie-opt {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.cookie-opt strong { display: block; color: #fff; font-size: 13.5px; }
.cookie-opt span { display: block; font-size: 12px; color: #94A3B8; margin-top: 2px; }
.cookie-opt input { margin-top: 4px; accent-color: var(--accent); width: 18px; height: 18px; }
@media (max-width: 768px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px 16px; }
    .cookie-actions { flex-direction: column; align-items: stretch; }
    .cookie-btn { width: 100%; }
}
