/* =============================================================
   JENOE — Premium Landing Page
   Paleta: Verde oscuro · Dorado metálico · Negro profundo
   ============================================================= */

:root {
    --green-deep: #051A10;
    --green-dark: #0A2818;
    --green-mid:  #0F3D26;
    --green-soft: #14512F;
    --green-line: rgba(212, 175, 55, 0.18);

    --gold-light: #E5C158;
    --gold:       #D4AF37;
    --gold-dark:  #A88828;
    --gold-deep:  #6B5418;

    --ink:        #F5EBC8;
    --ink-soft:   #C9C2A8;
    --ink-mute:   rgba(245, 235, 200, 0.65);

    --black:      #050807;
    --shadow-lg:  0 30px 80px -20px rgba(0,0,0,0.6), 0 12px 32px -10px rgba(0,0,0,0.4);
    --shadow-gold: 0 12px 40px -8px rgba(212,175,55,0.35);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --max: 1240px;
    --space: clamp(1rem, 2vw, 2rem);

    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--green-deep);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(212,175,55,0.08), transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 100%, rgba(20,81,47,0.4), transparent 60%),
        linear-gradient(180deg, var(--green-deep) 0%, var(--black) 100%);
    background-attachment: fixed;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--space);
    padding-right: var(--space);
    width: 100%;
}

::selection { background: var(--gold); color: var(--green-deep); }

/* ===================== TYPOGRAPHY ===================== */
.gold-text {
    background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 35%, #FFF1B8 55%, var(--gold) 75%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--green-line);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.06);
    margin-bottom: 1.2rem;
}
.eyebrow.center { display: inline-block; }

.section-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #FFFDF5;
}

.section-sub {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--ink-mute);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-head {
    text-align: center;
    margin-bottom: 4rem;
}
.section-head.left {
    text-align: left;
    margin-bottom: 0;
}
.section-head.left .section-sub { margin-left: 0; }

/* ===================== GLASS CARD ===================== */
.glass {
    background: linear-gradient(160deg, rgba(20, 81, 47, 0.35) 0%, rgba(10, 40, 24, 0.55) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--green-line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    font-weight: 600;
    font-size: 0.98rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--green-deep);
    box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px -10px rgba(212,175,55,0.5);
}
.btn-primary:hover::before { left: 100%; }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--green-line);
}
.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--green-deep);
}

.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.3rem 2.6rem; font-size: 1.15rem; }
.btn.full { width: 100%; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announcement-bar {
    background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(212,175,55,0.16), rgba(212,175,55,0.08));
    border-bottom: 1px solid var(--green-line);
    padding: 0.55rem 0;
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-align: center;
    position: relative;
    z-index: 100;
}
.announcement-bar .container {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
}
.pulse-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(212,175,55,0.7);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 12px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* ===================== NAVIGATION ===================== */
header {
    position: sticky;
    top: 0;
    z-index: 90;
    transition: backdrop-filter 0.3s ease, background 0.3s ease, padding 0.3s ease;
    padding: 0.9rem 0;
}
header.scrolled {
    background: rgba(5, 8, 7, 0.85);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid var(--green-line);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.logo:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 4px 18px rgba(212, 175, 55, 0.35));
}
.logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-img-footer {
    height: 80px;
}
.logo-mark { display: inline-flex; }
.logo-text {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--green-deep);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px -4px rgba(212,175,55,0.4);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -4px rgba(212,175,55,0.55);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--green-line);
    border-radius: 10px;
    padding: 0.55rem;
    flex-direction: column;
    gap: 4px;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    transition: 0.25s ease;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: floatOrb 22s ease-in-out infinite;
}
.orb-1 {
    width: 520px; height: 520px;
    top: -10%; left: -8%;
    background: radial-gradient(circle, rgba(212,175,55,0.6), transparent 70%);
}
.orb-2 {
    width: 620px; height: 620px;
    bottom: -20%; right: -10%;
    background: radial-gradient(circle, rgba(20, 81, 47, 0.85), transparent 70%);
    animation-delay: -8s;
}
.orb-3 {
    width: 700px; height: 700px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 65%);
    opacity: 0.6;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.08); }
}

.grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--green-line);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.06);
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1.6rem;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold);
}

