/* =============================================
   MANABI MARKETING SITE
   Navy #1B2A6B  |  Orange #F5A623  |  White #FFF
   ============================================= */

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

:root {
    --navy:        #1B2A6B;
    --navy-dark:   #111d4e;
    --navy-light:  #243580;
    --orange:      #F5A623;
    --orange-dark: #d9911a;
    --white:       #FFFFFF;
    --gray-bg:     #F7F8FC;
    --gray-light:  #EEF0F7;
    --gray-text:   #6B7280;
    --gray-border: #E5E7EB;
    --text:        #1F2937;
    --text-light:  #4B5563;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-logo img { display: block; }

.navbar-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    font-family: Georgia, 'Times New Roman', serif;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.15s;
}

.navbar-links a:hover { color: var(--navy); }

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-collapsible {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.15s;
}
.nav-toggle:hover { background: var(--gray-bg); }
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }

/* =============================================
   HERO
   ============================================= */

.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2d4a9e 100%);
    color: var(--white);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(245,166,35,0.08);
    right: -100px; top: -150px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    left: -80px; bottom: -100px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(245,166,35,0.15);
    border: 1px solid rgba(245,166,35,0.4);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 span { color: var(--orange); }

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--orange);
    display: block;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img-badge {
    position: absolute;
    bottom: 28px;
    left: -20px;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.hero-img-badge .badge-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.hero-img-badge .badge-label {
    font-size: 12px;
    color: var(--gray-text);
}

.hero-img-badge .badge-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-img-badge2 {
    position: absolute;
    top: 28px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(245,166,35,0.4);
    text-align: center;
    min-width: 110px;
}

.hero-img-badge2 .b2-num {
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.hero-img-badge2 .b2-label {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 3px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */

section { padding: 80px 0; }

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* =============================================
   FEATURES
   ============================================= */

.features { background: var(--gray-bg); }

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

.feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--gray-border);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(27,42,107,0.1);
    transform: translateY(-3px);
}

.feature-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   LEVELS
   ============================================= */

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

.level-card {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s;
    cursor: default;
}

.level-card:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 24px rgba(245,166,35,0.15);
    transform: translateY(-2px);
}

.level-emoji { font-size: 32px; margin-bottom: 12px; }

.level-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.level-desc {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* =============================================
   HOW IT WORKS
   ============================================= */

.how-it-works { background: var(--gray-bg); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: var(--gray-border);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    border: 4px solid var(--gray-bg);
    box-shadow: 0 0 0 4px var(--navy);
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   SUBJECTS MARQUEE
   ============================================= */

.subjects-strip {
    background: var(--navy);
    padding: 28px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 8px 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =============================================
   CTA BANNER
   ============================================= */

.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color 0.15s;
}

.footer-col ul a:hover { color: var(--orange); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */

.testimonials { background: var(--white); }

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

.testimonial-card {
    background: var(--gray-bg);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--gray-border);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(27,42,107,0.09);
}

.testimonial-stars {
    color: var(--orange);
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 2px;
}

/* =============================================
   BLOG INDEX
   ============================================= */

.blog-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 64px 0 56px;
    text-align: center;
}

.blog-hero .section-label { color: var(--orange); margin-bottom: 14px; }

.blog-hero-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.blog-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-index { padding: 72px 0 96px; }

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

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 10px 36px rgba(27,42,107,0.12);
    transform: translateY(-3px);
}

.blog-card-thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--gray-light);
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }

.blog-card-thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: rgba(255,255,255,0.25);
    font-size: 48px;
}

.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.blog-card-date {
    font-size: 12px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(245,166,35,0.12);
    color: var(--orange-dark);
    border: 1px solid rgba(245,166,35,0.3);
    padding: 3px 10px;
    border-radius: 999px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--orange-dark); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 18px;
}

.blog-card-read {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.15s;
}

.blog-card-read:hover { gap: 10px; color: var(--orange-dark); }

