/* ---------- BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg-page: #f5f5f7;
    --bg-card: #ffffff;
    --border-soft: #e5e5ea;
    --primary: #111827;
    --link: #0f6fff;
    --accent-green: #22c55e;
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-soft: #9ca3af;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.12);
    --max-width: 1120px;
}

.highlight-page-root {
    min-height: 100vh;
}

.highlight-shell {
    max-width: var(--max-width);
    margin: 32px auto 64px;
    padding: 0 20px 40px;
}
/* ---------- TOP BAR ---------- */
.service-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-logo-text {
    font-weight: 700;
    letter-spacing: 0.16em;
    font-size: 11px;
    text-transform: uppercase;
    color: #111827;
}

.topbar-tag {
    padding: 4px 9px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.service-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-pill {
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-size: 11px;
    color: var(--text-muted);
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}
/* ---------- HERO ---------- */
.service-hero {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 28px 26px 26px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 24px;
    align-items: stretch;
    position: relative;
    border: 1px solid var(--border-soft);
}

.service-hero-inner {
    display: contents;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    background: #f9fafb;
}

.pill-primary {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.hero-title {
    font-size: 28px;
    line-height: 1.18;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 12px;
}

.hero-trust-line {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.highlight-page-root .btn-primary {
    border: none !important;
    outline: none;
    cursor: pointer;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    background: #111827 !important;
    color: #f9fafb !important;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.35) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    text-decoration: none;
    white-space: nowrap;
}

    .highlight-page-root .btn-primary span.icon-dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #fde047;
        box-shadow: 0 0 0 4px rgba(250, 250, 150, 0.6);
        flex-shrink: 0;
    }

    .highlight-page-root .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.45) !important;
        background: #020617 !important;
        color: #f9fafb !important;
    }

.hero-secondary-link {
    font-size: 13px;
    color: var(--link);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

    .hero-secondary-link::after {
        content: "\203A";
        font-size: 14px;
        opacity: 0.8;
    }

    .hero-secondary-link:hover {
        text-decoration: underline;
    }
/* ---------- HERO RIGHT: PRICE ONLY ---------- */
.hero-right {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
/* ---------- PREVIEW ELEMENTS (USED LATER) ---------- */
.highlight-preview-tag {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.highlight-preview-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

.highlight-preview-frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    transform-origin: center;
    background: #020617;
}

    .highlight-preview-frame img {
        width: 100%;
        display: block;
        height: auto;
        object-fit: cover;
    }

.highlight-preview-caption {
    margin-top: 8px;
    font-size: 11px;
    color: #9ca3af;
}
/* ---------- PRICE CARD ---------- */
.price-card {
    width: 100%;
    flex: 1;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,250,252,.78));
    padding: 18px;
    box-shadow: var(--shadow-card);
    color: #111827;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.price-card-inner {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price-card-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 800;
}

.price-card-pill {
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: #f9fafb;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.price-value {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111827;
}

.price-unit {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-soft);
    font-weight: 800;
}

.price-subcopy {
    font-size: 13px;
    color: var(--text-muted);
    margin: 8px 0 16px;
    flex: 1;
}

.price-note {
    font-size: 11px;
    color: var(--text-soft);
}

.price-card .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding-top: 9px;
    padding-bottom: 9px;
    margin-top: auto;
}
/* ---------- MAIN SECTIONS ---------- */
main {
    margin-top: 26px;
}

.section-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 24px 24px 22px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    border: 1px solid var(--border-soft);
}

.section-heading-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 16px;
}

.section-title {
    font-size: 20px;
    font-weight: 650;
    margin: 0;
    color: #111827;
}

.section-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}

.section-pill-light {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    color: var(--text-soft);
    background: #f9fafb;
    white-space: nowrap;
}
/* ---------- WHAT YOU GET LIST ---------- */
.session-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 20px;
    align-items: flex-start;
}

.session-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.session-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.session-check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9fafb;
    font-size: 13px;
    box-shadow: 0 0 0 3px #dcfce7;
    flex-shrink: 0;
    margin-top: 3px;
}

.session-text-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
}

.session-text-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
}

.session-side-card {
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    padding: 16px 14px 14px;
    background: radial-gradient(circle at top left, #111827 0%, #020617 60%, #020617 100%);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 13px;
}

.session-side-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    margin-top: 12px;
    margin-bottom: 4px;
}

.session-side-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #f9fafb;
}

.session-side-body {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 13px;
}
/* ---------- WHY HIGHLIGHT MATTERS ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.why-card {
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    padding: 14px 14px 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.why-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 0 0 3px #e5e7eb;
}

.why-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.why-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}
/* ---------- FAQ ---------- */
.faq-section-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 2px 0;
}

.faq-inner {
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    background: #ffffff;
    padding: 18px 20px 18px;
    box-shadow: var(--shadow-soft);
}

.faq-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.faq-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #f9fafb;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.faq-item {
    font-size: 13px;
    color: #111827;
}

.faq-q {
    font-weight: 500;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .faq-q span.bullet {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #111827;
    }

.faq-a {
    color: var(--text-muted);
}

.faq-footer {
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.faq-contact-link {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
}

    .faq-contact-link:hover {
        text-decoration: underline;
    }
/* ---------- BOOKING STRIP ---------- */
.booking-strip {
    margin-top: 16px;
    border-radius: 999px;
    background: #111827;
    border: 1px solid #020617;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #e5e7eb;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.6);
}

.booking-text {
    font-size: 13px;
}

    .booking-text strong {
        font-weight: 600;
    }

.booking-strip .btn-primary {
    padding: 8px 18px;
    font-size: 13px;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
}

    .booking-strip .btn-primary:hover {
        background: #f3f4f6;
    }
/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .highlight-shell {
        margin-top: 24px;
    }

    .service-hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 22px 18px 22px;
    }

    .hero-title {
        font-size: 23px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-right {
        margin-top: 4px;
    }

    .section-card {
        border-radius: 24px;
        padding: 20px 18px 18px;
    }

    .session-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .why-grid,
    .faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .booking-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .highlight-shell {
        padding-inline: 14px;
    }

    .hero-title {
        font-size: 21px;
    }

    .section-heading-row,
    .faq-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
