/* ============================================
   Patna AC Services and Repair — Landing Page Styles
   AC, Cooler, Washing Machine, Fridge & Electronics Repair
   ============================================
   
   Table of Contents:
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset & Base Styles
   3.  Utility Classes
   4.  Buttons
   5.  Section Headers
   6.  Navbar
   7.  Hero Section
   8.  Services Section
   9.  Why Choose Us Section
   10. How It Works Section
   11. Testimonials Section
   12. Contact Section
   13. Footer
   14. Toast Notification
   15. Scroll Reveal Animations
   16. Responsive (Tablet & Mobile)
   ============================================ */


/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
    /* — Primary Palette — */
    --clr-primary-50: #EFF6FF;
    --clr-primary-100: #DBEAFE;
    --clr-primary-200: #BFDBFE;
    --clr-primary-300: #93C5FD;
    --clr-primary-400: #60A5FA;
    --clr-primary-500: #3B82F6;
    --clr-primary-600: #2563EB;
    --clr-primary-700: #1D4ED8;
    --clr-primary-800: #1E40AF;
    --clr-primary-900: #1E3A8A;

    /* — Neutral / Navy Palette — */
    --clr-navy-900: #0A1F44;
    --clr-navy-800: #0F2B5B;
    --clr-navy-700: #163572;
    --clr-navy-600: #1E4289;
    --clr-navy-500: #2B5EA7;
    --clr-gray-900: #111827;
    --clr-gray-800: #1F2937;
    --clr-gray-700: #374151;
    --clr-gray-600: #4B5563;
    --clr-gray-500: #6B7280;
    --clr-gray-400: #9CA3AF;
    --clr-gray-300: #D1D5DB;
    --clr-gray-200: #E5E7EB;
    --clr-gray-100: #F3F4F6;
    --clr-gray-50: #F9FAFB;
    --clr-white: #FFFFFF;

    /* — Accent / Success — */
    --clr-success: #10B981;
    --clr-success-light: #D1FAE5;
    --clr-error: #EF4444;
    --clr-error-light: #FEE2E2;
    --clr-warning: #F59E0B;

    /* — Gradients — */
    --grad-hero: linear-gradient(135deg, #0A1F44 0%, #1D4ED8 100%);
    --grad-primary: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    --grad-card-hover: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    --grad-contact: linear-gradient(135deg, #0A1F44 0%, #1E40AF 50%, #2563EB 100%);
    --grad-glow: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);

    /* — Typography — */
    --ff-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-2xl: 1.875rem;
    /* 30px */
    --fs-3xl: 2.25rem;
    /* 36px */
    --fs-4xl: 2.75rem;
    /* 44px */
    --fs-5xl: 3.5rem;
    /* 56px */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;
    --lh-tight: 1.2;
    --lh-snug: 1.35;
    --lh-normal: 1.6;
    --lh-relaxed: 1.75;

    /* — Spacing — */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* — Radius — */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* — Shadows — */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 30px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);

    /* — Transitions — */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-butter: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast: 0.2s;
    --dur-normal: 0.35s;
    --dur-slow: 0.5s;
    --dur-slower: 0.7s;

    /* — Layout — */
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --nav-height: 72px;
}


/* ============================================
   2. RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--ff-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--clr-gray-800);
    background-color: var(--clr-white);
    overflow-x: hidden;
    animation: pageEntrance 0.8s var(--ease-butter) both;
}

@media (prefers-reduced-motion: reduce) {
    body {
        animation: none;
    }
}

@keyframes pageEntrance {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--dur-normal) var(--ease-butter),
        opacity var(--dur-normal) var(--ease-butter);
}

ul,
ol {
    list-style: none;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
}

/* Smooth focus ring for keyboard accessibility */
:focus-visible {
    outline: 2px solid var(--clr-primary-400);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
    transition: outline-offset var(--dur-fast) var(--ease-out);
}

::selection {
    background: var(--clr-primary-200);
    color: var(--clr-navy-900);
}


