/* =============================================================
   U-medi Landing v3 — Clean White · Refined Minimal

   Aesthetic:
   - Warm off-white (#fafaf7) + cream (#f5f2ec) base
   - Fraunces (display, optical-size) + Manrope (body)
   - Muted terracotta (#b8694e) accent, sage (#6e7f6a) secondary
   - Editorial, asymmetric, generous negative space

   IMPORTANT:
   - All selectors prefixed .v3- to avoid collision with v1/v2
   - Scoped reset under .v3-body only (Bootstrap/FontAwesome NOT loaded on v3)
   - common.css, en-landing.css NOT loaded — v3 is fully self-contained
   ============================================================= */

:root {
    --v3-bg:          #fafaf7;
    --v3-bg-card:     #ffffff;
    --v3-bg-cream:    #f5f2ec;
    --v3-bg-dim:      #efece4;
    --v3-ink:         #1c1c1a;
    --v3-ink-2:       #4a4a46;
    --v3-ink-3:       #7a7a74;
    --v3-ink-4:       #a9a9a1;
    --v3-line:        #e5e2d8;
    --v3-line-soft:   #eeeae0;

    --v3-accent:      #b8694e;
    --v3-accent-2:    #9e5741;
    --v3-accent-soft: #f3e4dd;

    --v3-sage:        #6e7f6a;
    --v3-sage-soft:   #e6ead9;

    --v3-success:     #587a5c;
    --v3-danger:      #a04040;

    --v3-font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
    --v3-font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --v3-r-sm:  6px;
    --v3-r-md:  10px;
    --v3-r-lg:  18px;
    --v3-r-xl:  28px;
    --v3-r-pill: 999px;

    --v3-shadow-sm:   0 1px 2px rgba(28,28,26,.04),
                      0 2px 6px rgba(28,28,26,.04);
    --v3-shadow-md:   0 4px 12px rgba(28,28,26,.06),
                      0 8px 24px rgba(28,28,26,.05);
    --v3-shadow-lg:   0 8px 24px rgba(28,28,26,.08),
                      0 24px 64px rgba(28,28,26,.08);
    --v3-shadow-float:0 10px 30px rgba(28,28,26,.12);

    --v3-nav-h: 72px;
    --v3-container: 1240px;
}

/* =============================================================
   RESET (scoped)
   ============================================================= */
.v3-body,
.v3-body *,
.v3-body *::before,
.v3-body *::after {
    box-sizing: border-box;
}

.v3-body {
    margin: 0;
    padding: 0;
    padding-top: var(--v3-nav-h);
    font-family: var(--v3-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--v3-ink-2);
    background: var(--v3-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.v3-body a { text-decoration: none; color: inherit; }
.v3-body button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.v3-body img { max-width: 100%; display: block; }
.v3-body input,
.v3-body select,
.v3-body textarea {
    font-family: inherit;
    font-size: inherit;
    color: var(--v3-ink);
}
.v3-body h1, .v3-body h2, .v3-body h3,
.v3-body h4, .v3-body h5, .v3-body h6,
.v3-body p, .v3-body ul, .v3-body ol {
    margin: 0;
    padding: 0;
}
.v3-body ul { list-style: none; }

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

.v3-section {
    padding: 120px 0;
    position: relative;
}

.v3-section-head {
    max-width: 640px;
    margin-bottom: 72px;
}
.v3-section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.v3-eyebrow {
    display: inline-block;
    font-family: var(--v3-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v3-accent);
    margin-bottom: 20px;
}

.v3-section-title {
    font-family: var(--v3-font-display);
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: var(--v3-ink);
    margin: 0 0 24px;
    font-variation-settings: "opsz" 96;
}
.v3-section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--v3-accent);
    font-variation-settings: "opsz" 144;
}

.v3-section-lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--v3-ink-2);
    margin: 0;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.v3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--v3-r-pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: all 0.24s cubic-bezier(.2,.7,.2,1);
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--v3-font-body);
}

