/* ==========================================================================
   VSH Specialty Clinic — day-wise Meta Ads landing page
   Self-contained stylesheet. Theme color is injected per-day via CSS vars
   set inline on :root by the template, so this one file serves every day.
   ========================================================================== */

:root {
    --sc-primary: #1a2b5c;
    --sc-primary-light: #2d4373;
    --sc-red: #b6202e;
    --sc-red-dark: #8f1824;
    --sc-dark: #16181d;
    --sc-text: #3a3f4b;
    --sc-muted: #767c8c;
    --sc-bg: #f7f8fb;
    --sc-card: #ffffff;
    --sc-border: #ecedf3;
    --sc-radius: 18px;
    --sc-shadow: 0 10px 30px rgba(20, 25, 50, 0.08);
    --sc-shadow-lg: 0 20px 50px rgba(20, 25, 50, 0.14);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body.sc-body {
    font-family: "Poppins", sans-serif;
    color: var(--sc-text);
    background: var(--sc-bg);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sc-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ---------- Reveal-on-scroll (lightweight, no external lib) ---------- */
.sc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.sc-reveal.sc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Top bar ---------- */
.sc-topbar {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.sc-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.sc-logo img { height: 42px; width: auto; }
.sc-topbar-actions { display: flex; align-items: center; gap: 12px; }
.sc-call-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sc-primary);
    font-weight: 600;
    font-size: 15px;
}
.sc-call-pill i { color: var(--sc-red); }
.sc-topbar-cta {
    background: var(--sc-red);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    transition: background .25s ease, transform .25s ease;
    white-space: nowrap;
}
.sc-topbar-cta:hover { background: var(--sc-red-dark); color: #fff; transform: translateY(-1px); }

/* ---------- Hero ---------- */
.sc-hero {
    position: relative;
    background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%);
    padding: 60px 0 90px;
    overflow: hidden;
    color: #fff;
}
.sc-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    top: -220px;
    right: -160px;
}
.sc-hero::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    bottom: -160px;
    left: -100px;
}
.sc-hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
}
.sc-hero-text { flex: 1 1 56%; min-width: 0; }
.sc-hero-visual {
    flex: 1 1 40%;
    min-width: 0;
    display: flex;
    justify-content: center;
}
.sc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.35);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    margin-bottom: 22px;
    max-width: 100%;
    white-space: normal;
}
.sc-badge span { overflow-wrap: break-word; }
.sc-badge i { color: #ffd36e; }
.sc-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
    overflow-wrap: break-word;
}
.sc-hero h1 span { color: #ffd36e; }
.sc-hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin: 0 0 22px;
    overflow-wrap: break-word;
}
.sc-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 30px;
    max-width: 100%;
}
.sc-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 500;
    color: #fff;
    max-width: 100%;
    overflow-wrap: break-word;
}
.sc-hero-meta-item i { color: #ffd36e; }
.sc-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15.5px;
    border: 2px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    cursor: pointer;
}
.sc-btn-primary {
    background: var(--sc-red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(182,32,46,.35);
}
.sc-btn-primary:hover { background: var(--sc-red-dark); color: #fff; transform: translateY(-2px); }
.sc-btn-outline {
    background: transparent;
    border-color: rgba(255,255,255,.6);
    color: #fff;
}
.sc-btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; transform: translateY(-2px); }

.sc-hero-visual-frame {
    position: relative;
    width: 100%;
    max-width: 340px;
}
.sc-hero-visual-frame img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--sc-shadow-lg);
    border: 6px solid rgba(255,255,255,.15);
}
.sc-hero-float-card {
    position: absolute;
    left: -30px;
    bottom: -22px;
    background: #fff;
    color: var(--sc-dark);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: var(--sc-shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}
.sc-hero-float-card i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(182,32,46,.1);
    color: var(--sc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.sc-hero-float-card strong { display: block; font-size: 14px; }
.sc-hero-float-card span { font-size: 12.5px; color: var(--sc-muted); }

/* ---------- Section heading ---------- */
.sc-section { padding: 70px 0; }
.sc-section-tight { padding: 50px 0; }
.sc-eyebrow {
    display: inline-block;
    color: var(--sc-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sc-section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--sc-dark);
    margin: 0 0 14px;
}
.sc-section-sub {
    color: var(--sc-muted);
    font-size: 15.5px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.sc-center { text-align: center; }

/* ---------- Clinic detail card ---------- */
.sc-clinic-card {
    background: var(--sc-card);
    border-radius: var(--sc-radius);
    box-shadow: var(--sc-shadow);
    border-top: 6px solid var(--sc-primary);
    padding: 40px;
    margin-top: 10px;
}
.sc-clinic-card-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--sc-border);
}
.sc-clinic-day-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--sc-primary);
    margin: 0;
}
.sc-clinic-day-title span { color: var(--sc-muted); font-weight: 500; font-size: 15px; display: block; margin-top: 4px;}
.sc-time-chip {
    background: var(--sc-red);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sc-conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 26px;
}
.sc-condition-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--sc-bg);
    border-radius: 12px;
    padding: 16px 18px;
    font-weight: 600;
    color: var(--sc-dark);
    font-size: 15px;
}
.sc-condition-item i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}
.sc-clinic-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    background: var(--sc-bg);
    border-radius: 12px;
    padding: 16px 20px;
}
.sc-clinic-footnote-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--sc-text);
}
.sc-clinic-footnote-item i { color: var(--sc-red); }
.sc-clinic-footnote-note {
    font-size: 13px;
    color: var(--sc-muted);
    font-style: italic;
}

