/* ===== Healthcare Industry Page ===== */

/* Scroll animations */
.hc-page [data-anim] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(80ms + var(--delay, 0ms));
    will-change: opacity, transform;
}
.hc-page [data-anim="fade-up"]    { transform: translateY(40px); }
.hc-page [data-anim="fade-left"]  { transform: translateX(48px); }
.hc-page [data-anim="fade-right"] { transform: translateX(-48px); }
.hc-page [data-anim="zoom-in"]    { transform: scale(0.94); }
.hc-page [data-anim].in-view { opacity: 1; transform: translate(0,0) scale(1); }
@media (prefers-reduced-motion: reduce) {
    .hc-page [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.hc-page {
    min-height: 100vh;
    background: #f8fafc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem 0;
    overflow-x: clip;
    font-family: 'Inter', system-ui, sans-serif;
}

.hc-glow {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    z-index: 0;
    filter: blur(60px);
}
.hc-glow--tl { top: -100px; left: -120px; width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(0,168,150,0.08) 0%, transparent 65%); }
.hc-glow--br { bottom: -80px; right: -100px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(0,168,150,0.06) 0%, transparent 65%); }

/* ── Hero ── */
.hc-hero {
    position: relative;
    width: 100%;
    min-height: calc(85vh - 6rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0 3rem;
}

@media (max-width: 600px) {
    .hc-hero { min-height: calc(80vh - 5rem); }
}

.hc-watermark {
    position: absolute;
    top: 4%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(70px, 13vw, 170px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

@media (max-width: 600px) {
    .hc-watermark {
        top: 0;
        font-size: clamp(52px, 15vw, 64px);
    }
}

.hc-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1160px;
}

.hc-header {
    position: relative;
    z-index: 2;
    max-width: 640px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* video sits behind the text as a wide background layer */
@media (min-width: 901px) {
    .hc-hero-video {
        position: absolute;
        top: 0;
        bottom: 0;
        right: -6vw;
        width: 72%;
        display: flex;
        align-items: center;
        z-index: 1;
        pointer-events: none;
    }
    .hc-hero-video-frame {
        width: 100%;
    }
}

.hc-hero-video-frame {
    position: relative;
}

.hc-hero-video-frame video {
    display: block;
    width: 100%;
    height: auto;
    /* feather all edges so the video's studio bg melts into the page */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%),
                        linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
            mask-composite: intersect;
    mix-blend-mode: multiply;
}

/* taller video presence on desktop: fixed height, crop sides,
   longer left fade where the text overlaps */
@media (min-width: 901px) {
    .hc-hero-video-frame video {
        height: clamp(480px, 66vh, 660px);
        object-fit: cover;
        object-position: center;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 90%, transparent 100%),
                            linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
                mask-image: linear-gradient(to right, transparent 0%, #000 26%, #000 90%, transparent 100%),
                            linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
    }
}

@media (max-width: 900px) {
    .hc-hero-inner {
        grid-template-columns: 1fr;
    }
    .hc-header {
        text-align: center;
        align-items: center;
    }
    .hc-hero-video {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

.hc-tag {
    display: inline-block;
    border: 1px solid rgba(0,168,150,0.4);
    color: #00A896;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    background: rgba(0,168,150,0.06);
}

.hc-title {
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.hc-title-accent {
    color: #00A896;
}

.hc-sub {
    font-size: 1.02rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 660px;
}

.hc-cta-row {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hc-cta-row { justify-content: center; }
}

.hc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.hc-cta-btn svg { width: 16px; height: 16px; }

.hc-cta-btn--primary {
    background: linear-gradient(180deg, #00bfac 0%, #00A896 100%);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,168,150,0.35);
}
.hc-cta-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,168,150,0.5); }

.hc-cta-btn--ghost {
    background: #ffffff;
    color: #0f172a;
    border-color: #e2e8f0;
}
.hc-cta-btn--ghost:hover { border-color: #00A896; color: #00A896; }

.hc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00A896;
    padding: 13px 10px;
    transition: color 0.15s;
}
.hc-cta-link svg { width: 20px; height: 20px; }
.hc-cta-link:hover { color: #007f71; }

/* ── The Problem ── */
.hc-problem {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 4rem auto 0;
}

.hc-problem-card {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.hc-problem-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.hc-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hc-prob-col {
    display: flex;
    flex-direction: column;
    padding: 0 clamp(0.9rem, 2vw, 1.5rem);
    border-left: 1px dashed #e2e8f0;
}
.hc-prob-col:first-child { border-left: none; padding-left: 0; }
.hc-prob-col:last-child { padding-right: 0; }

.hc-prob-chip {
    display: inline-block;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.hc-prob-chip--dark {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.hc-prob-body {
    border-top: 1px dashed #e2e8f0;
    padding-top: 18px;
    flex: 1;
}

.hc-prob-heading {
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.hc-prob-text {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.6;
}

.hc-prob-art {
    margin-top: 20px;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hc-prob-art svg {
    width: 100%;
    max-width: 170px;
    height: auto;
}

@media (max-width: 900px) {
    .hc-problem-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 2.25rem;
    }
    .hc-prob-col:nth-child(odd) { border-left: none; padding-left: 0; }
    .hc-prob-col:nth-child(even) { padding-right: 0; }
}

@media (max-width: 560px) {
    .hc-problem-grid { grid-template-columns: 1fr; }
    .hc-prob-col { border-left: none; padding: 0; }
}

/* ── Inbound / Outbound ── */
.hc-eyebrow {
    display: inline-block;
    color: #00A896;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.25);
    padding: 5px 16px;
    border-radius: 999px;
}

.hc-io {
    position: relative;
    z-index: 1;
    /* full-bleed white band; content stays centered at 1160px */
    width: 100vw;
    margin: 5rem 0 0 calc(50% - 50vw);
    background: #ffffff;
    padding: 4.5rem max(2rem, calc((100vw - 1160px) / 2)) 4.5rem;
}

.hc-io-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.hc-io-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hc-io-sub {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

.hc-io-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.hc-io-card {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: 0 12px 40px rgba(15,23,42,0.05);
}

.hc-io-card--dark {
    background: #0b1020;
    border-color: rgba(255,255,255,0.08);
}

.hc-io-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px dashed #e2e8f0;
}

.hc-io-card--dark .hc-io-card-head {
    border-bottom-color: rgba(255,255,255,0.12);
}

.hc-io-dir {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0,168,150,0.1);
    color: #00A896;
}
.hc-io-dir svg { width: 22px; height: 22px; }

.hc-io-card--dark .hc-io-dir {
    background: rgba(45,212,191,0.14);
    color: #2dd4bf;
}

.hc-io-card-titles h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.hc-io-card-titles p {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
}

.hc-io-card--dark .hc-io-card-titles h3 { color: #ffffff; }
.hc-io-card--dark .hc-io-card-titles p { color: rgba(255,255,255,0.55); }

.hc-io-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 0;
}

.hc-io-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hc-io-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #475569;
}
.hc-io-ic svg { width: 17px; height: 17px; }

.hc-io-card--dark .hc-io-ic {
    background: rgba(255,255,255,0.07);
    color: #94a3b8;
}

.hc-io-list strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.hc-io-list small {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 2px;
}

.hc-io-card--dark .hc-io-list strong { color: #ffffff; }
.hc-io-card--dark .hc-io-list small { color: rgba(255,255,255,0.55); }

@media (max-width: 820px) {
    .hc-io-grid { grid-template-columns: 1fr; }
}

/* ── Patient Memory ── */
.hc-mem {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1160px;
    margin: 8rem auto 0;
}

.hc-mem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.hc-mem-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.hc-mem-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hc-mem-sub {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.65;
}

.hc-mem-points {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-mem-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #334155;
}

.hc-mem-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0,168,150,0.12);
    color: #00A896;
}
.hc-mem-check svg { width: 12px; height: 12px; }

/* call transcript mockup */
.hc-mem-call {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.08);
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(15,23,42,0.1);
    padding: 20px;
}

.hc-mem-call-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #e2e8f0;
}

.hc-mem-live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f172a;
}

.hc-mem-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: hc-pulse 1.6s ease-in-out infinite;
}

@keyframes hc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    55%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hc-mem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hc-mem-tags span {
    font-size: 0.66rem;
    font-weight: 600;
    color: #00796b;
    background: rgba(0,168,150,0.08);
    border: 1px solid rgba(0,168,150,0.2);
    padding: 3px 9px;
    border-radius: 999px;
}

.hc-mem-msgs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-mem-msg {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 14px;
}

.hc-mem-msg .hc-mem-who {
    display: block;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.hc-mem-msg p {
    font-size: 0.86rem;
    line-height: 1.5;
    margin: 0;
}

.hc-mem-msg--agent {
    align-self: flex-start;
    background: rgba(0,168,150,0.07);
    border: 1px solid rgba(0,168,150,0.16);
    border-bottom-left-radius: 4px;
}
.hc-mem-msg--agent .hc-mem-who { color: #00A896; }
.hc-mem-msg--agent p { color: #134e4a; }

.hc-mem-msg--patient {
    align-self: flex-end;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-bottom-right-radius: 4px;
}
.hc-mem-msg--patient .hc-mem-who { color: #64748b; }
.hc-mem-msg--patient p { color: #334155; }

.hc-mem-call-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.hc-mem-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #10b981;
}
.hc-mem-foot-item svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 820px) {
    .hc-mem-grid { grid-template-columns: 1fr; }
    .hc-mem-copy { align-items: center; text-align: center; }
    .hc-mem-points li { text-align: left; }
    .hc-mem-demo { max-width: 520px; margin: 0 auto; width: 100%; }
}

/* ── How It Works ── */
.hc-how {
    position: relative;
    z-index: 1;
    /* full-bleed white band; content stays centered at 1160px */
    width: 100vw;
    margin: 8rem 0 0 calc(50% - 50vw);
    background: #ffffff;
    padding: 4.5rem max(2rem, calc((100vw - 1160px) / 2)) 4.5rem;
}

.hc-how-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.hc-how-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hc-how-dot { color: #00A896; }

.hc-how-wave {
    position: relative;
    width: 100%;
    height: 420px;
}

.hc-how-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* passes over the ghost numbers, under the text */
    filter: drop-shadow(0 16px 16px rgba(0,168,150,0.18));
}

.hc-how-badge {
    position: absolute;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 10px 18px rgba(15,23,42,0.16));
    z-index: 2;
}

.hc-how-badge-hex {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #00A896;
    clip-path: polygon(25% 3%, 75% 3%, 98% 50%, 75% 97%, 25% 97%, 2% 50%);
}
.hc-how-badge-hex svg { width: 24px; height: 24px; }

.hc-how-step {
    position: absolute;
    width: 25%;
}

.hc-how-step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.hc-how-step p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.hc-how-num {
    position: absolute;
    top: -0.32em;
    right: -0.45em;
    font-size: 170px;
    font-weight: 900;
    line-height: 1;
    color: rgba(15,23,42,0.05);
    pointer-events: none;
    user-select: none;
}

.hc-how-step--1 { left: 3%;    top: 16%; }
.hc-how-step--2 { left: 36.5%; top: 58%; }
.hc-how-step--3 { left: 71.5%; top: 6%; }

/* draw the line as the section scrolls into view */
.hc-how-line path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.hc-how-wave.in-view .hc-how-line path {
    animation: hc-draw 1.8s cubic-bezier(0.45, 0, 0.25, 1) 0.2s forwards;
}

@keyframes hc-draw {
    to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hc-how-line path { stroke-dashoffset: 0; }
    .hc-how-wave.in-view .hc-how-line path { animation: none; }
}

/* ── CTA ── */
.hc-cta {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    background: #f8fafc;
    padding: 4rem 2rem 6rem;
    display: flex;
    justify-content: center;
}

.hc-cta-card {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(160deg, #062a26 0%, #0f3933 55%, #0a2521 100%);
    border-radius: 24px;
    padding: 44px 56px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(0,168,150,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 28px 60px rgba(0,168,150,0.18);
}

.hc-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 520px; height: 320px;
    background: radial-gradient(ellipse, rgba(0,191,172,0.35) 0%, transparent 65%);
    pointer-events: none;
}

.hc-cta-tag {
    position: relative;
    display: inline-block;
    border: 1px solid rgba(0,191,172,0.45);
    color: #5eead4;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0,191,172,0.08);
    margin-bottom: 12px;
}

.hc-cta-title {
    position: relative;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hc-cta-sub {
    position: relative;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 20px;
}

.hc-cta-actions {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hc-cta-btn--dark-ghost {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(255,255,255,0.2);
}
.hc-cta-btn--dark-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .hc-cta-card { padding: 32px 22px; border-radius: 20px; }
}

/* ── FAQ ── */
.hc-faq {
    position: relative;
    z-index: 1;
    /* full-bleed white band; content stays centered */
    width: 100vw;
    margin: 8rem 0 0 calc(50% - 50vw);
    background: #ffffff;
    padding: 5rem max(2rem, calc((100vw - 1160px) / 2)) 5rem;
}

.hc-faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.hc-faq-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: sticky;
    top: 110px;
}

.hc-faq-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hc-faq-accent { color: #00A896; }

.hc-faq-sub {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 380px;
}

.hc-faq-sub a {
    color: #00A896;
    font-weight: 600;
    text-decoration: none;
}
.hc-faq-sub a:hover { text-decoration: underline; }

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

.hc-faq-item {
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.hc-faq-item[open] { background: #ffffff; }

.hc-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
}
.hc-faq-item summary::-webkit-details-marker { display: none; }

.hc-faq-chev {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #00A896;
    color: #ffffff;
    transition: transform 0.25s ease;
}
.hc-faq-chev svg { width: 11px; height: 8px; }

.hc-faq-item[open] .hc-faq-chev { transform: rotate(180deg); }

.hc-faq-item > p {
    padding: 0 20px 18px;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.65;
    max-width: 92%;
}

.hc-faq-item > p a {
    color: #00A896;
    font-weight: 600;
    text-decoration: none;
}
.hc-faq-item > p a:hover { text-decoration: underline; }

@media (max-width: 820px) {
    .hc-faq-grid { grid-template-columns: 1fr; }
    .hc-faq-intro {
        position: static;
        align-items: center;
        text-align: center;
    }
}

/* ── Comparison ── */
.hc-cmp {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1060px;
    margin: 8rem auto 0;
}

.hc-cmp-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 3rem;
}

.hc-cmp-title {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hc-cmp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 4px; /* room for the elevated column's shadow */
}

.hc-cmp-table {
    display: grid;
    grid-template-columns: 1fr 1.35fr 0.9fr;
    min-width: 680px;
}

.hc-cmp-cell {
    padding: 18px 22px;
    border-bottom: 1px solid #e8edf3;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* row labels */
.hc-cmp-cell--label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    padding-left: 0;
}

/* Zencia column — elevated white card */
.hc-cmp-cell--z {
    background: #ffffff;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14);
}

.hc-cmp-cell--z-top {
    border-radius: 16px 16px 0 0;
    justify-content: center;
    padding: 22px;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14),
                0 -18px 28px -22px rgba(15,23,42,0.14);
}

.hc-cmp-cell--z-bottom {
    border-radius: 0 0 16px 16px;
    border-bottom: none;
    box-shadow: 18px 0 28px -22px rgba(15,23,42,0.14),
                -18px 0 28px -22px rgba(15,23,42,0.14),
                0 18px 28px -22px rgba(15,23,42,0.14);
}

.hc-cmp-logo { height: 26px; width: auto; }

.hc-cmp-cell--z p {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Traditional column */
.hc-cmp-cell--t {
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.hc-cmp-cell--t-head {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.hc-cmp-cell--t small {
    font-size: 0.72rem;
    color: #94a3b8;
}

.hc-cmp-yes {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(0,168,150,0.12);
    color: #00A896;
}
.hc-cmp-yes svg { width: 14px; height: 14px; }

.hc-cmp-no {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}
.hc-cmp-no svg { width: 16px; height: 16px; }

.hc-cmp-meh {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 720px) {
    .hc-cmp-cell { padding: 14px 14px; }
    .hc-cmp-cell--label { font-size: 0.82rem; }
}

@media (max-width: 820px) {
    .hc-how-wave {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-top: 1rem;
    }
    .hc-how-line,
    .hc-how-badge { display: none; }
    .hc-how-step {
        position: static;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        text-align: center;
        padding-top: 8px;
        border-top: 2px solid rgba(0,168,150,0.25);
    }
    .hc-how-num {
        position: static;
        display: block;
        font-size: 64px;
        color: rgba(0,168,150,0.18);
        margin-bottom: 2px;
    }
}
