/* ====================================================
   BrightSmile Dental Studio — Premium Landing Page CSS
   Design System + Components
   ==================================================== */

/* ---------- Google Fonts are loaded via HTML ---------- */

/* ========== 1. DESIGN TOKENS ========== */
:root {
    /* Brand Colors */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #6366f1;
    --accent-dark: #4f46e5;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Gradients */
    --grad-brand: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --grad-hero: linear-gradient(145deg, #f0f9ff 0%, #ede9fe 50%, #f0fdf4 100%);
    --grad-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);

    /* Neutrals */
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-2: #f1f5f9;
    --border: #e2e8f0;
    --border-light: rgba(0,0,0,0.06);

    /* Text */
    --text-900: #0f172a;
    --text-700: #334155;
    --text-500: #64748b;
    --text-400: #94a3b8;
    --text-white: #ffffff;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.15);
    --shadow-brand: 0 8px 30px rgba(14, 165, 233, 0.3);

    /* Spacing */
    --section-pad: 96px;

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 9999px;

    /* Transitions */
    --t-fast: 0.15s ease;
    --t-normal: 0.3s ease;
    --t-slow: 0.5s ease;

    /* Typography */
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

.container { width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }
.section-pad { padding: var(--section-pad) 0; }

/* ========== 3. TYPOGRAPHY ========== */
h1,h2,h3,h4 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

.text-gradient {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-gradient {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ========== 4. BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
    padding: 13px 24px; border-radius: var(--r-md);
    border: 2px solid transparent;
    transition: all var(--t-normal); cursor: pointer;
    white-space: nowrap; line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }

.btn-primary {
    background: var(--grad-brand); color: white;
    box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(14,165,233,0.45); color: white; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: white; color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-1px); }

.btn-ghost {
    background: transparent; color: var(--text-700);
    border-color: var(--border);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--text-400); color: var(--text-900); }

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white; box-shadow: 0 4px 16px rgba(239,68,68,0.35);
}
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(239,68,68,0.45); color: white; }

.btn-white {
    background: white; color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); color: var(--primary-dark); }

.btn-xl { padding: 18px 36px; font-size: 1.125rem; border-radius: var(--r-lg); }
.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.btn-submit {
    width: 100%; padding: 17px; font-size: 1.05rem;
    background: var(--grad-brand); color: white;
    border: none; border-radius: var(--r-md);
    box-shadow: var(--shadow-brand);
    cursor: pointer; transition: all var(--t-normal);
    margin-top: 8px; position: relative; overflow: hidden;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(14,165,233,0.45); }
.btn-submit::after {
    content: ''; position: absolute; inset: 0;
    background: white; opacity: 0; transition: opacity 0.2s;
}
.btn-submit:active::after { opacity: 0.08; }

/* ========== 5. SECTION INTRO ========== */
.section-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-intro h2 { margin-bottom: 16px; }
.section-intro p { color: var(--text-500); font-size: 1.1rem; }
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(99,102,241,0.12));
    color: var(--primary);
    font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 6px 16px; border-radius: var(--r-full);
    border: 1px solid rgba(14,165,233,0.2);
    margin-bottom: 20px;
}

/* ========== 6. ANNOUNCEMENT BAR ========== */
.announcement-bar {
    background: var(--grad-brand); color: white;
    text-align: center; padding: 11px 60px 11px 24px;
    font-size: 0.875rem; font-weight: 500;
    position: relative; z-index: 200;
}
.announcement-bar p { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ann-cta {
    background: rgba(255,255,255,0.2); color: white;
    padding: 4px 14px; border-radius: var(--r-full);
    font-weight: 700; font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background var(--t-fast);
}
.ann-cta:hover { background: rgba(255,255,255,0.35); color: white; }
.ann-close {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1;
    padding: 6px; transition: color var(--t-fast);
}
.ann-close:hover { color: white; }
.ann-close.hidden { display: none; }

/* ========== 7. HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); transition: all var(--t-normal);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header.offset-bar { top: 42px; } /* offset for announcement bar */
.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--text-900); }
.logo-icon-wrap { flex-shrink: 0; }
.logo-accent { color: var(--primary); }

