/* ============================================================
   Service Landing Pages — Premium 2026 Layout
   ============================================================ */

body.service-page.service-landing {
    background: var(--gray-50);
}

/* First block spacing below fixed header */
body.service-page.service-landing .sp-section-flow > :first-child:not(.sp-hero-full) {
    margin-top: calc(var(--header-height) + 20px);
}

@media (min-width: 992px) {
    /* Full-width hero bleeds under glass nav on desktop */
    body.service-page.service-landing .sp-section-flow > section.sp-hero-full:first-child {
        margin-top: 0;
        min-height: 100dvh;
        padding-top: calc(var(--header-height) + clamp(40px, 6vw, 72px));
    }
}

@media (max-width: 991px) {
    body.service-page.service-landing .sp-section-flow > :first-child {
        margin-top: calc(var(--header-height) + 20px);
    }
}

/* Section rhythm — no awkward empty gaps */
body.service-page .sp-section-flow > section {
    position: relative;
}

body.service-page .sp-section-flow > section.section {
    padding: clamp(64px, 8vw, 100px) 0;
}

body.service-page .sp-section-flow > section.section:nth-child(even):not(.sp-hero):not(.sp-appointment) {
    background: var(--white);
}

body.service-page .sp-section-flow > section.section:nth-child(odd):not(.sp-hero):not(.sp-appointment) {
    background: var(--gray-50);
}

body.service-page .section-header {
    margin-bottom: clamp(32px, 4vw, 56px);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

body.service-page .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--gray-900);
    line-height: 1.2;
}

body.service-page .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

/* ── Hero ─────────────────────────────────────────────────── */
body.service-page.service-landing .sp-section-flow > section.sp-hero:first-child {
    padding-top: 0;
}

.sp-hero {
    padding: 80px 0 80px;
    background: var(--section-alt);
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sp-hero-full {
    min-height: calc(100dvh - var(--header-height) - 20px);
    display: flex;
    align-items: center;
    color: white;
    padding-top: clamp(32px, 5vw, 56px);
    padding-bottom: 80px;
}

.sp-hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 61, 122, 0.92) 0%, rgba(11, 18, 32, 0.82) 55%, rgba(27, 154, 170, 0.35) 100%);
    z-index: 0;
}

.sp-hero-full .container {
    position: relative;
    z-index: 2;
}

.sp-hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.sp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.sp-hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--gray-500);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 540px;
}

.sp-hero-full .sp-hero-desc {
    color: rgba(255, 255, 255, 0.88);
    margin-left: auto;
    margin-right: auto;
}

.sp-hero-full .sp-hero-title {
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 4px;
}

.sp-hero:not(.sp-hero-full) .sp-hero-actions {
    justify-content: flex-start;
}

.sp-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
    line-height: 1.25;
    white-space: nowrap;
}

.sp-hero-btn i {
    font-size: 0.95em;
}

.sp-hero-btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(22, 61, 122, 0.2);
}

.sp-hero-btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(22, 61, 122, 0.26);
}

.sp-hero-btn-secondary {
    background: #fff;
    color: var(--appointment-brand);
    border-color: rgba(164, 12, 15, 0.18);
    box-shadow: var(--shadow-sm);
}

.sp-hero-btn-secondary:hover {
    background: var(--gray-50);
    border-color: rgba(164, 12, 15, 0.45);
    color: var(--appointment-brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sp-hero-btn-secondary i {
    color: var(--appointment-brand);
}

.sp-hero-btn-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    color: #16a34a;
    border-color: rgba(37, 211, 102, 0.35);
}

.sp-hero-btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    transform: translateY(-2px);
}

.sp-hero-full .sp-hero-btn-primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    box-shadow: 0 10px 36px rgba(11, 18, 32, 0.22);
}

.sp-hero-full .sp-hero-btn-primary:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.sp-hero-full .sp-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--appointment-brand);
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 28px rgba(11, 18, 32, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sp-hero-full .sp-hero-btn-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--appointment-brand);
}

.sp-hero-full .sp-hero-btn-secondary i {
    color: var(--appointment-brand);
}

.sp-hero-full .sp-hero-btn-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #fff;
    border-color: rgba(37, 211, 102, 0.45);
}

