/* —— Base —— */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #1a1a1a;
    background: #f5f5f4;
    min-height: 100vh;
}

/* —— Hero —— */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem) 0;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #f0f0ee;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath fill='none' stroke='%23d4d4d0' stroke-width='0.6' d='M0 12 Q30 4 60 12 T120 12'/%3E%3C/svg%3E");
    background-size: 120px 24px;
    opacity: 0.85;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    margin: 0 0 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #171717;
}

.hero__subtitle {
    margin: 0 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #525252;
}
/*.hero__typed-line {*/
/*    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);*/
/*    min-height: 1.35em;*/
/*    font-size: 2.75rem;*/
/*    font-weight: 700;*/
/*    color: #525252;*/
/*}*/
/*------------------------------------------*/
.hero__typed-line {
  /*margin: 0 0 clamp(1.5rem, 3vw, 2rem);*/
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  min-height: 1.2em;

  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #525252;
  text-align: center;
  line-height: 1.3;
  max-width: 700px; 
}
/*------------------------------------------*/

.hero__typed {
    display: inline;
    white-space: nowrap;
    text-align: center;
}

.hero__cursor {
    display: inline;
    font-weight: 400;
    color: #737373;
    animation: hero-blink 0.85s step-end infinite;
    margin-left: 1px;
}

@keyframes hero-blink {
    50% {
        opacity: 0;
    }
}

/*.hero__demo-label {*/
/*    margin: 0 0 0.5rem;*/
/*    font-size: 0.8125rem;*/
/*    font-weight: 500;*/
/*    color: #a3a3a3;*/
/*}*/

/*new Demo Css*/
.hero__demo-label {
  margin: 0 0 0.6rem;

  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;  

  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
/*----------*/

.hero__form {
    margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
    max-width: 36rem;
    width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero__cta-pill {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.45rem 0.45rem 0.45rem 0.65rem;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero__cta-pill.is-focused {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2), 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero__country-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d4d4d8;
    border-radius: 999px;
    background: #fafafa;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero__country-wrap.is-open {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    background: #fff;
}

.hero__flag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    padding: 0.5rem 1.75rem 0.5rem 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 999px;
    color: #404040;
    font: inherit;
    transition: background 0.15s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.55rem center;
}

.hero__flag:hover {
    background-color: #f5f5f5;
}

.hero__flag:focus {
    outline: none;
}

.hero__country-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    background: #fff;
}

.hero__input {
    flex: 1 1 8rem;
    min-width: 0;
    border: 1px solid #d4d4d8;
    border-radius: 999px;
    background: #fafafa;
    padding: 0.65rem 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: #171717;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero__input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
    background: #fff;
}

.hero__input::placeholder {
    color: #a3a3a3;
}

.hero__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-shrink: 0;
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: 9999px;
    background: #0a0a0a;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
    white-space: nowrap;
}

.hero__submit:hover {
    background: #262626;
}

.hero__submit:active {
    transform: scale(0.98);
}

.hero__phone-icon {
    flex-shrink: 0;
}

/*Demo call status messages*/

.hero__message {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  min-height: 20px;

  transition: all 0.3s ease;
}

/* Loading / neutral */
.hero__message.is-loading {
  color: #64748b;
}

/* Success */
.hero__message.is-success {
  color: #0CBD93;
}

/* Error */
.hero__message.is-error {
  color: #ef4444;
}

/* animation */
.hero__message.show {
  opacity: 1;
  transform: translateY(0);
}

.hero__message {
  opacity: 0;
  transform: translateY(5px);
}

/*--------------------------------*/

/* Stats row */
.hero__stats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    text-align: left;
}

