/* ═══════════════════════════════════════════════════════════════
   REVIEW REVIVAL — Premium Reputation Management
   Luxury CSS Stylesheet — Rolls-Royce Inspired Elegance
   ═══════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ──────────────────────────────────────── */
:root {
    /* Color Palette */
    --navy:        #1a2332;
    --navy-dark:   #0f1620;
    --navy-mid:    #22304a;
    --charcoal:    #2c3e50;
    --gold:        #d4af37;
    --gold-light:  #e8cb5a;
    --gold-dark:   #b8932e;
    --gold-muted:  rgba(212, 175, 55, 0.15);
    --rose-gold:   #b76e79;
    --white:       #ffffff;
    --cream:       #f8f6f2;
    --cream-dark:  #ede9e0;
    --text-light:  rgba(255,255,255,0.85);
    --text-muted:  rgba(255,255,255,0.55);
    --text-dark:   #1a2332;
    --text-body:   #3a4a5c;

    /* Typography */
    --font-serif:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-display:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Montserrat', 'Inter', system-ui, sans-serif;
    --font-body:     'Inter', 'Montserrat', system-ui, sans-serif;

    /* Spacing */
    --section-py:  7rem;
    --container:   1200px;
    --gap:         2rem;

    /* Effects */
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-lg:   0 30px 80px rgba(0,0,0,0.25);
    --glass-bg:    rgba(255,255,255,0.04);
    --glass-border: rgba(212,175,55,0.2);
    --border-gold: 1px solid rgba(212,175,55,0.3);
    --radius-card: 2px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── TYPOGRAPHY ───────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

em { font-style: italic; color: var(--gold); }

p { font-size: 1rem; line-height: 1.8; }

/* ─── UTILITY CLASSES ──────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }

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

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.section-header:not(.centered) .gold-divider { margin-left: 0; }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 1px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

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

/* ─── GLASS EFFECTS ────────────────────────────────────────────── */
.glass-card {
    background: var(--glass-bg);
    border: var(--border-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.glass-card-dark {
    background: rgba(15, 22, 32, 0.8);
    border: var(--border-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }


/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 1px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:hover::after { color: var(--gold); width: 100%; }

.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.55rem 1.4rem;
    border-radius: 1px;
    font-weight: 600;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
    color: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--navy-dark) 0%,
        var(--navy) 40%,
        #1e2d44 70%,
        var(--navy-dark) 100%
    );
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(183,110,121,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(212,175,55,0.04) 0%, transparent 50%);
}

/* Subtle texture pattern */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(212,175,55,0.015) 60px,
            rgba(212,175,55,0.015) 61px
        );
}

.hero-overlay { position: absolute; inset: 0; background: rgba(10,15,25,0.2); }

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.trust-item i { color: var(--gold); font-size: 0.85rem; }

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(212,175,55,0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Particle animation */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle var(--duration, 8s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(0) translateX(0); }
    10% { opacity: var(--max-opacity, 0.4); }
    90% { opacity: var(--max-opacity, 0.4); }
    100% { opacity: 0; transform: translateY(-200px) translateX(var(--drift, 30px)); }
}


/* ══════════════════════════════════════════════════════════════════
   BENEFITS SECTION
   ══════════════════════════════════════════════════════════════════ */
.benefits { background: var(--cream); }

.benefits .section-header .section-label { color: var(--gold-dark); }
.benefits .section-title { color: var(--navy); }
.benefits .section-title em { color: var(--gold-dark); }
.benefits .gold-divider { background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }

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

.benefit-card {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all var(--transition-slow);
    border-top: 3px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose-gold));
    opacity: 0;
    transition: opacity var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    border-radius: 2px;
}

.benefit-icon i {
    font-size: 1.4rem;
    color: var(--navy-dark);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.benefit-card h4 {
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.benefit-card p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 1.5rem; }

.benefit-stat {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #7a8a9a;
    font-family: var(--font-sans);
}


/* ══════════════════════════════════════════════════════════════════
   ROI CALCULATOR
   ══════════════════════════════════════════════════════════════════ */
.calculator-section { background: var(--navy-dark); }

.calculator-section .section-subtitle { color: var(--text-muted); }

.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.calc-inputs {
    padding: 3.5rem;
    border-right: 1px solid rgba(212,175,55,0.2);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    min-width: 0;
}

.calc-results {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.calc-field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.range-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: rgba(212,175,55,0.2);
    outline: none;
    border-radius: 1px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }

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

.range-display span:first-child {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}

.range-stars { color: var(--gold); font-size: 1rem; }

.input-wrapper input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--white);
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition);
    border-radius: 1px;
}

