/* ============================================
   ALLO NESTOR — /pro Landing Page
   Artisan partner acquisition
   Builds on top of styles/main.css
   ============================================ */

/* ---- ANIMATION UTILITIES ---- */

@keyframes floatMascotPro {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-18px) rotate(1deg); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
    70%  { box-shadow: 0 0 0 12px rgba(255,107,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================
   HEADER
   ============================================ */

.pro-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-4) 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.pro-header.scrolled {
    background: rgba(15, 10, 5, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    padding: var(--space-3) 0;
}

.pro-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


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

.hero-pro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-20);
    overflow: hidden;
    background: #120800;
}

.hero-pro-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(255,107,53,0.22) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(59,130,246,0.12) 0%, transparent 60%),
        linear-gradient(170deg, #1a0900 0%, #120800 40%, #0a0e1a 100%);
}

.hero-pro-pattern {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero_houses_pattern.png');
    background-size: 380px;
    background-repeat: repeat;
    opacity: 0.055;
    mix-blend-mode: overlay;
}

.hero-pro-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pro-content {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-pro-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

.hero-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.35);
    color: #FF9060;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    animation: fadeSlideUp 0.6s ease both;
}

.hero-pro-badge svg { flex-shrink: 0; }

.hero-pro-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    animation: fadeSlideUp 0.65s 0.1s ease both;
}

.hero-pro-title em {
    font-style: normal;
    color: #FFD166;
}

.hero-pro-subtitle {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: var(--space-8);
    animation: fadeSlideUp 0.65s 0.2s ease both;
}

.hero-pro-subtitle strong {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
}

.hero-pro-cta {
    animation: fadeSlideUp 0.65s 0.3s ease both;
}

.hero-pro-cta .btn {
    animation: pulseRing 2.5s 1.5s ease infinite;
}

.hero-pro-micro {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-5);
    margin-top: var(--space-5);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.5);
    animation: fadeSlideUp 0.65s 0.4s ease both;
}

.hero-pro-micro span { display: flex; align-items: center; gap: 6px; }

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

@media (max-width: 1024px) {
    .hero-pro-visual { display: none; }
}

.hero-pro-mascot-wrap {
    position: relative;
}

.hero-pro-mascot-wrap img {
    width: 380px;
    max-width: 100%;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 60px rgba(255,107,53,0.2));
}

.hero-stat-bubble {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3) var(--space-4);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    white-space: nowrap;
    animation: fadeSlideUp 0.7s ease both;
}

.hero-stat-bubble:nth-child(2) { bottom: 40px; left: -40px; animation-delay: 0.5s; }
.hero-stat-bubble:nth-child(3) { top: 60px; right: -20px; animation-delay: 0.7s; }

.stat-bubble-icon { font-size: 1.6rem; }

.stat-bubble-text .stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--text-lg);
    color: var(--color-gray-900);
    line-height: 1;
}

.stat-bubble-text .stat-label {
    font-size: var(--text-xs);
    color: var(--color-gray-500);
    margin-top: 2px;
}


/* ============================================
   SECTION PROBLEM
   ============================================ */

.section-problem {
    background: #F7F6F4;
    padding: var(--space-24) 0;
}

.section-problem .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-14);
}

@media (max-width: 900px) {
    .problem-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.problem-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
    border-color: rgba(239,68,68,0.15);
}

.problem-card:hover::before { transform: scaleX(1); }

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(249,115,22,0.08));
    border: 1px solid rgba(239,68,68,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: #ef4444;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, rgba(239,68,68,0.16), rgba(249,115,22,0.12));
    border-color: rgba(239,68,68,0.3);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}

.problem-card p {
    color: var(--color-gray-500);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ---- space-14 utility (not in main.css) ---- */
.mt-14 { margin-top: 3.5rem; }


/* ============================================
   SECTION DIFFERENCE
   ============================================ */

.section-difference {
    background: #0F172A;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.section-difference::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(59,130,246,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,53,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-difference .section-badge {
    background: rgba(255,107,53,0.15);
    color: #FF9060;
    border: 1px solid rgba(255,107,53,0.25);
}

.section-difference .section-title {
    color: white;
}

.section-difference .section-subtitle {
    color: rgba(255,255,255,0.5);
}

/* Comparison layout — open, no card boxes */
.diff-comparison {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    gap: 0;
    margin-top: var(--space-16);
    align-items: start;
}

@media (max-width: 768px) {
    .diff-comparison {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    .diff-divider { display: none; }
}

/* VS vertical divider */
.diff-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 88px;
    height: 100%;
}

.diff-divider-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    min-height: 32px;
}

.diff-divider-vs {
    padding: var(--space-3) 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.25);
}

/* Panels — no background, no border */
.diff-panel {
    padding: 0 var(--space-4);
}

/* Panel headers */
.diff-panel-header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding-bottom: var(--space-7);
    margin-bottom: var(--space-2);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.diff-header-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-header-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.diff-header-icon-wrap.bad {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.3);
}