.hero__stat {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero__stat-icon {
    flex-shrink: 0;
    color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.hero__stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.hero__stat-value {
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 700;
    color: #171717;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: #737373;
    line-height: 1.3;
}

/* Floating action */
.hero__fab {
    position: fixed;
    bottom: clamp(1.25rem, 4vw, 2rem);
    right: clamp(1.25rem, 4vw, 2rem);
    z-index: 10;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #171717;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.hero__fab:hover {
    background: #404040;
    transform: scale(1.05);
}

/* —— Responsive —— */
@media (max-width: 640px) {
    .hero__cta-pill {
        flex-direction: column;
        border-radius: 1.25rem;
        padding: 0.65rem;
        align-items: stretch;
    }

    .hero__flag {
        justify-content: center;
        width: 100%;
    }

    .hero__input {
        width: 100%;
        text-align: center;
        padding: 0.5rem;
    }

    .hero__submit {
        width: 100%;
        padding: 0.85rem 1rem;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__stat {
        align-items: center;
    }
}

/* —— Features / impact cards —— */
.features {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
    background: #f0f0ee;
}

.features__inner {
    max-width: 72rem;
    margin: 0 auto;
}

.features__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #171717;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.features__lead {
    margin: 0 auto 2.5rem;
    max-width: 40rem;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.55;
    color: #525252;
    text-align: center;
}

.features__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.features-card {
    background: #fff;
    border-radius: 14px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.features-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.features-card__icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
}

.features-card--blue .features-card__icon-wrap {
    background: #e8f1fe;
    color: #2563eb;
}

.features-card--green .features-card__icon-wrap {
    background: #d1fae5;
    color: #059669;
}

.features-card__icon {
    flex-shrink: 0;
}

.features-card__stat {
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 3vw, 2.125rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.features-card--blue .features-card__stat {
    color: #2563eb;
}

.features-card--green .features-card__stat {
    color: #059669;
}

.features-card__headline {
    margin: 0 0 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    color: #262626;
}

.features-card__body {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #737373;
}

@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

    .features__lead {
        margin-bottom: 2rem;
    }
}

/* —— Pain points —— */
.pain-points {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
    background: #fafaf9;
}

.pain-points__inner {
    max-width: 56rem;
    margin: 0 auto;
}

.pain-points__title {
    margin: 0 0 0.875rem;
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #171717;
    text-align: center;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.pain-points__lead {
    margin: 0 auto 2.25rem;
    max-width: 38rem;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.55;
    font-weight: 400;
    color: #737373;
    text-align: center;
}

.pain-points__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
}

.pain-card {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.35rem);
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s ease;
}

.pain-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pain-card__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: #dc2626;
}

.pain-card__icon svg {
    display: block;
}

.pain-card__content {
    min-width: 0;
    text-align: left;
}

.pain-card__headline {
    margin: 0 0 0.375rem;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 600;
    line-height: 1.35;
    color: #404040;
}

.pain-card__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 400;
    color: #737373;
}

.pain-points__footer {
    margin: 2rem 0 0;
    text-align: center;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 600;
    color: #dc2626;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .pain-points__grid {
        grid-template-columns: 1fr;
    }

    .pain-card {
        align-items: flex-start;
    }
}

/* —— Healthcare Voice AI capabilities —— */
.voice-capabilities {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) 0;
    background: #ffffff;
}

.voice-capabilities__inner {
    max-width: 72rem;
    margin: 0 auto;
}

.voice-capabilities__title {
    margin: 0 auto 0.875rem;
    max-width: 48rem;
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111827;
    text-align: center;
}

.voice-capabilities__lead {
    margin: 0 auto 2.5rem;
    max-width: 40rem;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.55;
    color: #6b7280;
    text-align: center;
}

.voice-capabilities__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    align-items: stretch;
}

.cap-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 2.5vw, 1.875rem);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.cap-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 8px 28px rgba(0, 0, 0, 0.05);
}

.cap-card__icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    color: #111827;
}

.cap-card__icon {
    display: block;
}

.cap-card__title {
    margin: 0 0 0.625rem;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.cap-card__intro {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #6b7280;
}

.cap-card__list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    flex: 1;
}

.cap-card__list > li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #6b7280;
}

.cap-card__list > li:last-child {
    margin-bottom: 0;
}

.cap-card__check {
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #111827;
}

.cap-card__check svg {
    display: block;
}

.cap-card__footer {
    margin: auto 0 0;
    padding-top: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.45;
    color: #111827;
    border-top: 1px solid #f3f4f6;
}