.input-wrapper input:focus { border-color: var(--gold); }
.input-wrapper input::placeholder { color: rgba(255,255,255,0.3); }

/* Remove number input arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }
input[type=number] { -moz-appearance: textfield; }

.result-primary {
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border: 1px solid rgba(212,175,55,0.3);
    padding: 2rem;
    text-align: center;
    border-radius: 1px;
}

.result-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.result-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    transition: all 0.4s ease;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}

.result-item-label { color: var(--text-muted); font-family: var(--font-sans); font-size: 0.8rem; }
.result-item-value { color: var(--white); font-weight: 500; font-family: var(--font-display); font-size: 1rem; }

.calc-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.calc-disclaimer i { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════════ */
.services { background: var(--cream); }

.services .section-label { color: var(--gold-dark); }
.services .section-title { color: var(--navy); }
.services .section-title em { color: var(--gold-dark); }
.services .gold-divider { background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.services .section-subtitle { color: rgba(26, 35, 50, 0.55); }

.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    border: 1px solid var(--cream-dark);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rose-gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.service-card:hover::after { transform: scaleX(1); }

.service-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212,175,55,0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
    font-size: 1.2rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-dark);
    color: var(--white);
}

.service-card h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1.4rem; }
.service-card p { color: var(--text-body); font-size: 0.95rem; margin-bottom: 1.75rem; }

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-body);
    font-family: var(--font-sans);
    font-weight: 500;
}

.service-features i { color: var(--gold-dark); font-size: 0.7rem; }


/* ══════════════════════════════════════════════════════════════════
   STATISTICS SECTION
   ══════════════════════════════════════════════════════════════════ */
.statistics { background: var(--navy-dark); }

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(183,110,121,0.04) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.15);
}

.stat-item {
    background: var(--navy-dark);
    padding: 3.5rem 2rem;
    text-align: center;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-item:hover { background: rgba(212,175,55,0.05); }

.stat-icon { font-size: 1.5rem; color: var(--gold); opacity: 0.7; }

.stat-number-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1;
}

.stat-counter {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    color: var(--gold);
    font-weight: 400;
}

.stat-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    font-family: var(--font-sans);
    max-width: 180px;
}


/* ══════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ══════════════════════════════════════════════════════════════════ */
.process { background: var(--cream); }

.process .section-label { color: var(--gold-dark); }
.process .section-title { color: var(--navy); }
.process .section-title em { color: var(--gold-dark); }
.process .gold-divider { background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }
.process .section-subtitle { color: rgba(26, 35, 50, 0.55); }

.process-timeline {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    position: relative;
    padding-bottom: 4rem;
}

.process-step:last-child { padding-bottom: 0; }

.step-connector {
    position: absolute;
    top: 60px;
    left: 59px;
    width: 1px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--gold-dark), rgba(212,175,55,0.1));
}

.process-step:last-child .step-connector { display: none; }

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 1.2rem;
    transition: all var(--transition);
    position: relative;
}

.process-step:hover .step-icon {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.step-content {
    padding-top: 0.25rem;
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.step-content p { color: var(--text-body); margin-bottom: 1.25rem; font-size: 0.95rem; }

.step-deliverables {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.step-deliverables li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(26,35,50,0.6);
    padding-left: 1.25rem;
    position: relative;
}

.step-deliverables li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-size: 0.9rem;
}


/* ══════════════════════════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════════════════════════ */
.pricing { background: var(--navy-dark); }

.pricing-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 60%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all var(--transition-slow);
}