/* ---------- Why choose ---------- */
.sc-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.sc-why-item {
    background: var(--sc-card);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--sc-shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}
.sc-why-item:hover { transform: translateY(-6px); box-shadow: var(--sc-shadow-lg); }
.sc-why-item i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(182,32,46,.1);
    color: var(--sc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}
.sc-why-item h5 { font-size: 16px; font-weight: 700; color: var(--sc-dark); margin: 0; }

/* ---------- Doctors ---------- */
.sc-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 40px;
}
.sc-doctor-card {
    background: var(--sc-card);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--sc-shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}
.sc-doctor-card:hover { transform: translateY(-8px); box-shadow: var(--sc-shadow-lg); }

.sc-doctor-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--sc-bg);
    overflow: hidden;
}
.sc-doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.sc-doctor-avatar {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, var(--sc-primary), var(--sc-primary-light));
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-doctor-info { padding: 20px 18px 24px; }
.sc-doctor-info::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--sc-primary);
    margin: 0 auto 14px;
}
.sc-doctor-card h5 { font-size: 15.5px; font-weight: 700; color: var(--sc-dark); margin: 0 0 6px; }
.sc-doctor-card p { font-size: 13px; color: var(--sc-muted); margin: 0; line-height: 1.5; }

/* ---------- Appointment form ---------- */
.sc-form-section {
    background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%);
    position: relative;
    overflow: hidden;
}
.sc-form-wrapper {
    display: flex;
    background: #fff;
    border-radius: var(--sc-radius);
    overflow: hidden;
    box-shadow: var(--sc-shadow-lg);
}
.sc-form-info {
    flex: 1 1 38%;
    min-width: 0;
    background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%);
    color: #fff;
    padding: 44px 38px;
}
.sc-form-info h3 { font-size: 24px; font-weight: 700; margin: 0 0 14px; }
.sc-form-info p { color: rgba(255,255,255,.75); font-size: 14.5px; line-height: 1.7; margin-bottom: 28px; }
.sc-form-info-list { display: flex; flex-direction: column; gap: 18px; }
.sc-form-info-item { display: flex; align-items: center; gap: 14px; }
.sc-form-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd36e;
    flex-shrink: 0;
}
.sc-form-info-item strong { display: block; font-size: 14px; }
.sc-form-info-item span { font-size: 13px; color: rgba(255,255,255,.7); }

.sc-form-panel { flex: 1 1 62%; min-width: 0; padding: 44px 44px; }
.sc-form-panel h4 { font-size: 22px; font-weight: 700; color: var(--sc-dark); margin: 0 0 10px; }
.sc-form-panel > p.sc-form-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sc-primary);
    background: var(--sc-bg);
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin: 0 0 28px;
}

