@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* === Premium Brand Palette === */
    --primary-blue: #0068C2;
    --primary-blue-dark: #004F99;
    --secondary-navy: #001A3E;
    --accent-teal: #00B4CC;
    --accent-warm: #4A9EFF;
    --accent-indigo: #173E9A;
    --supporting-sky: #D6EEFF;
    --supporting-mint: #E6F9FB;
    --bg-white: #FFFFFF;
    --bg-light: #F4F8FF;
    --bg-light-blue: #EBF4FF;
    --text-navy: #001A3E;
    --text-body: #1E3A5F;
    --text-muted: #5A7FA8;
    --white: #FFFFFF;
    --warm-white: #FAFCFF;

    /* === Gradients === */
    --grad-brand: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    --grad-navy: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-blue) 100%);
    --grad-hero: radial-gradient(ellipse 120% 100% at 60% 0%, #C8E6FF 0%, #EBF4FF 45%, #FAFCFF 100%);
    --grad-mesh: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(0,180,204,0.10) 0%, transparent 70%),
                 radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,104,194,0.08) 0%, transparent 70%);

    /* === Shadows === */
    --shadow-xs: 0 2px 6px rgba(0, 26, 62, 0.06);
    --shadow-soft: 0 8px 24px rgba(0, 26, 62, 0.08);
    --shadow-md: 0 16px 40px rgba(0, 26, 62, 0.10);
    --shadow-hover: 0 24px 50px rgba(0, 104, 194, 0.18);
    --shadow-card-glass: 0 8px 32px rgba(0, 26, 62, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    --shadow-lift: 0 26px 60px rgba(0, 26, 62, 0.16);
    --shadow-glow: 0 0 0 1px rgba(0, 180, 204, 0.15), 0 0 36px rgba(0, 180, 204, 0.12);

    /* === Spacing & Layout === */
    --container-width: 1120px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* === Motion === */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.45s var(--ease-out-expo);
    --transition-fast: all 0.22s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    isolation: isolate;
    font-family: 'Inter', sans-serif;
    line-height: 1.75;
    color: var(--text-body);
    background-color: var(--bg-light);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 180, 204, 0.08) 0, transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(0, 104, 194, 0.10) 0, transparent 26%),
        radial-gradient(circle at 78% 78%, rgba(74, 158, 255, 0.08) 0, transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(244,248,255,0.95) 100%);
    background-size: 160% 160%;
    animation: ambientMesh 20s ease-in-out infinite alternate;
    opacity: 0.85;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(0, 104, 194, 0.09) 0 1px, transparent 1.6px),
        radial-gradient(circle, rgba(0, 180, 204, 0.08) 0 1px, transparent 1.6px);
    background-size: 58px 58px, 92px 92px;
    background-position: 0 0, 18px 24px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), transparent 82%);
    opacity: 0.22;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-navy);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    color: var(--secondary-navy);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
}

p {
    font-size: 1rem;
    margin-bottom: 1.4rem;
    color: var(--text-body);
    line-height: 1.8;
}

.section-eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-blue);
    font-weight: 700;
}

.section-lead {
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.06rem;
    color: var(--text-body);
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in card grids */
.card-grid .info-card:nth-child(1) { transition-delay: 0.05s; }
.card-grid .info-card:nth-child(2) { transition-delay: 0.12s; }
.card-grid .info-card:nth-child(3) { transition-delay: 0.19s; }
.card-grid .info-card:nth-child(4) { transition-delay: 0.26s; }
.card-grid .info-card:nth-child(5) { transition-delay: 0.33s; }
.card-grid .info-card:nth-child(6) { transition-delay: 0.40s; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-16px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 104, 194, 0.25); }
    50%       { box-shadow: 0 4px 35px rgba(0, 180, 204, 0.45); }
}

@keyframes ambientMesh {
    0% { transform: translate3d(0, 0, 0) scale(1); background-position: 0% 0%; }
    50% { transform: translate3d(-1.5%, 1%, 0) scale(1.03); background-position: 60% 40%; }
    100% { transform: translate3d(1%, -1.5%, 0) scale(1.05); background-position: 100% 100%; }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 180, 204, 0.20)); }
    50% { filter: drop-shadow(0 0 16px rgba(0, 104, 194, 0.28)); }
}