.pricing-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-card.featured {
    border-color: rgba(212,175,55,0.5);
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 1px rgba(212,175,55,0.3), 0 20px 60px rgba(0,0,0,0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.pricing-price {
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.price-period {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.enterprise-price .price-custom {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-sans);
}

.pricing-features li i {
    font-size: 0.7rem;
    color: var(--gold);
    flex-shrink: 0;
}

.pricing-features li.unavailable { color: rgba(255,255,255,0.3); }
.pricing-features li.unavailable i { color: rgba(255,255,255,0.2) !important; font-size: 0.45rem !important; vertical-align: middle; }


/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.testimonials {
    background: var(--cream);
}

.testimonials .section-label { color: var(--gold-dark); }
.testimonials .section-title { color: var(--navy); }
.testimonials .section-title em { color: var(--gold-dark); }
.testimonials .gold-divider { background: linear-gradient(90deg, transparent, var(--gold-dark), transparent); }

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 4rem 6rem;
    text-align: center;
    flex-shrink: 0;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold-dark);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.3em;
}

.testimonial-card blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-dark);
    flex-shrink: 0;
}

.author-info { text-align: left; }
.author-info strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.25rem; }
.author-info span { font-size: 0.8rem; color: rgba(26,35,50,0.55); font-family: var(--font-sans); }

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(26,35,50,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 0.9rem;
    transition: all var(--transition);
    border-radius: 50%;
}

.carousel-btn:hover {
    border-color: var(--gold-dark);
    background: var(--gold-dark);
    color: var(--white);
}

.carousel-dots { display: flex; gap: 0.5rem; }

.carousel-dot {
    width: 8px;
    height: 2px;
    background: rgba(26,35,50,0.2);
    transition: all var(--transition);
    cursor: pointer;
    border-radius: 1px;
}

.carousel-dot.active {
    width: 24px;
    background: var(--gold-dark);
}


/* ══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════════ */
.faq { background: var(--navy-dark); }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.faq-item:first-child { border-top: 1px solid rgba(212,175,55,0.15); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: color var(--transition);
}

.faq-question span {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.faq-question:hover span { color: var(--gold); }

.faq-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all var(--transition);
    border-radius: 50%;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.faq-question[aria-expanded="true"] .faq-icon i { transform: rotate(45deg); }
.faq-icon i { transition: transform var(--transition); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 500px; padding-bottom: 1.75rem; }

.faq-answer-inner { display: flex; flex-direction: column; gap: 1rem; }

.faq-answer p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.8;
}


/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════════════ */
.contact { background: var(--cream); }

.contact .section-label { color: var(--gold-dark); }
.contact .section-title { color: var(--navy); }
.contact .section-title em { color: var(--gold-dark); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info p {
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 1rem;
    flex-shrink: 0;
    border-radius: 1px;
}

.contact-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(26,35,50,0.5);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    transition: color var(--transition);
}

.contact-item a:hover { color: var(--gold-dark); }

.contact-promise {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    border-left: 3px solid var(--gold-dark);
}

.promise-icon { color: var(--gold-dark); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; }

.contact-promise p {
    font-size: 0.88rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border: 1px solid var(--cream-dark);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.contact-form h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,35,50,0.55);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    color: var(--navy);
    padding: 0.85rem 1.2rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition);
    border-radius: 1px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-dark);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,35,50,0.35); }

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(26,35,50,0.45);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--font-sans);
}

.form-disclaimer i { color: var(--gold-dark); }

/* Inline form error banner */
.form-error-msg {
    margin-top: 0.85rem;
    padding: 0.75rem 1rem;
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.35);
    border-left: 3px solid #c0392b;
    color: #c0392b;
    font-size: 0.82rem;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 1px;
}

/* Per-field validation hint */
.field-hint {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.72rem;
    color: #c0392b;
    font-family: var(--font-sans);
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.3);
    text-align: center;
}

.form-success i {
    font-size: 2rem;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 0.75rem;
}

.form-success strong { display: block; color: var(--navy); margin-bottom: 0.25rem; font-family: var(--font-display); font-size: 1.1rem; }
.form-success p { font-size: 0.85rem; color: var(--text-body); margin: 0; }


/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer { background: var(--navy-dark); border-top: 1px solid rgba(212,175,55,0.1); }

.footer-top { padding: 5rem 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.1);
}

.footer-links h4 {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
    font-family: var(--font-sans);
}

.footer-links li a:hover { color: var(--gold); }

.footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(212,175,55,0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(212,175,55,0.4) !important;
}


/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════════════════════ */

/* ─── TABLET: 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-py: 5rem; }

    .benefits-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { gap: 3rem; }

    /* Centre single-column grids */
    .benefit-card,
    .service-card { text-align: left; }

    .process-timeline { padding: 0 1rem; }
}

/* ─── TABLET: 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --section-py: 4rem; }

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2.5rem 2.5rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(212,175,55,0.15);
    }

    .nav-links.open { right: 0; }
    .nav-links a { font-size: 0.9rem; }
    .nav-toggle { display: flex; }

    /* Hero */
    .hero-content { padding: 7rem 1.5rem 3rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 1rem; }
    .trust-divider { display: none; }

    /* Calculator */
    .calculator-card {
        grid-template-columns: 1fr;
        overflow: visible;
    }
    .calc-inputs {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(212,175,55,0.2);
        gap: 1.75rem;
    }
    .calc-results { padding: 2rem; gap: 1.25rem; }

    /* Testimonials */
    .testimonial-card { padding: 3rem 2rem; }
    .testimonial-card blockquote { font-size: 1.05rem; }

    /* Contact */
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info { text-align: center; }
    .contact-info .gold-divider { margin-left: auto; margin-right: auto; }
    .contact-details { align-items: center; }
    .contact-item { justify-content: center; }
    .contact-promise { text-align: left; }

    /* Process */
    .process-step { grid-template-columns: 80px 1fr; gap: 1.25rem; }
    .step-connector { left: 39px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-social { justify-content: center; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    /* Benefits & Services centering */
    .benefits-grid,
    .services-grid { margin-left: auto; margin-right: auto; }

    /* Pricing centering */
    .pricing-grid { margin-left: auto; margin-right: auto; }
    .pricing-card { text-align: center; }
    .pricing-features { text-align: left; }
    .pricing-features li { justify-content: flex-start; }

    /* Stats */
    .stat-item p { max-width: 220px; margin: 0 auto; }
}

/* ─── MOBILE: 480px ──────────────────────────────────────────────── */
@media (max-width: 480px) {
    :root { --section-py: 3.5rem; }

    .container { padding: 0 1.25rem; }

    /* Calculator full-width on small screens */
    .calculator-section .container { padding: 0 1rem; }
    .calculator-card { border-radius: 2px; }

    .calc-inputs  { padding: 1.5rem 1.25rem; gap: 1.5rem; }
    .calc-results { padding: 1.5rem 1.25rem; gap: 1rem; }

    /* Scale down large number displays inside calculator */
    .range-display span:first-child { font-size: 1.4rem; }
    .result-value { font-size: 2rem !important; }
    .result-primary { padding: 1.25rem; }
    .result-item { padding: 0.6rem 0; }

    /* Make range slider thumb easier to tap */
    input[type="range"]::-webkit-slider-thumb { width: 22px; height: 22px; }

    .contact-form { padding: 2rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .testimonial-card { padding: 2.5rem 1.5rem; }
    .testimonial-author { flex-direction: column; align-items: center; text-align: center; }
    .author-info { text-align: center; }

    .service-card { padding: 2rem 1.5rem; }
    .service-card .service-features { align-items: flex-start; }
    .benefit-card { padding: 2rem 1.5rem; text-align: left; }
    .benefit-stat { justify-content: flex-start; }
    .pricing-card { padding: 2rem 1.5rem; text-align: center; }
    .pricing-features { text-align: left; }
    .pricing-card .btn { width: 100%; justify-content: center; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
    .stat-item { padding: 2.5rem 1rem; }
    .stat-item p { font-size: 0.75rem; max-width: none; }

    .process-step { grid-template-columns: 1fr; }
    .step-marker { flex-direction: row; align-items: center; }
    .step-connector { display: none; }
    .step-content { margin-top: 0.5rem; }

    /* Hero tweaks */
    .hero-badge { font-size: 0.6rem; }
    .hero-trust { flex-direction: column; gap: 0.75rem; }

    /* Section headers */
    .section-header.centered { padding: 0 0.5rem; }

    /* Footer links centering */
    .footer-links { text-align: center; }
}