.blog-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--gray-border);
    color: var(--navy);
    transition: all 0.15s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.blog-pagination .prev,
.blog-pagination .next {
    width: auto;
    padding: 0 16px;
    gap: 6px;
}

.blog-empty {
    text-align: center;
    padding: 80px 0;
}

.blog-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-text);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.blog-empty h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.blog-empty p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* =============================================
   SINGLE POST
   ============================================= */

.post-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 52px 0 56px;
}

.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    transition: color 0.15s;
}

.post-back:hover { color: var(--white); }

.post-hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.post-hero-date,
.post-hero-read {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.post-hero-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.2;
    max-width: 780px;
    margin-bottom: 28px;
}

.post-hero-author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.post-author-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
}

.post-featured-img {
    background: var(--navy-dark);
    padding-bottom: 40px;
}

.post-featured-img img {
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.post-body { padding: 64px 0 80px; }

.post-content {
    max-width: 740px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.85;
    color: var(--text);
}

.post-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin: 44px 0 16px;
}

.post-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
}

.post-content p { margin-bottom: 22px; }

.post-content ul,
.post-content ol {
    padding-left: 24px;
    margin-bottom: 22px;
}

.post-content li { margin-bottom: 8px; }

.post-content a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    font-weight: 600;
}

.post-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    background: var(--gray-bg);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-light);
    margin: 28px 0;
}

.post-content img {
    border-radius: 12px;
    margin: 8px 0 22px;
}

.post-footer {
    max-width: 740px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--gray-border);
}

/* =============================================
   EARLY STARTUP SECTION
   ============================================= */

.early-startup {
    background: var(--gray-bg);
    padding: 96px 0;
}

.startup-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.startup-badge-wrap {
    margin-bottom: 24px;
}

.startup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.35);
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 999px;
    text-transform: uppercase;
}

.startup-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.startup-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 52px;
}

.startup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
    text-align: left;
}

.startup-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.startup-card:hover {
    box-shadow: 0 6px 24px rgba(27,42,107,0.09);
    transform: translateY(-2px);
}

.startup-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.startup-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.startup-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}

.startup-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.startup-cta-note {
    font-size: 13px;
    color: var(--gray-text);
}

/* =============================================
   EARN SECTION
   ============================================= */

.earn-section {
    padding: 96px 0;
    background: var(--white);
}

.earn-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
}

.earn-content .section-title { margin-bottom: 16px; }
.earn-content .section-desc  { margin-bottom: 36px; }

.earn-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.earn-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.earn-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.earn-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.earn-step-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.earn-card {
    background: var(--navy);
    border-radius: 20px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(27,42,107,0.25);
}

.earn-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 28px 0;
}

.earn-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245,166,35,0.2);
    color: var(--orange);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earn-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.earn-card-body {
    padding: 20px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.earn-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

.earn-stat-total {
    background: rgba(245,166,35,0.12);
    border-color: rgba(245,166,35,0.3);
}

.earn-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.earn-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.earn-stat-highlight {
    color: var(--orange);
    font-size: 18px;
}

.earn-card-note {
    padding: 16px 28px;
    background: rgba(0,0,0,0.2);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.earn-card-note a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.earn-card-note a:hover { text-decoration: underline; }

/* =============================================
   EARN PROGRAM PAGE
   ============================================= */

.earn-page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 80px 0 64px;
    text-align: center;
}

.earn-page-hero .section-label { color: var(--orange); margin-bottom: 16px; }

.earn-page-hero h1 {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.earn-page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 620px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.earn-page-body {
    padding: 72px 0;
}

.earn-page-body .section-title { margin-bottom: 12px; }

.earn-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.earn-how-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.earn-how-card:hover {
    box-shadow: 0 8px 32px rgba(27,42,107,0.1);
    transform: translateY(-3px);
}

.earn-how-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.earn-how-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.earn-how-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.earn-formula-box {
    background: var(--navy);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    color: var(--white);
    margin: 64px 0;
}

.earn-formula-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.85);
}