/* Nav */
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
    font-size: 0.95rem; font-weight: 600; color: var(--text-700);
    padding: 8px 14px; border-radius: var(--r-sm);
    transition: all var(--t-fast);
}
.nav-link:hover { color: var(--primary); background: rgba(14,165,233,0.07); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.phone-pill {
    display: flex; align-items: center; gap: 7px;
    font-weight: 600; font-size: 0.9rem; color: var(--text-700);
    background: var(--surface); padding: 9px 16px; border-radius: var(--r-full);
    border: 1px solid var(--border); transition: all var(--t-fast); position: relative;
}
.phone-pill:hover { border-color: var(--primary); color: var(--primary); }
.phone-ring {
    position: absolute; inset: -3px; border-radius: var(--r-full);
    border: 2px solid var(--primary); opacity: 0; animation: ring-pulse 2.5s infinite;
}
@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 8px; border-radius: var(--r-sm);
}
.hamburger span {
    display: block; width: 22px; height: 2.5px;
    background: var(--text-900); border-radius: 2px;
    transition: all var(--t-normal); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== 8. HERO SECTION ========== */
.hero {
    padding: 180px 0 0;
    background: var(--grad-hero);
    position: relative; overflow: hidden;
    min-height: 100svh;
}

/* Blobs */
.blob {
    position: absolute; border-radius: 50%;
    filter: blur(70px); pointer-events: none; z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: rgba(14,165,233,0.18); top: -100px; right: -100px; animation: float-1 12s infinite ease-in-out; }
.blob-2 { width: 500px; height: 500px; background: rgba(99,102,241,0.14); bottom: 100px; left: -150px; animation: float-2 14s infinite ease-in-out; }
.blob-3 { width: 400px; height: 400px; background: rgba(16,185,129,0.1); top: 50%; left: 50%; animation: float-1 16s infinite ease-in-out 3s; }
@keyframes float-1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(30px,-40px) scale(1.05);} }
@keyframes float-2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-30px,40px) scale(0.95);} }

.hero-grid {
    display: grid; grid-template-columns: 1fr 480px;
    gap: 56px; align-items: center;
    position: relative; z-index: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); border-radius: var(--r-full);
    padding: 8px 18px; font-size: 0.875rem; font-weight: 700; color: var(--text-700);
    margin-bottom: 28px;
}
.hero-badge svg { color: var(--warning); }

.hero-title { margin-bottom: 20px; color: var(--text-900); }
.hero-sub { font-size: 1.15rem; color: var(--text-500); margin-bottom: 36px; max-width: 520px; }

.hero-cta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.cta-microcopy { font-size: 0.85rem; color: var(--text-400); margin-bottom: 36px; }

/* Social proof strip */
.social-proof-strip { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.proof-avatars { display: flex; }
.p-av {
    width: 40px; height: 40px; border-radius: 50%; color: white;
    font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
    border: 3px solid white; margin-left: -12px;
}
.p-av:first-child { margin-left: 0; }
.proof-stars { color: var(--warning); font-size: 1rem; margin-bottom: 2px; }
.proof-text p { font-size: 0.875rem; font-weight: 500; color: var(--text-700); }

/* Trust badges */
.trust-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
    padding: 20px; background: white; border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.trust-badge-item {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: var(--r-md);
    background: var(--surface); border: 1px solid var(--border);
    font-size: 0.78rem; font-weight: 600; color: var(--text-700); flex: 1; min-width: 110px;
}
.badge-icon { font-size: 1.2rem; }

/* ========== 9. BOOKING FORM ========== */
.hero-form-col { position: relative; z-index: 1; }
.booking-card {
    background: white; border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border-light);
    overflow: hidden;
}
.booking-card-header {
    background: var(--grad-brand); padding: 28px 32px 24px; color: white;
}
.booking-header-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--r-full); padding: 5px 14px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 12px;
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80; animation: pulse-anim 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
}
@keyframes pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
    100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.booking-title { font-size: 1.5rem; margin-bottom: 6px; color: white; }
