/* ═══════════════════════════════════════════
   VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
    --blue-light: #007ac2;
    --blue-medium: #00416e;
    --blue-dark: #24375d;
    --blue-darker: #012340;
    --yellow: #ffbf35;
    --yellow-dark: #d4940a;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --red-100: #fee2e2;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 2rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
}

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

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

body {
    font-family: 'Lato', system-ui, -apple-system, sans-serif;
    color: var(--blue-darker);
    background: var(--slate-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════ */
.cookie-overlay {
    position: fixed; inset: 0;
    background: rgba(1, 35, 64, 0.6);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 1; visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.cookie-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cookie-popup {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 440px; width: 100%;
    padding: 40px 32px 32px; text-align: center;
    box-shadow: var(--shadow-xl);
}
.cookie-icon { margin: 0 auto 16px; width: 56px; height: 56px; background: var(--slate-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue-light); }
.cookie-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 8px; }
.cookie-text { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 24px; line-height: 1.6; }
.cookie-text a { color: var(--blue-light); text-decoration: underline; }
.cookie-buttons { display: flex; flex-direction: column; gap: 10px; }
.cookie-accept {
    padding: 14px 24px; background: #16a34a; color: white;
    font-weight: 700; font-size: 0.95rem; border-radius: 12px;
    transition: background 0.2s;
}
.cookie-accept:hover { background: #15803d; }
.cookie-refuse {
    padding: 12px 24px; background: transparent; color: var(--slate-400);
    font-weight: 600; font-size: 0.85rem; border-radius: 12px;
    border: 1px solid var(--slate-200); transition: all 0.2s;
}
.cookie-refuse:hover { border-color: var(--slate-400); color: var(--slate-600); }

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════ */
/* announce-bar removed */

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.pze-nav {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 50; padding: 20px 24px;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}
.nav-logo img { height: 40px; }

@media (min-width: 768px) {
    .nav-inner { justify-content: space-between; }
}
.nav-cta {
    display: none; padding: 12px 24px;
    background: var(--white); color: var(--blue-darker);
    font-weight: 700; font-size: 0.85rem; border-radius: 99px;
    box-shadow: var(--shadow-lg); transition: background 0.2s;
}
.nav-cta:hover { background: var(--yellow); }

@media (min-width: 768px) {
    .nav-cta { display: inline-flex; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero-pze {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 20px 60px; overflow: hidden;
    background: var(--blue-darker);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: 0.2; }
@media (min-width: 768px) {
    .hero-bg-img { object-position: center center; }
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(1, 35, 64, 0.75); mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 10; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-layout {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; margin-bottom: 48px;
}

/* Big 0 */
.hero-zero-wrap { position: relative; display: inline-block; }
.hero-zero {
    font-size: clamp(12rem, 30vw, 28rem);
    font-weight: 900; color: white; line-height: 0.85;
    letter-spacing: -0.05em;
}
.float-block { position: absolute; background: var(--blue-light); box-shadow: var(--shadow-lg); }
.fb-1 { width: 24px; height: 24px; top: 20%; left: -10px; transform: rotate(-12deg); animation: floatA 5s ease-in-out infinite; }
.fb-2 { width: 16px; height: 16px; top: 5%; right: 25%; background: var(--yellow); transform: rotate(45deg); animation: floatB 4s ease-in-out infinite 1s; }
.fb-3 { width: 20px; height: 20px; top: 45%; right: -8px; transform: rotate(12deg); animation: floatA 6s ease-in-out infinite 0.5s; }
.fb-4 { width: 28px; height: 28px; bottom: 10%; right: -6px; background: var(--yellow); transform: rotate(-12deg); animation: floatB 5.5s ease-in-out infinite 1.5s; z-index: 10; }

@keyframes floatA { 0%, 100% { transform: translateY(0) rotate(-12deg); } 50% { transform: translateY(-12px) rotate(-5deg); } }
@keyframes floatB { 0%, 100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(12px) rotate(55deg); } }

/* Hero Text */
.hero-text {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; color: white; z-index: 20;
}
.hero-word {
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 900; line-height: 0.85;
    letter-spacing: -0.02em; text-transform: uppercase;
}
.hero-offert {
    background: var(--blue-light); color: white;
    padding: 8px 32px; margin-top: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255,255,255,0.2);
    display: inline-block;
}
.hero-offert span {
    display: block;
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 900; line-height: 1; letter-spacing: -0.02em;
}
.hero-highlights {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap; width: 100%;
    color: var(--yellow); font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 600; letter-spacing: 0.02em;
    margin-bottom: 32px; text-transform: uppercase;
}
.highlight-big { font-weight: 900; font-size: 1.6em; color: white; }
.highlight-sep { opacity: 0.5; font-size: 1.2em; }

@media (min-width: 1024px) {
    .hero-layout { flex-direction: row; justify-content: center; gap: 80px; }
    .hero-text { align-items: flex-start; text-align: left; }
    .fb-1 { width: 50px; height: 50px; left: -50px; }
    .fb-2 { width: 28px; height: 28px; }
    .fb-3 { width: 45px; height: 45px; right: -60px; }
    .fb-4 { width: 70px; height: 70px; right: -30px; }
}

/* Features Bar */
.features-bar {
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; max-width: 900px; margin: 0 auto;
}
.features-main {
    width: 100%;
    border: 3px solid var(--yellow); border-radius: var(--radius-xl);
    padding: 24px; display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; background: rgba(1, 35, 64, 0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl);
}
.feature-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 8px; color: white;
}
.feature-item span { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }
.feature-item svg { width: 32px; height: 32px; }

.features-plus {
    color: var(--blue-light); font-size: 2.5rem; font-weight: 900;
    display: none;
}
.features-bonus {
    width: 100%; display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 28px;
    background: rgba(1, 35, 64, 0.6); backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(0, 122, 194, 0.5);
    position: relative; color: white; box-shadow: var(--shadow-xl);
}
.features-bonus span { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; margin-top: 8px; line-height: 1.4; }
.bonus-tag {
    position: absolute; bottom: -16px;
    background: var(--yellow); color: var(--blue-darker);
    font-weight: 900; padding: 6px 16px;
    transform: rotate(3deg); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    box-shadow: var(--shadow-md); border: 2px solid var(--blue-darker);
}

@media (min-width: 768px) {
    .features-main { grid-template-columns: repeat(4, 1fr); padding: 32px; }
    .feature-item svg { width: 40px; height: 40px; }
    .feature-item span { font-size: 0.7rem; }
}
@media (min-width: 1200px) {
    .features-bar { flex-direction: row; max-width: 1100px; }
    .features-plus { display: block; }
    .features-bonus { width: auto; min-width: 200px; }
}

/* Hero CTA */
.hero-cta-wrap {
    margin-top: 48px; display: flex; flex-direction: column;
    align-items: center; max-width: 400px; margin-left: auto; margin-right: auto;
}
.hero-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 18px 32px;
    background: var(--yellow); color: var(--blue-darker);
    font-weight: 900; font-size: 1.1rem; border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(255, 191, 53, 0.3);
    transition: all 0.3s;
}
.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 191, 53, 0.5);
}
.hero-urgency {
    margin-top: 16px; display: flex; align-items: center; gap: 6px;
    color: var(--yellow); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.02em;
}
.hero-urgency strong { font-weight: 900; }