/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* ============================================
   4. BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 0.7rem 1.6rem;
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    line-height: 1;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--dur-normal) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-butter),
        background var(--dur-normal) var(--ease-butter),
        border-color var(--dur-normal) var(--ease-butter),
        color var(--dur-normal) var(--ease-butter);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity var(--dur-fast) ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary-600);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
    background: var(--clr-primary-700);
    border-color: var(--clr-primary-700);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-3px) scale(1.015);
}

.btn--primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
    transition-duration: 0.1s;
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px) scale(1.015);
}

.btn--outline:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.1s;
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: var(--fs-base);
    border-radius: var(--radius-xl);
}

.btn--full {
    width: 100%;
}


/* ============================================
   5. SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-16);
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

.section-header__tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--clr-primary-50);
    color: var(--clr-primary-700);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid var(--clr-primary-100);
    margin-bottom: var(--sp-4);
}

.section-header__tag--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-primary-200);
    border-color: rgba(255, 255, 255, 0.15);
}

.section-header__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    color: var(--clr-navy-900);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-4);
    letter-spacing: -0.02em;
}

.section-header--light .section-header__title {
    color: var(--clr-white);
}

.section-header__desc {
    font-size: var(--fs-md);
    color: var(--clr-gray-500);
    line-height: var(--lh-relaxed);
}

.section-header--light .section-header__desc {
    color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   6. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    transition: background var(--dur-slow) var(--ease-butter),
        box-shadow var(--dur-slow) var(--ease-butter),
        border-color var(--dur-slow) var(--ease-butter),
        backdrop-filter var(--dur-slow) var(--ease-butter);
    background: transparent;
    will-change: background, box-shadow;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    transition: color var(--dur-normal) ease;
    z-index: 10;
    /* Entry animation */
    animation: logoEntrance 0.7s var(--ease-spring) 0.2s both;
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: translateX(-18px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.navbar.scrolled .navbar__logo {
    color: var(--clr-navy-900);
}

.navbar__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

/* SVG logo — no background, transparent cutout */
.navbar__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    /* On dark hero bg: brighten so navy text becomes white/light */
    filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
    transition: filter var(--dur-normal) var(--ease-butter),
        height var(--dur-normal) var(--ease-butter),
        transform 0.35s var(--ease-spring);
    /* Gentle continuous breathing/floating animation */
    animation: logoBreathe 4s var(--ease-smooth) infinite;
    will-change: transform;
}

@keyframes logoBreathe {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.03);
    }
}

/* Hover: lift + glow */
.navbar__logo:hover .navbar__logo-img {
    transform: translateY(-4px) scale(1.08) rotate(-2deg);
    animation-play-state: paused;
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(96, 165, 250, 0.7)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
}

/* Once navbar is scrolled (white bg) — restore natural SVG colours */
.navbar.scrolled .navbar__logo-img {
    filter: none;
    height: 48px;
}

.navbar.scrolled .navbar__logo:hover .navbar__logo-img {
    filter: drop-shadow(0 4px 16px rgba(37, 99, 235, 0.45));
    transform: translateY(-4px) scale(1.08) rotate(-2deg);
}

/* Footer: show logo in natural colours with a light glow so it reads on dark bg */
.footer__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    /* Lighten slightly so navy doesn't vanish on dark footer */
    filter: brightness(0) invert(1) opacity(0.92);
    transition: transform 0.35s var(--ease-spring),
        filter 0.35s var(--ease-butter);
    /* Subtle float matching brand feel */
    animation: logoBreathe 5s var(--ease-smooth) infinite;
    will-change: transform;
}

.footer__logo:hover .footer__logo-img {
    transform: translateY(-5px) scale(1.1) rotate(2deg);
    animation-play-state: paused;
    filter: brightness(0) invert(1) opacity(0.92) drop-shadow(0 6px 18px rgba(96, 165, 250, 0.55));
}

@media (prefers-reduced-motion: reduce) {

    .navbar__logo-img,
    .footer__logo-img {
        animation: none;
    }

    .navbar__logo {
        animation: none;
    }
}