.booking-sub { font-size: 0.9rem; opacity: 0.85; }

.booking-form { padding: 28px 32px; }
.form-field { margin-bottom: 18px; }
.form-field label {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.83rem; font-weight: 700; color: var(--text-700);
    margin-bottom: 7px;
}
.form-field label svg { color: var(--primary); }

.form-field input, .form-field select {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--border); border-radius: var(--r-md);
    font-family: var(--font-sans); font-size: 0.95rem; color: var(--text-900);
    background: var(--surface); transition: all var(--t-fast);
    appearance: none;
}
.form-field input:focus, .form-field select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15); background: white;
}
.form-field input::placeholder { color: var(--text-400); }
.form-field input.error, .form-field select.error { border-color: var(--danger); }
.field-error { display: block; color: var(--danger); font-size: 0.75rem; font-weight: 500; margin-top: 4px; min-height: 1em; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Select */
.select-wrap { position: relative; }
.select-wrap select { padding-right: 40px; cursor: pointer; }
.select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-400); pointer-events: none; }

/* Time Options */
.time-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.time-opt { cursor: pointer; }
.time-opt input { display: none; }
.time-opt span {
    display: block; text-align: center; padding: 10px 6px;
    border: 1.5px solid var(--border); border-radius: var(--r-md);
    font-size: 0.82rem; font-weight: 600; color: var(--text-700);
    transition: all var(--t-fast); background: var(--surface); cursor: pointer;
}
.time-opt span small { display: block; font-weight: 400; color: var(--text-400); font-size: 0.72rem; margin-top: 2px; }
.time-opt input:checked + span {
    border-color: var(--primary); background: rgba(14,165,233,0.08); color: var(--primary);
}
.time-opt:hover span { border-color: var(--primary); }

/* Spinner */
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-loader { display: flex; align-items: center; gap: 8px; }

.form-security-note {
    display: flex; align-items: center; gap: 5px; justify-content: center;
    font-size: 0.75rem; color: var(--text-400); margin-top: 12px;
}

/* Success */
.booking-success { padding: 40px 32px; text-align: center; }
.success-icon {
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--grad-brand); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.booking-success h3 { font-size: 1.5rem; margin-bottom: 12px; }
.booking-success p { color: var(--text-500); margin-bottom: 24px; }
.success-next-steps {
    text-align: left; background: var(--surface); border-radius: var(--r-md);
    padding: 20px 24px; border: 1px solid var(--border);
}
.next-label { font-weight: 700; font-size: 0.85rem; color: var(--text-700); margin-bottom: 10px; }
.success-next-steps ol { padding-left: 20px; color: var(--text-500); font-size: 0.9rem; }
.success-next-steps li { margin-bottom: 6px; }