@keyframes drawStroke {
    to { stroke-dashoffset: 0; }
}

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 90px 0;
}

/* =========================================================================
   BILLING BANNER
   ========================================================================= */
.billing-banner {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: var(--grad-brand);
    color: white;
    text-align: center;
    padding: 0 20px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.billing-banner a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 8px;
    transition: opacity 0.2s;
}

.billing-banner a:hover { opacity: 0.8; }

/* =========================================================================
   NAVIGATION — Premium Glassmorphism
   ========================================================================= */
nav {
    position: sticky;
    top: 38px;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 104, 194, 0.08), 0 4px 24px rgba(0, 26, 62, 0.04);
    padding: 0.65rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 104, 194, 0.08);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 0 rgba(0, 104, 194, 0.12), 0 8px 30px rgba(0, 26, 62, 0.08);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(0, 104, 194, 0.08), rgba(0, 180, 204, 0.14));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 10px 28px rgba(0, 26, 62, 0.10);
    animation: logoGlow 6s ease-in-out infinite;
    transition: transform 0.45s var(--ease-out-expo), box-shadow 0.45s var(--ease-out-expo), background 0.45s var(--ease-out-expo);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.logo-icon .logo-ring,
.logo-icon .logo-mark {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: drawStroke 1.7s var(--ease-out-expo) forwards;
}

.logo-icon .logo-ring {
    animation-delay: 0.05s;
}

.logo-icon .logo-mark {
    animation-delay: 0.28s;
}

.logo-icon .logo-head {
    opacity: 0;
    transform-origin: center;
    animation: fadeIn 0.6s ease forwards 0.8s;
}

.logo-copy,
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    transition: transform 0.45s var(--ease-out-expo), opacity 0.45s var(--ease-out-expo);
}

.nav-logo {
    height: 58px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--secondary-navy);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 9.5px;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

nav.scrolled .logo-icon {
    transform: scale(0.9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), 0 12px 30px rgba(0, 26, 62, 0.12);
}

nav.scrolled .brand-name {
    font-size: 1.22rem;
}

nav.scrolled .brand-tagline {
    letter-spacing: 1.2px;
}

nav.scrolled .logo-text {
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-brand);
    border-radius: 2px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary-blue); }
.nav-links a.btn-primary { color: var(--white) !important; }
.nav-links a.btn-primary:hover { color: var(--white) !important; }

.logo-wrapper:focus-visible,
.nav-links a:focus-visible,
.btn:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
    outline: 3px solid rgba(0, 180, 204, 0.28);
    outline-offset: 3px;
}

/* =========================================================================
   BUTTONS — Premium with shimmer
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 0.82rem 1.9rem;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
    background-size: 200% auto;
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::before {
    opacity: 1;
    animation: shimmer 0.8s linear;
}

.btn,
.btn::before,
.btn span {
    will-change: transform;
}

.btn-primary {
    background: var(--grad-brand);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 104, 194, 0.30);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0, 104, 194, 0.40);
}

.btn-primary:active { transform: translateY(-1px) scale(1.00); }

.btn-sand {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-xs);
}

.btn-sand:hover {
    background: var(--bg-light-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 104, 194, 0.14);
}

/* =========================================================================
   HERO SECTION — Premium with mesh gradient
   ========================================================================= */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    background-image: var(--grad-mesh), var(--grad-hero);
    background-size: 180% 180%, cover;
    background-position: 0% 0%, center;
    animation: ambientMesh 18s ease-in-out infinite alternate;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 180, 204, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 104, 194, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-navy) 30%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    max-width: 560px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 6% 8% 10% 8%;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.58), rgba(255,255,255,0.10));
    filter: blur(2px);
    transform: translate3d(0, 0, 0);
    opacity: 0.7;
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 40px 80px rgba(0, 26, 62, 0.14), 0 0 0 8px rgba(255,255,255,0.7), var(--shadow-glow);
    border: 0;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--secondary-navy);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    border: 1px solid rgba(0, 104, 194, 0.15);
    letter-spacing: 0.02em;
}

