:root {
    --midnight: #0c1220;
    --deep: #141c2e;
    --navy: #1a2744;
    --slate: #2d3a52;
    --muted: #6b7a94;
    --soft: #94a3b8;
    --light: #cbd5e1;
    --cream: #f1f0eb;
    --white: #fafaf8;
    --accent: #d6336c;
    --accent-warm: #e8527a;
    --accent-glow: #f47b6b;
    --green: #10b981;
    --green-soft: #d1fae5;
    --blue: #3b82f6;
    --blue-soft: #dbeafe;
    --pink-soft: #fce4ec;
    --gradient: linear-gradient(135deg, #a8156e, #d6336c, #f47b6b);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

:where(#jdn1-landing),
:where(#jdn1-landing) *,
:where(#jdn1-landing) *::before,
:where(#jdn1-landing) *::after { margin: 0; padding: 0; box-sizing: border-box; }

:where(#jdn1-landing) {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--midnight);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Reset element styles to prevent site CSS from overriding jdn1 colors */
:where(#jdn1-landing) a { color: inherit; text-decoration: none; background-color: transparent; }
:where(#jdn1-landing) h1,
:where(#jdn1-landing) h2,
:where(#jdn1-landing) h3,
:where(#jdn1-landing) h4,
:where(#jdn1-landing) p,
:where(#jdn1-landing) span,
:where(#jdn1-landing) li { color: inherit; }
:where(#jdn1-landing) button { color: inherit; font: inherit; border: none; background: none; cursor: pointer; }
:where(#jdn1-landing) img { max-width: 100%; height: auto; display: block; }
:where(#jdn1-landing) input,
:where(#jdn1-landing) textarea { font: inherit; color: inherit; }

:where(#jdn1-landing) .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--gradient);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes progressGrow {
    to { width: 100%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === TOPBAR === */
.topbar {
    background: var(--midnight);
    color: var(--soft);
    font-size: 0.8rem;
    padding: 8px 0;
    text-align: center;
}
.topbar strong { color: var(--accent-glow); font-weight: 600; }

/* === NAV === */
:where(#jdn1-landing) .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 0;
}
:where(#jdn1-landing) .nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
:where(#jdn1-landing) .nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--midnight);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-logo {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--midnight);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo span {
    background: var(--gradient);
    color: var(--midnight);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
}
.nav-cta {
    background: var(--midnight);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--midnight);
}
.nav-cta:hover { background: transparent; color: var(--midnight); }

/* === HERO === */
.hero {
    padding: 70px 0 30px;
    height: auto;
    background: linear-gradient(175deg, var(--white) 0%, #fdf6f3 40%, #faf0ec 70%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(244, 123, 107, 0.08) 0%, rgba(214, 51, 108, 0.04) 40%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 51, 108, 0.1);
    color: var(--accent-warm);
    font-weight: 600;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.75rem; font-weight: 800;
    line-height: 1.18;
    color: var(--midnight);
    margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent-warm); font-weight: 800; }
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }

#jdn1-landing .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(214, 51, 108, 0.3);
}
#jdn1-landing .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214, 51, 108, 0.4);
}
#jdn1-landing .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--slate);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 16px 8px;
    background: none;
    border: none;
    box-shadow: none;
}
#jdn1-landing .btn-secondary .play-icon {
    font-size: 0.7rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#jdn1-landing .btn-secondary:hover { color: var(--midnight); background: none; border: none; box-shadow: none; }
#jdn1-landing .btn-secondary:focus { background: none; border: none; box-shadow: none; }

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(214, 51, 108, 0.1);
}
.hero-stat { animation: fadeUp 0.8s ease both; }
.hero-stat:nth-child(2) { animation-delay: 0.1s; }
.hero-stat:nth-child(3) { animation-delay: 0.2s; }
.hero-stat .number { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--midnight); }
.hero-stat .label { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* === HERO PHOTO COLLAGE === */
.hero-collage {
    position: relative;
    animation: fadeIn 1s ease 0.3s both;
    align-self: stretch;
    /* Allow images to overflow left toward text for organic blending */
    overflow: visible;
}

/* Warm atmospheric glow */
.hero-collage::before {
    content: '';
    position: absolute;
    top: -80px; left: -120px; right: -40px; bottom: -80px;
    background: radial-gradient(ellipse 90% 80% at 60% 50%,
    rgba(244, 123, 107, 0.1) 0%,
    rgba(214, 51, 108, 0.06) 35%,
    transparent 65%
    );
    z-index: 0;
    pointer-events: none;
}

/* Soft warm orb top-right */
.hero-collage::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(244, 123, 107, 0.12), transparent 70%);
    top: -40px; right: -20px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-deco-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.hero-deco-dot.d1 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.08), transparent 70%);
    bottom: 0; left: -60px;
    animation: float 5s ease-in-out 1s infinite;
}
.hero-deco-dot.d2 {
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(244, 123, 107, 0.1), transparent 70%);
    top: 80px; right: -20px;
    animation: float 4s ease-in-out 0.5s infinite;
}
.hero-deco-dot.d3 {
    width: 80px; height: 80px;
    background: radial-gradient(circle, rgba(168, 21, 110, 0.12), transparent 70%);
    bottom: 100px; right: 25%;
    animation: float 3.5s ease-in-out 0.3s infinite;
}

/* Shared photo styles */
.hero-photo {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.8s ease;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- MAIN PHOTO ----
   Large, extends left. Solid on right,
   soft dissolve on left edge toward text */
.hero-photo.main {
    width: 420px;
    height: 440px;
    top: 15px;
    left: -30px;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.15) 8%,
    rgba(0,0,0,0.6) 22%,
    black 40%,
    black 100%
    ),
    linear-gradient(to bottom,
            black 0%,
            black 75%,
            rgba(0,0,0,0.3) 92%,
            transparent 100%
    );
    mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.15) 8%,
    rgba(0,0,0,0.6) 22%,
    black 40%,
    black 100%
    ),
    linear-gradient(to bottom,
            black 0%,
            black 75%,
            rgba(0,0,0,0.3) 92%,
            transparent 100%
    );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: fadeUp 0.9s ease 0.3s both;
}
.hero-photo.main:hover { transform: scale(1.015); }

/* Warm light overlay */
.hero-photo.main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, rgba(244,123,107,0.07) 0%, transparent 45%, rgba(168,21,110,0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ---- SECONDARY PHOTO ----
   Upper right, solid on right/top, dissolves left/bottom */
.hero-photo.secondary {
    width: 260px;
    height: 230px;
    top: -15px;
    right: -10px;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.3) 12%,
    rgba(0,0,0,0.8) 30%,
    black 50%,
    black 100%
    ),
    linear-gradient(to top,
            transparent 0%,
            rgba(0,0,0,0.5) 15%,
            black 35%,
            black 100%
    );
    mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.3) 12%,
    rgba(0,0,0,0.8) 30%,
    black 50%,
    black 100%
    ),
    linear-gradient(to top,
            transparent 0%,
            rgba(0,0,0,0.5) 15%,
            black 35%,
            black 100%
    );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: fadeUp 0.9s ease 0.6s both;
}
.hero-photo.secondary:hover { transform: scale(1.02); }

/* ---- TERTIARY PHOTO ----
   Lower right, dissolves on left and top */
.hero-photo.tertiary {
    width: 230px;
    height: 250px;
    bottom: -10px;
    right: -5px;
    z-index: 3;
    -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.2) 10%,
    rgba(0,0,0,0.7) 28%,
    black 48%,
    black 100%
    ),
    linear-gradient(to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 12%,
            black 30%,
            black 80%,
            rgba(0,0,0,0.5) 95%,
            transparent 100%
    );
    mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,0.2) 10%,
    rgba(0,0,0,0.7) 28%,
    black 48%,
    black 100%
    ),
    linear-gradient(to bottom,
            transparent 0%,
            rgba(0,0,0,0.4) 12%,
            black 30%,
            black 80%,
            rgba(0,0,0,0.5) 95%,
            transparent 100%
    );
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
    animation: fadeUp 0.9s ease 0.9s both;
}
.hero-photo.tertiary:hover { transform: scale(1.02); }

/* Floating badge - glassmorphism pill */
.hero-badge {
    position: absolute;
    bottom: 80px;
    left: -20px;
    z-index: 10;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    padding: 10px 20px 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(168, 21, 110, 0.1);
    animation: float 3s ease-in-out 1.2s infinite;
}
.hero-badge .badge-icon {
    width: 36px; height: 36px;
    background: var(--green-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.hero-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1.3;
}
.hero-badge .badge-text small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 0.7rem;
}

/* Quote float - glass dark */
.hero-quote-float {
    position: absolute;
    top: 270px;
    right: -28px;
    z-index: 10;
    background: rgba(12, 18, 32, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    border-radius: 18px;
    padding: 18px 22px;
    max-width: 205px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    animation: float 3.5s ease-in-out 1.5s infinite;
}
.hero-quote-float::before {
    content: '"';
    position: absolute;
    top: -6px; left: 16px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.45;
}
.hero-quote {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-quote.active {
    display: block;
    opacity: 1;
}
.hero-quote-float p {
    font-size: 0.76rem;
    line-height: 1.55;
    font-style: italic;
    color: var(--light);
}
.hero-quote-float .q-author {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-glow);
    font-size: 0.7rem;
    margin-top: 8px;
    display: block;
}

/* === PHOTO STRIP (social proof band) === */
.photo-strip {
    padding: 60px 0;
    background: var(--cream);
    overflow: hidden;
}
.photo-strip-inner {
    display: flex;
    gap: 16px;
    animation: scrollPhotos 30s linear infinite;
}
@keyframes scrollPhotos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.strip-photo {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
}
.strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-strip-label {
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* === PROBLEM === */
.problem {
    padding: 50px 0 100px;
    background: linear-gradient(160deg, #eef2ff 0%, #fdf2f8 50%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}
.problem::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.problem::after {
    content: '';
    position: absolute;
    bottom: -150px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.problem-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}
.problem-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--midnight);
}
.problem-header p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}
.problem .recognition-block {
    background: rgba(255,255,255,0.7);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    position: relative;
    z-index: 1;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.problem-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.9);
    border-color: rgba(214, 51, 108, 0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.problem-card .icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.problem-card:nth-child(1) .icon { background: rgba(214, 51, 108, 0.1); }
.problem-card:nth-child(2) .icon { background: rgba(99, 102, 241, 0.1); }
.problem-card:nth-child(3) .icon { background: rgba(16, 185, 129, 0.1); }
.problem-card:nth-child(4) .icon { background: rgba(245, 158, 11, 0.1); }
.problem-card h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--midnight);
}
.problem-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.problem-stat-bar {
    margin-top: 60px;
    background: var(--midnight);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.problem-stat h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    color: var(--accent-glow);
    margin-bottom: 8px;
}
.problem-stat p { font-size: 0.85rem; color: var(--soft); line-height: 1.5; }

/* === WHY IUCOSOFT === */
.why { padding: 100px 0; background: var(--cream); }

/* Hero statement */
.why-hero {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}
.why-hero h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.25;
}
.accent-underline {
    position: relative;
    display: inline-block;
}
.accent-underline::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 10px;
    background: rgba(214, 51, 108, 0.18);
    border-radius: 4px;
    z-index: -1;
}

