﻿/* ---------- 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;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

.service-page-root {
    min-height: 100vh;
}

.service-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 30px;
    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;
}

.service-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;
}

    .service-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;
    }

    .service-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;
}

    .hero-secondary-link::after {
        content: "›";
        font-size: 14px;
        opacity: 0.8;
    }

    .hero-secondary-link:hover {
        text-decoration: underline;
    }
/* ---------- PRICE CARD ---------- */
.hero-right {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.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-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;
}
/* ---------- DARK SECTION (WHAT YOU GET) ---------- */
.section-card.section-dark {
    background: #020617;
    border-color: #020617;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9);
    color: #e5e7eb;
}

.section-dark .section-title {
    color: #f9fafb;
}

.section-dark .section-subtitle {
    color: #9ca3af;
}

.section-dark .section-pill-light {
    background: rgba(15, 23, 42, 0.95);
    border-color: #4b5563;
    color: #9ca3af;
}
/* ---------- WHAT YOU GET GRID ---------- */
.what-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.what-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.what-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.what-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-green);
    color: #f0fdf4;
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(187, 247, 208, 0.8);
}

.what-text-main {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    margin-bottom: 2px;
}

.what-text-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.section-dark .what-text-main {
    color: #f9fafb;
}

.section-dark .what-text-sub {
    color: #9ca3af;
}

.what-image-card {
    border-radius: 26px;
    background: #f9fafb;
    border: 1px solid var(--border-soft);
    padding: 16px 18px 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.section-dark .what-image-card {
    background: radial-gradient(circle at top left, #111827 0%, #020617 55%, #000000 100%);
    border-color: #111827;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
}

.what-image-tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    align-self: flex-start;
}

.section-dark .what-image-tag {
    color: #9ca3af;
}

.what-image {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    display: block;
    border: 1px solid #27272f;
    background: #1f2933;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
    transform: translateY(0);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

    .what-image:hover {
        transform: translateY(-4px);
        box-shadow: 0 34px 90px rgba(0, 0, 0, 1);
    }

.what-image-caption {
    font-size: 12px;
    color: var(--text-muted);
    text-align: left;
    width: 100%;
}

.section-dark .what-image-caption {
    color: #9ca3af;
}
/* ---------- HOW IT WORKS ---------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 6px;
}

.step-card {
    border-radius: 22px;
    padding: 16px 14px 14px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-badge {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #111827;
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 0 0 3px #e5e5ea;
    margin-bottom: 4px;
}

.step-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-soft);
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.step-body {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.steps-footer-link {
    margin-top: 12px;
    font-size: 13px;
    color: var(--link);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 500;
}

    .steps-footer-link::after {
        content: "›";
        font-size: 16px;
        transform: translateY(0.5px);
    }
/* ---------- WHY SECTION ---------- */
.why-body {
    font-size: 14px;
    color: #111827;
    line-height: 1.6;
}

    .why-body p {
        margin: 0 0 10px;
    }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: grid;
    gap: 6px;
}

    .why-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: #111827;
    }

        .why-list li::before {
            content: "•";
            color: var(--accent-green);
            font-size: 14px;
            line-height: 1.4;
            margin-top: 1px;
        }

.why-readmore {
    font-size: 13px;
    color: var(--link);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    border: none;
    background: transparent;
    padding: 0;
}

    .why-readmore span {
        font-size: 15px;
    }

.why-extra {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
}

    .why-extra.open {
        max-height: 400px;
    }
/* ---------- 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) {
    .service-shell {
        margin-top: 24px;
    }

    .service-hero {
        grid-template-columns: minmax(0, 1fr);
        padding: 22px 18px 24px;
    }

    .hero-title {
        font-size: 23px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .price-card {
        max-width: none;
    }

    .section-card {
        border-radius: 24px;
        padding: 20px 18px 18px;
    }

    .what-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .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) {
    .service-shell {
        padding-inline: 14px;
    }

    .hero-title {
        font-size: 21px;
    }

    .section-heading-row,
    .faq-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