/* ========== 10. STATS BAR ========== */
.stats-bar {
    background: white; border-radius: var(--r-xl) var(--r-xl) 0 0;
    box-shadow: var(--shadow-lg); margin-top: 72px;
    border: 1px solid var(--border); border-bottom: none;
    position: relative; z-index: 2;
}
.stats-inner { display: flex; align-items: center; justify-content: space-around; padding: 32px 24px; }
.stat-item { text-align: center; }
.stat-num {
    font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; line-height: 1;
    background: var(--grad-brand); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { font-size: 1.8rem; font-weight: 900; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-400); font-weight: 500; margin-top: 6px; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ========== 11. MEDIA STRIP ========== */
.media-strip {
    background: var(--surface-2); padding: 28px 0; border-bottom: 1px solid var(--border);
}
.media-strip .container { display: flex; align-items: center; gap: 40px; }
.media-label { font-size: 0.78rem; font-weight: 700; color: var(--text-400); text-transform: uppercase; letter-spacing: 0.07em; white-space: nowrap; }
.media-logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.media-logo {
    font-size: 0.85rem; font-weight: 700; color: var(--text-400);
    opacity: 0.7; transition: opacity var(--t-fast);
    white-space: nowrap;
}
.media-logo:hover { opacity: 1; }

/* ========== 12. SERVICES ========== */
.services-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.service-card {
    background: white; border-radius: var(--r-lg);
    border: 1.5px solid var(--border); padding: 28px;
    transition: all var(--t-normal); display: flex; flex-direction: column; gap: 14px;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
    background: var(--grad-brand); opacity: 0; transition: opacity var(--t-normal); z-index: -1;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 0.04; }

.featured-service { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }

.service-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-icon-box {
    width: 56px; height: 56px; border-radius: var(--r-md);
    background: rgba(14,165,233,0.08); display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(14,165,233,0.15); transition: all var(--t-normal);
}
.service-card:hover .service-icon-box { transform: scale(1.08); }

.service-popular-tag, .emergency-tag {
    font-size: 0.7rem; font-weight: 800; padding: 4px 10px;
    border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.07em;
}
.service-popular-tag { background: linear-gradient(135deg,rgba(14,165,233,0.15),rgba(99,102,241,0.15)); color: var(--primary); border: 1px solid rgba(14,165,233,0.2); }
.emergency-tag { background: rgba(239,68,68,0.12); color: var(--danger); border: 1px solid rgba(239,68,68,0.2); }
.emergency-pulse {
    position: absolute; top: 18px; right: 18px; width: 10px; height: 10px;
    border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 0 rgba(239,68,68,0.4);
    animation: ring-pulse 1.5s infinite;
}

.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--text-500); font-size: 0.9rem; line-height: 1.6; }

.service-features { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.service-features li { font-size: 0.85rem; color: var(--text-700); display: flex; align-items: center; gap: 6px; }

.service-price-hint { font-size: 0.85rem; color: var(--text-400); }
.service-price-hint strong { color: var(--text-900); font-weight: 800; font-size: 0.95rem; }

.service-emergency { border-color: rgba(239,68,68,0.2); background: rgba(255,241,241,0.5); }

/* ========== 13. WHY US ========== */
.why-us { background: var(--bg); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-content .section-tag { display: inline-block; }
.why-us-content h2 { margin-bottom: 20px; }
.why-us-content > p { color: var(--text-500); margin-bottom: 40px; font-size: 1.05rem; }

.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
    width: 48px; height: 48px; border-radius: var(--r-md); flex-shrink: 0;
    background: rgba(var(--fi-rgb, 99,102,241), 0.08);
    border: 1px solid rgba(var(--fi-rgb, 99,102,241), 0.15);
    display: flex; align-items: center; justify-content: center;
}
/* Fallback using custom property hack */
.feature-icon { background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.15); }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-500); }

/* Visual card stack */
.visual-card-stack { position: relative; padding: 40px; }
.vc-main {
    background: white; border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl); border: 1px solid var(--border);
    overflow: hidden;
}
.vc-inner { padding: 36px; }
.vc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vc-inner h3 { margin-bottom: 12px; }
.vc-inner p { color: var(--text-500); font-size: 0.9rem; margin-bottom: 24px; }
.vc-progress { display: flex; flex-direction: column; gap: 14px; }
.progress-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-500); }
.progress-row span:first-child { flex: 1; white-space: nowrap; }
.progress-row span:last-child { font-weight: 700; color: var(--text-900); width: 32px; text-align: right; }
.pbar { flex: 2; height: 6px; background: var(--surface-2); border-radius: var(--r-full); overflow: hidden; }
.pbar-fill { height: 100%; border-radius: var(--r-full); background: var(--grad-brand); width: var(--w); }