@media (max-width: 900px) {
    .voice-capabilities__grid {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}

/* —— How it works —— */
.how-it-works {
    padding: clamp(3rem, 6vw, 5.5rem) clamp(1.25rem, 4vw, 2rem) 0;
    background: #ffffff;
}

.how-it-works__inner {
    max-width: 72rem;
    margin: 0 auto;
}

.how-it-works__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    padding: 0.4rem 1rem;
    width: fit-content;
    max-width: 100%;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #4b5563;
    background: #f3f4f6;
    border-radius: 9999px;
    text-align: center;
}

.how-it-works__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
    text-align: center;
}

.how-it-works__lead {
    margin: 0 auto 2.75rem;
    max-width: 36rem;
    font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
    line-height: 1.55;
    color: #6b7280;
    text-align: center;
}

.how-it-works__track {
    position: relative;
}

.how-it-works__line--horizontal {
    display: none;
}

@media (min-width: 901px) {
    .how-it-works__line--horizontal {
        display: block;
        position: absolute;
        left: 12.5%;
        right: 12.5%;
        top: 2.125rem;
        height: 0;
        border: none;
        border-top: 2px dotted #d1d5db;
        z-index: 0;
        pointer-events: none;
    }
}

.how-it-works__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(1.25rem, 2vw, 1.5rem);
    position: relative;
    z-index: 1;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    position: relative;
}

.how-step__head {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.how-step__icon-box {
    position: relative;
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12), 0 4px 10px rgba(15, 23, 42, 0.08);
}

.how-step__icon-box--blue {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
}

