/* ═══════════════════════════════════════════════
   DEJAVU DIGITAL — Design System
   Cabinet d'Ingénierie Administrative
   ═══════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --bg-primary: #06080f;
    --bg-surface: #0c1121;
    --bg-card: rgba(14, 20, 40, 0.5);
    --bg-card-hover: rgba(20, 28, 55, 0.6);
    
    --border-subtle: rgba(148, 163, 184, 0.08);
    --border-hover: rgba(148, 163, 184, 0.18);
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-indigo: #6366f1;
    --accent-gold: #f0b429;
    --accent-emerald: #10b981;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-blue), var(--accent-indigo));
    --gradient-gold: linear-gradient(135deg, var(--accent-gold), #f59e0b);
    --gradient-text: linear-gradient(135deg, var(--accent-blue-light), #a78bfa);
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }

a { color: var(--accent-blue-light); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-blue); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Layout ─── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-blue-light);
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════
   NAVBAR
   ═══════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(6, 8, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(6, 8, 15, 0.92);
    border-bottom-color: var(--border-subtle);
    padding: 0.7rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.desktop-nav a:hover { color: var(--text-primary); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    background: rgba(6, 8, 15, 0.98);
    border-top: 1px solid var(--border-subtle);
}

.mobile-menu a {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu .btn {
    margin-top: 0.5rem;
    text-align: center;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-nav {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue-light);
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.btn-nav:hover {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-full { width: 100%; }

/* ═══════════════════════
   HERO
   ═══════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.orb-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -200px;
    background: var(--accent-indigo);
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -150px;
    background: var(--accent-blue);
    opacity: 0.15;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(240, 180, 41, 0.08);
    border: 1px solid rgba(240, 180, 41, 0.2);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-hint {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.stat-divider {
    width: 1px;
    background: var(--border-subtle);
    align-self: stretch;
}

/* ═══════════════════════
   CONSTAT
   ═══════════════════════ */
.constat {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 100%);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pain-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pain-card:hover::before { opacity: 1; }

.pain-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-blue-light);
}

.pain-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.pain-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ═══════════════════════
   TRACK RECORD
   ═══════════════════════ */
.track-record {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.result-card:hover::before { opacity: 1; }

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.result-sector {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}

.tag-green {
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.tag-gold {
    color: var(--accent-gold);
    background: rgba(240, 180, 41, 0.08);
    border: 1px solid rgba(240, 180, 41, 0.2);
}

.tag-blue {
    color: var(--accent-blue-light);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.result-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════
   TÉMOIGNAGES
   ═══════════════════════ */
.testimonials {
    background: var(--bg-primary);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonial-card > p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-tertiary);
}

/* ═══════════════════════
   MÉTHODE (STEPS)
   ═══════════════════════ */
.methode {
    background: var(--bg-surface);
}

.steps-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-indigo) 100%);
    opacity: 0.2;
}

.step-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 0;
    position: relative;
}

.step-card + .step-card {
    border-top: 1px solid var(--border-subtle);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 52px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.step-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-emerald);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
}

/* ═══════════════════════
   TARIFS
   ═══════════════════════ */
.tarifs {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
}

.pricing-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue-light);
    margin-bottom: 2rem;
}

.pricing-hero-block {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-zero {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.price-success {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.25rem;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.success-rate {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-blue-light);
}

.success-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-divider {
    height: 1px;
    background: var(--border-subtle);
    margin-bottom: 2rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(148, 163, 184, 0.04);
}

.pricing-list li svg {
    color: var(--accent-emerald);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    text-align: center;
    line-height: 1.6;
}

.pricing-note a {
    color: var(--accent-blue-light);
    font-weight: 500;
}

/* ═══════════════════════
   ENGAGEMENTS
   ═══════════════════════ */
.engagements {
    padding: 5rem 0;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.engagement-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.engagement-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.engage-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-indigo);
    margin-bottom: 1.25rem;
}

.engagement-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.engagement-card p {
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ═══════════════════════
   FAQ
   ═══════════════════════ */
.faq {
    background: var(--bg-surface);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--accent-blue-light); }

.faq-chevron {
    color: var(--text-tertiary);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue-light);
}

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

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

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
}

/* ═══════════════════════
   FINAL CTA
   ═══════════════════════ */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-primary) 100%);
}

.cta-wrapper {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 4.5rem 3rem;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--accent-indigo);
    filter: blur(150px);
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    margin-bottom: 2rem;
}

.cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--accent-gold);
    background: rgba(240, 180, 41, 0.06);
    border: 1px solid rgba(240, 180, 41, 0.12);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.cta-urgency svg { flex-shrink: 0; color: var(--accent-gold); }

/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
footer {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-tertiary);
}

.footer-links-group {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.7;
}

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */
@media (max-width: 1024px) {
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    
    .desktop-nav { display: none; }
    .btn-nav { display: none; }
    .mobile-toggle { display: flex; }
    
    .mobile-menu.open { display: flex; }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .engagement-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .steps-timeline::before { display: none; }
    
    .step-card {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-links-group {
        gap: 2.5rem;
    }
    
    .cta-wrapper {
        padding: 3rem 1.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.75rem;
    }
    
    .price-zero {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-lg {
        width: 100%;
    }
}