/* Floating cards */
.vc-floating {
    position: absolute; background: white; border-radius: var(--r-md);
    box-shadow: var(--shadow-lg); padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--border); font-size: 0.82rem;
}
.vc-floating strong { display: block; font-size: 0.9rem; color: var(--text-900); }
.vc-floating span { color: var(--text-400); }
.vc-float-icon { font-size: 1.4rem; }
.vc-float-1 { top: -10px; right: 0; animation: float-2 5s ease-in-out infinite; }
.vc-float-2 { bottom: 10px; left: -20px; animation: float-1 6s ease-in-out infinite 1s; }

/* ========== 14. TEAM ========== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card {
    background: white; border-radius: var(--r-lg); border: 1.5px solid var(--border);
    overflow: hidden; transition: all var(--t-normal);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.team-avatar {
    height: 160px; display: flex; align-items: center; justify-content: center;
    position: relative;
}
.team-initials { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.9); }
.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-title { font-size: 0.82rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 12px; }
.team-info p { font-size: 0.88rem; color: var(--text-500); margin-bottom: 16px; }
.team-creds { display: flex; gap: 8px; flex-wrap: wrap; }
.cred-tag { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: var(--r-full); background: var(--surface); border: 1px solid var(--border); color: var(--text-700); }

/* ========== 15. TESTIMONIALS ========== */
.testimonials { background: var(--grad-hero); }
.overall-rating {
    display: flex; align-items: center; gap: 14px; justify-content: center;
    margin-top: 20px; flex-wrap: wrap;
}
.or-stars { color: var(--warning); font-size: 1.4rem; letter-spacing: 3px; }
.or-score { font-size: 2.5rem; font-weight: 900; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.or-count { font-size: 0.85rem; color: var(--text-400); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
    background: white; border-radius: var(--r-lg); padding: 28px;
    border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
    transition: all var(--t-normal); display: flex; flex-direction: column; gap: 16px;
    position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-featured { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12), var(--shadow-lg); }
.featured-label {
    position: absolute; top: -1px; right: 20px;
    background: var(--grad-brand); color: white;
    font-size: 0.7rem; font-weight: 800; padding: 4px 12px;
    border-radius: 0 0 var(--r-sm) var(--r-sm); text-transform: uppercase; letter-spacing: 0.05em;
}
.testi-top { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 48px; height: 48px; border-radius: 50%; color: white;
    font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-top h4 { font-size: 1rem; margin-bottom: 2px; }
.testi-treatment { font-size: 0.78rem; color: var(--primary); font-weight: 600; }
.testi-stars { margin-left: auto; color: var(--warning); font-size: 1rem; letter-spacing: 1px; }
.testi-quote {
    font-size: 0.92rem; color: var(--text-700); line-height: 1.7;
    font-style: italic; flex: 1;
}
.testi-quote::before { content: '"'; font-size: 1.5rem; color: var(--primary); font-style: normal; line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.testi-verified { font-size: 0.75rem; color: var(--text-400); padding-top: 12px; border-top: 1px solid var(--border); }

/* Review platforms */
.review-platforms {
    display: flex; justify-content: center; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.rp-item {
    display: flex; align-items: center; gap: 14px;
    background: white; border: 1.5px solid var(--border); border-radius: var(--r-md);
    padding: 16px 24px; box-shadow: var(--shadow-sm); font-size: 0.85rem;
}
.rp-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--surface); display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 1.1rem; color: var(--warning);
}
.rp-stars { color: var(--warning); font-size: 0.9rem; margin-bottom: 2px; }
.rp-item strong { font-size: 1.1rem; }

/* ========== 16. FAQ ========== */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: white; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
    width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 22px 24px; font-size: 1rem; font-weight: 700; color: var(--text-900);
    background: none; transition: all var(--t-fast); cursor: pointer;
}
.faq-q:hover { background: var(--surface); color: var(--primary); }
.faq-q[aria-expanded="true"] { color: var(--primary); }
.faq-arrow { transition: transform var(--t-normal); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height var(--t-slow) ease, padding var(--t-normal) ease;
}
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; color: var(--text-500); font-size: 0.95rem; line-height: 1.75; }