/* Trust chain */
.trust-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.chain-step {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    transition: all 0.3s ease;
}
.chain-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.chain-step.highlight {
    background: var(--midnight);
    border-color: var(--midnight);
}
.chain-step.highlight .chain-label { color: var(--white); }
.chain-step.highlight .chain-sub { color: var(--accent-glow); }
.chain-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.chain-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--midnight);
    margin-bottom: 4px;
}
.chain-sub {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.5;
}
.chain-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    padding: 0 8px;
    flex-shrink: 0;
}

/* Impact number block */
.impact-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 60px;
    padding: 36px 48px;
    background: linear-gradient(135deg, rgba(214, 51, 108, 0.06), rgba(99, 102, 241, 0.04));
    border-radius: 20px;
    border: 1px solid rgba(214, 51, 108, 0.1);
}
.impact-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}
.impact-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
    max-width: 460px;
}

/* Layout: points + photo */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.why-point { display: flex; gap: 20px; margin-bottom: 32px; }
.why-point .marker {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
}
.why-point h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-point p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* Why Right - Photo */
.why-right { position: relative; }
.why-photo-block {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.why-photo-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.trust-banner {
    padding: 16px 20px;
    background: rgba(214, 51, 108, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(214, 51, 108, 0.12);
}
.trust-banner p { font-size: 0.84rem; line-height: 1.6; color: var(--accent); font-weight: 500; }

/* === COMPARE BLOCK === */
.compare-block {
    margin-bottom: 60px;
}
.compare-header {
    text-align: center;
    margin-bottom: 32px;
}
.compare-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
}
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.compare-col {
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.compare-col.other {
    background: #f8f5f1;
    border: 1px solid rgba(0,0,0,0.06);
}
.compare-col.ours {
    background: linear-gradient(145deg, var(--deep), var(--navy));
    color: var(--white);
    box-shadow: 0 12px 40px rgba(12, 18, 32, 0.2);
    position: relative;
    overflow: hidden;
}
.compare-col.ours::after {
    content: '';
    position: absolute;
    top: -60%; right: -40%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.compare-col-header {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0,0,0,0.06);
}
.compare-col.other .compare-col-header {
    color: var(--muted);
}
.compare-col.ours .compare-col-header {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.12);
}
.compare-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    position: relative;
}
.compare-row + .compare-row {
    border-top: 1px solid rgba(0,0,0,0.04);
}
.compare-col.ours .compare-row + .compare-row {
    border-top-color: rgba(255,255,255,0.06);
}
.compare-x {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.08);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}
.compare-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1px;
}
.compare-row p {
    font-size: 0.86rem;
    line-height: 1.55;
}
.compare-col.other .compare-row p { color: var(--muted); }
.compare-col.ours .compare-row p { color: var(--light); }
.compare-col.ours .compare-row p strong { color: var(--white); }