.sp-hero-full .sp-hero-btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.sp-hero-label {
    display: inline-block;
    color: var(--secondary) !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sp-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.sp-hero:not(.sp-hero-full) .sp-hero-features {
    justify-content: flex-start;
}

.sp-hero-full .sp-hero-features {
    justify-content: center;
}

.sp-hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
    background: #fff;
    border: 1px solid rgba(27, 154, 170, 0.22);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.sp-hero-feature i {
    flex-shrink: 0;
    color: var(--secondary);
    font-size: 0.68rem;
}

.sp-hero-full .sp-hero-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.sp-hero-full .sp-hero-feature {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.sp-hero-full .sp-hero-feature i {
    color: var(--accent-light);
}

/* Legacy single badge — kept for any custom markup */
.sp-badge {
    display: inline-block;
    background: rgba(27, 154, 170, 0.1);
    color: var(--primary);
    border: 1px solid rgba(27, 154, 170, 0.22);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.sp-whatsapp-btn {
    border-color: #25D366 !important;
    color: #25D366 !important;
}

.sp-whatsapp-btn:hover {
    background: #25D366 !important;
    color: white !important;
}

.sp-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: spBounce 2s infinite;
}

@keyframes spBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Cards ────────────────────────────────────────────────── */
.sp-service-cards .services-grid,
.sp-service-cards .row {
    --bs-gutter-x: 1.5rem;
}

.sp-card-item {
    text-align: center;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.sp-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.sp-card-item h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--gray-900);
}

.sp-card-item p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.7;
}

.sp-card-img {
    height: 160px;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin: -32px -32px 0;
}

.sp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-card-item:hover .sp-card-img img {
    transform: scale(1.06);
}

/* ── Content blocks ───────────────────────────────────────── */
.sp-rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sp-content-text {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.85;
}

.sp-bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.sp-bullet-list li {
    padding: 12px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-bottom: 1px solid var(--gray-100);
}

.sp-bullet-list li:last-child {
    border-bottom: none;
}