.v3-btn-primary {
    background: var(--v3-ink);
    color: #fff;
}
.v3-btn-primary:hover {
    background: var(--v3-accent);
    transform: translateY(-1px);
    box-shadow: var(--v3-shadow-md);
}

.v3-btn-ghost {
    color: var(--v3-ink);
    border-color: var(--v3-line);
    background: transparent;
}
.v3-btn-ghost:hover {
    border-color: var(--v3-ink);
    background: #fff;
}

.v3-btn-outline {
    color: var(--v3-accent);
    border-color: var(--v3-accent);
    background: transparent;
}
.v3-btn-outline:hover {
    background: var(--v3-accent);
    color: #fff;
}

.v3-btn-sm { padding: 10px 20px; font-size: 13px; }
.v3-btn-block { width: 100%; }
.v3-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =============================================================
   NAV
   ============================================================= */
.v3-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--v3-nav-h);
    z-index: 100;
    background: rgba(250, 250, 247, 0.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all 0.24s ease;
}
.v3-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--v3-line-soft);
}

.v3-nav-inner {
    height: 100%;
    max-width: var(--v3-container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.v3-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.v3-nav-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    object-fit: cover;
}
.v3-nav-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--v3-ink), var(--v3-accent));
    color: #fff;
    font-family: var(--v3-font-display);
    font-weight: 600;
    font-size: 18px;
}
.v3-nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.v3-nav-brand-name {
    font-family: var(--v3-font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--v3-ink);
    letter-spacing: -0.01em;
}
.v3-nav-brand-sub {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v3-ink-3);
    margin-top: 2px;
}

.v3-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.v3-nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--v3-ink-2);
    border-radius: var(--v3-r-sm);
    transition: color 0.2s, background 0.2s;
    position: relative;
}
.v3-nav-link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 4px;
    height: 1px;
    background: var(--v3-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.v3-nav-link:hover { color: var(--v3-ink); }
.v3-nav-link:hover::after { transform: scaleX(1); }

.v3-nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.v3-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: transparent;
    border: none;
}
.v3-nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--v3-ink);
    transition: all 0.3s;
}

.v3-nav-drawer {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--v3-line-soft);
    padding: 20px 0;
}
.v3-drawer-link {
    padding: 14px 32px;
    font-size: 16px;
    color: var(--v3-ink);
    font-weight: 500;
    border-bottom: 1px solid var(--v3-line-soft);
}
.v3-drawer-link:last-child { border-bottom: none; }
.v3-drawer-cta {
    color: var(--v3-accent);
    font-weight: 600;
}

/* =============================================================
   HERO
   ============================================================= */
.v3-hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.v3-hero-inner {
    max-width: var(--v3-container);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.v3-hero-left {
    animation: v3FadeUp 0.9s cubic-bezier(.2,.7,.2,1) both;
}

.v3-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--v3-ink-2);
    margin-bottom: 32px;
    box-shadow: var(--v3-shadow-sm);
}
.v3-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--v3-accent);
    animation: v3Pulse 2s ease-in-out infinite;
}

.v3-hero-headline {
    font-family: var(--v3-font-display);
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--v3-ink);
    margin: 0 0 28px;
    font-variation-settings: "opsz" 144;
}
.v3-hero-emph {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--v3-accent);
    margin-top: 4px;
}

.v3-hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--v3-ink-2);
    max-width: 540px;
    margin: 0 0 40px;
}

.v3-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.v3-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 520px;
    padding-top: 36px;
    border-top: 1px solid var(--v3-line-soft);
}
.v3-trust-num {
    font-family: var(--v3-font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--v3-ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    font-variation-settings: "opsz" 144;
}
.v3-trust-label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--v3-ink-3);
    font-weight: 500;
}

.v3-hero-right {
    position: relative;
    animation: v3FadeUp 0.9s cubic-bezier(.2,.7,.2,1) 0.15s both;
}