/* ========== 17. FINAL CTA ========== */
.final-cta {
    background: var(--grad-dark); color: white; text-align: center;
    position: relative; overflow: hidden;
}
.final-cta-blob {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.4) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(14,165,233,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.fca-badge {
    display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-full); padding: 7px 20px; font-size: 0.83rem; font-weight: 700;
    margin-bottom: 24px; color: rgba(255,255,255,0.9);
}
.final-cta h2 { color: white; margin-bottom: 16px; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.fca-urgency {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 32px;
}
.urgency-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #4ade80;
    animation: pulse-anim 1.5s infinite;
}
.fca-micro { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 20px; }
.fca-contact-options { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.fca-alt-contact { color: rgba(255,255,255,0.7); font-weight: 600; transition: color var(--t-fast); }
.fca-alt-contact:hover { color: white; }

/* ========== 18. FOOTER ========== */
.footer { background: #060b18; color: rgba(255,255,255,0.85); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding: 72px 0 48px;
}
.footer-brand .logo-light { color: white; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 800; color: rgba(255,255,255,0.6);
    transition: all var(--t-fast);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-col h4 { color: white; font-size: 0.95rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.footer-col a { color: rgba(255,255,255,0.5); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--primary-light); }
.footer-cert-badges { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.cert-badge {
    font-size: 0.7rem; font-weight: 800; padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-sm);
    color: rgba(255,255,255,0.5);
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color var(--t-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ========== 19. STICKY MOBILE CTA ========== */
.sticky-mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    display: none; background: white;
    border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 12px 16px; gap: 10px;
}
.sticky-call, .sticky-book {
    flex: 1; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; padding: 13px; border-radius: var(--r-md);
}
.sticky-call { background: var(--surface); border: 1.5px solid var(--border); color: var(--text-900); }
.sticky-book { background: var(--grad-brand); color: white; box-shadow: var(--shadow-brand); }

/* ========== 20. WHATSAPP BTN ========== */
.whatsapp-btn {
    position: fixed; bottom: 28px; right: 28px; z-index: 80;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t-normal);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.65); }
.whatsapp-btn:active { transform: scale(0.97); }

/* ========== 21. SCROLL ANIMATIONS ========== */
[data-animate] { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].visible { opacity: 1; transform: none; }

/* ========== 22. RESPONSIVE ========== */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr 420px; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .why-us-grid { gap: 48px; }
}

@media (max-width: 900px) {
    :root { --section-pad: 64px; }
    .hero { padding-top: 150px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-form-col { order: -1; }
    .booking-card { max-width: 500px; margin: 0 auto; }
    .hero-content { text-align: center; }
    .hero-cta-row { justify-content: center; }
    .social-proof-strip { justify-content: center; }
    .trust-badges { justify-content: center; }
    .trust-badge-item { min-width: auto; flex: none; }
    .testimonial-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; align-items: center; justify-content: center; gap: 20px; z-index: 99; }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.3rem; }
    .hamburger { display: flex; z-index: 100; }
    .header-actions .btn-sm { display: none; }
    .why-us-grid { grid-template-columns: 1fr; }
    .visual-card-stack { max-width: 480px; margin: 0 auto; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
    :root { --section-pad: 48px; }
    .hero { padding-top: 130px; }
    .hero-title { font-size: 2.4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { flex-direction: column; gap: 28px; }
    .stat-divider { width: 60px; height: 1px; }
    .sticky-mobile-cta { display: flex; }
    .whatsapp-btn { bottom: 84px; right: 16px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; width: 100%; }
    .hero-cta-row .btn { width: 100%; justify-content: center; }
    .media-strip .container { flex-direction: column; gap: 16px; text-align: center; }
    .media-logos { justify-content: center; }
    .review-platforms { flex-direction: column; align-items: center; }
    .phone-pill { display: none; }
    .fca-contact-options { flex-direction: column; gap: 10px; }
    .booking-form { padding: 20px; }
    .booking-card-header { padding: 20px; }
}