.earn-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.earn-formula-part {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px 24px;
}

.earn-formula-part .label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.earn-formula-part .value {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
}

.earn-formula-op {
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.earn-formula-result {
    background: rgba(245,166,35,0.15);
    border-color: rgba(245,166,35,0.3);
}

.earn-formula-result .value { color: var(--orange); font-size: 22px; }

.earn-example-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 28px;
}

.earn-example-table th {
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
}

.earn-example-table th:first-child { border-radius: 10px 0 0 0; }
.earn-example-table th:last-child  { border-radius: 0 10px 0 0; }

.earn-example-table td {
    padding: 13px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-border);
    color: var(--text);
}

.earn-example-table tr:nth-child(even) td { background: var(--gray-bg); }

.earn-example-table .earn-you td {
    background: rgba(245,166,35,0.08);
    font-weight: 700;
    color: var(--navy);
}

.earn-faq {
    background: var(--gray-bg);
    padding: 72px 0;
}

.earn-faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.earn-faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 24px 28px;
}

.earn-faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.earn-faq-a {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 992px) {
    .blog-grid          { grid-template-columns: repeat(2, 1fr); }
    .post-hero-title    { font-size: 30px; }
    .startup-cards      { grid-template-columns: 1fr; }
    .startup-title      { font-size: 26px; }
    .earn-inner         { grid-template-columns: 1fr; }
    .earn-how-grid      { grid-template-columns: 1fr; gap: 20px; }
    .earn-page-hero h1  { font-size: 32px; }
    .features-grid      { grid-template-columns: repeat(2, 1fr); }
    .levels-grid        { grid-template-columns: repeat(2, 1fr); }
    .steps-grid         { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-grid        { grid-template-columns: 1fr 1fr; }
    .testimonials-grid  { grid-template-columns: 1fr 1fr; }
    .hero-inner         { grid-template-columns: 1fr; }
    .hero-visual        { display: none; }
    .hero h1            { font-size: 36px; }
}

@media (max-width: 640px) {
    .blog-grid          { grid-template-columns: 1fr; }
    .post-hero-title    { font-size: 24px; }
    .nav-collapsible    { display: none; }
    .features-grid      { grid-template-columns: 1fr; }
    .levels-grid        { grid-template-columns: repeat(2, 1fr); }
    .steps-grid         { grid-template-columns: 1fr; }
    .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
    .testimonials-grid  { grid-template-columns: 1fr; }
    .section-title      { font-size: 28px; }
    .hero h1            { font-size: 30px; }
    .cta-banner h2      { font-size: 28px; }
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0 72px;
    text-align: center;
}
.contact-hero-inner { max-width: 600px; margin: 0 auto; }
.contact-badge {
    display: inline-block;
    background: rgba(245,166,35,.18);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.contact-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.contact-hero p {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.6;
}

/* Main grid */
.contact-main { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: start;
}

/* Info cards */
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    display: flex;
    gap: 16px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 22px 20px;
}
.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-info-card p {
    font-size: 13.5px;
    color: var(--gray-text);
    margin-bottom: 6px;
    line-height: 1.5;
}
.contact-info-card a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 3px;
}