.diff-header-icon-wrap.good {
    background: linear-gradient(145deg, rgba(6,78,46,0.8), rgba(16,185,129,0.2));
    border: 1px solid rgba(16,185,129,0.35);
    color: #34d399;
    box-shadow: 0 8px 32px rgba(16,185,129,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.diff-header-titles { flex: 1; padding-top: var(--space-1); }

.diff-header-eyebrow {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.diff-panel-bad .diff-header-eyebrow { color: rgba(255,255,255,0.25); }
.diff-header-eyebrow.good { color: #34d399; }

.diff-panel-header h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.2;
}

.diff-panel-bad .diff-panel-header h3 { color: rgba(255,255,255,0.45); }
.diff-panel-good .diff-panel-header h3 { color: white; }

/* List rows */
.diff-panel-list {
    list-style: none;
    padding: var(--space-2) 0 0;
}

.diff-row {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-2);
    font-size: var(--text-sm);
    line-height: 1.65;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.diff-row:last-child { border-bottom: none; }

.diff-panel-bad .diff-row span:last-child { color: rgba(255,255,255,0.4); }
.diff-panel-good .diff-row span:last-child { color: rgba(255,255,255,0.82); font-weight: 500; }

/* Highlighted first row on good side */
.diff-row-highlight {
    background: rgba(16,100,60,0.3);
    border: 1px solid rgba(16,185,129,0.22);
    border-radius: var(--radius-xl);
    padding: var(--space-5) var(--space-5);
    margin-bottom: var(--space-2);
}

.diff-row-highlight span:last-child { color: white !important; }

/* Icons */
.diff-dash,
.diff-check {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.diff-dash svg { width: 16px; height: 16px; stroke-width: 2.5; }
.diff-check svg { width: 15px; height: 15px; stroke-width: 2.5; }

.diff-dash { color: rgba(255,255,255,0.2); }
.diff-check { color: #34d399; }


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

.section-how {
    background: white;
    padding: var(--space-24) 0;
}


/* ============================================
   SECTION LEAD CONTENT
   ============================================ */

.section-lead-content {
    background: #F7F6F4;
    padding: var(--space-24) 0;
}

.lead-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: stretch;
    margin-top: var(--space-14);
}

@media (max-width: 768px) {
    .lead-content-grid { grid-template-columns: 1fr; }
}

/* Lead fiche card */
.lead-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 2px solid var(--color-primary);
    box-shadow:
        0 0 0 6px rgba(255,107,53,0.07),
        0 8px 30px rgba(255,107,53,0.1);
    display: flex;
    flex-direction: column;
}

.lead-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--color-gray-100);
    margin-bottom: var(--space-5);
}

.lead-card-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,53,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lead-card-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--color-gray-900);
    line-height: 1.3;
}

.lead-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-gray-50);
    font-size: var(--text-sm);
    color: var(--color-gray-700);
    line-height: 1.5;
}

.lead-item:last-child { border-bottom: none; padding-bottom: 0; }

.lead-item-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
    opacity: 0.8;
}

/* ROI box */
.roi-box {
    background: #0F172A;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.roi-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
}

.roi-box h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-6);
    position: relative;
}

.roi-table {
    flex: 1;
    position: relative;
}

.roi-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
}

.roi-line:last-of-type { border-bottom: none; }
.roi-line strong { color: white; font-weight: 700; }

.roi-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: var(--space-4) 0;
}

.roi-total {
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.1));
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    text-align: center;
    margin-top: var(--space-4);
}

.roi-total-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.roi-total-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFD166;
    line-height: 1;
}

.roi-total-sub {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
    margin-top: var(--space-2);
}

/* Calculator fields */
.calc-field {
    margin-bottom: var(--space-5);
}

.calc-field label,
.calc-slider-header label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-2);
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.calc-leads-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFD166;
    line-height: 1;
}

#calcSpecialty {
    width: 100%;
    padding: 10px var(--space-4);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    color: white;
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23ffffff80' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    transition: border-color 0.2s ease;
}

#calcSpecialty:focus { border-color: rgba(255,209,102,0.5); }

#calcSpecialty option { background: #1a2035; color: white; }

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    outline: none;
    cursor: pointer;
    position: relative;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFD166;
    border: 3px solid #0F172A;
    box-shadow: 0 0 0 2px rgba(255,209,102,0.4);
    cursor: grab;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.calc-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(255,209,102,0.25);
}

.calc-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-2);
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

.calc-assumptions {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
    margin-bottom: var(--space-3);
}

.calc-assumptions strong { color: rgba(255,255,255,0.7); }

@keyframes calcPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.roi-total-number.calc-pop {
    animation: calcPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}


/* ============================================
   SOCIAL PROOF
   ============================================ */

.section-proof {
    background: white;
    padding: var(--space-24) 0;
}

.proof-agency-banner {
    background: linear-gradient(135deg, var(--color-gray-50) 0%, white 100%);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--space-5) var(--space-7);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.proof-banner-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.proof-agency-banner strong { color: var(--color-gray-900); }


/* ============================================
   GUARANTEE
   ============================================ */

