/* ── Progress bar ── */
.prog-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    height: 3px; background: rgba(255,255,255,0.1);
}
.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #f65d5d, #fdb07d);
    width: 0%; transition: width .2s linear;
}

/* ── Navbar ── */
body { padding-top: 68px; }
.ff-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    background: rgba(10,10,24,0.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: box-shadow .3s;
}
.ff-navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.4); }
.ff-navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem; height: 68px;
}
.ff-nav-logo img {
    height: 34px; width: auto;
    filter: brightness(0) invert(1); display: block;
}
.ff-nav-links {
    display: flex; align-items: center; gap: 2px;
    list-style: none; margin: 0; padding: 0;
}
.ff-nav-links li a {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 8px;
    font-size: .88rem; font-weight: 500;
    color: rgba(255,255,255,0.68); text-decoration: none;
    transition: color .15s, background .15s;
}
.ff-nav-links li a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.ff-nav-right { display: flex; align-items: center; gap: 8px; }
.ff-nav-cta {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 22px; border-radius: 30px;
    background: linear-gradient(135deg, #f65d5d, #fdb07d);
    color: #fff; font-size: .88rem; font-weight: 700;
    border: none; cursor: pointer; text-decoration: none;
    transition: opacity .15s, transform .15s; white-space: nowrap;
}
.ff-nav-cta:hover { opacity: .9; transform: translateY(-1px); color: #fff; }
.ff-nav-login {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 16px; border-radius: 8px;
    color: rgba(255,255,255,0.72); font-size: .88rem; font-weight: 500;
    text-decoration: none; transition: color .15s, background .15s;
}
.ff-nav-login:hover { color: #fff; background: rgba(255,255,255,0.07); }

/* Language dropdown */
.lang-drop-wrap { position: relative; display: inline-block; }
.lang-drop-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: none; border: none;
    color: rgba(255,255,255,0.72); font-size: 1.1rem;
    cursor: pointer; padding: 4px; line-height: 1;
    transition: color .15s;
}
.lang-drop-btn:hover { color: #fff; }
.lang-drop-menu {
    display: none; position: absolute; top: calc(100% + 6px); right: 0;
    background: #fff; border-radius: 10px; min-width: 170px;
    box-shadow: 0 8px 28px rgba(0,0,0,.22);
    list-style: none; padding: 6px 0; margin: 0; z-index: 9999;
}
.lang-drop-wrap.open .lang-drop-menu { display: block; animation: fadeDropIn .15s ease; }
@keyframes fadeDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lang-drop-menu li a {
    display: flex; align-items: center; gap: 8px; padding: 9px 16px;
    font-size: .85rem; font-weight: 500; color: #333;
    text-decoration: none; cursor: pointer; transition: background .12s;
}
.lang-drop-menu li a:hover { background: #f7f7f7; }
.lang-drop-menu li a.active { color: #f65d5d; font-weight: 700; }

/* Hamburger */
.ff-nav-hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 40px; height: 40px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    cursor: pointer; padding: 0;
}
.ff-nav-hamburger span {
    display: block; width: 18px; height: 1.5px;
    background: rgba(255,255,255,0.8); border-radius: 2px;
    transition: transform .22s, opacity .18s;
}
.ff-nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ff-nav-hamburger.open span:nth-child(2) { opacity: 0; }
.ff-nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.ff-nav-drawer {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0; z-index: 499;
    background: rgba(10,10,24,0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 1rem 1.25rem 1.5rem; gap: 4px;
    animation: drawerSlide .2s ease;
}
.ff-nav-drawer.open { display: flex; }
@keyframes drawerSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.ff-nav-drawer a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; border-radius: 10px;
    font-size: .95rem; font-weight: 500;
    color: rgba(255,255,255,0.72); text-decoration: none;
    transition: background .15s, color .15s;
}
.ff-nav-drawer a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.ff-nav-drawer .drawer-cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 6px; padding: 13px; border-radius: 12px;
    background: linear-gradient(135deg, #f65d5d, #fdb07d);
    color: #fff; font-weight: 700; font-size: .95rem; border: none; cursor: pointer;
}
.drawer-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 0; }
.drawer-lang-label {
    font-size: .7rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    padding: 6px 14px 4px; display: flex; align-items: center; gap: 6px;
}
.drawer-lang-row { display: flex; flex-wrap: wrap; gap: 6px; padding: 2px 0; }
.drawer-lang-btn {
    flex: 1 1 calc(33.33% - 6px); min-width: 0;
    padding: 9px 4px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    color: rgba(255,255,255,0.6); font-size: .82rem; font-weight: 600;
    cursor: pointer; text-align: center; transition: background .12s, color .12s;
}
.drawer-lang-btn:hover, .drawer-lang-btn.active {
    background: rgba(246,93,93,0.15); color: #fdb07d;
    border-color: rgba(246,93,93,0.4);
}

@media (max-width: 767px) {
    .ff-nav-links, .ff-nav-cta.desktop-only, .ff-nav-login.desktop-only { display: none; }
    .ff-nav-hamburger { display: flex; }
    .lang-drop-wrap.desktop-lang { display: none; }
}
/* ── Hero overlay text ── */
.hs-item { position: relative; }
.hs-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,20,0.55);
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
}
.hs-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem); color: #fff;
    line-height: 1.2; margin-bottom: 1.25rem;
}
.hs-overlay h1 em { color: #fdb07d; font-style: italic; }
.hs-overlay p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 560px; margin: 0 auto 1.75rem; }