.navbar__nav {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.navbar__link {
    padding: 0.5rem 1rem;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    transition: color var(--dur-normal) var(--ease-butter),
        background var(--dur-normal) var(--ease-butter),
        transform var(--dur-normal) var(--ease-butter);
    position: relative;
}

.navbar.scrolled .navbar__link {
    color: var(--clr-gray-600);
}

.navbar__link:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar__link:hover {
    color: var(--clr-primary-600);
    background: var(--clr-primary-50);
}

.navbar__link.active {
    color: var(--clr-white);
}

.navbar.scrolled .navbar__link.active {
    color: var(--clr-primary-600);
    background: var(--clr-primary-50);
}

.navbar__cta {
    margin-left: var(--sp-4);
}

.navbar__cta-mobile {
    display: none;
}

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all var(--dur-normal) var(--ease-out);
    transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span {
    background: var(--clr-navy-900);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
    background: var(--grad-hero);
    padding: calc(var(--nav-height) + var(--sp-20)) 0 var(--sp-20);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Subtle decorative gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Dot pattern background */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 560px;
}

.hero__title {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-black);
    color: var(--clr-white);
    line-height: var(--lh-tight);
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-6);
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 50%, #BFDBFE 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero__subtitle {
    font-size: var(--fs-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-10);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    margin-bottom: var(--sp-10);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    backdrop-filter: blur(4px);
    transition: background var(--dur-normal) var(--ease-butter),
        border-color var(--dur-normal) var(--ease-butter),
        transform var(--dur-normal) var(--ease-spring);
}

.hero__badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero__badge-icon {
    font-size: var(--fs-sm);
    line-height: 1;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---- Morphing Service Icons ---- */
.hero__morph-container {
    position: relative;
    width: 320px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: heroFloat 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    will-change: transform;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-16px) rotate(0deg);
    }

    75% {
        transform: translateY(-10px) rotate(-0.5deg);
    }
}

/* Pulsing glow rings behind the icon */
.hero__morph-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    margin-top: -40px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.25);
    animation: morphPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.hero__morph-ring--delayed {
    width: 200px;
    height: 200px;
    border-color: rgba(59, 130, 246, 0.15);
    animation-delay: 1.5s;
}

@keyframes morphPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.3;
        box-shadow: 0 0 30px 8px rgba(59, 130, 246, 0.1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
    }
}

/* Icon stage — stacked absolutely */
.hero__morph-icons {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.hero__morph-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
    animation: morphCycle 12s var(--ease-butter) infinite;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.hero__morph-icon svg {
    width: 160px;
    height: 160px;
}

/* Staggered delays — each icon gets 3s of the 12s cycle */
.hero__morph-icon--1 {
    animation-delay: 0s;
}

.hero__morph-icon--2 {
    animation-delay: 3s;
}

.hero__morph-icon--3 {
    animation-delay: 6s;
}

.hero__morph-icon--4 {
    animation-delay: 9s;
}

/*
   12s total cycle, each icon visible for ~3s:
   0%   = start fade in
   4%   = fully visible
   21%  = still visible
   25%  = faded out
   25%-100% = stay hidden
*/
@keyframes morphCycle {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-8deg);
    }

    4% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    21% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    25% {
        opacity: 0;
        transform: scale(0.7) rotate(8deg);
    }

    100% {
        opacity: 0;
        transform: scale(0.7) rotate(8deg);
    }
}

/* Service name labels — cycling in sync */
.hero__morph-labels {
    position: relative;
    height: 36px;
    margin-top: var(--sp-6);
    overflow: hidden;
}

.hero__morph-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    white-space: nowrap;
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    opacity: 0;
    animation: labelCycle 12s var(--ease-butter) infinite;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__morph-label--1 {
    animation-delay: 0s;
}

.hero__morph-label--2 {
    animation-delay: 3s;
}

.hero__morph-label--3 {
    animation-delay: 6s;
}

.hero__morph-label--4 {
    animation-delay: 9s;
}