.sc-field { margin-bottom: 20px; }
.sc-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--sc-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sc-field-icon-wrap { position: relative; }
.sc-field-icon-wrap > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sc-primary);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
}
.sc-field input, .sc-field select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 10px;
    border: 1.5px solid var(--sc-border);
    font-family: inherit;
    font-size: 14.5px;
    color: var(--sc-dark);
    background: var(--sc-bg);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    -webkit-appearance: none;
    appearance: none;
}
.sc-field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767c8c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}
.sc-field input::placeholder { color: #a8adba; }
.sc-field input:focus, .sc-field select:focus {
    border-color: var(--sc-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26,43,92,.08);
}
.sc-field-row { display: flex; gap: 16px; }
.sc-field-row .sc-field { flex: 1; min-width: 0; }

.sc-submit-btn {
    width: 100%;
    background: var(--sc-red);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15.5px;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sc-submit-btn:hover { background: var(--sc-red-dark); transform: translateY(-1px); }
.sc-submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.sc-form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--sc-muted);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.sc-form-divider::before, .sc-form-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--sc-border);
}
.sc-whatsapp-btn {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background .25s ease, transform .2s ease;
}
.sc-whatsapp-btn:hover { background: #1eb857; color: #fff; transform: translateY(-1px); }

.sc-form-feedback {
    margin-top: 16px;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.sc-form-feedback.sc-show { display: block; }
.sc-form-feedback.sc-success { background: #e6f8ee; color: #147a3f; }
.sc-form-feedback.sc-error { background: #fdeaea; color: #a8202a; }

/* ---------- Testimonials ---------- */
.sc-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.sc-testimonial-card {
    background: var(--sc-card);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sc-shadow);
}
.sc-stars { color: #ffb800; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.sc-testimonial-card p {
    font-size: 14.5px;
    color: var(--sc-text);
    line-height: 1.7;
    margin: 0 0 18px;
    font-style: italic;
}
.sc-testimonial-name { display: flex; align-items: center; gap: 12px; }
.sc-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.sc-testimonial-name strong { display: block; font-size: 14px; color: var(--sc-dark); }
.sc-testimonial-name span { font-size: 12.5px; color: var(--sc-muted); }

/* ---------- FAQ ---------- */
.sc-faq-list { max-width: 780px; margin: 40px auto 0; }
.sc-faq-item {
    background: var(--sc-card);
    border-radius: 14px;
    box-shadow: var(--sc-shadow);
    margin-bottom: 14px;
    overflow: hidden;
}
.sc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    color: var(--sc-dark);
    cursor: pointer;
    user-select: none;
}
.sc-faq-question i { color: var(--sc-red); transition: transform .3s ease; flex-shrink: 0; margin-left: 14px; }
.sc-faq-item.sc-open .sc-faq-question i { transform: rotate(45deg); }
.sc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 24px;
    color: var(--sc-muted);
    font-size: 14px;
    line-height: 1.7;
}
.sc-faq-item.sc-open .sc-faq-answer { max-height: 220px; padding: 0 24px 22px; }

/* ---------- CTA strip ---------- */
.sc-cta-strip {
    background: var(--sc-red);
    color: #fff;
    padding: 44px 0;
    text-align: center;
}
.sc-cta-strip h3 { font-size: 24px; font-weight: 700; margin: 0 0 10px; }
.sc-cta-strip p { color: rgba(255,255,255,.85); margin: 0 0 24px; font-size: 15px; }
.sc-cta-strip .sc-btn-outline { border-color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.sc-footer { background: linear-gradient(135deg, var(--sc-primary) 0%, var(--sc-primary-light) 100%); color: rgba(255,255,255,.7); padding: 50px 0 24px; }
.sc-footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.sc-footer h6 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 16px; }
.sc-footer p, .sc-footer li { font-size: 13.5px; line-height: 1.8; }
.sc-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.sc-footer-contact-item i { color: #fff; margin-top: 3px; }
.sc-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.sc-footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s ease;
}
.sc-footer-social a:hover { background: var(--sc-red); }
.sc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
}