/* === JOURNEY BLOCK === */
.journey-block {
    margin-bottom: 60px;
    text-align: center;
}
.journey-block h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.journey-sub {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.journey-track {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 80px;
}
.journey-line {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #6366f1, var(--green));
    border-radius: 2px;
    z-index: 0;
}
.journey-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}
.journey-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--accent);
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}
.journey-step:nth-child(3) .journey-dot { border-color: #6366f1; }
.journey-step:nth-child(4) .journey-dot { border-color: #8b5cf6; }
.journey-step:nth-child(5) .journey-dot { border-color: #6366f1; }
.journey-step:nth-child(6) .journey-dot { border-color: var(--green); }
.journey-step:nth-child(7) .journey-dot {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
}
.journey-content {
    text-align: center;
    max-width: 140px;
}
.journey-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--pink-soft);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}
.journey-step:nth-child(3) .journey-tag { color: #6366f1; background: #eef2ff; }
.journey-step:nth-child(4) .journey-tag { color: #8b5cf6; background: #f3e8ff; }
.journey-step:nth-child(5) .journey-tag { color: #6366f1; background: #eef2ff; }
.journey-step:nth-child(6) .journey-tag { color: #8b5cf6; background: #f3e8ff; }
.journey-step:nth-child(7) .journey-tag,
.journey-tag.finish { color: var(--white); background: var(--green); font-weight: 700; }
.journey-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--midnight);
}
.journey-content p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
}
.journey-proof {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}
.journey-proof-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 100px;
    padding: 8px 20px 8px 8px;
    font-size: 0.8rem;
    color: var(--slate);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.journey-proof-card .story-avatar {
    width: 32px; height: 32px;
    font-size: 0.7rem;
}
.journey-proof-card strong {
    color: var(--midnight);
}

@media (max-width: 900px) {
    .compare-grid { grid-template-columns: 1fr; }
    .journey-track { flex-direction: column; align-items: flex-start; padding-left: 40px; padding-bottom: 0; }
    .journey-line { top: 0; bottom: 0; left: 18px; right: auto; width: 3px; height: auto; }
    .journey-step { flex-direction: row; align-items: flex-start; gap: 20px; }
    .journey-dot { margin-bottom: 0; flex-shrink: 0; }
    .journey-content { text-align: left; max-width: none; }
    .journey-proof { position: static; transform: none; flex-direction: column; align-items: flex-start; margin-top: 24px; padding-left: 0; }
}

/* === TRANSFORMATION === */
.transformation { padding: 100px 0; background: var(--white); }
.transformation-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.transformation-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.transformation-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.story-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.story-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient);
    border-radius: 4px 0 0 4px;
}
.story-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.story-avatar {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--slate));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-glow);
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.2rem;
    overflow: hidden;
}
.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-meta h4 { font-size: 1rem; }
.story-meta span { font-size: 0.78rem; color: var(--muted); }
.story-card > p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.story-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--green);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 100px;
}