@keyframes labelCycle {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    4% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    21% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    25% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* "One-Stop Repair Shop" subtitle */
.hero__morph-subtitle {
    margin-top: var(--sp-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {

    .hero__morph-icon,
    .hero__morph-label {
        animation: none;
    }

    .hero__morph-icon--1,
    .hero__morph-label--1 {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    .hero__morph-ring {
        animation: none;
    }

    .hero__morph-container {
        animation: none;
    }
}


/* ============================================
   8. SERVICES SECTION
   ============================================ */
.services {
    padding: var(--sp-24) 0;
    background: var(--clr-gray-50);
    position: relative;
}

/* Decorative top gradient bleed */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--grad-glow);
    pointer-events: none;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}

.service-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--sp-8);
    text-align: center;
    transition: transform var(--dur-slow) var(--ease-spring),
        box-shadow var(--dur-slow) var(--ease-butter),
        border-color var(--dur-normal) var(--ease-butter);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur-slow) var(--ease-out);
}

.service-card:hover {
    border-color: var(--clr-primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px) scale(1.01);
}

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

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--sp-5);
    background: var(--clr-primary-50);
    border-radius: var(--radius-xl);
    color: var(--clr-primary-600);
    transition: transform var(--dur-slow) var(--ease-spring),
        background var(--dur-normal) var(--ease-butter),
        color var(--dur-normal) var(--ease-butter),
        box-shadow var(--dur-normal) var(--ease-butter);
    will-change: transform;
}

.service-card:hover .service-card__icon {
    background: var(--clr-primary-600);
    color: var(--clr-white);
    transform: scale(1.12) rotate(-3deg);
    box-shadow: var(--shadow-glow);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
}

.service-card__title {
    font-size: var(--fs-md);
    font-weight: var(--fw-bold);
    color: var(--clr-navy-900);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-snug);
}

.service-card__desc {
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    line-height: var(--lh-relaxed);
}


/* ============================================
   9. WHY CHOOSE US SECTION
   ============================================ */
.why-us {
    padding: var(--sp-24) 0;
    background: var(--clr-white);
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--sp-16);
    align-items: center;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}

.feature-block {
    display: flex;
    gap: var(--sp-5);
    align-items: flex-start;
    padding: var(--sp-5);
    border-radius: var(--radius-xl);
    transition: background var(--dur-normal) var(--ease-butter),
        transform var(--dur-slow) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-butter);
    will-change: transform;
}

.feature-block:hover {
    background: var(--clr-gray-50);
    transform: translateX(8px);
    box-shadow: -4px 0 0 var(--clr-primary-400);
}

.feature-block__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-50);
    border-radius: var(--radius-lg);
    transition: transform var(--dur-slow) var(--ease-spring),
        background var(--dur-normal) var(--ease-butter);
}

.feature-block:hover .feature-block__icon {
    background: var(--clr-primary-100);
    transform: scale(1.15) rotate(-5deg);
}

.feature-block__icon svg {
    width: 24px;
    height: 24px;
}

.feature-block__text h4 {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--clr-navy-900);
    margin-bottom: var(--sp-1);
}

.feature-block__text p {
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    line-height: var(--lh-relaxed);
}

/* Stats Card */
.why-us__stats {
    display: flex;
    justify-content: center;
}

.stats-card {
    background: var(--grad-hero);
    border-radius: var(--radius-3xl);
    padding: var(--sp-10) var(--sp-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-6);
    width: 100%;
    max-width: 340px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.stats-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.stats-card__item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-card__number {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-black);
    color: var(--clr-white);
    line-height: 1;
}

.stats-card__plus {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--clr-primary-300);
    margin-left: 2px;
}

.stats-card__label {
    display: block;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.65);
    margin-top: var(--sp-2);
    font-weight: var(--fw-medium);
}

.stats-card__divider {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
}