.section-guarantee {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(150deg, #E85A2E 0%, #FF6B35 50%, #FF8C42 100%);
    text-align: center;
    overflow: hidden;
}

.section-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero_houses_pattern.png');
    background-size: 380px;
    background-repeat: repeat;
    opacity: 0.06;
}

.section-guarantee .section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.section-guarantee .section-title {
    color: white;
}

.guarantee-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-12);
    max-width: 620px;
    margin: var(--space-10) auto 0;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.8);
}

@media (max-width: 640px) {
    .guarantee-card {
        padding: var(--space-8) var(--space-6);
        margin-left: var(--space-2);
        margin-right: var(--space-2);
    }
}

.guarantee-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-5);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.guarantee-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gray-900);
    line-height: 1.25;
    margin-bottom: var(--space-5);
}

.guarantee-card p {
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
}

.guarantee-card .btn {
    width: 100%;
    justify-content: center;
}

.guarantee-card p strong { color: var(--color-gray-900); }


/* ============================================
   FAQ
   ============================================ */

.section-faq {
    background: #F7F6F4;
    padding: var(--space-24) 0;
}

.section-faq .container {
    max-width: 860px;
}

.faq-list {
    max-width: 100%;
    margin: var(--space-14) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover { border-color: rgba(255,107,53,0.2); }

.faq-item.open {
    border-color: rgba(255,107,53,0.25);
    box-shadow: 0 4px 20px rgba(255,107,53,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) var(--space-6);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gray-900);
    transition: color 0.2s ease;
    gap: var(--space-4);
}

.faq-question:hover { color: var(--color-primary); }
.faq-item.open .faq-question { color: var(--color-primary); }

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.25s ease,
                color 0.25s ease;
    color: var(--color-gray-500);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255,107,53,0.1);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-gray-600);
    line-height: 1.75;
    font-size: var(--text-sm);
    border-top: 1px solid var(--color-gray-50);
    padding-top: var(--space-4);
}


/* ============================================
   CTA FINAL + FORM
   ============================================ */

.section-cta-final {
    background: #0A0F1A;
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.section-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 0% 50%, rgba(59,130,246,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 100% 50%, rgba(255,107,53,0.07) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: var(--space-16);
    align-items: center;
    position: relative;
}

@media (max-width: 900px) {
    .cta-final-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

.cta-final-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
}

.cta-final-text p {
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    font-size: var(--text-base);
    max-width: 420px;
    margin-bottom: var(--space-7);
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.3);
    color: #FF9060;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
}

/* Form card */
.pro-form-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05);
}

.pro-form-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: var(--space-2);
    text-align: center;
}

.pro-form-subtitle {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-bottom: var(--space-6);
}

.pro-form .form-group {
    margin-bottom: var(--space-4);
}

.pro-form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: var(--space-2);
}

.pro-form input,
.pro-form select {
    width: 100%;
    padding: 13px var(--space-4);
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    color: var(--color-gray-900);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.pro-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.pro-form input:focus,
.pro-form select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255,107,53,0.1);
}

.pro-form input::placeholder { color: var(--color-gray-400); }

.btn-submit-pro {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
    font-weight: 700;
    border-radius: var(--radius-lg);
    margin-top: var(--space-2);
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(255,107,53,0.35);
    font-family: var(--font-primary);
}

.btn-submit-pro:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.45);
}

.btn-submit-pro:active { transform: translateY(1px); }

.btn-submit-pro:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-4);
    font-size: 11px;
    color: var(--color-gray-400);
}

.form-trust span { display: flex; align-items: center; gap: 4px; }

.form-legal {
    margin-top: var(--space-4);
    font-size: 10px;
    color: var(--color-gray-300);
    line-height: 1.5;
    text-align: center;
}

/* Form success state */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.form-success.active { display: block; }

.success-anim {
    font-size: 3.5rem;
    margin-bottom: var(--space-5);
    animation: fadeSlideUp 0.5s ease both;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-gray-900);
    margin-bottom: var(--space-3);
    text-align: center;
    animation: fadeSlideUp 0.5s 0.1s ease both;
}

.form-success p {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
    line-height: 1.7;
    text-align: center;
    animation: fadeSlideUp 0.5s 0.2s ease both;
}

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

.pro-footer {
    background: #06090f;
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.pro-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.25);
}

.pro-footer-inner a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

.pro-footer-inner a:hover { color: rgba(255,255,255,0.65); }

/* ============================================
   SECTION HEADER OVERRIDES for dark sections
   (section-badge is defined in main.css)
   ============================================ */

.section-header { text-align: center; }

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

@media (max-width: 480px) {
    .hero-pro { padding: 100px 0 var(--space-16); }
    .hero-pro-title { font-size: 2.2rem; }
    .hero-pro-micro { flex-direction: column; gap: var(--space-2); }
    .diff-grid { gap: var(--space-3); }
    .pro-form-card { padding: var(--space-6); }
    .guarantee-card { padding: var(--space-7) var(--space-6); }
    .cta-final-text h2 { font-size: 2rem; }
}