/* ---------- Sticky mobile bottom bar ---------- */
.sc-sticky-mobile {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: #fff;
    box-shadow: 0 -6px 24px rgba(0,0,0,.12);
}
.sc-sticky-mobile-inner { display: flex; }
.sc-sticky-mobile a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 14.5px;
    color: #fff;
}
.sc-sticky-mobile a.sc-sticky-call { background: var(--sc-primary); }
.sc-sticky-mobile a.sc-sticky-whatsapp { background: #25d366; }

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 991px) {
    .sc-container { padding: 0 24px; }
    .sc-hero-grid { flex-direction: column; align-items: stretch; text-align: center; }
    .sc-hero-text { order: 2; }
    .sc-hero-visual { order: 1; margin-bottom: 10px; }
    .sc-hero-sub { margin-left: auto; margin-right: auto; }
    .sc-hero-meta { justify-content: center; }
    .sc-hero-ctas { justify-content: center; }
    .sc-hero-float-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .sc-why-grid { grid-template-columns: repeat(2, 1fr); }
    .sc-doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .sc-testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin: 40px auto 0; }
    .sc-form-wrapper { flex-direction: column; }
    .sc-footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: left; }
    .sc-footer-contact-item { justify-content: flex-start; }
    .sc-footer-social { justify-content: flex-start; }
}

/* Large phones */
@media (max-width: 640px) {
    .sc-container { padding: 0 18px; }
    .sc-topbar-inner { padding: 12px 0; }
    .sc-logo img { height: 34px; }
    .sc-call-pill { font-size: 13.5px; gap: 6px; }
    .sc-topbar-cta { display: none; }

    .sc-hero { padding: 34px 0 90px; }
    .sc-hero-text { text-align: left; }
    .sc-hero h1 { font-size: 27px; }
    .sc-hero-sub { font-size: 15px; margin-left: 0; margin-right: 0; }
    .sc-badge { font-size: 11px; padding: 6px 12px; gap: 6px; white-space: nowrap; }
    .sc-hero-meta { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 10px; }
    .sc-hero-ctas { flex-direction: column; width: 100%; justify-content: flex-start; }
    .sc-hero-ctas .sc-btn { width: 100%; }
    .sc-hero-visual-frame { max-width: 100%; }
    .sc-hero-float-card { min-width: 0; width: calc(100% - 24px); max-width: 260px; padding: 12px 14px; }

    .sc-section { padding: 46px 0; }
    .sc-section-tight { padding: 34px 0; }
    .sc-section-title { font-size: 24px; }
    .sc-section-sub { font-size: 14.5px; }

    .sc-conditions-grid { grid-template-columns: 1fr; }
    .sc-why-grid { grid-template-columns: 1fr; }
    .sc-clinic-card { padding: 24px 18px; }
    .sc-clinic-card-head { flex-direction: column; align-items: flex-start; gap: 12px; }
    .sc-clinic-footnote { flex-direction: column; align-items: flex-start; gap: 10px; }

    .sc-doctors-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .sc-doctor-info { padding: 16px 12px 20px; }

    .sc-form-panel, .sc-form-info { padding: 28px 22px; }
    .sc-field-row { flex-direction: column; gap: 0; }

    .sc-testimonial-card { padding: 24px 20px; }

    .sc-cta-strip h3 { font-size: 20px; }
    .sc-cta-strip .sc-hero-ctas { flex-direction: column; width: 100%; }
    .sc-cta-strip .sc-btn { width: 100%; }

    .sc-sticky-mobile { display: block; }
    body.sc-body { padding-bottom: 62px; }
}

/* Small phones */
@media (max-width: 400px) {
    .sc-call-pill span { display: none; }
    .sc-call-pill {
        width: 38px;
        height: 38px;
        justify-content: center;
        border-radius: 50%;
        background: var(--sc-bg);
    }
    .sc-hero h1 { font-size: 24px; }
    .sc-section-title { font-size: 21px; }
    .sc-doctors-grid { grid-template-columns: 1fr; max-width: 260px; margin-left: auto; margin-right: auto; }
    .sc-doctor-photo, .sc-doctor-avatar { aspect-ratio: 4 / 3; }
}