.v3-hero-card {
    background: #fff;
    border-radius: var(--v3-r-xl);
    padding: 40px 36px;
    box-shadow: var(--v3-shadow-lg);
    position: relative;
    border: 1px solid var(--v3-line-soft);
}
.v3-hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--v3-r-xl);
    background: linear-gradient(135deg, transparent 40%, var(--v3-accent-soft) 100%);
    z-index: -1;
    opacity: 0.6;
}

.v3-hero-card-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--v3-sage-soft);
    color: var(--v3-sage);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--v3-r-sm);
    margin-bottom: 20px;
}

.v3-hero-card-title {
    font-family: var(--v3-font-display);
    font-size: 30px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.v3-hero-card-sub {
    font-size: 14px;
    color: var(--v3-ink-3);
    margin: 0 0 24px;
}

.v3-hero-form,
.v3-booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-hero-form input,
.v3-hero-form select,
.v3-booking-form input,
.v3-booking-form select,
.v3-booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-md);
    background: #fafaf7;
    font-size: 15px;
    color: var(--v3-ink);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: var(--v3-font-body);
}
.v3-hero-form input:focus,
.v3-hero-form select:focus,
.v3-booking-form input:focus,
.v3-booking-form select:focus,
.v3-booking-form textarea:focus {
    outline: none;
    border-color: var(--v3-accent);
    background: #fff;
    box-shadow: 0 0 0 3px var(--v3-accent-soft);
}

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

.v3-form-note {
    font-size: 12px;
    color: var(--v3-ink-3);
    line-height: 1.5;
    margin: 8px 0 0;
    text-align: center;
}

.v3-form-success {
    text-align: center;
    padding: 40px 20px;
    color: var(--v3-success);
}
.v3-form-success svg {
    margin: 0 auto 16px;
    color: var(--v3-success);
}
.v3-form-success h4 {
    font-family: var(--v3-font-display);
    font-size: 24px;
    color: var(--v3-ink);
    margin: 0 0 8px;
}
.v3-form-success p {
    color: var(--v3-ink-3);
    margin: 0;
}

.v3-hero-deco {
    position: absolute;
    top: -10%;
    right: -20%;
    width: 80%;
    height: 120%;
    background:
        radial-gradient(circle at 30% 40%, var(--v3-accent-soft) 0%, transparent 45%),
        radial-gradient(circle at 70% 60%, var(--v3-sage-soft) 0%, transparent 50%);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

/* =============================================================
   WHO WE HELP
   ============================================================= */
.v3-who { background: var(--v3-bg-cream); }

.v3-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.v3-who-card {
    background: #fff;
    border-radius: var(--v3-r-lg);
    padding: 36px 32px;
    border: 1px solid var(--v3-line-soft);
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1),
                box-shadow 0.3s cubic-bezier(.2,.7,.2,1),
                border-color 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.v3-who-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: var(--v3-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.v3-who-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--v3-shadow-md);
    border-color: var(--v3-line);
}
.v3-who-card:hover::after { transform: scaleX(1); }

.v3-who-icon {
    width: 52px; height: 52px;
    border-radius: var(--v3-r-md);
    background: var(--v3-accent-soft);
    color: var(--v3-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.v3-who-icon svg { width: 28px; height: 28px; }

.v3-who-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v3-accent);
    margin-bottom: 10px;
}

.v3-who-title {
    font-family: var(--v3-font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.v3-who-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--v3-ink-2);
    margin: 0 0 18px;
    flex: 1;
}

.v3-who-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    border-top: 1px solid var(--v3-line-soft);
    padding-top: 18px;
}
.v3-who-list li {
    font-size: 13px;
    color: var(--v3-ink-2);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.v3-who-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 10px; height: 1px;
    background: var(--v3-accent);
}

.v3-who-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--v3-ink);
    border-bottom: 1px solid var(--v3-ink);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s;
}
.v3-who-link:hover {
    color: var(--v3-accent);
    border-color: var(--v3-accent);
}

/* =============================================================
   WHY THIS CLINIC
   ============================================================= */
.v3-why { background: var(--v3-bg); }

.v3-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.v3-why-left .v3-section-lede { margin-bottom: 48px; }