/* =========================================================================
   FORMS (Contact & Referral)
   ========================================================================= */
.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 26, 62, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: var(--secondary-navy);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.92rem 1rem !important;
    border: 2px solid #D9E6F2 !important;
    border-radius: var(--radius-md) !important;
    font-size: 0.98rem;
    font-family: 'Inter', sans-serif !important;
    background: var(--warm-white) !important;
    color: var(--text-navy) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
    width: auto;
    padding: 0;
    margin: 0 8px 0 0;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 104, 194, 0.10), 0 0 24px rgba(0, 180, 204, 0.10);
    background: var(--white);
    transform: translateY(-1px);
}

.form-group.is-focused label {
    color: var(--primary-blue);
}

.form-group.is-filled::after {
    content: '✓';
    position: absolute;
    top: 2.05rem;
    right: 0.85rem;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(0, 180, 204, 0.12);
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(0, 104, 194, 0.14);
}

.form-group:has(.checkbox-grid).is-filled::after {
    display: none;
}

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

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    margin-bottom: 0;
    padding: 0.75rem 1rem;
    background: var(--warm-white);
    border: 2px solid #D9E6F2;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    color: var(--text-body);
    position: relative;
}

.checkbox-grid label:hover {
    border-color: var(--primary-blue);
    background: var(--bg-light-blue);
}

.checkbox-grid label:has(input:checked) {
    border-color: var(--primary-blue);
    background: var(--bg-light-blue);
    box-shadow: 0 4px 12px rgba(0, 104, 194, 0.12);
}

.checkbox-grid label:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    color: white;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 104, 194, 0.3);
    z-index: 2;
}

/* =========================================================================
   CARDS — Glass morphism elevated
   ========================================================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2.25rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    padding: 2.5rem 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-glass);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-top: 4px solid var(--primary-blue);
    transition: transform 0.38s var(--ease-spring), box-shadow 0.38s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(145deg, rgba(0,104,194,0.04) 0%, rgba(0,180,204,0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255,255,255,0.8);
    border-top-color: var(--accent-teal);
}

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

.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,0.45) 50%, transparent 58%);
    transform: translateX(-120%) skewX(-15deg);
    transition: transform 0.7s var(--ease-out-expo);
    pointer-events: none;
}

.info-card:hover::after {
    transform: translateX(120%) skewX(-15deg);
}

.info-card img {
    transition: transform 0.5s var(--ease-spring);
    border-radius: 12px;
}

.info-card:hover img {
    transform: scale(1.05) rotate(-0.5deg);
}

.info-card h3 {
    transition: color 0.25s ease;
    margin-bottom: 0.75rem;
}

.info-card:hover h3 { color: var(--primary-blue); }

.info-card a {
    transition: letter-spacing 0.25s ease, color 0.25s ease;
    display: inline-block;
}

.info-card:hover a {
    letter-spacing: 0.03em;
    color: var(--accent-teal) !important;
}

/* =========================================================================
   ABOUT PREVIEW LAYOUT
   ========================================================================= */
.about-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 4.5rem;
    align-items: center;
}

.bio-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.55fr;
    gap: 4rem;
    align-items: start;
}

/* =========================================================================
   CONTACT MAP
   ========================================================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.map-wrapper {
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================================================
   CTA BANNER — Premium depth
   ========================================================================= */