/* Countdown */
.countdown {
    display: flex; gap: 10px; margin-top: 14px;
    justify-content: center;
}
.cd-item {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,191,53,0.3);
    border-radius: 10px; padding: 10px 14px; min-width: 64px;
    display: flex; flex-direction: column; align-items: center;
    backdrop-filter: blur(8px);
}
.cd-num { font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; letter-spacing: -0.02em; }
.cd-lbl { font-size: 0.62rem; font-weight: 700; color: var(--yellow); text-transform: uppercase; margin-top: 4px; letter-spacing: 0.08em; }
.hero-stars {
    margin-top: 10px; display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500;
}
.hero-scope {
    margin-top: 14px; padding: 6px 14px;
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 99px;
    color: rgba(255,255,255,0.85); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.02em; white-space: nowrap;
    width: max-content; max-width: 90vw; flex-shrink: 0;
}
.hero-scope svg { color: var(--yellow); flex-shrink: 0; }

@media (max-width: 480px) {
    .hero-scope { font-size: 0.58rem; padding: 6px 10px; }
}
.stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.seen { opacity: 1; transform: translateY(0); }

.anim-scale { animation: scaleIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } }

.anim-slide { opacity: 0; transform: translateX(50px); animation: slideIn 0.5s ease forwards; animation-delay: var(--d, 0s); }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }

.anim-fade { opacity: 0; animation: fadeIn 0.5s ease forwards; animation-delay: var(--d, 0s); }
@keyframes fadeIn { to { opacity: 1; } }

.anim-up { opacity: 0; transform: translateY(30px); animation: upIn 0.8s ease forwards; animation-delay: var(--d, 0s); }
@keyframes upIn { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════
   WHY SECTION
   ═══════════════════════════════════════════ */
.why-section { padding: 80px 0; background: var(--white); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-sub { font-size: 1rem; color: var(--slate-600); font-weight: 500; }

.why-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }

.why-card {
    border-radius: var(--radius-xl); padding: 36px 28px;
    position: relative; overflow: hidden;
}
.why-problem { background: var(--slate-50); border: 1px solid var(--slate-200); }
.why-solution { background: var(--blue-darker); color: white; box-shadow: var(--shadow-xl); }

.why-icon {
    width: 56px; height: 56px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.why-icon-red { background: var(--red-100); color: var(--red-600); }
.why-icon-yellow { background: var(--yellow); color: var(--blue-darker); }

.why-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 24px; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; gap: 16px; }
.dot {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 4px;
}
.dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: var(--red-100); }
.dot-red::after { background: var(--red-500); }
.dot-yellow { background: rgba(255, 191, 53, 0.2); }
.dot-yellow::after { background: var(--yellow); }

.why-list strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.why-problem .why-list p { color: var(--slate-600); font-size: 0.9rem; }
.why-solution .why-list strong { color: white; }
.why-solution .why-list p { color: var(--slate-300); font-size: 0.9rem; }

@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .why-card { padding: 48px 40px; }
}

/* ═══════════════════════════════════════════
   MODELS SECTION
   ═══════════════════════════════════════════ */
.models-section { padding: 80px 0; background: var(--slate-50); }
.models-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.model-card {
    background: var(--white); border-radius: 16px;
    overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid var(--slate-100);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.model-badge {
    position: absolute; top: 14px; left: 14px; z-index: 5;
    background: #16a34a; color: white;
    padding: 6px 14px; border-radius: 8px;
    font-weight: 900; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.model-img-wrap { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.model-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.model-card:hover .model-img-wrap img { transform: scale(1.05); }

/* Specs overlay on image */
.model-specs {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
    display: flex; justify-content: center; gap: 16px;
    padding: 10px 16px;
    background: linear-gradient(to top, rgba(1,35,64,0.85) 0%, rgba(1,35,64,0) 100%);
}
.spec {
    display: flex; align-items: center; gap: 5px;
    color: white; font-size: 0.78rem; font-weight: 700;
}
.spec svg { color: var(--yellow); width: 15px; height: 15px; }

.model-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 0; }
.model-info h3 { font-size: 1.4rem; font-weight: 900; color: var(--blue-darker); }

.model-header { margin-bottom: 12px; }

.model-plans {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    margin-bottom: 12px;
}
.plan-item {
    border-radius: 8px; overflow: hidden;
    background: var(--slate-50); border: 1px solid var(--slate-200);
}
.plan-label {
    display: block; padding: 3px 8px;
    font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--slate-500);
    background: var(--slate-100); text-align: center;
}
.plan-item img { width: 100%; height: auto; display: block; cursor: zoom-in; transition: transform 0.3s; }
.plan-item img:hover { transform: scale(1.05); }

/* Price + CTA */
.model-bottom {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--slate-100); padding-top: 12px; margin-top: 4px;
}
.model-pricing { flex-shrink: 0; }
.model-price {
    display: flex; align-items: baseline; gap: 8px;
}
.price-old {
    color: var(--slate-500); font-size: 0.95rem; font-weight: 700;
    text-decoration: line-through; text-decoration-color: var(--red-500);
    text-decoration-thickness: 2.5px;
}
.price-new {
    color: var(--blue-darker); font-size: 1.3rem; font-weight: 900;
    display: flex; align-items: baseline; gap: 4px;
}
.price-tag {
    font-size: 0.62rem; font-weight: 700; color: var(--slate-400);
}
.model-cta {
    flex: 1; text-align: center;
    padding: 13px 16px;
    background: var(--blue-darker); color: white;
    font-weight: 700; font-size: 0.85rem; border-radius: 10px;
    transition: all 0.2s; display: block;
}
.model-cta:hover {
    background: var(--yellow); color: var(--blue-darker);
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 100000;
    background: rgba(1, 35, 64, 0.9); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s; cursor: zoom-out;
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90%; max-height: 90vh;
    border-radius: 12px; box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    object-fit: contain; background: white;
}
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: none; color: white; font-size: 2.5rem;
    line-height: 1; cursor: pointer; opacity: 0.7;
    transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.model-plan { display: none; }