.v3-why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.v3-why-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--v3-line-soft);
}
.v3-why-item:last-child { border-bottom: none; padding-bottom: 0; }

.v3-why-num {
    font-family: var(--v3-font-display);
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    color: var(--v3-accent);
    font-variation-settings: "opsz" 144;
    font-style: italic;
}
.v3-why-body h4 {
    font-family: var(--v3-font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 2px 0 8px;
    letter-spacing: -0.01em;
}
.v3-why-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--v3-ink-2);
    margin: 0;
}

.v3-why-right {
    position: sticky;
    top: 100px;
}
.v3-why-visual {
    border-radius: var(--v3-r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--v3-bg-dim);
    box-shadow: var(--v3-shadow-lg);
}
.v3-why-visual img,
.v3-why-visual svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-why-stamp {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--v3-ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v3-shadow-lg);
    animation: v3Spin 40s linear infinite;
}
.v3-why-stamp-inner {
    text-align: center;
    line-height: 1.15;
}
.v3-why-stamp-label {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v3-accent-soft);
    margin-bottom: 6px;
    font-weight: 600;
}
.v3-why-stamp-value {
    font-family: var(--v3-font-display);
    font-size: 15px;
    font-style: italic;
    font-weight: 300;
}

/* =============================================================
   OUR APPROACH
   ============================================================= */
.v3-approach {
    background: var(--v3-bg-cream);
    position: relative;
}
.v3-approach::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--v3-accent) 20%,
        var(--v3-accent) 80%,
        transparent 100%);
    opacity: 0.25;
    z-index: 0;
}

.v3-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.v3-step {
    text-align: center;
    padding: 32px 16px;
    background: #fff;
    border-radius: var(--v3-r-lg);
    border: 1px solid var(--v3-line-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}
.v3-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--v3-shadow-md);
}

.v3-step-num {
    font-family: var(--v3-font-display);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    color: var(--v3-accent);
    font-style: italic;
    font-variation-settings: "opsz" 144;
    margin-bottom: 16px;
}
.v3-step-title {
    font-family: var(--v3-font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.v3-step-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--v3-ink-2);
    margin: 0;
}

/* =============================================================
   DOCTOR
   ============================================================= */
.v3-doctor { background: var(--v3-bg); }

.v3-doctor-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.v3-doctor-photo-wrap {
    border-radius: var(--v3-r-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--v3-shadow-lg);
    background: var(--v3-bg-dim);
}
.v3-doctor-photo-wrap img,
.v3-doctor-photo-wrap svg {
    width: 100%; height: 100%;
    object-fit: cover;
}

.v3-doctor-cred {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.v3-cred-item {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--v3-r-pill);
    background: var(--v3-bg-cream);
    color: var(--v3-ink-2);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.v3-doctor-role {
    color: var(--v3-accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    margin: 0 0 24px;
}

.v3-doctor-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--v3-ink-2);
    margin: 0 0 32px;
}

.v3-doctor-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--v3-line-soft);
}
.v3-fact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v3-ink-3);
    margin-bottom: 6px;
}
.v3-fact-value {
    font-size: 15px;
    color: var(--v3-ink);
    font-weight: 500;
}

/* =============================================================
   TREATMENTS
   ============================================================= */
.v3-treatments { background: var(--v3-bg-cream); }

.v3-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.v3-ba-card {
    background: #fff;
    border-radius: var(--v3-r-lg);
    overflow: hidden;
    border: 1px solid var(--v3-line-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}
.v3-ba-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--v3-shadow-md);
}

.v3-ba-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4/3;
    position: relative;
}
.v3-ba-split::before {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    background: #fff;
    z-index: 2;
}