/* ============================================
   10. HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: var(--sp-24) 0;
    background: var(--clr-gray-50);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 0 1 280px;
    text-align: center;
    padding: var(--sp-6);
}

.step__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-6);
}

.step__number {
    position: absolute;
    top: -8px;
    right: calc(50% - 52px);
    width: 28px;
    height: 28px;
    background: var(--clr-primary-600);
    color: var(--clr-white);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.step__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-white);
    border-radius: var(--radius-2xl);
    color: var(--clr-primary-600);
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-slow) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-butter),
        background var(--dur-normal) var(--ease-butter),
        color var(--dur-normal) var(--ease-butter);
    will-change: transform;
}

.step:hover .step__icon {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px) scale(1.05);
    background: var(--clr-primary-600);
    color: var(--clr-white);
}

.step__icon svg {
    width: 36px;
    height: 36px;
}

.step__title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--clr-navy-900);
    margin-bottom: var(--sp-2);
}

.step__desc {
    font-size: var(--fs-sm);
    color: var(--clr-gray-500);
    line-height: var(--lh-relaxed);
}

.step__connector {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.step__connector svg {
    width: 100%;
    height: 20px;
    opacity: 0.5;
}


/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--sp-24) 0;
    background: var(--clr-white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.testimonial-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-200);
    border-radius: var(--radius-2xl);
    padding: var(--sp-8);
    transition: transform var(--dur-slow) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-butter),
        border-color var(--dur-normal) var(--ease-butter);
    position: relative;
    will-change: transform;
}

.testimonial-card:hover {
    border-color: var(--clr-primary-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px) scale(1.01);
}

.testimonial-card__quote {
    margin-bottom: var(--sp-4);
}

.testimonial-card__quote svg {
    width: 32px;
    height: 32px;
}

.testimonial-card__stars {
    color: var(--clr-warning);
    font-size: var(--fs-md);
    margin-bottom: var(--sp-4);
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: var(--fs-sm);
    color: var(--clr-gray-600);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-6);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--clr-primary-100);
    color: var(--clr-primary-700);
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--dur-normal) var(--ease-spring);
}

.testimonial-card:hover .testimonial-card__avatar {
    transform: scale(1.1);
}

.testimonial-card__name {
    display: block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--clr-navy-900);
}

.testimonial-card__role {
    font-size: var(--fs-xs);
    color: var(--clr-gray-400);
}


/* ============================================
   12. CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--sp-24) 0;
    background: var(--grad-contact);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--sp-16);
    position: relative;
    z-index: 1;
}

.contact__form-wrap {
    max-width: 520px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    margin-top: var(--sp-8);
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.contact-form__label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.9);
}

.contact-form__optional {
    font-weight: var(--fw-regular);
    color: rgba(255, 255, 255, 0.4);
}

.contact-form__input {
    padding: 0.8rem 1rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: var(--clr-white);
    font-size: var(--fs-base);
    transition: border-color var(--dur-normal) var(--ease-butter),
        background var(--dur-normal) var(--ease-butter),
        box-shadow var(--dur-normal) var(--ease-butter),
        transform var(--dur-fast) var(--ease-out);
    backdrop-filter: blur(4px);
}

.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--dur-normal) var(--ease-butter);
}

.contact-form__input:focus {
    outline: none;
    border-color: var(--clr-primary-400);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15),
        0 0 20px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.contact-form__input:focus::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.contact-form__input.error {
    border-color: var(--clr-error);
    background: rgba(239, 68, 68, 0.08);
    animation: inputShake 0.4s var(--ease-out);
}

@keyframes inputShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(2px);
    }
}

.contact-form__select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.contact-form__select option {
    background: var(--clr-navy-900);
    color: var(--clr-white);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__error {
    font-size: var(--fs-xs);
    color: #FCA5A5;
    min-height: 16px;
}

/* Contact Info */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.contact__info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: var(--sp-8);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.contact__info-item {
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
    transition: transform var(--dur-normal) var(--ease-spring);
}

.contact__info-item:hover {
    transform: translateX(4px);
}

.contact__info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-lg);
    color: var(--clr-primary-300);
    transition: transform var(--dur-normal) var(--ease-spring),
        background var(--dur-normal) var(--ease-butter);
}

.contact__info-item:hover .contact__info-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.25);
}

.contact__info-icon svg {
    width: 20px;
    height: 20px;
}

.contact__info-label {
    display: block;
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.5);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-1);
}

.contact__info-value {
    display: block;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fw-medium);
    word-break: break-all;
}

a.contact__info-value:hover {
    color: var(--clr-primary-300);
}

.contact__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    min-height: 160px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-2xl);
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--fs-sm);
}


/* ============================================
   13. FOOTER
   ============================================ */