.cta-banner {
    background: var(--grad-navy);
    color: var(--white);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: 180% 180%;
    background-position: 0% 0%;
    animation: ambientMesh 22s ease-in-out infinite alternate;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,180,204,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74,158,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

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

.cta-btn-group {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

/* =========================================================================
   FOOTER — Premium dark
   ========================================================================= */
.site-footer {
    background: #000E24;
    color: var(--white);
    padding: 4.5rem 0 2rem;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: start;
}

.footer-col h4 {
    color: var(--supporting-sky);
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
    font-size: 0.92rem;
}

.footer-col ul li a:hover {
    color: var(--supporting-sky);
}

.footer-col p {
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    margin-bottom: 0.7rem;
    font-size: 0.92rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.88rem;
}

/* =========================================================================
   HAMBURGER MENU
   ========================================================================= */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1005;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--secondary-navy);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

details {
    scroll-margin-top: 120px;
}

details summary {
    transition: color 0.25s ease;
}

details[open] summary {
    color: var(--primary-blue);
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(0, 104, 194, 0.08);
    color: var(--primary-blue);
    margin-left: 1rem;
    transition: transform 0.28s var(--ease-out-expo), background 0.28s ease;
    flex: 0 0 auto;
}

/* =========================================================================
   REFERRAL PAGE
   ========================================================================= */
.referral-container {
    margin-bottom: 80px;
}

@media (max-width: 968px) {
    .referral-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .referral-guidelines { order: -1; }
}

.referral-guidelines div {
    border: 1px solid rgba(0, 104, 194, 0.1);
    box-shadow: var(--shadow-soft);
}

/* =========================================================================
   RESPONSIVE — Tablet (≤992px)
   ========================================================================= */
@media (max-width: 992px) {
    .site-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

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

    .hero h1 {
        font-size: clamp(2.2rem, 4vw, 3rem);
    }
}

/* =========================================================================
   RESPONSIVE — Mobile (≤768px)
   ========================================================================= */
@media (max-width: 768px) {
    section { padding: 56px 0; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }

    .billing-banner {
        font-size: 0.73rem;
        padding: 0 12px;
        height: 38px;
    }

    nav { top: 38px; }

    .hero {
        padding-top: 148px;
        padding-bottom: 56px;
        min-height: auto;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-btns { justify-content: center; }
    .hero-btns .btn { width: 100%; text-align: center; }

    .hero-image-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    .contact-layout,
    .form-row,
    .about-layout,
    .bio-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-layout img {
        max-height: 360px;
        object-fit: cover;
    }

    #contact-form {
        padding: 32px 16px !important;
        border-radius: var(--radius-md) !important;
        margin-bottom: 50px !important;
    }

    .cta-banner { padding: 64px 0; }

    .cta-banner h2 { font-size: 1.75rem; }

    .cta-btn-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-group .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

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

    /* Nav mobile drawer */
    .hamburger { display: flex; }

    nav .container { position: relative; }

    .nav-links {
        display: none;
        position: absolute;
        top: 62px;
        left: -1.5rem;
        right: -1.5rem;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        box-shadow: 0 14px 30px rgba(0, 26, 62, 0.12);
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }

    .nav-links.active { display: flex; }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
        margin: 0;
        font-size: 0.95rem;
    }

    .nav-links a:not(.btn)::after { display: none; }

    .hamburger.toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

    /* FBS page mobile */
    .fbs-logo-text { font-size: 3rem !important; letter-spacing: 2px !important; }
    .fbs-sub-text  { font-size: 1.2rem !important; }
    .fbs-header    { padding: 60px 15px 40px !important; }

    .logo-wrapper {
        gap: 10px;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .brand-name {
        font-size: 1.08rem;
    }
}

/* =========================================================================
   RESPONSIVE — Small phones (≤480px)
   ========================================================================= */
@media (max-width: 480px) {
    .billing-banner {
        font-size: 0.70rem;
        padding: 0 10px;
        height: 34px;
    }

    nav { top: 34px; }
    .hero { padding-top: 130px; }
    .hero h1 { font-size: 1.85rem !important; letter-spacing: -0.02em; }

    .trust-badges span {
        font-size: 0.70rem !important;
        padding: 4px 10px !important;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    h2 { font-size: 1.5rem; }

    .info-card { padding: 1.75rem 1.5rem; }

    .cta-banner h2 { font-size: 1.5rem; }

    .logo-text .brand-tagline {
        font-size: 8px;
        letter-spacing: 1.1px;
    }
}

/* =========================================================================
   ANIMATION LAYER — Enhanced interactions & motion
   ========================================================================= */

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal), var(--accent-warm));
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    z-index: 9999;
    pointer-events: none;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 8px rgba(0, 180, 204, 0.5);
    transition: width 0.08s linear;
}

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