/* ── Stats strip ── */
.stats-strip { background: #f65d5d; padding: 28px 0; }
.stats-strip .stat-item { text-align: center; color: #fff; }
.stats-strip .stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stats-strip .stat-label { font-size: .85rem; opacity: .88; margin-top: 4px; }

/* ── Section tag pill ── */
.section-tag {
    display: inline-block; padding: 4px 14px; border-radius: 30px;
    font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    margin-bottom: 12px;
}
.tag-red    { background: rgba(246,93,93,.12);  color: #f65d5d; border: 1px solid rgba(246,93,93,.3); }
.tag-purple { background: rgba(139,92,246,.12); color: #8b5cf6; border: 1px solid rgba(139,92,246,.3); }
.tag-amber  { background: rgba(251,191,36,.12); color: #d97706; border: 1px solid rgba(251,191,36,.3); }
.tag-grey   { background: rgba(100,100,120,.1); color: #555;    border: 1px solid rgba(100,100,120,.2); }

/* ── Problem section ── */
.problem-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.problem-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: .96rem;
}
.problem-list li:last-child { border-bottom: none; }
.x-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(246,93,93,.12); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.x-icon svg { width: 10px; height: 10px; stroke: #f65d5d; stroke-width: 2.5; }
.clarity-block {
    background: linear-gradient(135deg, rgba(246,93,93,.06), rgba(253,176,125,.08));
    border-left: 3px solid #f65d5d; border-radius: 0 8px 8px 0;
    padding: 16px 20px; margin-top: 1.5rem;
    font-weight: 600; color: #333; font-size: .95rem;
}

/* ── Mechanism (adapt) cards ── */
.adapt-card {
    background: #f9f2f0; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px; padding: 22px; margin-bottom: 20px;
}
.adapt-card h3 { font-size: 1rem; color: #333; margin-bottom: 6px; font-weight: 700; }
.adapt-card p  { font-size: .88rem; color: #666; margin: 0; }

/* ── Vision (review-style) ── */
.vision-section { background: #1c1c2e; padding: 80px 0; }
.vision-section .section-title h2 { color: #fff; }
.vision-section .section-title p   { color: rgba(255,255,255,0.7); }
.viz-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.viz-list li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.85); padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08); font-size: .96rem;
}
.viz-list li:last-child { border-bottom: none; }
.no-badge {
    color: #f65d5d; font-weight: 700; font-size: 1rem; flex-shrink: 0;
    width: 24px; text-align: center;
}
.vision-clarity {
    background: rgba(253,176,125,0.12); border-left: 3px solid #fdb07d;
    border-radius: 0 8px 8px 0; padding: 16px 20px; margin-top: 1.5rem;
    font-weight: 600; color: rgba(255,255,255,0.9); font-size: .95rem;
}

/* ── Science cards ── */
.sci-card {
    background: #fff; border: 1px solid #ede8e8; border-radius: 10px;
    padding: 22px; margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sci-card h3 { font-size: 1rem; color: #333; margin-bottom: 6px; font-weight: 700; }
.sci-card p  { font-size: .88rem; color: #666; margin: 0; }

/* ── Audience (trainer-style) ── */
.aud-card {
    background: #f9f2f0; border-radius: 10px; padding: 30px;
    margin-bottom: 20px; text-align: center;
}
.aud-label {
    display: inline-block; padding: 4px 12px; border-radius: 20px;
    background: linear-gradient(135deg, #f65d5d, #fdb07d); color: #fff;
    font-size: .75rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; margin-bottom: 14px;
}
.aud-card h3 { font-size: 1.2rem; color: #333; margin-bottom: 8px; font-weight: 700; }
.aud-card p  { font-size: .9rem; color: #666; margin: 0; }

/* ── Steps ── */
.ff-steps { margin: 1.5rem 0; }
.ff-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.07);
}
.ff-step:last-child { border-bottom: none; }
.ff-step-num {
    width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #f65d5d, #fdb07d);
    color: #fff; font-weight: 700; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
}
.ff-step-text { font-size: .95rem; color: #555; padding-top: 8px; }

/* ── Final CTA card ── */
.final-cta-card {
    background: linear-gradient(135deg, #f65d5d 0%, #fdb07d 100%);
    border-radius: 16px; padding: 40px 32px; text-align: center; color: #fff;
}
.final-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; margin-bottom: 12px;
}
.final-cta-card h2 em { font-style: italic; color: rgba(255,255,255,0.85); }
.final-cta-card p { color: rgba(255,255,255,0.9); margin-bottom: 1.75rem; font-size: .95rem; }
.final-cta-card .site-btn {
    background: #fff; color: #f65d5d; border: none; display: inline-block;
    padding: 14px 36px; border-radius: 30px; font-weight: 700; font-size: 1rem;
    cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.final-cta-card .site-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.cta-note { font-size: .78rem; color: rgba(255,255,255,0.7); margin-top: 12px; }

/* ── Promise items ── */
.promise-grid { display: grid; gap: 16px; margin-top: 2rem; }
.promise-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 16px;
}
.promise-icon {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: rgba(246,93,93,.15); display: flex; align-items: center; justify-content: center;
}
.promise-icon svg { width: 18px; height: 18px; stroke: #f65d5d; stroke-width: 1.8; fill: none; }
.promise-text h3 { font-size: .92rem; color: #fff; margin-bottom: 3px; font-weight: 600; }
.promise-text p  { font-size: .82rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ── Trust row ── */
.trust-row {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .82rem; color: rgba(255,255,255,0.65); margin: 1rem 0 1.5rem;
}
.trust-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); flex-shrink: 0;
}

/* ── Split Hero ── */
.ff-hero {
    display: flex; min-height: 90vh; overflow: hidden;
    background: #0e0e1e;
}
.ff-hero-text {
    flex: 0 0 58%; display: flex; flex-direction: column;
    justify-content: center; padding: 5rem 3.5rem 5rem 4rem;
    background: linear-gradient(125deg, #0e0e1e 0%, #1a1235 100%);
    position: relative; z-index: 2;
}
.ff-hero-text::after {
    content: ''; position: absolute; top: 0; right: -1px; bottom: 0; width: 60px;
    background: linear-gradient(to right, #0e0e1e, transparent);
    z-index: 3; pointer-events: none;
}
.ff-hero-image {
    flex: 0 0 42%; position: relative; overflow: hidden;
}
.ff-hero-image img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.ff-hero-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, #0e0e1e 0%, rgba(14,14,30,0.3) 40%, transparent 100%);
    z-index: 1;
}
.ff-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 3.8vw, 3.4rem);
    color: #fff; line-height: 1.15; margin-bottom: 1.25rem;
}
.ff-hero h1 em { color: #fdb07d; font-style: italic; }
.ff-hero .hero-sub {
    color: rgba(255,255,255,0.7); font-size: 1rem;
    max-width: 420px; line-height: 1.75; margin-bottom: 0;
}
.ff-hero .hero-cta-wrap {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 4px; margin-top: 0;
}

/* ── Promise Band ── */
.ff-promise-band {
    position: relative;
    background: url('/ahana/img/land-2.jpg') center/cover no-repeat;
    padding: 90px 0;
}
.ff-promise-band::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,8,20,0.5) 0%, rgba(20,10,40,0.5) 100%);
}
.ff-promise-band .container { position: relative; z-index: 1; }
.ff-promise-band .section-label {
    text-align: center; color: rgba(255,255,255,0.8);
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; margin-bottom: 3rem;
}
.ff-promise-card {
    text-align: center; padding: 0 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.ff-promise-card:first-child { border-left: none; }
.ff-promise-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; font-weight: 700; line-height: 1;
    color: rgba(253,176,125,0.75); display: block; margin-bottom: 1rem;
}
.ff-promise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; font-weight: 700;
}
.ff-promise-card p {
    font-size: .88rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin: 0;
}

/* ── Impact Interstitial ── */
.ff-impact {
    position: relative;
    background: url('/ahana/img/land-3.jpg') top/cover no-repeat;
    padding: 100px 0; text-align: center;
}
.ff-impact::before {
    content: ''; position: absolute; inset: 0;
}
.ff-impact .container { position: relative; z-index: 1; }
.ff-impact .impact-eyebrow {
    font-size: .75rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: #fdb07d; margin-bottom: 1.25rem;
    display: block;
}
.ff-impact h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 3rem); color: #fff;
    line-height: 1.25; margin-bottom: 1rem;
}
.ff-impact h2 em { color: #fdb07d; font-style: italic; }
.ff-impact p {
    color: rgba(255,255,255); font-size: 1rem; max-width: 480px;
    margin: 0 auto 2rem; line-height: 1.75;
}

#langDropWrap { left: 1rem; }

/* ── Hero responsive ── */
@media (max-width: 991px) {
    .ff-hero { flex-direction: column; min-height: auto; }
    .ff-hero-image { display:none }
    .ff-hero-text { flex: none; padding: 3.5rem 2rem; }
    .ff-hero-text::after { display: none; }
    .ff-hero-image::before {
        background: linear-gradient(to bottom, #0e0e1e 0%, rgba(14,14,30,0.3) 35%, transparent 100%);
    }
    .ff-hero .hero-cta-wrap { align-items: flex-start; }
    .ff-promise-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 2rem 0.5rem; }
    .ff-promise-card:first-child { border-top: none; }
}
@media (max-width: 575px) {
    .ff-hero-text { padding: 2.5rem 1.25rem; }
    .ff-hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
    .ff-promise-band { padding: 60px 0; }
    .ff-impact { padding: 70px 0; }
}

/* ── Footer ── */
footer.footer-section .footer-bottom p,
footer.footer-section .footer-bottom a { color: rgba(255,255,255,0.6); font-size: .85rem; }
footer.footer-section .footer-bottom a:hover { color: #fdb07d; }
footer.footer-section .footer-social { text-align: center; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .stats-strip .stat-item { margin-bottom: 16px; }
    .final-cta-card { padding: 28px 20px; }
}