.footer {
    background: var(--clr-navy-900);
    padding-top: var(--sp-16);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--sp-12);
    padding-bottom: var(--sp-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--clr-white);
    margin-bottom: var(--sp-4);
}

.footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: var(--lh-relaxed);
    max-width: 320px;
}

.footer__heading {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-5);
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
}

.footer__link {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    padding: var(--sp-2) 0;
    transition: color var(--dur-normal) var(--ease-butter),
        transform var(--dur-normal) var(--ease-spring);
}

a.footer__link:hover {
    color: var(--clr-primary-400);
    transform: translateX(6px);
}

.footer__bottom {
    padding: var(--sp-6) 0;
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.3);
}


/* ============================================
   14. TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px) scale(0.9);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 1rem 1.5rem;
    background: var(--clr-success);
    color: var(--clr-white);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur-slow) var(--ease-spring),
        opacity var(--dur-normal) var(--ease-butter),
        visibility var(--dur-normal);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.toast svg {
    flex-shrink: 0;
}


/* ============================================
   15. SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s var(--ease-butter),
        transform 0.8s var(--ease-butter);
    will-change: opacity, transform;
}

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


/* ============================================
   16. RESPONSIVE — TABLET & MOBILE
   ============================================ */

/* Large Tablets / Small Desktops */
@media (max-width: 1024px) {
    :root {
        --fs-5xl: 2.75rem;
        --fs-4xl: 2.25rem;
        --fs-3xl: 1.875rem;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }

    .why-us__stats {
        justify-content: flex-start;
    }

    .stats-card {
        flex-direction: row;
        max-width: 100%;
        gap: var(--sp-8);
        padding: var(--sp-8);
    }

    .stats-card__divider {
        width: 2px;
        height: 40px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }

    .contact__form-wrap {
        max-width: 100%;
    }
}

/* Tablets (Portrait) */
@media (max-width: 768px) {
    :root {
        --fs-5xl: 2.25rem;
        --fs-4xl: 1.875rem;
        --fs-3xl: 1.5rem;
        --sp-24: 4rem;
        --sp-20: 3.5rem;
        --sp-16: 3rem;
    }

    /* Navbar Mobile */
    .navbar__hamburger {
        display: flex;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 31, 68, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--sp-4);
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all var(--dur-normal) var(--ease-out);
    }

    .navbar__nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .navbar__link {
        font-size: var(--fs-xl);
        color: rgba(255, 255, 255, 0.85);
        padding: var(--sp-3) var(--sp-6);
    }

    .navbar__link:hover,
    .navbar__link.active {
        color: var(--clr-white);
        background: rgba(255, 255, 255, 0.08);
    }

    .navbar__cta-mobile {
        display: inline-flex;
        margin-top: var(--sp-4);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: calc(var(--nav-height) + var(--sp-12)) 0 var(--sp-12);
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__badges {
        justify-content: center;
    }

    .hero__morph-container {
        width: 260px;
        height: 320px;
        margin: 0 auto;
    }

    .hero__morph-icon svg {
        width: 130px;
        height: 130px;
    }

    .hero__morph-ring {
        width: 200px;
        height: 200px;
    }

    .hero__morph-ring--delayed {
        width: 160px;
        height: 160px;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: var(--sp-4);
    }

    .step__connector {
        transform: rotate(90deg);
        padding-top: 0;
        flex: 0 0 40px;
    }

    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
        text-align: center;
    }

    .footer__tagline {
        max-width: 100%;
    }

    .footer__link {
        display: inline-block;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --fs-5xl: 1.875rem;
        --fs-4xl: 1.5rem;
        --fs-3xl: 1.25rem;
        --container-padding: 1rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--sp-6);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__badges {
        flex-direction: column;
        align-items: center;
    }

    .stats-card {
        flex-direction: column;
        padding: var(--sp-6);
    }

    .stats-card__divider {
        width: 40px;
        height: 2px;
    }

    .section-header {
        margin-bottom: var(--sp-10);
    }
}


/* ============================================
   17. ACCESSIBILITY — REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero__morph-container {
        animation: none;
    }
}