/* Social links */
.contact-social {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 20px;
}
.contact-social p {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 12px; }
.contact-social-links a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: background .2s, color .2s, border-color .2s;
}
.contact-social-links a:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(27,42,107,.07);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 16px; }
.form-row-2 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}
.form-group label span { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
    border: 1.5px solid var(--gray-border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,42,107,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; }

.contact-errors {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 14px 16px;
    color: #991B1B;
    font-size: 14px;
}
.contact-errors p { margin: 0; }
.contact-errors p + p { margin-top: 4px; }

/* Success state */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success-icon {
    width: 64px;
    height: 64px;
    background: #ECFDF5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.contact-success h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.contact-success p {
    color: var(--gray-text);
    margin-bottom: 24px;
}

/* FAQ strip */
.contact-faq {
    background: var(--gray-bg);
    border-top: 1px solid var(--gray-border);
    padding: 72px 0;
}
.contact-faq h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 36px;
    text-align: center;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 24px;
}
.faq-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.faq-item p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-hero h1 { font-size: 32px; }
}
@media (max-width: 640px) {
    .contact-form-wrap { padding: 24px 16px; }
    .form-row { flex-direction: column; }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-hero { padding: 56px 0 48px; }
    .contact-hero h1 { font-size: 28px; }
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 13px 18px 13px 16px;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s, padding .2s;
    overflow: hidden;
    max-width: 200px;
}
.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.wa-float-label {
    white-space: nowrap;
    transition: max-width .3s ease, opacity .3s ease;
    max-width: 120px;
    opacity: 1;
}

@media (max-width: 640px) {
    .wa-float {
        bottom: 20px;
        right: 16px;
        padding: 13px;
        border-radius: 50%;
        max-width: 54px;
    }
    .wa-float-label { max-width: 0; opacity: 0; }
}

/* =============================================
   LEGAL PAGES (Terms, Privacy Policy)
   ============================================= */

.legal-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 64px 0 52px;
}
.legal-badge {
    display: inline-block;
    background: rgba(245,166,35,.18);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.legal-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}
.legal-hero p {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.legal-body { padding: 64px 0 80px; }

.legal-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

/* TOC sidebar */
.legal-toc {
    position: sticky;
    top: 80px;
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 24px 20px;
}
.legal-toc p {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-text);
    margin-bottom: 12px;
}
.legal-toc ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.legal-toc a {
    font-size: 13.5px;
    color: var(--text-light);
    display: block;
    padding: 5px 8px;
    border-radius: 6px;
    transition: background .15s, color .15s;
}
.legal-toc a:hover {
    background: var(--gray-light);
    color: var(--navy);
}

/* Content */
.legal-content section { margin-bottom: 44px; }
.legal-intro {
    font-size: 16px;
    color: var(--text-light);
    background: var(--gray-bg);
    border-left: 4px solid var(--orange);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 40px;
    line-height: 1.7;
}
.legal-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-border);
}
.legal-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}
.legal-content ul {
    margin: 10px 0 14px 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.legal-content ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
}
.legal-content a {
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 3px;
}

.legal-contact-box {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 8px;
}
.legal-contact-box p { margin-bottom: 6px; }
.legal-contact-box p:last-child { margin-bottom: 0; }

/* Responsive */
@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc { position: static; }
    .legal-hero h1 { font-size: 28px; }
}

/* =============================================
   ABOUT PAGE
   ============================================= */

/* Hero */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 88px 0 0;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: rgba(245,166,35,.08);
    border-radius: 50%;
}
.about-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 64px;
    position: relative;
    z-index: 1;
}
.about-badge {
    display: inline-block;
    background: rgba(245,166,35,.18);
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
}
.about-hero p {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}
.about-hero-wave {
    line-height: 0;
    margin-bottom: -2px;
}
.about-hero-wave svg { width: 100%; height: 80px; display: block; }

/* Section label */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

/* Mission */
.about-mission { padding: 72px 0; }
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-mission-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-mission-text p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}
.about-mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat-card {
    background: var(--gray-bg);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
}

/* Values */
.about-values {
    background: var(--gray-bg);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 72px 0;
}
.about-values-header { text-align: center; margin-bottom: 48px; }
.about-values-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 28px 22px;
}
.value-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    color: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.value-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65;
}