.v3-ba-half {
    position: relative;
    overflow: hidden;
}
.v3-ba-before {
    background:
        repeating-linear-gradient(45deg,
            #e0dcd0 0 2px,
            #d8d3c5 2px 20px),
        var(--v3-bg-dim);
}
.v3-ba-after {
    background:
        radial-gradient(ellipse at 50% 50%,
            var(--v3-accent-soft) 0%,
            var(--v3-sage-soft) 80%);
}
.v3-ba-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(28, 28, 26, 0.75);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: var(--v3-r-sm);
    backdrop-filter: blur(4px);
}
.v3-ba-tag-after {
    left: auto;
    right: 12px;
    background: var(--v3-accent);
}

.v3-ba-meta { padding: 20px 22px; }
.v3-ba-meta h4 {
    font-family: var(--v3-font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.v3-ba-meta p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--v3-ink-3);
    margin: 0;
}

.v3-treatments-cta {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: var(--v3-r-lg);
    border: 1px dashed var(--v3-line);
}
.v3-treatments-cta p {
    font-size: 16px;
    color: var(--v3-ink-2);
    margin: 0 0 20px;
}

/* =============================================================
   INSURANCE & FEES
   ============================================================= */
.v3-insurance { background: var(--v3-bg); }

.v3-insurance-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 64px;
    padding: 40px;
    background: var(--v3-bg-cream);
    border-radius: var(--v3-r-xl);
}
.v3-ins-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: #fff;
    border-radius: var(--v3-r-md);
    border: 1px solid var(--v3-line-soft);
    transition: transform 0.24s, border-color 0.24s;
}
.v3-ins-logo:hover {
    transform: translateY(-2px);
    border-color: var(--v3-accent);
}
.v3-ins-logo span {
    font-family: var(--v3-font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--v3-ink);
    letter-spacing: -0.01em;
    text-align: center;
}

.v3-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.v3-faq-item {
    border: 1px solid var(--v3-line);
    border-radius: var(--v3-r-md);
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
}
.v3-faq-item[open] {
    border-color: var(--v3-accent);
    box-shadow: var(--v3-shadow-sm);
}

.v3-faq-item summary {
    list-style: none;
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--v3-font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--v3-ink);
    letter-spacing: -0.005em;
    transition: color 0.2s;
}
.v3-faq-item summary::-webkit-details-marker { display: none; }
.v3-faq-item summary:hover { color: var(--v3-accent); }
.v3-faq-item summary svg {
    flex-shrink: 0;
    color: var(--v3-ink-3);
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}
.v3-faq-item[open] summary svg {
    transform: rotate(180deg);
    color: var(--v3-accent);
}

.v3-faq-body { padding: 0 28px 24px; }
.v3-faq-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v3-ink-2);
    margin: 0;
}

/* =============================================================
   BOOKING
   ============================================================= */
.v3-booking {
    background: var(--v3-ink);
    color: #fff;
}
.v3-booking .v3-eyebrow { color: var(--v3-accent-soft); }
.v3-booking .v3-section-title { color: #fff; }
.v3-booking .v3-section-title em { color: var(--v3-accent-soft); }
.v3-booking .v3-section-lede { color: rgba(255,255,255,0.72); }

.v3-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.v3-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.v3-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: var(--v3-r-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, border-color 0.2s;
}
.v3-contact-item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
}
.v3-contact-icon {
    width: 44px; height: 44px;
    border-radius: var(--v3-r-sm);
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v3-contact-icon svg { width: 22px; height: 22px; }
.v3-contact-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2px;
    font-weight: 600;
}
.v3-contact-body a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}
.v3-contact-body a:hover { color: var(--v3-accent-soft); }

.v3-booking-form {
    background: #fff;
    padding: 48px;
    border-radius: var(--v3-r-xl);
    color: var(--v3-ink-2);
    box-shadow: var(--v3-shadow-lg);
}

.v3-booking-form-title {
    font-family: var(--v3-font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--v3-ink);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

.v3-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.v3-form-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--v3-ink-3);
    text-transform: uppercase;
}
.v3-form-field textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* =============================================================
   FOOTER
   ============================================================= */
.v3-footer {
    background: #14140f;
    color: rgba(255,255,255,0.65);
    padding: 72px 0 36px;
}

