/* ============================================================
   VDORR — Premium Shopify Agency
   Brand Color System: Navy #002249 | Blue #0c59db | Crimson #C02C55
   Font: Poppins
   ============================================================ */

/* --- DESIGN TOKENS --- */
:root {
    --navy:           #002249;
    --navy-deep:      #011630;
    --navy-card:      #03305e;
    --blue:           #0c59db;
    --blue-hover:     #0a4ab8;
    --blue-subtle:    rgba(12, 89, 219, 0.08);
    --blue-glow:      rgba(12, 89, 219, 0.18);
    --crimson:        #C02C55;
    --crimson-subtle: rgba(192, 44, 85, 0.08);
    --body:           #616161;
    --muted:          #81a3bb;
    --white:          #ffffff;
    --light:          #f5faff;
    --lighter:        #eaf2f8;
    --border:         #e0ecf7;
    --border-dark:    rgba(255,255,255,0.1);
    --green:          #00C875;
    --green-subtle:   rgba(0, 200, 117, 0.1);
    --yellow:         #FFB800;

    --font:           'Poppins', sans-serif;

    --radius-sm:      6px;
    --radius-md:      12px;
    --radius-lg:      20px;
    --radius-pill:    999px;

    --transition:     0.2s ease;
    --transition-md:  0.35s ease;

    --shadow-sm:      0 2px 8px rgba(0,34,73,0.08);
    --shadow-md:      0 4px 24px rgba(0,34,73,0.12);
    --shadow-lg:      0 8px 48px rgba(0,34,73,0.16);
    --shadow-blue:    0 4px 24px rgba(12,89,219,0.35);

    --container:      1200px;
    --container-sm:   760px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* --- LAYOUT --- */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--sm{ max-width: var(--container-sm); margin: 0 auto; padding: 0 28px; }
.section      { padding: 96px 0; }
.section--light { background: var(--light); }
.section--navy  { background: var(--navy); }
.section--white { background: var(--white); }

/* --- TYPOGRAPHY HELPERS --- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 16px;
}
.eyebrow::before { content: '✦'; font-size: 9px; }
.eyebrow--blue { color: var(--blue); }
.eyebrow--white { color: rgba(255,255,255,0.7); }

.section-heading {
    font-family: var(--font);
    font-size: clamp(28px, 3.8vw, 44px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--navy);
}
.section-heading--white { color: var(--white); }
.section-heading--crimson { color: var(--crimson); }

.section-sub {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 14px;
    color: var(--body);
}
.section-sub--muted { color: var(--muted); }
.section-sub--white { color: rgba(255,255,255,0.72); }

.text-blue    { color: var(--blue); }
.text-crimson { color: var(--crimson); }
.text-green   { color: var(--green); }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
}
.btn--primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(12,89,219,0.45);
    color: var(--white);
}
.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}
.btn--outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-subtle);
}
.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
}
.btn--crimson {
    background: var(--crimson);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192,44,85,0.35);
}
.btn--crimson:hover {
    background: #a82348;
    transform: translateY(-2px);
    color: var(--white);
}
.btn--lg { font-size: 15px; padding: 15px 32px; }

/* --- SCROLL ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,34,73,0.08);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    transition: color var(--transition);
}
.nav__logo span { color: var(--crimson); }
.nav.scrolled .nav__logo { color: var(--navy); }
.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--body); }
.nav.scrolled .nav__links a:hover { color: var(--navy); }
.nav__cta .btn--primary { box-shadow: none; }
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--navy); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    padding: 100px 28px 40px;
    flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu .btn { margin-top: 28px; justify-content: center; font-size: 15px; padding: 16px 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    background: var(--navy);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 65% at 5% 55%, rgba(12,89,219,0.25) 0%, transparent 55%),
        radial-gradient(ellipse 45% 45% at 90% 15%, rgba(192,44,85,0.12) 0%, transparent 50%),
        radial-gradient(ellipse 35% 55% at 55% 90%, rgba(12,89,219,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 75%);
}
.hero__content { position: relative; z-index: 1; }
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12,89,219,0.15);
    border: 1px solid rgba(12,89,219,0.35);
    color: #7ab3ff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
}
.hero__badge::before { content: '✦'; font-size: 9px; }
.hero__headline {
    font-family: var(--font);
    font-size: clamp(40px, 6.5vw, 78px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    max-width: 850px;
    margin-bottom: 24px;
}
.hero__headline .highlight { color: var(--crimson); }
.hero__subhead {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 44px;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero__proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero__proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}
.hero__proof-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    animation: pulseGreen 2.5s ease-in-out infinite;
    flex-shrink: 0;
}
.hero__proof-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.15); }
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 8px var(--green); opacity: 1; }
    50%       { box-shadow: 0 0 3px var(--green); opacity: 0.6; }
}

/* ============================================================
   CLIENT LOGO BAR
   ============================================================ */
.clients {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.clients__label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}
.clients__marquee { overflow: hidden; }
.clients__track {
    display: flex;
    gap: 64px;
    align-items: center;
    animation: marquee 22s linear infinite;
    width: max-content;
}
.clients__track:hover { animation-play-state: paused; }
.clients__logo {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #c5d8e8;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}
.clients__logo:hover { color: var(--navy); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.value-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
}
.value-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.value-card__icon {
    width: 48px; height: 48px;
    background: var(--blue-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.value-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card__text {
    font-size: 14px;
    color: var(--body);
    line-height: 1.75;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--crimson) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-md);
}
.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon { font-size: 28px; margin-bottom: 16px; display: block; }
.service-card__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card__text  { font-size: 13px; color: var(--body); line-height: 1.65; margin-bottom: 18px; }
.service-card__link  {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 9px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #0c59db 60%, #1a6fe8 100%);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
    pointer-events: none;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.stat-item { text-align: center; }
.stat-item__number {
    font-family: var(--font);
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.stat-item__label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); }

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.case-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
}
.case-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.case-card__thumb {
    height: 210px;
    background: linear-gradient(135deg, var(--navy) 0%, #03305e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.case-card__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(12,89,219,0.15) 0%, transparent 70%);
}
.case-card__browser {
    width: 82%; height: 78%;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.case-card__browser-bar {
    height: 24px;
    background: #f0f4f8;
    border-bottom: 1px solid #e0e8f0;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}
.case-card__browser-dot { width: 8px; height: 8px; border-radius: 50%; }
.case-card__browser-body {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 24px);
    background: var(--light);
}
.case-card__site-name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #c5d8e8;
    text-transform: uppercase;
}
.case-card__body { padding: 28px; }
.case-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.case-card__niche {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.case-card__dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
.case-card__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.case-card__results { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.case-result {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
}
.case-result::before { content: '↑'; font-weight: 800; }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--blue-subtle);
    color: var(--blue);
    border: 1px solid rgba(12,89,219,0.2);
}
.case-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition);
}
.case-card:hover .case-card__link { gap: 10px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, rgba(12,89,219,0.15) 100%);
    z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.process-step__num {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    color: var(--blue);
    margin: 0 auto 22px;
    box-shadow: var(--shadow-sm);
}
.process-step__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step__text  { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
}
.testimonial-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.testimonial-card__stars { color: var(--yellow); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-card__quote {
    font-size: 15px;
    line-height: 1.8;
    color: var(--body);
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--blue-subtle);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    flex-shrink: 0;
}
.testimonial-card__name    { font-weight: 700; font-size: 14px; color: var(--navy); }
.testimonial-card__company { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   AUDIT CTA SECTION
   ============================================================ */
.audit-cta {
    background: var(--navy);
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}
.audit-cta__glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(12,89,219,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.audit-cta__inner { position: relative; z-index: 1; }
.audit-cta__heading {
    font-family: var(--font);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--white);
    max-width: 660px;
    margin: 0 auto 16px;
}
.audit-cta__heading .highlight { color: var(--crimson); }
.audit-cta__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.68);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.audit-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.audit-cta__note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: color var(--transition);
    background: none;
    border: none;
    font-family: var(--font);
}
.faq-btn:hover { color: var(--blue); }
.faq-btn__icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 18px;
    flex-shrink: 0;
    transition: all var(--transition-md);
    line-height: 1;
}
.faq-item.open .faq-btn__icon {
    background: var(--blue);
    color: var(--white);
    transform: rotate(45deg);
    border-color: var(--blue);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer__body { padding-bottom: 22px; font-size: 14px; color: var(--body); line-height: 1.8; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    text-align: center;
    padding: 120px 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    bottom: -80px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse, rgba(12,89,219,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__heading {
    font-family: var(--font);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    max-width: 700px;
    margin: 0 auto 16px;
}
.final-cta__heading .highlight { color: var(--blue); }
.final-cta__sub {
    font-size: 16px;
    color: var(--body);
    max-width: 460px;
    margin: 0 auto 44px;
    line-height: 1.8;
}
.final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.final-cta__note { font-size: 13px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    padding: 72px 0 40px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}
.footer__logo {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 12px;
}
.footer__logo span { color: var(--crimson); }
.footer__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 270px;
    margin-bottom: 20px;
}
.footer__partner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-subtle);
    border: 1px solid rgba(0,200,117,0.25);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
}
.footer__col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__copyright { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer__legal a:hover { color: var(--white); }

/* ============================================================
   STICKY CONTACT BUTTON
   ============================================================ */
.sticky-contact {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.sticky-contact__tooltip {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(6px);
    transition: all var(--transition);
    pointer-events: none;
}
.sticky-contact:hover .sticky-contact__tooltip { opacity: 1; transform: translateX(0); }
.sticky-contact__btn {
    width: 52px; height: 52px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
    transition: all var(--transition);
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.sticky-contact__btn:hover {
    transform: scale(1.1) translateY(-2px);
    background: var(--blue-hover);
    color: white;
}

/* ============================================================
   INNER PAGE HERO (for About, Services, Contact, etc.)
   ============================================================ */
.page-hero {
    background: var(--navy);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 10% 50%, rgba(12,89,219,0.2) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 90% 20%, rgba(192,44,85,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 75%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
    font-family: var(--font);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.page-hero__title .highlight { color: var(--crimson); }
.page-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.8;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: 0.4; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-story__visual {
    position: relative;
}
.about-story__card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-story__card-top {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, #03305e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-story__logo-big {
    font-size: 56px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    letter-spacing: -3px;
}
.about-story__logo-big span { color: rgba(192,44,85,0.6); }
.about-story__card-body { padding: 28px; }
.about-story__stat {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.about-story__stat-item { text-align: center; }
.about-story__stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.about-story__stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.about-story__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--crimson);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    box-shadow: 0 4px 20px rgba(192,44,85,0.4);
    line-height: 1.3;
}
.about-story__badge strong { font-size: 22px; display: block; }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 56px;
}
.value-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.value-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.value-item__icon {
    width: 44px; height: 44px;
    background: var(--blue-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.value-item__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item__text  { font-size: 13px; color: var(--body); line-height: 1.65; }

/* ============================================================
   SERVICES PAGE SPECIFIC
   ============================================================ */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.service-full-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: border-color var(--transition-md), transform var(--transition-md), box-shadow var(--transition-md);
    position: relative;
    overflow: hidden;
}
.service-full-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--crimson) 100%);
    transform: scaleY(0);
    transition: transform var(--transition-md);
    transform-origin: top;
}
.service-full-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-full-card:hover::before { transform: scaleY(1); }
.service-full-card__icon {
    width: 60px; height: 60px;
    background: var(--blue-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.service-full-card__title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-full-card__text  { font-size: 14px; color: var(--body); line-height: 1.75; margin-bottom: 16px; }
.service-full-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.feature-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--light);
    color: var(--navy);
    border: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}
.contact-info__title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.contact-info__text  { font-size: 15px; color: var(--body); line-height: 1.8; margin-bottom: 36px; }
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-item__icon {
    width: 44px; height: 44px;
    background: var(--blue-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-item__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.contact-item__value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-form {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    color: var(--body);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    height: auto;
}
.form-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(12,89,219,0.1);
}
.form-textarea { height: 140px; resize: vertical; padding-top: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }

/* ============================================================
   FREE AUDIT LANDING PAGE
   ============================================================ */
.audit-hero { text-align: center; }
.audit-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.audit-feature {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.audit-feature:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.audit-feature__icon { font-size: 32px; margin-bottom: 14px; }
.audit-feature__title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.audit-feature__text  { font-size: 13px; color: var(--body); line-height: 1.65; }
.audit-form-section {
    background: var(--navy);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.audit-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(12,89,219,0.2) 0%, transparent 55%);
    pointer-events: none;
}
.audit-form-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.audit-form-copy__heading {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.audit-form-copy__heading span { color: var(--crimson); }
.audit-form-copy__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}
.audit-checklist { display: flex; flex-direction: column; gap: 12px; }
.audit-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.audit-checklist li::before {
    content: '✓';
    width: 22px; height: 22px;
    background: var(--green-subtle);
    border: 1px solid rgba(0,200,117,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    flex-shrink: 0;
}
.audit-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.3);
}
.audit-form-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.audit-form-box p  { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-full-grid { grid-template-columns: 1fr; }
    .footer__grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-story   { grid-template-columns: 1fr; gap: 48px; }
    .audit-features { grid-template-columns: repeat(2, 1fr); }
    .audit-form-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid  { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav__links, .nav__cta { display: none; }
    .nav__hamburger { display: flex; }
    .value-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .cases-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 28px; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .hero__proof-divider { display: none; }
    .hero__proof { flex-direction: column; align-items: flex-start; gap: 10px; }
    .services-header { flex-direction: column; align-items: flex-start; }
    .about-values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .audit-features { grid-template-columns: 1fr; }
    .service-full-card { flex-direction: column; }
}
@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .btn--lg { width: 100%; }
    .audit-cta__actions, .final-cta__actions { flex-direction: column; }
    .hero__actions .btn--outline-white { display: none; }
    .sticky-contact { bottom: 16px; right: 16px; }
}