.how-step__icon-box--purple {
    background: linear-gradient(145deg, #a78bfa 0%, #8b5cf6 45%, #7c3aed 100%);
}

.how-step__icon-box--teal {
    background: linear-gradient(145deg, #2dd4bf 0%, #14b8a6 45%, #0d9488 100%);
}

.how-step__icon-box--green {
    background: linear-gradient(145deg, #4ade80 0%, #22c55e 45%, #16a34a 100%);
}

.how-step__num {
    position: absolute;
    top: -1rem;
    right: -0.5em;
    font-size: clamp(1.75rem, 2.5vw, 2.125rem);
    font-weight: 800;
    line-height: 1;
    /* color: rgba(15, 23, 42, 0.12); */
    color: gray;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.how-step__glyph {
    display: block;
}

.how-step__card {
    flex: 1;
    padding: clamp(1.25rem, 2vw, 1.5rem);
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.how-step__card--blue {
    background: #eff6ff;
}

.how-step__card--purple {
    background: #f5f3ff;
}

.how-step__card--teal {
    background: #f0fdfa;
}

.how-step__card--green {
    background: #f0fdf4;
}

.how-step__card-title {
    margin: 0 0 0.5rem;
    font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}

.how-step__card-text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #6b7280;
}

.how-step__line--vertical {
    display: none;
}

@media (max-width: 900px) {
    .how-it-works__steps {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        gap: 0;
    }

    .how-step {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0 1rem;
        padding-bottom: 1.75rem;
    }

    .how-step:last-child {
        padding-bottom: 0;
    }

    .how-step__line--vertical {
        display: block;
        position: absolute;
        left: 2.125rem;
        top: 4.5rem;
        bottom: -1.75rem;
        width: 0;
        border-left: 2px dotted #d1d5db;
        z-index: 0;
    }

    .how-step:last-child .how-step__line--vertical {
        display: none;
    }

    .how-step__head {
        justify-content: flex-start;
        margin-bottom: 0;
        width: 4.25rem;
        flex-shrink: 0;
    }

    .how-step__card {
        flex: 1;
        min-width: 0;
        margin-top: 0;
    }
}

/* —— FAQ accordion —— */
.faq {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
    background: #ffffff;
}

.faq__inner {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.faq__title {
    margin: 0 0 1.75rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #111827;
    text-align: center;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-align: left;
    color: #111827;
    transition: background 0.15s ease;
}

.faq-item__trigger:hover {
    background: #fafafa;
}

.faq-item__trigger:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}

.faq-item__question {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

.faq-item__chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-item__panel {
    grid-template-rows: 1fr;
}

.faq-item__panel-inner {
    overflow: hidden;
    min-height: 0;
}

.faq-item__answer {
    margin: 0;
    padding: 0 1.25rem 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    font-weight: 400;
    color: #6b7280;
}

@media (max-width: 480px) {
    .faq__inner {
        max-width: none;
    }

    .faq-item__trigger {
        padding: 1rem 1rem;
    }

    .faq-item__answer {
        padding-left: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
    }
}

/* ===== Theme alignment with global header/footer (Tatkal Doctor brand) ===== */
:root {
    --va-brand-green: var(--primary-green, #00c796);
    --va-brand-blue: var(--primary-blue, #0066ff);
    --va-brand-dark: var(--dark-bg, #041350);
    --va-brand-soft: #eafbf6;
}

body {
    background: linear-gradient(180deg, #f5fffc 0%, #ffffff 55%, #f8fffd 100%);
}

.hero__bg {
    background-color: #ecfffa;
    background-image: radial-gradient(circle at 20% 15%, rgba(0, 199, 150, 0.14), transparent 42%),
        radial-gradient(circle at 82% 22%, rgba(0, 102, 255, 0.1), transparent 40%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath fill='none' stroke='%23c5efe2' stroke-width='0.6' d='M0 12 Q30 4 60 12 T120 12'/%3E%3C/svg%3E");
}

.hero__title,
.features__title,
.pain-points__title,
.voice-capabilities__title,
.how-it-works__title,
.faq__title {
    color: var(--va-brand-dark);
}

.hero__subtitle,
.hero__typed-line,
.features__lead,
.pain-points__lead,
.voice-capabilities__lead,
.how-it-works__lead,
.faq-item__answer {
    color: #35516a;
}

.hero__typed {
    color: var(--va-brand-green);
}

.hero__submit {
    background: linear-gradient(120deg, var(--va-brand-green) 0%, #00b58a 100%);
    color: #fff;
}

.hero__submit:hover {
    background: linear-gradient(120deg, #00b58a 0%, #009d78 100%);
}

.hero__fab {
    background: var(--va-brand-dark);
}

.hero__fab:hover {
    background: var(--va-brand-blue);
}

.features,
.voice-capabilities,
.how-it-works,
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8fffd 100%);
}

.pain-points {
    background: linear-gradient(180deg, #f0fffa 0%, #ffffff 100%);
}

.features-card,
.pain-card,
.cap-card,
.faq-item {
    border-color: rgba(0, 199, 150, 0.18);
    box-shadow: 0 8px 24px rgba(4, 19, 80, 0.06);
}

.features-card--blue .features-card__icon-wrap {
    background: rgba(0, 102, 255, 0.12);
    color: var(--va-brand-blue);
}

.features-card--green .features-card__icon-wrap {
    background: rgba(0, 199, 150, 0.14);
    color: #009f78;
}

.features-card--blue .features-card__stat {
    color: var(--va-brand-blue);
}

.features-card--green .features-card__stat {
    color: var(--va-brand-green);
}

.pain-card__icon,
.pain-points__footer {
    color: #0ea774;
}

.cap-card__icon-wrap {
    background: var(--va-brand-soft);
    color: var(--va-brand-dark);
}

.cap-card__check {
    color: var(--va-brand-green);
}

.how-it-works__badge {
    color: var(--va-brand-dark);
    background: var(--va-brand-soft);
    border: 1px solid rgba(0, 199, 150, 0.22);
}

.how-step__icon-box--blue {
    background: linear-gradient(145deg, #0f7bff 0%, #0066ff 55%, #0053cc 100%);
}

.how-step__icon-box--purple,
.how-step__icon-box--teal,
.how-step__icon-box--green {
    background: linear-gradient(145deg, #01d3a0 0%, #00c796 55%, #00aa80 100%);
}

.how-step__card--blue,
.how-step__card--purple,
.how-step__card--teal,
.how-step__card--green {
    background: #f3fffb;
}

.faq-item__trigger:focus-visible {
    outline-color: var(--va-brand-green);
}