.hero-title {
    font-family: var(--serif);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #FFFDF5;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.3vw, 1.2rem);
    color: var(--ink-mute);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2.2rem;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-cta-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.avatars {
    display: flex;
}
.avatars span {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-soft), var(--gold-deep));
    border: 2px solid var(--green-deep);
    margin-left: -10px;
    position: relative;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%),
        linear-gradient(135deg, var(--green-soft), var(--gold-deep));
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(2) { background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%), linear-gradient(135deg, var(--gold-dark), var(--green-soft)); }
.avatars span:nth-child(3) { background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%), linear-gradient(135deg, var(--green-mid), var(--gold)); }
.avatars span:nth-child(4) { background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%), linear-gradient(135deg, var(--gold-light), var(--green-soft)); }

.hero-trust-text {
    font-size: 0.9rem;
    color: var(--ink-mute);
}
.hero-trust-text strong { color: var(--ink); font-weight: 600; }

/* ----- HERO VISUAL ----- */
.hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 460px;
    padding: 1.8rem;
    position: relative;
    z-index: 2;
    transform: rotate(-1.5deg);
    transition: transform 0.5s ease;
}
.visual-card:hover { transform: rotate(0); }

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}
.card-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--ink-mute);
    font-weight: 600;
}
.card-pill {
    background: rgba(212,175,55,0.15);
    color: var(--gold);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(212,175,55,0.3);
}

.growth-chart {
    width: 100%;
    height: 160px;
    margin-bottom: 1.5rem;
}
.chart-line {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawLine 2.4s ease-out forwards;
    animation-delay: 0.4s;
}
.chart-area { opacity: 0; animation: fadeArea 1.6s ease-out 1.6s forwards; }
.chart-dot { opacity: 0; animation: fadeDot 0.4s ease-out 2.6s forwards; }
.chart-dot-pulse {
    opacity: 0;
    animation: dotPulse 1.6s ease-out 3s infinite;
    transform-origin: 300px 15px;
}

@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }
@keyframes fadeDot { to { opacity: 1; } }
@keyframes dotPulse {
    0% { opacity: 0.7; r: 6; }
    100% { opacity: 0; r: 18; }
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    border-top: 1px solid var(--green-line);
    padding-top: 1.2rem;
}
.card-stat .stat-num {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.card-stat .stat-lab {
    font-size: 0.72rem;
    color: var(--ink-mute);
    margin-top: 0.3rem;
    letter-spacing: 0.05em;
}

.floating-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    z-index: 3;
    animation: floatPill 6s ease-in-out infinite;
}
.pill-1 { top: 8%; right: -2%; }
.pill-2 { bottom: 6%; left: -3%; animation-delay: -3s; }

@keyframes floatPill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.scroll-cue {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid var(--green-line);
    border-radius: 14px;
    z-index: 1;
}
.scroll-cue span {
    display: block;
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    margin: 6px auto 0;
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ===================== STATS BAR ===================== */
.stats {
    padding: 3rem 0;
    border-top: 1px solid var(--green-line);
    border-bottom: 1px solid var(--green-line);
    background: rgba(5, 8, 7, 0.3);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-block { padding: 0.5rem; }
.stat-value {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(212,175,55,0.25);
}
.stat-label {
    color: var(--ink-mute);
    font-size: 0.92rem;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

/* ===================== SECTION DEFAULTS ===================== */
.section { padding: 6rem 0; position: relative; }

/* ===================== BENEFITS ===================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
}

.benefit-card {
    padding: 2rem;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--shadow-lg), 0 0 40px -10px rgba(212,175,55,0.25);
}
.benefit-card:hover::before { transform: translateX(100%); }

.benefit-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
    border: 1px solid rgba(212,175,55,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.benefit-icon svg { width: 28px; height: 28px; }

.benefit-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFDF5;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}
.benefit-card p {
    color: var(--ink-mute);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ===================== PHASES ===================== */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.phase-card {
    padding: 2.2rem;
    position: relative;
    transition: transform 0.4s ease, border-color 0.3s ease;
}
.phase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.4);
}

.phase-card.featured {
    border-color: rgba(212,175,55,0.45);
    background: linear-gradient(160deg, rgba(212,175,55,0.12) 0%, rgba(20, 81, 47, 0.45) 100%);
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), 0 0 60px -15px rgba(212,175,55,0.4);
}
.phase-card.featured:hover { transform: translateY(-18px); }