/* --- Cursor glow dot --- */
#cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,204,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: transform;
}

/* --- Hero content staggered entrance --- */
.hero-content .hero-line {
    opacity: 0;
    transform: translateY(22px) skewY(1deg);
    transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.hero-content .hero-line.revealed {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* --- Hero image entrance --- */
.hero-image-wrapper {
    opacity: 0;
    transform: translateX(28px) scale(0.97);
    transition: opacity 0.9s var(--ease-out-expo) 0.35s,
                transform 0.9s var(--ease-out-expo) 0.35s;
}

.hero-image-wrapper.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Hero image subtle float */
@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero-img.floating {
    animation: floatImage 6s ease-in-out infinite;
}

@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;
    }

    body::before,
    body::after,
    .hero,
    .cta-banner,
    .logo-icon,
    .ambient-particle {
        animation: none !important;
    }

    .animate-on-scroll,
    .animate-from-left,
    .animate-from-right,
    .hero-content .hero-line,
    .hero-image-wrapper {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Hero decorative orbs pulse --- */
.hero::before {
    animation: orbPulse 8s ease-in-out infinite;
}

.hero::after {
    animation: orbPulse 10s ease-in-out infinite reverse;
}

@keyframes orbPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.15); }
}

.ambient-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.ambient-particle {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.1) 60%, transparent 100%);
    box-shadow: 0 0 18px rgba(0, 180, 204, 0.08);
    animation: particleDrift linear infinite;
    will-change: transform, opacity;
}

@keyframes particleDrift {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -26px, 0) scale(1.18); }
    100% { transform: translate3d(0, 0, 0) scale(0.92); }
}

/* --- 3D Card Tilt (custom props set by JS) --- */
.info-card {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    will-change: transform;
}

.info-card:hover {
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-10px) scale(1.03);
}

/* --- Card image shine sweep on hover --- */
.info-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.info-card .card-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 60%
    );
    transform: skewX(-15deg);
    transition: left 0s;
    pointer-events: none;
}

.info-card:hover .card-img-wrap::after {
    left: 150%;
    transition: left 0.6s ease;
}

.info-card .card-img-wrap img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.55s var(--ease-spring);
}

.info-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

/* --- "Learn more →" arrow slide --- */
.info-card a[href] {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.info-card a[href]::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

/* Strip the &rarr; from HTML since we inject via ::after - handled in JS */

/* --- Section heading underline reveal --- */
.section-eyebrow {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--grad-brand);
    transition: width 0.6s var(--ease-out-expo);
    border-radius: 2px;
}

.section-eyebrow.visible::after {
    width: 100%;
}

/* --- Stat number pulse on enter --- */
@keyframes statPop {
    0%   { transform: scale(0.7); opacity: 0; }
    70%  { transform: scale(1.12); }
    100% { transform: scale(1);   opacity: 1; }
}

.stat-number {
    display: inline-block;
    opacity: 0;
}

.stat-number.popped {
    animation: statPop 0.65s var(--ease-spring) forwards;
}

/* --- About image parallax tilt --- */
.about-tilt-wrap {
    transition: transform 0.25s ease;
    will-change: transform;
}

/* --- About image hover shine --- */
.about-tilt-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.about-tilt-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255,255,255,0.28) 50%,
        transparent 65%
    );
    transform: skewX(-15deg);
    pointer-events: none;
    transition: left 0s;
}

.about-tilt-wrap:hover::after {
    left: 160%;
    transition: left 0.75s ease;
}

.about-tilt-wrap img {
    display: block;
    width: 100%;
    transition: transform 0.5s var(--ease-out-expo);
}

.about-tilt-wrap:hover img {
    transform: scale(1.03);
}

/* --- Button ripple --- */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleOut 0.6s linear;
    pointer-events: none;
}

