/* =====================================================
   superco Clinic — Microsite Styles
   Built on superco design system: dark-teal + signal-green
   ===================================================== */

:root {
    --color-dark-teal: #072A30;
    --color-dark-teal-2: #0a3940;
    --color-signal-green: #17C64F;
    --color-signal-green-dark: #15b345;
    --color-soft-white: #EDF2F2;
    --color-cream: #F7FAFA;
    --color-line: rgba(7, 42, 48, 0.10);
    --color-line-dark: rgba(255, 255, 255, 0.12);
    --color-muted: rgba(7, 42, 48, 0.65);
    --color-muted-light: rgba(255, 255, 255, 0.72);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(7, 42, 48, 0.06);
    --shadow-md: 0 12px 40px rgba(7, 42, 48, 0.08);
    --shadow-lg: 0 24px 60px rgba(7, 42, 48, 0.12);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --font-primary: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

    --header-h: 80px;
    --container-max: 1280px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    background-color: var(--color-soft-white);
    color: var(--color-dark-teal);
    font-family: var(--font-primary);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 100%;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- Pill / Label ---------- */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 14px;
    background: rgba(23, 198, 79, 0.10);
    border: 1px solid rgba(23, 198, 79, 0.22);
    color: var(--color-signal-green);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(23, 198, 79, 0.22);
}

.pill-ca {
    color: #0c8ef0;
    background: rgba(12, 142, 240, 0.08);
    border-color: rgba(12, 142, 240, 0.25);
}

.pill-ca .pill-dot {
    background: #0c8ef0;
    box-shadow: 0 0 0 4px rgba(12, 142, 240, 0.2);
}

.pill-legal {
    color: #b8860b;
    background: rgba(184, 134, 11, 0.08);
    border-color: rgba(184, 134, 11, 0.25);
}

.pill-legal .pill-dot {
    background: #b8860b;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.2);
}

.pill-light {
    color: var(--color-signal-green);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    line-height: 1;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
}

.btn-primary:hover {
    background: var(--color-signal-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 198, 79, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-dark-teal);
    border: 1.5px solid rgba(7, 42, 48, 0.18);
}

.btn-ghost:hover {
    background: var(--color-dark-teal);
    color: white;
    border-color: var(--color-dark-teal);
}

.btn-lg {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ---------- Section Titles ---------- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-dark-teal);
    margin-bottom: 18px;
}

.section-title.light {
    color: white;
}

.section-lede {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-muted);
    max-width: 620px;
}

.section-lede.light {
    color: var(--color-muted-light);
}

.section-head {
    margin-bottom: 60px;
}

.section-head.center {
    text-align: center;
}

.section-head.center .section-lede {
    margin-inline: auto;
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

.header-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(237, 242, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
    z-index: -1;
    transition: all var(--transition);
}

.header.scrolled .header-bg {
    background-color: rgba(237, 242, 242, 0.98);
    box-shadow: 0 4px 24px rgba(7, 42, 48, 0.06);
}

.header-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: all var(--transition);
}

.logo-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-dark-teal);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-signal-green);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--color-signal-green);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(7, 42, 48, 0.05);
    border-radius: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--color-dark-teal);
    border-radius: 2px;
    margin: 2.5px 0;
    transition: all var(--transition);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-soft-white);
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all var(--transition);
    z-index: 998;
    overflow-y: auto;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link-mobile {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark-teal);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-line);
}

.nav-link-mobile:hover {
    color: var(--color-signal-green);
}

.nav-mobile .btn-primary {
    margin-top: 24px;
}