/* === FEEDBACK GRID (real testimonials) === */
.feedback-section {
    position: relative;
}
.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: hidden;
}
.feedback-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    display: none;
    flex-direction: column;
    transition: all 0.3s ease;
}
.feedback-card.visible {
    display: flex;
}
.feedback-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feedback-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--slate);
    flex-grow: 1;
    margin-bottom: 16px;
}
.feedback-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.feedback-author .story-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
    flex-shrink: 0;
}
.feedback-author strong {
    display: block;
    font-size: 0.84rem;
    color: var(--midnight);
}
.feedback-author span {
    font-size: 0.74rem;
    color: var(--accent);
    font-weight: 500;
}
.feedback-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.feedback-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--midnight);
}
.feedback-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--pink-soft);
}
.feedback-btn:disabled {
    opacity: 0.3;
    cursor: default;
}
.feedback-dots {
    display: flex;
    gap: 8px;
}
.feedback-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.feedback-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}
@media (max-width: 900px) {
    .feedback-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .feedback-grid { grid-template-columns: 1fr; }
}

/* === CURRICULUM === */
.curriculum { padding: 100px 0; background: var(--cream); }
.curriculum-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.curriculum-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.curriculum-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.exam-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--green);
}

.curriculum-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.curriculum-track {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.curriculum-track.digital { border: 2px solid rgba(59, 130, 246, 0.12); }
.curriculum-track.java { border: 2px solid rgba(214, 51, 108, 0.12); }

.track-photo {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}
.track-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.track-badge.blue { background: var(--blue-soft); color: var(--blue); }
.track-badge.amber { background: var(--pink-soft); color: var(--accent-warm); }

.curriculum-track h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 6px;
}
.curriculum-track > p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}
.topic-list { list-style: none; }
.topic-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
}
.topic-list li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

.project-callout {
    margin-top: 40px;
    background: var(--midnight);
    border-radius: 20px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.project-callout::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.1) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
}
.project-text { position: relative; }
.project-text h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.project-text p { font-size: 0.9rem; color: var(--soft); line-height: 1.7; }

.project-milestones {
    list-style: none;
    position: relative;
}
.project-milestone {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.project-milestone:last-child { border-bottom: none; }
.pm-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.pm-icon.done { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.pm-icon.star { background: rgba(214, 51, 108, 0.15); color: var(--accent-glow); }
.project-milestone .pm-text {
    font-size: 0.82rem;
    color: var(--light);
    line-height: 1.4;
    padding-top: 4px;
}
.project-milestone .pm-text strong { color: var(--white); }
.project-milestone .pm-text small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 2px;
}

/* === JOURNEY === */
.journey { padding: 100px 0; background: var(--white); }
.journey-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.journey-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.journey-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }

.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 28px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #a8156e, var(--accent), var(--accent-glow), var(--green));
}
.timeline-step {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
}
.timeline-step:last-child { margin-bottom: 0; }
.timeline-dot {
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--midnight);
    position: relative;
    z-index: 1;
}
.timeline-step:nth-child(1) .timeline-dot { background: var(--pink-soft); }
.timeline-step:nth-child(2) .timeline-dot { background: #f8bbd0; }
.timeline-step:nth-child(3) .timeline-dot { background: #d1fae5; }
.timeline-step:nth-child(4) .timeline-dot { background: #dbeafe; }
.timeline-step:nth-child(5) .timeline-dot { background: #e0e7ff; }
.timeline-content {
    background: var(--cream);
    border-radius: 14px;
    padding: 22px 26px;
    flex: 1;
    border: 1px solid rgba(0,0,0,0.04);
}
.timeline-content h4 { font-size: 1rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* === WHY JAVA === */
.why-java { padding: 100px 0; background: var(--cream); }
.why-java-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.java-left h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 20px;
}
.java-left > p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.java-benefit { display: flex; gap: 16px; margin-bottom: 24px; }
.java-benefit .icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    background: var(--pink-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.java-benefit h4 { font-size: 0.95rem; margin-bottom: 4px; }
.java-benefit p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.java-right { position: relative; }
.java-photo {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.java-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.java-comparison {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
}
.java-comparison h4 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
    text-align: center;
}
.comparison-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row .lang {
    width: 70px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate);
}
.comparison-bar {
    flex: 1;
    height: 26px;
    background: rgba(0,0,0,0.04);
    border-radius: 8px;
    overflow: hidden;
}
.comparison-bar .fill {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--white);
}
.comparison-bar .fill.java { background: var(--gradient); width: 95%; }
.comparison-bar .fill.python { background: #6366f1; width: 60%; }
.comparison-bar .fill.cpp { background: #64748b; width: 45%; }
.comparison-bar .fill.pascal { background: #94a3b8; width: 25%; }
.comparison-note {
    text-align: center;
    margin-top: 14px;
    font-size: 0.72rem;
    color: var(--muted);
    font-style: italic;
}

/* === PRICING === */
.pricing {
    padding: 100px 0;
    background: var(--midnight);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.pricing::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.06) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    position: relative;
}
.pricing-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.pricing-header p { color: var(--soft); font-size: 1.05rem; line-height: 1.7; }

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.price-card {
    background: rgba(255,255,255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
}
.price-card:hover {
    border-color: rgba(214, 51, 108, 0.3);
    background: rgba(255,255,255, 0.06);
}
.price-card.featured {
    border-color: var(--accent);
    background: rgba(214, 51, 108, 0.06);
}
.price-card.featured::before {
    content: 'Economisești 20%';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}
.price-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; }
.price-card .desc { font-size: 0.85rem; color: var(--soft); margin-bottom: 24px; line-height: 1.5; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-amount .value { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--white); }
.price-amount .currency { font-size: 1.2rem; color: var(--accent-glow); font-weight: 600; }
.price-amount .period { font-size: 0.85rem; color: var(--muted); }
.price-total {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-total strong { color: var(--soft); }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--light);
    padding: 6px 0;
}
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; }
.price-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.price-btn.outline { border: 2px solid rgba(255,255,255,0.2); color: var(--white); }
.price-btn.outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.price-btn.filled {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(214, 51, 108, 0.3);
}
.price-btn.filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214, 51, 108, 0.4);
}
.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--soft);
    position: relative;
}