@media (min-width: 640px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .models-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* Show more button — mobile only */
.models-show-more {
    display: none; margin: 24px auto 0;
    padding: 16px 28px; background: var(--yellow);
    color: var(--blue-darker); font-weight: 900; font-size: 1rem;
    border-radius: 99px; cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 191, 53, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    align-items: center; gap: 10px;
    text-transform: none;
}
.models-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 191, 53, 0.4);
}
.models-show-more svg { transition: transform 0.3s; }
.models-show-more.hidden { display: none !important; }

@media (max-width: 639px) {
    .models-show-more { display: inline-flex; }
    .models-grid > .model-card:nth-child(n+3) { display: none; }
    .models-grid.expanded > .model-card:nth-child(n+3) { display: flex; }
}

/* ═══════════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════════ */
.form-section { padding: 80px 0; background: var(--white); }
.form-wrapper {
    background: var(--blue-darker); border-radius: 2.5rem;
    overflow: hidden; box-shadow: var(--shadow-xl);
    display: flex; flex-direction: column;
}
.form-left {
    padding: 48px 28px; position: relative; overflow: hidden;
}
.form-left h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.form-left > p { color: var(--slate-300); font-size: 1rem; line-height: 1.7; }
.form-left strong { color: var(--yellow); }

.form-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 99px;
    font-weight: 700; font-size: 0.78rem;
}
.badge-yellow { background: rgba(255, 191, 53, 0.2); color: var(--yellow); }
.badge-red { background: rgba(239, 68, 68, 0.2); color: var(--red-400); border: 1px solid rgba(239, 68, 68, 0.3); }

.form-trust {
    display: none; align-items: flex-start; gap: 16px;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
    border-radius: var(--radius); padding: 20px;
    border: 1px solid rgba(255,255,255,0.1); margin-top: 32px;
}
@media (min-width: 1024px) {
    .form-trust { display: flex; }
}
.trust-icon {
    width: 48px; height: 48px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--blue-darker);
}
.form-trust strong { display: block; color: white; font-size: 1rem; }
.form-trust span { color: var(--yellow); font-size: 0.82rem; font-weight: 500; }

.form-right { background: var(--slate-50); padding: 32px 24px; }

@media (min-width: 1024px) {
    .form-wrapper { flex-direction: row; }
    .form-left { width: 42%; padding: 64px 48px; }
    .form-right { width: 58%; padding: 48px 56px; }
}

/* Progress */
.form-progress { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.fp-step {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--slate-200); color: var(--slate-400);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; transition: all 0.3s;
}
.fp-step.active, .fp-step.done { background: var(--blue-light); color: white; }
.fp-line { flex: 1; height: 3px; background: var(--slate-200); margin: 0 8px; border-radius: 2px; overflow: hidden; }
.fp-fill { height: 100%; background: var(--blue-light); width: 0; transition: width 0.5s; }
.fp-bar { display: none; }
.fp-bar-fill { display: none; }