/* =====================================================
   SECTION 1 · HERO
   ===================================================== */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 60px) 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(23, 198, 79, 0.08), transparent 50%),
        radial-gradient(circle at 5% 80%, rgba(12, 142, 240, 0.06), transparent 45%),
        var(--color-soft-white);
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(7, 42, 48, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 42, 48, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 90%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-title .accent {
    color: var(--color-signal-green);
    position: relative;
    white-space: nowrap;
}

.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--color-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-soft-white);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: var(--color-dark-teal);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.a1 {
    background: linear-gradient(135deg, #0c8ef0, #075ba1);
}

.avatar.a2 {
    background: linear-gradient(135deg, #b8860b, #8a5e08);
}

.avatar.a3 {
    background: linear-gradient(135deg, #17C64F, #0e8635);
}

.hero-trust p {
    font-size: 14px;
    color: var(--color-muted);
}

/* Hero right card */
.hero-right {
    position: relative;
}

.hero-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-line);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(23, 198, 79, 0.25), transparent 50%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-card-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(23, 198, 79, 0.10);
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.status-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-signal-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-dark-teal);
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.schedule-list li:hover {
    transform: translateX(4px);
    border-color: rgba(23, 198, 79, 0.3);
}

.schedule-tag {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.schedule-tag.ca {
    background: linear-gradient(135deg, #0c8ef0, #075ba1);
}

.schedule-tag.legal {
    background: linear-gradient(135deg, #b8860b, #8a5e08);
}

.schedule-tag.hr {
    background: linear-gradient(135deg, #17C64F, #0e8635);
}

.schedule-list li>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.schedule-list li strong {
    font-size: 15px;
    font-weight: 600;
}

.schedule-list li span:not(.schedule-tag):not(.schedule-status) {
    font-size: 13px;
    color: var(--color-muted);
}

.schedule-status {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-signal-green-dark);
    background: rgba(23, 198, 79, 0.12);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =====================================================
   SECTION 2 · TRUST STRIP
   ===================================================== */
.trust-strip {
    background: white;
    padding: 50px 0;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.trust-item {
    text-align: center;
    padding: 12px;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(23, 198, 79, 0.08);
    color: var(--color-signal-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all var(--transition);
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-item:hover .trust-icon {
    background: var(--color-signal-green);
    color: white;
    transform: scale(1.08);
}

.trust-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-dark-teal);
}

.trust-item p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* =====================================================
   SECTIONS 3 + 4 · SERVICE SECTIONS
   ===================================================== */
.service-section {
    padding: 110px 0;
}

.service-section.ca-section {
    background: var(--color-soft-white);
}

.service-section.legal-section {
    background: white;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-grid.reverse .service-info {
    order: 2;
}

.service-grid.reverse .service-list {
    order: 1;
}

.service-info {
    position: relative;
}

.quote {
    border-left: 3px solid var(--color-signal-green);
    padding: 12px 20px;
    margin: 28px 0 36px;
    font-style: italic;
    font-size: 17px;
    color: var(--color-dark-teal);
    background: rgba(23, 198, 79, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    position: relative;
}

.quote svg {
    width: 22px;
    height: 22px;
    color: var(--color-signal-green);
    margin-bottom: 8px;
    display: block;
    opacity: 0.7;
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-card {
    background: white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.legal-section .service-card {
    background: var(--color-soft-white);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-signal-green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 198, 79, 0.3);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-signal-green);
    background: rgba(23, 198, 79, 0.10);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-dark-teal);
    margin-bottom: 4px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--color-muted);
    line-height: 1.55;
}

/* =====================================================
   SECTION 6 · HOW IT WORKS
   ===================================================== */
.how-section {
    padding: 110px 0;
    background: var(--color-soft-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step-card {
    background: white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(23, 198, 79, 0.3);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-dark-teal);
    color: white;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    font-variant-numeric: tabular-nums;
    position: relative;
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px dashed rgba(23, 198, 79, 0.4);
    border-radius: 20px;
}

.step-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark-teal);
}

.step-card p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 60px;
    right: -28px;
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-signal-green);
    z-index: 2;
}

.step-arrow svg {
    width: 16px;
    height: 16px;
}

/* =====================================================
   SECTION 7 · WHY MEMBERS LOVE THIS
   ===================================================== */
.why-section {
    padding: 110px 0;
    background: var(--color-dark-teal);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.12), transparent 70%);
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.08), transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(23, 198, 79, 0.4);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(23, 198, 79, 0.15);
    color: var(--color-signal-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.why-card p {
    font-size: 14.5px;
    color: var(--color-muted-light);
    line-height: 1.6;
}

.why-card-cta {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-color: transparent;
}

.why-card-cta h3 {
    color: var(--color-dark-teal);
    font-size: 22px;
}

.why-card-cta p {
    color: var(--color-dark-teal);
    opacity: 0.85;
    margin-bottom: 22px;
}

.why-card-cta .btn-primary {
    background: var(--color-dark-teal);
    color: white;
}

.why-card-cta .btn-primary:hover {
    background: #0a3a42;
    box-shadow: 0 12px 28px rgba(7, 42, 48, 0.5);
}

/* =====================================================
   SECTION 8 · FAQ
   ===================================================== */
.faq-section {
    padding: 110px 0;
    background: var(--color-soft-white);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: flex-start;
}

.faq-head .pill {
    margin-bottom: 22px;
}

.faq-head .btn-ghost {
    margin-top: 22px;
}

.faq-head .btn-ghost svg {
    color: #25D366;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: rgba(23, 198, 79, 0.3);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: rgba(23, 198, 79, 0.4);
}

.faq-item summary {
    list-style: none;
    padding: 22px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-teal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--color-signal-green-dark);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--color-signal-green);
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
}

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
    padding: 60px 0 100px;
    background: var(--color-soft-white);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-signal-green), #0fa83f);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(23, 198, 79, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-card::before,