/* Simplified pricing */
.pricing-simple {
    max-width: 520px;
    margin: 0 auto;
}
.pricing-simple-card {
    background: linear-gradient(145deg, var(--deep), var(--navy));
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-simple-card::after {
    content: '';
    position: absolute;
    top: -60%; right: -40%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.pricing-from {
    font-size: 0.9rem;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.pricing-main-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.pricing-main-amount .value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--white);
}
.pricing-main-amount .currency {
    font-size: 1.3rem;
    color: var(--accent-glow);
    font-weight: 600;
}
.pricing-main-amount .period {
    font-size: 0.95rem;
    color: var(--soft);
}
.pricing-flexible {
    font-size: 0.85rem;
    color: var(--soft);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.pricing-includes {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.pricing-include-item {
    font-size: 0.88rem;
    color: var(--light);
    line-height: 1.5;
    padding-left: 4px;
}
.pricing-trial-note {
    font-size: 0.8rem;
    color: var(--soft);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

@media (max-width: 600px) {
    .pricing-simple-card { padding: 36px 24px; }
    .pricing-main-amount .value { font-size: 2.8rem; }
}

/* === FAQ === */
.objections { padding: 100px 0; background: var(--white); }
.objections-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}
.objections-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.objections-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--midnight);
    text-align: left;
    line-height: 1.4;
    gap: 20px;
}
.faq-question:hover { color: var(--accent-warm); }
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--slate);
    transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* === FINAL CTA === */
.final-cta {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(214, 51, 108, 0.1) 0%, transparent 70%);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.final-cta h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.25;
    margin-bottom: 16px;
    position: relative;
}
.final-cta > .container > p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    position: relative;
}
.final-cta .btn-primary { font-size: 1.1rem; padding: 18px 40px; position: relative; }
.final-cta-sub { margin-top: 20px; font-size: 0.82rem; color: var(--muted); position: relative; }

/* === YOUTUBE CLICK-TO-PLAY === */
.yt-thumb {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: var(--midnight);
    overflow: hidden;
}
.yt-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.5s ease;
}
.yt-thumb:hover img {
    opacity: 1;
    transform: scale(1.03);
}
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.yt-thumb:hover .yt-play {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}
.yt-play svg {
    width: 100%;
    height: 100%;
}
.video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === COMPACT VIDEO GRID === */
.video-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.video-card-mini {
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.video-card-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.video-card-mini::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-card-mini:hover::after { opacity: 1; }
.mini-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    background: var(--midnight);
    overflow: hidden;
}
.mini-wrap .yt-thumb {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.mini-wrap .yt-play {
    width: 48px;
    height: 34px;
}
.mini-wrap iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; border: none;
}
.video-card-mini > span {
    display: block;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    text-align: center;
    line-height: 1.3;
}
@media (max-width: 900px) {
    .video-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .video-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mini-wrap { padding-bottom: 120%; }
}

/* === CAROUSEL === */
.carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}
.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.carousel-slide.active {
    display: block;
    opacity: 1;
}
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--white);
    color: var(--midnight);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.carousel-btn:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.08);
}
.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dots .dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 100px;
}
.carousel-names {
    text-align: center;
    margin-top: 16px;
    height: 24px;
    position: relative;
}
.carousel-name {
    display: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}
.carousel-name.active {
    display: inline;
}

/* === VIDEO SECTIONS === */
.video-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.video-section.bg-white { background: var(--white); }
.video-section.bg-cream { background: var(--cream); }
.video-section.bg-dark {
    background: linear-gradient(145deg, var(--deep), var(--navy));
    color: var(--white);
}
.video-section.bg-dark .section-label::before { background: var(--accent-glow); }
.video-section.bg-dark .section-label { color: var(--accent-glow); }
.video-section.bg-dark p { color: var(--soft); }

.video-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}
.video-section-header h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
}
.video-section-header p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}
.video-section.bg-dark .video-section-header p { color: var(--soft); }

.video-grid {
    display: grid;
    gap: 24px;
}
.video-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.video-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.video-grid.cols-1-2 { grid-template-columns: 1fr 1fr; }
.video-grid.cols-1-2 .video-card { display: flex; flex-direction: column; }
.video-grid.cols-1-2 .video-caption { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; }
.video-grid.cols-2-1 { grid-template-columns: 1fr 1.5fr; }