/* Story */
.about-story { padding: 80px 0; }
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-story-visual { display: flex; justify-content: center; }
.story-card-stack { position: relative; width: 280px; height: 300px; }
.story-card {
    position: absolute;
    border-radius: 20px;
    padding: 28px;
}
.story-card-back {
    width: 240px;
    background: var(--gray-light);
    border: 1px solid var(--gray-border);
    top: 20px; left: 20px;
    transform: rotate(4deg);
}
.story-card-dot {
    width: 36px; height: 36px;
    background: var(--gray-border);
    border-radius: 50%;
    margin-bottom: 16px;
}
.story-card-lines { display: flex; flex-direction: column; gap: 8px; }
.story-card-lines span {
    display: block;
    height: 8px;
    background: var(--gray-border);
    border-radius: 4px;
    width: 100%;
}
.story-card-front {
    width: 256px;
    background: var(--navy);
    top: 0; left: 0;
    box-shadow: 0 20px 48px rgba(27,42,107,.25);
}
.story-card-icon { margin-bottom: 16px; }
.story-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.story-card-body {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}
.about-story-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-story-text p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}
.btn-outline-navy {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 24px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    transition: background .2s, color .2s;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Team */
.about-team {
    background: var(--gray-bg);
    border-top: 1px solid var(--gray-border);
    padding: 72px 0;
}
.about-team-header { text-align: center; margin-bottom: 48px; }
.about-team-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.about-team-header p { font-size: 15.5px; color: var(--gray-text); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
}
.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.team-avatar-navy { background: var(--navy); color: rgba(255,255,255,.8); }
.team-avatar-orange { background: var(--orange); color: rgba(255,255,255,.9); }
.team-avatar-dashed {
    background: transparent;
    border: 2px dashed var(--gray-border);
    color: var(--gray-text);
}
.team-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.team-role {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
    letter-spacing: .3px;
}
.team-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.65;
}
.team-card-open { border-style: dashed; }
.team-cta-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 3px;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    text-align: center;
}
.about-cta-inner { max-width: 560px; margin: 0 auto; }
.about-cta h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
}
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Responsive */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .about-mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-story-visual { display: none; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .about-hero h1 { font-size: 36px; }
}
@media (max-width: 640px) {
    .about-hero h1 { font-size: 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-mission-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   MOBILE SUPPLEMENTS
   ============================================= */

@media (max-width: 640px) {
    /* Hamburger button */
    .nav-toggle { display: flex; }

    /* Mobile menu open state */
    .nav-collapsible.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 16px 24px 20px;
        z-index: 998;
        gap: 0;
    }
    .nav-collapsible.open .navbar-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .nav-collapsible.open .navbar-links li a {
        display: block;
        padding: 13px 0;
        font-size: 15px;
        border-bottom: 1px solid var(--gray-border);
    }
    .nav-collapsible.open .navbar-links li:last-child a { border-bottom: none; }
    .nav-collapsible.open .navbar-cta {
        flex-direction: column;
        gap: 10px;
        padding-top: 16px;
        width: 100%;
    }
    .nav-collapsible.open .navbar-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Section padding reductions */
    .hero { padding: 60px 0 48px; }
    .cta-banner { padding: 56px 0; }
    .blog-hero { padding: 52px 0 44px; }
    .blog-hero-title { font-size: 28px; }
    .blog-index { padding: 52px 0 64px; }
}

@media (max-width: 480px) {
    .hero { padding: 52px 0 40px; }
    .hero h1 { font-size: 26px; }
    .hero-desc { font-size: 15px; }
    .section-title { font-size: 24px; }
    .cta-banner h2 { font-size: 24px; }
    .cta-banner p { font-size: 15px; }
    .cta-banner { padding: 48px 0; }
    .levels-grid { grid-template-columns: 1fr; }
    .blog-hero-title { font-size: 26px; }
    .contact-hero h1 { font-size: 24px; }
    .about-hero h1 { font-size: 24px; }
    .about-cta h2 { font-size: 26px; }
    .site-footer { padding: 48px 0 24px; }
    .footer-grid { gap: 20px; }
}