.sp-bullet-list i {
    color: var(--secondary);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* ── Benefits ─────────────────────────────────────────────── */
.sp-benefits .why-grid {
    gap: 24px;
}

.sp-benefits .why-card {
    text-align: center;
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.sp-benefits .why-card:hover {
    border-color: rgba(27, 154, 170, 0.25);
    transform: translateY(-4px);
}

.sp-benefits .why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* ── Statistics ───────────────────────────────────────────── */
.sp-statistics {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: white;
}

.sp-statistics .stat-card,
.sp-statistics .stat-item {
    text-align: center;
    padding: 24px;
}

.sp-statistics .stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.sp-statistics .stat-label {
    margin-top: 8px;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ── Before & After ───────────────────────────────────────── */
.sp-ba-compare {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: ew-resize;
    user-select: none;
}

.sp-ba-compare img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.sp-ba-after-wrap {
    position: absolute;
    inset: 0;
}

.sp-ba-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--accent);
    z-index: 2;
}

.sp-ba-before-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.sp-ba-compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.sp-ba-compare-handle i {
    font-size: 0.85rem;
}

.sp-ba-label {
    position: absolute;
    bottom: 12px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sp-ba-label-before { left: 12px; }
.sp-ba-label-after { right: 12px; }

.sp-ba-story {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    text-align: center;
    margin: 0;
    border-top: 1px solid var(--gray-100);
}

.sp-ba-pair.legacy .sp-ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.sp-ba-side {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.sp-ba-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s;
}

.sp-ba-side:hover img {
    transform: scale(1.05);
}

.sp-ba-side span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ── Gallery ──────────────────────────────────────────────── */
.sp-gallery .gallery-grid {
    gap: 16px;
}

.sp-gallery .gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.sp-gallery .gallery-item img {
    transition: transform 0.4s ease;
}

.sp-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.sp-gallery-caption {
    padding: 10px;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.sp-faq .accordion-item {
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.sp-faq .accordion-button {
    font-weight: 600;
    color: var(--gray-900);
    background: var(--white);
    box-shadow: none !important;
}

.sp-faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(22, 61, 122, 0.04);
}

/* ── Testimonials ─────────────────────────────────────────── */
.sp-testimonials .testimonial-card {
    height: 100%;
    padding: 32px;
}

.sp-testimonials .stars {
    color: var(--accent);
    margin-bottom: 16px;
}

/* ── Doctor ───────────────────────────────────────────────── */
.sp-doctor .premium-card {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.sp-doctor-photo {
    width: 100%;
    max-width: 280px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

/* ── Appointment CTA ──────────────────────────────────────── */
.sp-appointment {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 100% 0%, rgba(27, 154, 170, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(22, 61, 122, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #f1f7fa 100%) !important;
    color: var(--gray-900);
    padding: clamp(72px, 9vw, 112px) 0 !important;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.sp-appointment::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 154, 170, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.2;
    pointer-events: none;
}

.sp-appointment > .container {
    position: relative;
    z-index: 1;
}

body.service-page .sp-appointment .section-title,
.sp-appointment .section-title {
    color: var(--gray-900) !important;
    text-shadow: none;
}

.sp-appointment-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(28px, 4vw, 44px);
}

.sp-appointment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(27, 154, 170, 0.22);
    color: var(--secondary);
    font-size: 1.35rem;
    box-shadow: var(--shadow-sm);
}

.sp-appointment .section-label {
    color: var(--secondary);
    letter-spacing: 0.14em;
}

.sp-appointment-subtitle {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--gray-500);
}

.sp-appointment-form {
    background: #fff;
    padding: clamp(28px, 4vw, 44px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    color: var(--gray-900);
}

.sp-appointment-form .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.sp-appointment-form .form-control,
.sp-appointment-form .form-select {
    border-color: var(--gray-200);
    background: #fff;
    min-height: 46px;
}

.sp-appointment-form .form-control:focus,
.sp-appointment-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 154, 170, 0.15);
}

.sp-appointment-submit {
    min-width: 220px;
    padding: 14px 32px;
    box-shadow: 0 8px 24px rgba(22, 61, 122, 0.25);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.sp-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(11, 18, 32, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sp-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.sp-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.sp-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
}

.sp-lightbox-close:hover {
    opacity: 1;
}

/* ── Video + Content ──────────────────────────────────────── */
.sp-video-player-wrap {
    background: var(--dark);
    box-shadow: var(--shadow-md);
    line-height: 0;
}

.sp-video-player {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
    pointer-events: none;
}

.sp-video-player::-webkit-media-controls {
    display: none !important;
}

.sp-video-player::-webkit-media-controls-enclosure {
    display: none !important;
}

.sp-video-embed-wrap iframe {
    pointer-events: none;
}

/* ── Section Breaker ──────────────────────────────────────── */
.sp-section-breaker {
    display: block;
    width: 100%;
    padding: var(--sp-breaker-gap, 40px) 0;
    margin: 0;
    box-sizing: border-box;
    clear: both;
    position: relative;
}

.sp-breaker-visual {
    width: 100%;
    display: block;
}

.sp-section-breaker--line .sp-breaker-visual {
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gray-300) 15%, var(--gray-300) 85%, transparent 100%);
    opacity: 1;
}

.sp-section-breaker--line.sp-section-breaker--primary .sp-breaker-visual {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
    opacity: 0.45;
}

.sp-section-breaker--line.sp-section-breaker--accent .sp-breaker-visual {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
    opacity: 0.85;
}

.sp-section-breaker--bar .sp-breaker-visual {
    height: 5px;
    width: 100px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--secondary);
    box-shadow: 0 2px 8px rgba(27, 154, 170, 0.25);
}

.sp-section-breaker--bar.sp-section-breaker--primary .sp-breaker-visual {
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(22, 61, 122, 0.2);
}

.sp-section-breaker--bar.sp-section-breaker--accent .sp-breaker-visual {
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
}

.sp-section-breaker--dots .sp-breaker-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 8px;
}

.sp-section-breaker--dots .sp-breaker-visual span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    display: block;
}

.sp-section-breaker--dots.sp-section-breaker--primary .sp-breaker-visual span { background: var(--primary); }
.sp-section-breaker--dots.sp-section-breaker--accent .sp-breaker-visual span { background: var(--accent); }

.sp-section-breaker--space {
    /* gap padding only — no visible line */
}

body.service-page .sp-section-flow > .sp-section-breaker {
    background: transparent;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767px) {
    body.service-page.service-landing .sp-section-flow > section.sp-hero:first-child {
        padding-top: 0;
    }
    .sp-hero { padding: 64px 0 60px; }
    .sp-hero-full { padding-top: 32px; min-height: calc(100dvh - var(--header-height) - 20px); }
    .sp-hero .container,
    .sp-hero-full .container {
        text-align: center;
    }
    .sp-hero-title,
    .sp-hero-desc,
    .sp-hero-label {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .sp-hero-features,
    .sp-hero-actions {
        justify-content: center;
        align-items: center;
    }
    .sp-hero-actions { flex-direction: column; width: 100%; }
    .sp-hero-actions .sp-hero-btn { width: 100%; justify-content: center; }
    .sp-doctor .premium-card { flex-direction: column; text-align: center; }
    .sp-doctor-photo { margin: 0 auto; }
}