.video-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    background: var(--white);
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.video-section.bg-dark .video-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 35px rgba(0,0,0,0.2);
}
.video-section.bg-dark .video-card:hover {
    border-color: rgba(214, 51, 108, 0.3);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.video-card .video-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--midnight);
}
.video-card .video-wrap.landscape {
    padding-bottom: 56.25%; /* 16:9 */
}
.video-card .video-wrap.portrait {
    padding-bottom: 177.78%; /* 9:16 */
    max-height: 420px;
}
.video-card .video-caption {
    padding: 18px 22px;
}
.video-card .video-caption h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 4px;
}
.video-card .video-caption p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
}
.video-section.bg-dark .video-card .video-caption h4 { color: var(--white); }
.video-section.bg-dark .video-card .video-caption p { color: var(--soft); }

/* Featured video - larger, centered */
.video-featured {
    max-width: 800px;
    margin: 0 auto;
}
.video-featured .video-card {
    border: 2px solid rgba(214, 51, 108, 0.12);
}
.video-featured .video-card:hover {
    border-color: rgba(214, 51, 108, 0.25);
}

/* Shorts grid - constrain height */
.video-grid.shorts {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}
.video-grid.shorts .video-card .video-wrap {
    padding-bottom: 177.78%;
    max-height: 380px;
}

/* Video accent strip */
.video-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.video-card:hover::after { opacity: 1; }

@media (max-width: 900px) {
    .video-grid.cols-2,
    .video-grid.cols-3,
    .video-grid.cols-1-2,
    .video-grid.cols-2-1 { grid-template-columns: 1fr; }
    .video-grid.shorts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .video-grid.shorts { grid-template-columns: 1fr; max-width: 300px; }
    .video-section { padding: 60px 0; }
}

/* === LOCATIONS === */
.locations {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.locations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.locations-left h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.locations-left > p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.location-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--cream);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.location-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.loc-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.loc-chisinau { background: var(--gradient); }
.loc-balti { background: linear-gradient(135deg, var(--accent-warm), var(--accent-glow)); }
.loc-online { background: linear-gradient(135deg, var(--blue), #6366f1); }
.location-card h4 { font-size: 0.95rem; margin-bottom: 3px; color: var(--midnight); }
.location-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

.location-quote {
    padding: 20px 24px;
    background: rgba(214, 51, 108, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
}
.location-quote p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 6px;
}
.location-quote span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
}

/* Map */
.map-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.moldova-map {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Country shape - using mapdata state_color #f3d5e8 */
.map-country {
    fill: #f3d5e8;
    stroke: #c4749a;
    stroke-width: 1.8;
    stroke-linejoin: round;
}

/* City region highlights - using mapdata #9c214b */
.city-region {
    fill: #9c214b;
    opacity: 0.22;
}

/* Connection line */
.city-connect {
    stroke: #9c214b;
    stroke-width: 1.8;
    stroke-dasharray: 5, 5;
    stroke-opacity: 0.4;
}

/* Pin animations */
.pin-pulse-ring {
    fill: none;
    stroke: #9c214b;
    stroke-width: 1.5;
    stroke-opacity: 0.3;
    animation: pingRing 3s ease-out infinite;
    transform-origin: center;
}
.pin-balti .pin-pulse-ring { animation-delay: 1.5s; }

.pin-ring-inner {
    fill: rgba(156, 33, 75, 0.1);
    stroke: #9c214b;
    stroke-width: 1.5;
    stroke-opacity: 0.5;
}
.pin-dot {
    fill: #9c214b;
    filter: drop-shadow(0 0 8px rgba(156, 33, 75, 0.7));
}
.pin-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    fill: var(--slate);
}
.pin-label-main {
    font-size: 14px;
    font-weight: 700;
    fill: var(--midnight);
}
.pin-sublabel {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    fill: var(--muted);
}

@keyframes pingRing {
    0% { r: 18; stroke-opacity: 0.5; }
    100% { r: 45; stroke-opacity: 0; }
}

/* Online rings around map */
.online-ring {
    fill: none;
    stroke: var(--blue);
    stroke-width: 0.8;
    stroke-dasharray: 4, 10;
    stroke-opacity: 0;
    animation: onlineWave 5s ease-out infinite;
}
.online-ring.r2 { animation-delay: 1.7s; }
.online-ring.r3 { animation-delay: 3.4s; }

@keyframes onlineWave {
    0% { stroke-opacity: 0.12; }
    50% { stroke-opacity: 0.06; }
    100% { stroke-opacity: 0; }
}

/* Online badge */
.map-online-badge {
    position: absolute;
    top: 16px;
    right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--muted);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: float 3s ease-in-out infinite;
}
.map-online-badge span {
    font-weight: 700;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}
.online-pulse {
    width: 10px; height: 10px;
    background: var(--blue);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.online-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    animation: pulse 2s infinite;
}

@media (max-width: 900px) {
    .locations-layout { grid-template-columns: 1fr; gap: 40px; }
    .locations-right { order: -1; }
    .moldova-map { max-width: 240px; }
}

/* === CONTACT FORM === */
.contact-form-section {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}
.contact-form-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(168, 21, 110, 0.1) 0%, transparent 70%);
    top: -200px; left: -200px;
    pointer-events: none;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-left { color: var(--white); }