@keyframes rippleOut {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Magnetic button (transform set by JS) --- */
.btn-primary {
    transition: transform 0.35s var(--ease-out-expo),
                box-shadow 0.35s ease,
                background 0.3s ease;
}

/* --- Nav link active state glow --- */
.nav-links a.active-page {
    color: var(--primary-blue);
}

.nav-links a.active-page::after {
    width: 100% !important;
}

/* --- FAQ details smooth open --- */
details {
    overflow: hidden;
}

details summary {
    position: relative;
    padding-right: 2rem;
    transition: color 0.2s ease;
}

details summary:hover {
    color: var(--primary-blue) !important;
}

details summary .faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.35s var(--ease-out-expo), color 0.2s ease;
    font-style: normal;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--primary-blue);
}

details[open] summary .faq-icon {
    transform: translateY(-50%) rotate(45deg);
    color: var(--accent-teal);
}

details[open] {
    border-left-color: var(--accent-teal) !important;
}

/* --- CTA section floating accent dots --- */
.cta-banner {
    overflow: hidden;
}

.cta-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    animation: ctaFloat linear infinite;
    pointer-events: none;
}

@keyframes ctaFloat {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50%  { opacity: 1; }
    100% { transform: translateY(-180px) rotate(360deg); opacity: 0; }
}

/* --- Service page hero image shimmer --- */
.service-hero-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-hero-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.3) 50%,
        transparent 60%
    );
    transform: skewX(-10deg);
    pointer-events: none;
    animation: serviceShine 5s ease-in-out infinite 2s;
}

@keyframes serviceShine {
    0%   { left: -70%; }
    40%  { left: -70%; }
    60%  { left: 160%; }
    100% { left: 160%; }
}

/* --- Scroll-triggered slide from left/right --- */
.animate-from-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-from-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.animate-from-left.visible,
.animate-from-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================================
   TEAM PROFILES
   ========================================================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card-glass);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: transform 0.38s var(--ease-spring), box-shadow 0.38s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
}

.team-card-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-card-body {
    padding: 2rem 2.25rem 2.5rem;
}

.team-card-body h3 {
    font-size: 1.4rem;
    color: var(--secondary-navy);
    margin-bottom: 0.25rem;
}

.team-card-body .team-credentials {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-blue);
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    display: block;
}

.team-card-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
}

.team-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.team-card-badges span {
    background: var(--bg-light-blue);
    color: var(--secondary-navy);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(0, 104, 194, 0.12);
}

/* =========================================================================
   OFFICE GALLERY
   ========================================================================= */
.office-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.office-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 4/3;
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.office-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.office-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out-expo);
}

.office-gallery-item:hover img {
    transform: scale(1.06);
}

.office-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: translateX(-120%) skewX(-15deg);
    transition: transform 0.7s var(--ease-out-expo);
    pointer-events: none;
}

.office-gallery-item:hover::after {
    transform: translateX(120%) skewX(-15deg);
}

/* =========================================================================
   HERO TAGLINE
   ========================================================================= */
.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    opacity: 0.92;
}

/* =========================================================================
   RESPONSIVE — Team & Gallery
   ========================================================================= */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-card-photo {
        height: 260px;
    }

    .office-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .office-gallery {
        grid-template-columns: 1fr;
    }

    .team-card-body {
        padding: 1.5rem;
    }
}

/* --- Footer link hover nudge --- */
.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.2s ease, gap 0.25s ease, padding-left 0.25s ease;
}

.footer-col ul li a:hover {
    gap: 5px;
    padding-left: 4px;
    color: var(--supporting-sky);
}

/* --- Trust badge entrance stagger --- */
@keyframes badgePop {
    0%   { opacity: 0; transform: scale(0.75) translateY(8px); }
    70%  { transform: scale(1.06) translateY(-1px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.trust-badges span {
    opacity: 0;
    animation: badgePop 0.5s var(--ease-spring) forwards;
}

.trust-badges span:nth-child(1) { animation-delay: 0.55s; }
.trust-badges span:nth-child(2) { animation-delay: 0.70s; }
.trust-badges span:nth-child(3) { animation-delay: 0.85s; }

/* --- Reduce motion safety --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-img.floating { animation: none; }
    #cursor-glow { display: none; }
    .cta-dot { display: none; }
    .service-hero-img-wrap::after { display: none; }
}