/* Steps */
.pze-step { display: none; }
.pze-step.active { display: block; }
.pze-step h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.btn-skip {
    display: block; width: 100%; padding: 12px;
    background: transparent; color: var(--slate-400);
    font-size: 0.85rem; font-weight: 600; border-radius: 12px;
    border: 1px dashed var(--slate-300); margin-top: 8px;
    transition: all 0.2s; cursor: pointer;
}
.btn-skip:hover { border-color: var(--blue-light); color: var(--blue-light); }
.pze-step h3 + .radio-group,
.pze-step h3 + .field-row { margin-top: 20px; }

/* Radio */
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-opt {
    display: flex; align-items: center; padding: 16px 20px;
    border-radius: var(--radius); border: 2px solid var(--slate-200);
    background: var(--white); cursor: pointer; transition: all 0.2s;
}
.radio-opt:hover { border-color: rgba(0, 122, 194, 0.5); }
.radio-opt input { display: none; }
.radio-opt input:checked + .radio-circle { border-color: var(--blue-light); }
.radio-opt input:checked + .radio-circle::after { opacity: 1; transform: scale(1); }
.radio-opt input:checked ~ .radio-label { color: var(--blue-darker); }
.radio-opt:has(input:checked) { border-color: var(--blue-light); background: rgba(0, 122, 194, 0.05); }
.radio-circle {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid var(--slate-300); margin-right: 14px;
    flex-shrink: 0; position: relative; transition: border-color 0.2s;
}
.radio-circle::after {
    content: ''; position: absolute; inset: 4px;
    background: var(--blue-light); border-radius: 50%;
    opacity: 0; transform: scale(0); transition: all 0.2s;
}
.radio-label { font-weight: 700; font-size: 1rem; color: var(--blue-darker); }

/* Fields */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; }
.field input {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    border: none; box-shadow: inset 0 0 0 1px var(--slate-200);
    background: var(--white); font-size: 0.95rem; font-weight: 500;
    color: var(--blue-darker); transition: box-shadow 0.2s;
    outline: none;
}
.field input:focus { box-shadow: inset 0 0 0 2px var(--blue-light); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Buttons */
.btn-next, .btn-submit {
    width: 100%; padding: 16px; margin-top: 20px;
    background: var(--blue-darker); color: white;
    font-weight: 700; font-size: 0.95rem; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
}
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-submit {
    background: var(--yellow); color: var(--blue-darker); font-weight: 900;
    box-shadow: 0 10px 20px rgba(255, 191, 53, 0.2);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255, 191, 53, 0.3); }
.btn-submit.loading .btn-submit-text { display: none; }
.btn-submit.loading .btn-submit-loader { display: block; }
.btn-submit.loading svg { display: none; }
.btn-submit-loader {
    display: none; width: 22px; height: 22px;
    border: 3px solid rgba(1, 35, 64, 0.2); border-top-color: var(--blue-darker);
    border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-row { display: flex; gap: 12px; margin-top: 20px; }
.btn-back {
    padding: 14px 20px; background: transparent;
    color: var(--slate-500); font-weight: 700; font-size: 0.9rem;
    border-radius: 12px; transition: background 0.2s;
}
.btn-back:hover { background: var(--slate-200); }
.btn-row .btn-next, .btn-row .btn-submit { flex: 1; margin-top: 0; }

.form-privacy { text-align: center; font-size: 0.75rem; color: var(--slate-500); margin-top: 16px; font-weight: 500; }

/* Honeypot */
.field-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; opacity: 0; }

/* Success */
.form-success {
    display: none; text-align: center; padding: 40px 20px;
    min-height: 400px; flex-direction: column;
    align-items: center; justify-content: center;
}
.form-success.show { display: flex; }
.success-icon {
    width: 64px; height: 64px; margin: 0 auto 20px;
    background: rgba(0, 122, 194, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-light);
}
.form-success h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.form-success p { color: var(--slate-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.success-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 32px; background: var(--yellow); color: var(--blue-darker);
    font-weight: 900; font-size: 1rem; border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(255, 191, 53, 0.25);
}
.success-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 191, 53, 0.35); }

/* ═══════════════════════════════════════════
   EXIT POPUP
   ═══════════════════════════════════════════ */