.contact-left .section-label { color: var(--accent-glow); }
.contact-left .section-label::before { background: var(--accent-glow); }
.contact-left h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 16px;
}
.contact-left > p {
    color: var(--soft);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-perk {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cp-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.contact-perk strong {
    display: block;
    font-size: 0.92rem;
    color: var(--white);
    margin-bottom: 2px;
}
.contact-perk small {
    font-size: 0.8rem;
    color: var(--soft);
}

/* Form Card */
.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: var(--gradient);
}
.form-content h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 4px;
}
.form-content > p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--midnight);
    background: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    resize: vertical;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(214, 51, 108, 0.1);
    background-color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--soft);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(214, 51, 108, 0.3);
    margin-top: 8px;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(214, 51, 108, 0.4);
}
.form-submit:active {
    transform: translateY(0);
}
.form-submit.loading {
    opacity: 0.7;
    pointer-events: none;
}
.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--muted);
}

/* Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    animation: fadeUp 0.5s ease both;
}
.form-success h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
    .form-card { padding: 28px 20px; }
}

/* === FOOTER === */
:where(#jdn1-landing) .footer {
    background: var(--midnight);
    color: var(--muted);
    padding: 40px 0;
    text-align: center;
    font-size: 0.82rem;
}
:where(#jdn1-landing) .footer a { color: var(--accent-glow); text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    :where(#jdn1-landing) .hero .container,
    :where(#jdn1-landing) .why-layout,
    :where(#jdn1-landing) .curriculum-layout,
    :where(#jdn1-landing) .why-java-layout,
    :where(#jdn1-landing) .pricing-cards { grid-template-columns: 1fr; gap: 40px; }
    :where(#jdn1-landing) .trust-chain { flex-direction: column; gap: 8px; }
    :where(#jdn1-landing) .chain-step { max-width: 100%; width: 100%; }
    :where(#jdn1-landing) .chain-arrow { transform: rotate(90deg); padding: 0; }
    :where(#jdn1-landing) .impact-block { flex-direction: column; text-align: center; padding: 28px 24px; }
    :where(#jdn1-landing) .impact-number { font-size: 3rem; }
    :where(#jdn1-landing) .hero h1 { font-size: 2.2rem; }
    :where(#jdn1-landing) .problem-grid { grid-template-columns: 1fr; }
    :where(#jdn1-landing) .problem-stat-bar { grid-template-columns: 1fr; gap: 24px; }
    :where(#jdn1-landing) .stories-grid { grid-template-columns: 1fr; }
    :where(#jdn1-landing) .hero-stats { flex-direction: column; gap: 16px; }
    :where(#jdn1-landing) h2 { font-size: 1.8rem !important; }
    :where(#jdn1-landing) .hero { padding: 50px 0 70px; }
    :where(#jdn1-landing) .hero-collage {
        height: 380px;
        align-self: auto;
        order: -1;
    }
    :where(#jdn1-landing) .hero-photo.main { width: 300px; height: 340px; left: -10px; }
    :where(#jdn1-landing) .hero-photo.secondary { width: 200px; height: 180px; }
    :where(#jdn1-landing) .hero-photo.tertiary { width: 180px; height: 200px; }
    :where(#jdn1-landing) .hero-quote-float { display: none; }
    :where(#jdn1-landing) .project-callout { grid-template-columns: 1fr; }
    :where(#jdn1-landing) .nav-cta { display: none; }
    :where(#jdn1-landing) .nav-hamburger { display: flex; }
    :where(#jdn1-landing) .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-top: 1px solid rgba(0,0,0,0.06);
        box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    }
    :where(#jdn1-landing) .nav-links.open { display: flex; }
    :where(#jdn1-landing) .nav-links a {
        padding: 12px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    :where(#jdn1-landing) .nav-links a:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
    :where(#jdn1-landing) .hero h1 { font-size: 1.8rem; }
    :where(#jdn1-landing) .hero-actions { flex-direction: column; align-items: stretch; }
    :where(#jdn1-landing) .btn-primary { justify-content: center; }
    :where(#jdn1-landing) .topbar { font-size: 0.72rem; }
    :where(#jdn1-landing) .hero-collage { height: 300px; align-self: auto; }
    :where(#jdn1-landing) .hero-photo.main { width: 240px; height: 280px; left: 0; }
    :where(#jdn1-landing) .hero-photo.secondary { width: 150px; height: 150px; }
    :where(#jdn1-landing) .hero-photo.tertiary { display: none; }
    :where(#jdn1-landing) .hero-badge { display: none; }
    :where(#jdn1-landing) .strip-photo { width: 220px; height: 150px; }
}

/* === RECOGNITION BLOCK === */
.recognition-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fff5f7 0%, #fef3ec 100%);
    border-left: 4px solid var(--accent);
    border-radius: 0 16px 16px 0;
    padding: 32px 36px;
    margin: 40px 0 48px;
}
.recognition-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.recognition-lead {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--midnight);
    margin-bottom: 10px;
}
.recognition-text p:last-child {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .recognition-block { flex-direction: column; gap: 12px; padding: 24px 20px; }
}

/* === PARENT RESOURCES === */
.parent-resources {
    padding: 80px 0;
    background: var(--cream);
}
.resources-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.resources-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--midnight);
    margin-bottom: 12px;
}
.resources-header p {
    color: var(--muted);
    font-size: 0.95rem;
}
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.resource-card {
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(214, 51, 108, 0.15);
}
.resource-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.resource-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.resource-card:hover .resource-img img {
    transform: scale(1.05);
}
.resource-img .resource-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    margin-bottom: 0;
}
.resource-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.resource-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.resource-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.4;
    color: var(--midnight);
    margin-bottom: 10px;
}
.resource-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
    flex-grow: 1;
}
.resource-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 16px;
    transition: color 0.2s ease;
}
.resource-card:hover .resource-link { color: var(--accent-warm); }
@media (max-width: 900px) {
    .resources-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* === QUICK FORM MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 18, 32, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.open {
    display: flex;
    opacity: 1;
}
.modal-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    max-width: 420px;
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.open .modal-card {
    transform: translateY(0);
}
.modal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
    background: var(--gradient);
}
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.modal-close:hover { background: var(--light); color: var(--midnight); }
.modal-card .form-content h3 { font-size: 1.3rem; }
.modal-card .form-note { font-size: 0.73rem; }
.modal-card .modal-social-proof {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.6;
}
@media (max-width: 600px) {
    .modal-card { padding: 28px 20px; }
}

/* === ARTICLE MODAL === */
.article-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(12, 18, 32, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.article-overlay.open {
    display: flex;
    opacity: 1;
}
.article-modal {
    background: var(--white);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    max-width: 760px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.article-overlay.open .article-modal {
    transform: translateY(0);
}
.article-modal::before {
    content: '';
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    height: 4px;
    background: var(--gradient);
    z-index: 2;
    border-radius: 20px 20px 0 0;
}
.article-modal-close {
    position: sticky;
    top: 16px;
    float: right;
    margin-right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 3;
}
.article-modal-close:hover { background: var(--light); color: var(--midnight); }
.article-modal-body { padding: 0 48px 48px; }
.article-content { display: none; }
.article-content.active { display: block; }
.article-content .article-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gradient);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.article-content h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.3;
    color: var(--midnight);
    margin-bottom: 16px;
}
.article-content .article-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.article-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--midnight);
    margin-top: 28px;
    margin-bottom: 10px;
}
.article-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 14px;
}
.article-content ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 18px;
}
.article-content ul li {
    position: relative;
    padding-left: 24px;
    font-size: 0.93rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 8px;
}
.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient);
}
.article-content ul li strong { color: var(--midnight); }
.article-cta {
    margin-top: 36px;
    padding: 28px;
    background: linear-gradient(135deg, #fdf2f8, #eef2ff);
    border-radius: 16px;
    text-align: center;
}
.article-cta p {
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 16px;
}
.article-cta-btn {
    display: inline-flex;
}
#jdn1-landing .resource-card { cursor: pointer; }
@media (max-width: 600px) {
    .article-modal-body { padding: 0 20px 32px; }
    .article-content h2 { font-size: 1.4rem; }
    .article-modal-close { margin-right: 8px; }
}

/* === STICKY MOBILE CTA === */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta a {
    display: block;
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
}
@media (max-width: 900px) {
    :where(#jdn1-landing) .sticky-cta { display: block; }
    :where(#jdn1-landing){ padding-bottom: 70px; }
}

/* === PRICING TIERS (moved from inline styles) === */
:where(#jdn1-landing) h2 { margin-top: 2rem; font-size: 1.4rem; color: #333; }
:where(#jdn1-landing) .tiers-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
:where(#jdn1-landing) .tier { background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
:where(#jdn1-landing) .tier-header { padding: 1rem; color: #fff; min-height: 4.5rem; display: flex; flex-direction: column; justify-content: center; }
:where(#jdn1-landing) .tier-header.yellow { background-color: #f4c72e; color: #333; }
:where(#jdn1-landing) .tier-header.pink   { background-color: #5bbab4; }
:where(#jdn1-landing) .tier-header.teal   { background-color: #ef729c; }
:where(#jdn1-landing) .tier-header.gray   { background-color: #ddd; color: #333; }
:where(#jdn1-landing) .tier-header h3 { margin: 0; font-size: 1.2rem; }
:where(#jdn1-landing) .tier-header .period { margin-top: 0.5rem; font-size: 0.9rem; }
:where(#jdn1-landing) .tier-body { padding: 1rem; }
:where(#jdn1-landing) .discount-badge { display: block; width: 100%; text-align: center; margin: 0.5rem 0 1rem; padding: 0.75rem 0; font-size: 1.4rem; font-weight: bold; border-radius: 4px; }
:where(#jdn1-landing) .tier:nth-child(1) .discount-badge { background: #f4c72e; color: #333; }
:where(#jdn1-landing) .tier:nth-child(2) .discount-badge { background: #5bbab4; color: #fff; }
:where(#jdn1-landing) .tier:nth-child(3) .discount-badge { background: #ef729c; color: #fff; }
:where(#jdn1-landing) .tier:nth-child(4) .discount-badge { background: #aaa; color: #fff; font-size: 1rem; }
:where(#jdn1-landing) .prices { margin-top: 1rem; }
:where(#jdn1-landing) .price-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #eee; }
:where(#jdn1-landing) .price-row:last-child { border-bottom: none; }
:where(#jdn1-landing) .price-row span { font-size: 1rem; }
:where(#jdn1-landing) .price-value { font-weight: bold; }

@media (max-width: 1024px) { :where(#jdn1-landing) .tiers-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { :where(#jdn1-landing) .tiers-container { grid-template-columns: 1fr; } :where(#jdn1-landing) .tier-header { min-height: auto; padding: 0.75rem; } :where(#jdn1-landing) .tier-header h3 { font-size: 1rem; } :where(#jdn1-landing) .tier-header .period { font-size: 0.8rem; } :where(#jdn1-landing) .discount-badge { font-size: 1.2rem; padding: 0.5rem 0; } :where(#jdn1-landing) .price-row span { font-size: 0.9rem; } }