.v3-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.v3-footer-brand { max-width: 320px; }
.v3-footer-logo {
    width: 48px; height: 48px;
    border-radius: var(--v3-r-sm);
    margin-bottom: 16px;
}
.v3-footer-tagline {
    font-family: var(--v3-font-display);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin: 0;
}

.v3-footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 20px;
}
.v3-footer-col a,
.v3-footer-col p {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    margin: 0 0 10px;
    transition: color 0.2s;
}
.v3-footer-col a:hover { color: #fff; }

.v3-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}
.v3-footer-legal {
    display: flex;
    gap: 24px;
}
.v3-footer-legal a:hover { color: #fff; }

/* =============================================================
   FLOATING
   ============================================================= */
.v3-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.v3-float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #fff;
    color: var(--v3-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--v3-shadow-float);
    transition: transform 0.24s, background 0.24s;
    border: 1px solid var(--v3-line-soft);
}
.v3-float-btn svg {
    width: 26px;
    height: 26px;
}
.v3-float-btn:hover {
    transform: translateY(-3px) scale(1.04);
}
.v3-float-wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.v3-float-wa:hover { background: #1fb855; }
.v3-float-top {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.24s;
}
.v3-float-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes v3FadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes v3Pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(1.4); }
}
@keyframes v3Spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.v3-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(.2,.7,.2,1),
                transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.v3-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.v3-form-error {
    background: #fce6e1;
    color: var(--v3-danger);
    padding: 12px 16px;
    border-radius: var(--v3-r-md);
    font-size: 13px;
    margin-bottom: 12px;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .v3-hero-inner,
    .v3-why-grid,
    .v3-doctor-grid,
    .v3-booking-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .v3-why-right { position: static; max-width: 500px; margin: 0 auto; }
    .v3-steps { grid-template-columns: repeat(2, 1fr); }
    .v3-approach::before { display: none; }
    .v3-section { padding: 96px 0; }
}

@media (max-width: 768px) {
    :root { --v3-nav-h: 64px; }

    .v3-nav-menu { display: none; }
    .v3-nav-toggle { display: flex; }
    .v3-nav.is-open .v3-nav-drawer { display: flex; }
    .v3-nav.is-open .v3-nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .v3-nav.is-open .v3-nav-toggle span:nth-child(2) { opacity: 0; }
    .v3-nav.is-open .v3-nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
    .v3-nav-brand-sub { display: none; }

    .v3-container { padding: 0 20px; }
    .v3-hero-inner { padding: 0 20px; }
    .v3-section { padding: 72px 0; }
    .v3-section-head { margin-bottom: 48px; }

    .v3-hero { padding: 40px 0 72px; }
    .v3-hero-card { padding: 28px 24px; }
    .v3-hero-trust { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .v3-trust-num { font-size: 28px; }
    .v3-trust-label { font-size: 11px; }

    .v3-hero-actions .v3-btn { flex: 1; }

    .v3-who-grid,
    .v3-gallery { grid-template-columns: 1fr; }

    .v3-steps { grid-template-columns: 1fr; }

    .v3-why-stamp {
        width: 100px; height: 100px;
        bottom: -24px; left: -16px;
    }
    .v3-why-stamp-value { font-size: 13px; }

    .v3-doctor-facts { grid-template-columns: 1fr; gap: 16px; }

    .v3-booking-form { padding: 28px 22px; }
    .v3-form-row { grid-template-columns: 1fr; gap: 12px; }

    .v3-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .v3-footer-brand { grid-column: 1 / -1; }

    .v3-footer-bottom { flex-direction: column; align-items: flex-start; }

    .v3-float { right: 16px; bottom: 16px; }
    .v3-float-btn { width: 48px; height: 48px; }
    .v3-float-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
    .v3-hero-headline { font-size: 40px; }
    .v3-section-title { font-size: 30px; }
    .v3-hero-card { padding: 24px 20px; }
    .v3-form-row { grid-template-columns: 1fr; }
    .v3-footer-grid { grid-template-columns: 1fr; }
    .v3-insurance-logos { padding: 20px; }
}

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