.phase-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.phase-flag {
    position: absolute;
    top: 1.6rem; right: 1.6rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.phase-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFDF5;
    margin-bottom: 1rem;
    line-height: 1.25;
}
.phase-card p {
    color: var(--ink-mute);
    font-size: 0.97rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.phase-list {
    list-style: none;
    border-top: 1px solid var(--green-line);
    padding-top: 1.2rem;
}
.phase-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.6rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
}
.phase-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.85rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* ===================== HOW IT WORKS ===================== */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.how-grid::before {
    content: '';
    position: absolute;
    top: 32px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
    z-index: 0;
}

.how-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px -8px rgba(212,175,55,0.4);
    background-color: var(--green-deep);
}
.how-step h4 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: #FFFDF5;
    margin-bottom: 0.6rem;
}
.how-step p {
    color: var(--ink-mute);
    font-size: 0.95rem;
    max-width: 280px;
    margin: 0 auto;
}

/* ===================== COMPANIES ===================== */
.companies-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.companies-content .section-title { text-align: left; }
.companies-content .section-sub { margin-left: 0; text-align: left; }

.companies-list {
    list-style: none;
    margin: 2rem 0 2.4rem;
    display: grid;
    gap: 1rem;
}
.companies-list li {
    display: flex;
    gap: 1rem;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}
.check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.check svg { width: 16px; height: 16px; }
.companies-list strong { color: var(--ink); font-weight: 600; }

.companies-visual {
    padding: 2.2rem;
    display: grid;
    gap: 1.4rem;
}
.biz-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--green-line);
}
.biz-row:last-child { border-bottom: 0; padding-bottom: 0; }
.biz-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.04));
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.biz-icon svg { width: 26px; height: 26px; }
.biz-num {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.biz-lab {
    font-size: 0.85rem;
    color: var(--ink-mute);
    margin-top: 0.3rem;
}

/* ===================== TESTIMONIALS ===================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.testi-card {
    padding: 2rem;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}
.testi-card:hover { transform: translateY(-6px); }

.stars {
    color: var(--gold);
    font-size: 1.05rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.testi-card p {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    font-style: italic;
    flex: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid var(--green-line);
    padding-top: 1.2rem;
}
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--green-deep);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testi-author strong {
    display: block;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
}
.testi-author span {
    color: var(--ink-mute);
    font-size: 0.8rem;
}

/* ===================== TRUST ROW ===================== */
.trust { padding: 4rem 0; }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.trust-item {
    text-align: center;
    padding: 2rem 1.4rem;
    border: 1px solid var(--green-line);
    border-radius: var(--r-md);
    background: rgba(20, 81, 47, 0.18);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.trust-item:hover {
    border-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
}
.trust-icon {
    width: 52px; height: 52px;
    margin: 0 auto 1rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-item h4 {
    font-family: var(--serif);
    color: #FFFDF5;
    font-size: 1.1rem;
    margin-bottom: 0.55rem;
}
.trust-item p {
    color: var(--ink-mute);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ===================== FAQ ===================== */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.faq-list { display: grid; gap: 0.7rem; }

.faq-item {
    border: 1px solid var(--green-line);
    border-radius: var(--r-md);
    background: rgba(20, 81, 47, 0.2);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover { border-color: rgba(212,175,55,0.3); }
.faq-item[open] {
    border-color: rgba(212,175,55,0.45);
    background: rgba(20, 81, 47, 0.3);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    padding: 0 1.5rem 1.4rem;
    color: var(--ink-mute);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ===================== FORM ===================== */
.form-section { padding: 6rem 0; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.form-aside .section-title { text-align: left; }
.form-aside .section-sub { margin-left: 0; text-align: left; }

.form-perks {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 0.9rem;
}
.form-perks li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.form {
    padding: 2.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.field.full { grid-column: 1 / -1; }

.field label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}
.field label .optional {
    color: var(--ink-mute);
    font-weight: 400;
    font-size: 0.78rem;
}

.field input,
.field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(5, 8, 7, 0.5);
    border: 1px solid var(--green-line);
    border-radius: var(--r-sm);
    color: var(--ink);
    font: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.field input::placeholder { color: rgba(245, 235, 200, 0.4); }
.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(5, 8, 7, 0.75);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
}

.field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'><path d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.4rem;
}
.field select option { background: var(--green-dark); color: var(--ink); }

.check-field {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 0.4rem;
}
.check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    color: var(--ink-mute);
    font-size: 0.88rem;
    line-height: 1.5;
    user-select: none;
}
.check-label input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border: 1px solid var(--green-line);
    border-radius: 4px;
    background: rgba(5, 8, 7, 0.5);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: 0.2s ease;
}
.check-label input:checked {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
}
.check-label input:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 5px; height: 9px;
    border: solid var(--green-deep);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-foot {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--ink-mute);
    font-size: 0.82rem;
    margin-top: 0.5rem;
}

/* ===================== CALENDAR EMBED ===================== */
.calendar-section { padding: 6rem 0; }
.calendar-wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 1.2rem;
    background: linear-gradient(160deg, rgba(212,175,55,0.14) 0%, rgba(20,81,47,0.45) 100%);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg), 0 0 60px -15px rgba(212,175,55,0.35);
}
.calendar-wrap iframe {
    width: 100%;
    min-height: 720px;
    border: none;
    border-radius: var(--r-md);
    background: #ffffff;
    display: block;
}
@media (max-width: 768px) {
    .calendar-wrap { padding: 0.6rem; }
    .calendar-wrap iframe { min-height: 820px; }
}