.cta-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.cta-card::before {
    width: 320px;
    height: 320px;
    top: -150px;
    right: -80px;
}

.cta-card::after {
    width: 220px;
    height: 220px;
    bottom: -120px;
    left: 20%;
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark-teal);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    position: relative;
}

.cta-card p {
    color: var(--color-dark-teal);
    opacity: 0.85;
    font-size: 17px;
    position: relative;
}

.cta-card .btn-primary {
    background: var(--color-dark-teal);
    color: white;
    position: relative;
}

.cta-card .btn-primary:hover {
    background: #0a3a42;
    box-shadow: 0 12px 28px rgba(7, 42, 48, 0.4);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-section {
    background: var(--color-dark-teal);
    color: white;
    padding: 90px 0 36px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 18px;
}

.footer-tag {
    font-size: 15px;
    color: var(--color-muted-light);
    max-width: 280px;
    line-height: 1.55;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--color-signal-green);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.12em;
}

.footer-column a,
.footer-column p {
    display: block;
    color: #B8C1C1;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--color-signal-green);
}

.footer-bottom {
    border-top: 1px solid var(--color-line-dark);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 14px;
    color: #B8C1C1;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 22px;
}

.legal-links a {
    font-size: 14px;
    color: #B8C1C1;
    transition: color var(--transition);
}

.legal-links a:hover {
    color: var(--color-signal-green);
}

/* =====================================================
   POPUP BOOKING FORM
   ===================================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 42, 48, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-dialog {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform var(--transition);
}

.popup-overlay.active .popup-dialog {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(7, 42, 48, 0.08);
    color: var(--color-dark-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.popup-close:hover {
    background: var(--color-dark-teal);
    color: white;
    transform: rotate(90deg);
}

.popup-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 100%;
    max-height: 92vh;
    overflow-y: auto;
}

.popup-side {
    background: var(--color-dark-teal);
    color: white;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.popup-side::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.18), transparent 70%);
    pointer-events: none;
}

.popup-side .pill {
    margin-bottom: 18px;
    color: var(--color-signal-green);
    background: rgba(23, 198, 79, 0.12);
    border-color: rgba(23, 198, 79, 0.3);
    align-self: flex-start;
    position: relative;
}

.popup-side h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    position: relative;
}

.popup-side-lede {
    font-size: 15px;
    color: var(--color-muted-light);
    margin-bottom: 26px;
    line-height: 1.55;
    position: relative;
}

.popup-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.popup-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--color-muted-light);
}

.popup-bullets svg {
    width: 18px;
    height: 18px;
    color: var(--color-signal-green);
    flex-shrink: 0;
}

.popup-contact {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.popup-contact p {
    font-size: 13px;
    color: var(--color-muted-light);
    margin-bottom: 6px;
}

.popup-contact a {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-signal-green);
    transition: color var(--transition);
}

.popup-contact a:hover {
    color: white;
}

.popup-form {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: white;
}

.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-teal);
    letter-spacing: 0.01em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--color-cream);
    border: 1.5px solid var(--color-line);
    border-radius: 10px;
    font-size: 15px;
    color: var(--color-dark-teal);
    transition: all var(--transition);
    outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-signal-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(23, 198, 79, 0.12);
}

.field textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.field input:invalid:not(:placeholder-shown) {
    border-color: rgba(220, 53, 69, 0.5);
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-muted);
    cursor: pointer;
    user-select: none;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-signal-green);
    cursor: pointer;
}

.form-note {
    font-size: 12px;
    color: var(--color-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: 4px;
}

body.popup-open {
    overflow: hidden;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    :root {
        --header-h: 68px;
    }

    .nav-desktop {
        display: none;
    }

    .header .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 38px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        padding: calc(var(--header-h) + 40px) 0 70px;
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-grid.reverse .service-info,
    .service-grid.reverse .service-list {
        order: initial;
    }

    .service-section {
        padding: 80px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-arrow {
        display: none;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .popup-grid {
        grid-template-columns: 1fr;
    }

    .popup-side {
        padding: 32px 28px;
    }

    .popup-form {
        padding: 32px 28px;
    }

    .cta-card {
        padding: 40px 32px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
    }

    .hero-card {
        padding: 24px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .step-card {
        padding: 28px 24px;
    }

    .row-2 {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