.exit-overlay {
    position: fixed; inset: 0; background: rgba(1, 35, 64, 0.6);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.exit-overlay.show { opacity: 1; visibility: visible; }
.exit-popup {
    background: var(--white); border-radius: var(--radius-xl);
    max-width: 440px; width: 100%; position: relative;
    padding: 48px 32px 36px; text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.exit-overlay.show .exit-popup { transform: scale(1) translateY(0); }
.exit-close {
    position: absolute; top: 12px; right: 16px;
    background: none; font-size: 1.8rem; color: var(--slate-400);
    line-height: 1; transition: color 0.2s;
}
.exit-close:hover { color: var(--blue-darker); }
.exit-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    background: rgba(0, 122, 194, 0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-light);
}
.exit-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.exit-text { font-size: 0.9rem; color: var(--slate-600); margin-bottom: 24px; line-height: 1.6; }
.exit-cta {
    display: block; padding: 16px; background: var(--blue-light); color: white;
    font-weight: 700; border-radius: 12px; font-size: 1rem; transition: background 0.2s;
}
.exit-cta:hover { background: var(--blue-medium); }
.exit-sub { display: block; margin-top: 12px; font-size: 0.72rem; color: var(--slate-400); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.pze-footer {
    background: var(--blue-darker); padding: 48px 0 24px;
    color: var(--slate-400); border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
    display: flex; flex-direction: column; align-items: center;
    gap: 24px; margin-bottom: 32px;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; font-size: 0.78rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; font-size: 0.7rem; text-align: center;
}

@media (min-width: 768px) {
    .footer-top { flex-direction: row; justify-content: space-between; }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ═══════════════════════════════════════════
   WHY BAIJOT
   ═══════════════════════════════════════════ */
.why-baijot { padding: 80px 0; background: var(--white); }

.baijot-layout {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    max-width: 1100px; margin: 0 auto;
}

/* Left column : Photo + Stats */
.baijot-left { display: flex; flex-direction: column; gap: 20px; }
.baijot-photo {
    position: relative; border-radius: 20px; overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.baijot-photo img { width: 100%; height: 100%; object-fit: cover; }
.baijot-photo-overlay {
    position: absolute; bottom: 16px; left: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 99px;
    background: rgba(1, 35, 64, 0.85); color: white;
    backdrop-filter: blur(8px);
    font-size: 0.78rem; font-weight: 700;
}
.baijot-photo-overlay svg { color: var(--yellow); }

.baijot-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
    padding: 24px; background: var(--slate-50);
    border-radius: 16px; border: 1px solid var(--slate-100);
}
.bs-item { text-align: center; }
.bs-num { font-size: 1.9rem; font-weight: 900; color: var(--blue-darker); letter-spacing: -0.02em; line-height: 1; }
.bs-label { font-size: 0.72rem; font-weight: 700; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

/* Right column : Promises */
.baijot-promises {
    display: flex; flex-direction: column; gap: 14px;
}
.bp-item {
    display: flex; gap: 16px; padding: 20px;
    background: var(--slate-50); border-radius: 14px;
    border: 1px solid var(--slate-100);
    transition: border-color 0.2s, transform 0.2s;
}
.bp-item:hover { border-color: var(--yellow); transform: translateY(-2px); }
.bp-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--blue-darker); color: var(--yellow);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bp-item strong { display: block; font-size: 1rem; font-weight: 900; color: var(--blue-darker); margin-bottom: 4px; }
.bp-item p { font-size: 0.88rem; color: var(--slate-600); line-height: 1.5; }

@media (min-width: 1024px) {
    .baijot-layout { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
    .baijot-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section { padding: 80px 0; background: var(--slate-50); }
.testimonials-list {
    display: grid; grid-template-columns: 1fr; gap: 20px;
    max-width: 1100px; margin: 0 auto;
}

/* MOBILE : stacked (photo top + text below) */
.testimonial-card {
    position: relative; border-radius: 20px;
    overflow: hidden; background: var(--white);
    box-shadow: 0 4px 20px rgba(1, 35, 64, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(1, 35, 64, 0.15); }

.t-photo {
    width: 100%; aspect-ratio: 16 / 10;
    object-fit: cover; display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover .t-photo { transform: scale(1.04); }

.t-body {
    padding: 24px 22px;
    display: flex; flex-direction: column;
    color: var(--blue-darker);
}
.t-quote-mark {
    color: var(--yellow);
    margin-bottom: 10px;
    width: 28px; height: 28px;
}
.t-quote {
    font-size: 0.92rem; line-height: 1.7;
    font-style: italic; font-weight: 500;
    margin-bottom: 18px; color: var(--slate-600);
}
.t-author {
    padding-top: 14px; border-top: 1px solid var(--slate-100);
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px; flex-wrap: wrap;
}
.t-author strong { display: block; font-size: 0.92rem; color: var(--blue-darker); font-weight: 900; }
.t-author span {
    font-size: 0.72rem; color: var(--blue-light); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    display: inline-flex; align-items: center; gap: 5px;
}
.t-author span svg { flex-shrink: 0; }

/* DESKTOP : overlay style */
@media (min-width: 768px) {
    .testimonials-list { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .testimonial-card {
        aspect-ratio: 4 / 3; background: transparent;
    }
    .t-photo {
        position: absolute; inset: 0; width: 100%; height: 100%;
        aspect-ratio: auto; z-index: 1;
    }
    .t-body {
        position: absolute; inset: 0; z-index: 2;
        justify-content: flex-end;
        padding: 28px 24px;
        background: linear-gradient(to top, rgba(1,35,64,0.95) 0%, rgba(1,35,64,0.75) 45%, rgba(1,35,64,0) 80%);
        color: white;
    }
    .t-quote { color: white; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
    .t-author { border-top-color: rgba(255,255,255,0.2); }
    .t-author strong { color: white; }
    .t-author span { color: var(--yellow); }
    .t-quote-mark { opacity: 0.85; width: 32px; height: 32px; }
}
@media (min-width: 1024px) {
    .t-quote { font-size: 1rem; }
}

/* ═══════════════════════════════════════════
   CTA TRANSITION (between testimonials & form)
   ═══════════════════════════════════════════ */
.cta-transition {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--blue-darker) 0%, #012852 100%);
    position: relative; overflow: hidden;
}
.cta-transition::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--yellow); opacity: 0.08;
}
.cta-transition::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 260px; height: 260px; border-radius: 50%;
    background: var(--blue-light); opacity: 0.1;
}
.cta-transition-inner {
    max-width: 700px; margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
}
.cta-transition-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; margin-bottom: 20px;
    background: rgba(255, 191, 53, 0.15);
    border: 1px solid rgba(255, 191, 53, 0.35);
    color: var(--yellow); border-radius: 99px;
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.cta-transition-title {
    color: white; font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900; line-height: 1.2;
    letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-transition-title em {
    color: var(--yellow); font-style: normal;
    text-decoration: underline; text-decoration-thickness: 3px;
    text-underline-offset: 4px; text-decoration-color: var(--yellow);
}
.cta-transition-text {
    color: var(--slate-300); font-size: 1rem;
    line-height: 1.7; margin-bottom: 28px;
}
.cta-transition-text strong { color: white; font-weight: 700; }
.cta-transition-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; background: var(--yellow);
    color: var(--blue-darker); font-weight: 900;
    font-size: 1rem; border-radius: 99px;
    box-shadow: 0 10px 30px rgba(255, 191, 53, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cta-transition-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 191, 53, 0.45);
}
.cta-transition-btn svg { animation: bounceDown 2s infinite; }
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
.cta-transition-reassure {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
    margin-top: 20px;
}
.cta-transition-reassure span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; font-weight: 600; color: var(--slate-300);
}
.cta-transition-reassure svg { color: #16a34a; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section { padding: 80px 0; background: var(--slate-50); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white); border-radius: 14px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px; cursor: pointer;
    font-weight: 700; font-size: 1rem; color: var(--blue-darker);
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; list-style: none; position: relative;
    transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.6rem; font-weight: 400; color: var(--blue-light);
    transition: transform 0.3s; line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--slate-50); }
.faq-item p {
    padding: 0 24px 20px; font-size: 0.92rem;
    color: var(--slate-600); line-height: 1.7;
}

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