/* ===================== FINAL CTA ===================== */
.final-cta {
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}
.cta-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #FFFDF5;
    margin-bottom: 1.2rem;
}
.cta-sub {
    font-size: 1.1rem;
    color: var(--ink-mute);
    margin: 0 auto 2.4rem;
    max-width: 600px;
    line-height: 1.7;
}

/* ===================== ACADEMIC BACKING ===================== */
.academic-backing {
    margin-top: 4rem;
    text-align: center;
}

.academic-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 2rem;
}

.academic-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.academic-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.academic-logo-slot {
    height: 60px;
    min-width: 130px;
    padding: 0.8rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: var(--r-sm);
    color: var(--ink-mute);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.academic-logo-slot:hover {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .academic-backing { margin-top: 3rem; }
    .academic-line { width: 30px; }
    .academic-label { font-size: 0.72rem; letter-spacing: 0.22em; }
    .academic-logos { gap: 1.2rem; }
    .academic-logo-slot { min-width: 110px; height: 52px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .academic-logos { gap: 0.8rem; }
    .academic-logo-slot { min-width: calc(50% - 0.4rem); }
}

/* ===================== FOOTER ===================== */
.footer {
    border-top: 1px solid var(--green-line);
    background: rgba(5, 8, 7, 0.7);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    color: var(--ink-mute);
    font-size: 0.92rem;
    margin-top: 1rem;
    max-width: 320px;
    line-height: 1.6;
}
.footer-col h5 {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-col a {
    color: var(--ink-soft);
    font-size: 0.92rem;
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold); }
.footer-col li { color: var(--ink-soft); font-size: 0.92rem; }

.footer-bottom {
    border-top: 1px solid var(--green-line);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-mute);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ===================== TOAST ===================== */
.toast {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--green-deep);
    padding: 1rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 200;
    font-size: 0.95rem;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; min-height: 360px; }
    .companies-grid,
    .form-grid,
    .faq-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .phases-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .phase-card.featured { transform: none; }
    .phase-card.featured:hover { transform: translateY(-8px); }
    .testi-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 2rem; }
    .how-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }

    header.menu-open .nav-links {
        display: flex;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(5, 8, 7, 0.97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--green-line);
        padding: 1.2rem var(--space);
    }
    header.menu-open .nav-links a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--green-line);
    }
    header.menu-open .nav-links a:last-child { border-bottom: 0; }

    .section { padding: 4.5rem 0; }
    .hero { padding: 2rem 0 4rem; }
    .section-head { margin-bottom: 2.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .form { grid-template-columns: 1fr; padding: 1.8rem; }
    .field.full { grid-column: 1; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .floating-pill { display: none; }
    .visual-card { transform: rotate(0); }

    .hero-cta-row .btn { flex: 1; }

    .announcement-bar { font-size: 0.78rem; }
    .announcement-bar .container { flex-wrap: wrap; padding: 0 1rem; }
}

@media (max-width: 768px) {
    .logo-img { height: 56px; }
    .logo-img-footer { height: 64px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-value { font-size: 2.4rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; }
    .logo-text { font-size: 1.2rem; }
    .logo-img { height: 48px; }
    .logo-img-footer { height: 56px; }
    .testi-card, .benefit-card, .phase-card { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
