
  .hksev-page,
  .hksev-page * {
    box-sizing: border-box;
  }

  .hksev-page {
    --hksev-navy: #073b66;
    --hksev-blue: #0b66b2;
    --hksev-blue-dark: #064f8d;
    --hksev-teal: #008f87;
    --hksev-teal-dark: #00756f;
    --hksev-ink: #102a43;
    --hksev-muted: #526777;
    --hksev-line: #cfe0ec;
    --hksev-soft: #eef7fc;
    --hksev-soft-2: #f7fbfd;
    --hksev-amber: #a96100;
    --hksev-amber-bg: #fff7e8;
    --hksev-white: #ffffff;
    --hksev-radius: 14px;
    --hksev-shadow: 0 12px 32px rgba(7, 59, 102, 0.11);
    width: 100%;
    overflow: hidden;
    background: var(--hksev-white);
    color: var(--hksev-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang HK", "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  .hksev-page a {
    color: inherit;
    text-decoration: none;
  }

  .hksev-page img,
  .hksev-page iframe,
  .hksev-page svg {
    display: block;
    max-width: 100%;
  }

  .hksev-page button,
  .hksev-page a {
    -webkit-tap-highlight-color: transparent;
  }

  .hksev-page a:focus-visible,
  .hksev-page summary:focus-visible {
    outline: 3px solid #f1b94b;
    outline-offset: 3px;
  }

  .hksev-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--hksev-navy);
    color: var(--hksev-white) !important;
    font-weight: 800;
  }

  .hksev-skip-link:focus {
    transform: translateY(0);
  }

  .hksev-container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
  }

  .hksev-section {
    padding: 76px 0;
  }

  .hksev-section--soft {
    background: var(--hksev-soft-2);
  }

  .hksev-section--blue {
    background: var(--hksev-soft);
  }

  .hksev-section-head {
    max-width: 780px;
    margin-bottom: 34px;
  }

  .hksev-section-head--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hksev-page h1,
  .hksev-page h2,
  .hksev-page h3,
  .hksev-page p {
    margin-top: 0;
  }

  .hksev-page h1,
  .hksev-page h2,
  .hksev-page h3 {
    color: var(--hksev-navy);
    font-weight: 850;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .hksev-page h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(34px, 5vw, 60px);
  }

  .hksev-page h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3.6vw, 42px);
  }

  .hksev-page h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .hksev-section-intro {
    margin-bottom: 0;
    color: var(--hksev-muted);
    font-size: 18px;
  }

  .hksev-hero {
    padding: 42px 0 30px;
    background: var(--hksev-white);
  }

  .hksev-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
    align-items: center;
    gap: 42px;
  }

  .hksev-hero-copy {
    position: relative;
    z-index: 2;
  }

  .hksev-hero-lead {
    max-width: 710px;
    margin-bottom: 20px;
    color: var(--hksev-muted);
    font-size: 19px;
    line-height: 1.75;
  }

  .hksev-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 22px;
    padding: 15px 17px;
    border: 1px solid #edc16f;
    border-radius: 11px;
    background: var(--hksev-amber-bg);
    color: #744400;
    font-weight: 750;
    line-height: 1.55;
  }

  .hksev-alert svg {
    flex: 0 0 24px;
    margin-top: 1px;
  }

  .hksev-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
  }

  .hksev-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 19px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  }

  .hksev-btn:hover {
    transform: translateY(-2px);
  }

  .hksev-btn--phone {
    background: var(--hksev-blue);
    color: var(--hksev-white) !important;
    box-shadow: 0 8px 20px rgba(11, 102, 178, 0.2);
  }

  .hksev-btn--phone:hover {
    background: var(--hksev-blue-dark);
  }

  .hksev-btn--whatsapp {
    background: var(--hksev-teal);
    color: var(--hksev-white) !important;
    box-shadow: 0 8px 20px rgba(0, 143, 135, 0.18);
  }

  .hksev-btn--whatsapp:hover {
    background: var(--hksev-teal-dark);
  }

  .hksev-btn--outline {
    border-color: var(--hksev-blue);
    background: var(--hksev-white);
    color: var(--hksev-blue) !important;
  }

  .hksev-btn--outline:hover {
    background: var(--hksev-soft);
  }

  .hksev-btn--white {
    background: var(--hksev-white);
    color: var(--hksev-navy) !important;
  }

  .hksev-btn--ghost-white {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
    color: var(--hksev-white) !important;
  }

  .hksev-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hksev-branch-now {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    border-left: 4px solid var(--hksev-blue);
    background: var(--hksev-soft);
    color: var(--hksev-navy);
    font-weight: 780;
    line-height: 1.55;
  }

  .hksev-branch-now svg {
    flex: 0 0 22px;
    margin-top: 2px;
  }

  .hksev-hero-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: #e4eff6;
    box-shadow: var(--hksev-shadow);
  }

  .hksev-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
  }

  .hksev-hero-caption {
    margin: 10px 4px 0;
    color: var(--hksev-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
  }

  .hksev-quick-links {
    border-top: 1px solid var(--hksev-line);
    border-bottom: 1px solid var(--hksev-line);
    background: var(--hksev-soft-2);
  }

  .hksev-quick-links-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .hksev-quick-link {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px;
    border-right: 1px solid var(--hksev-line);
    color: var(--hksev-navy) !important;
    font-weight: 800;
    text-align: center;
  }

  .hksev-quick-link:last-child {
    border-right: 0;
  }

  .hksev-quick-link:hover {
    background: var(--hksev-soft);
  }

  .hksev-symptom-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .hksev-symptom-card {
    padding: 22px 18px;
    border: 1px solid var(--hksev-line);
    border-radius: var(--hksev-radius);
    background: var(--hksev-white);
    box-shadow: 0 7px 20px rgba(7, 59, 102, 0.06);
  }

  .hksev-symptom-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
    place-items: center;
    border-radius: 50%;
    background: var(--hksev-soft);
    color: var(--hksev-blue);
    font-weight: 900;
  }

  .hksev-symptom-card p {
    margin-bottom: 0;
    color: var(--hksev-muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .hksev-urgent-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 18px 20px;
    border: 1px solid #edc16f;
    border-radius: var(--hksev-radius);
    background: var(--hksev-amber-bg);
    color: #6d4200;
  }

  .hksev-urgent-note strong {
    color: #563500;
  }

  .hksev-urgent-note svg {
    flex: 0 0 25px;
    margin-top: 2px;
  }

  .hksev-risk-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 48px;
  }

  .hksev-risk-copy {
    position: sticky;
    top: 24px;
  }

  .hksev-risk-copy p {
    margin-bottom: 18px;
    color: var(--hksev-muted);
  }

  .hksev-risk-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .hksev-risk-list::before {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 23px;
    width: 2px;
    background: var(--hksev-line);
    content: "";
  }

  .hksev-risk-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 28px;
  }

  .hksev-risk-item:last-child {
    padding-bottom: 0;
  }

  .hksev-risk-number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--hksev-teal);
    color: var(--hksev-white);
    font-weight: 900;
  }

  .hksev-risk-body {
    padding: 4px 0 2px;
  }

  .hksev-risk-body p {
    margin-bottom: 0;
    color: var(--hksev-muted);
  }

  .hksev-care-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 48px;
  }

  .hksev-care-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 4px 0 22px;
    border-bottom: 1px solid var(--hksev-line);
  }

  .hksev-care-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 11px;
    background: var(--hksev-soft);
    color: var(--hksev-blue);
  }

  .hksev-care-item p {
    margin-bottom: 0;
    color: var(--hksev-muted);
  }

  .hksev-home-care {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .hksev-home-card {
    padding: 22px;
    border-radius: var(--hksev-radius);
    background: var(--hksev-white);
  }

  .hksev-home-card--do {
    border: 1px solid #8fd3cc;
  }

  .hksev-home-card--dont {
    border: 1px solid #edc16f;
  }

  .hksev-home-card h3 {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .hksev-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .hksev-check-list li {
    position: relative;
    margin-top: 10px;
    padding-left: 25px;
    color: var(--hksev-muted);
  }

  .hksev-check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--hksev-teal);
    content: "✓";
    font-weight: 900;
  }

  .hksev-home-card--dont .hksev-check-list li::before {
    color: var(--hksev-amber);
    content: "×";
  }

  .hksev-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .hksev-why-item {
    padding: 4px 20px 20px;
    border-left: 3px solid var(--hksev-teal);
  }

  .hksev-why-item p {
    margin-bottom: 0;
    color: var(--hksev-muted);
  }

  .hksev-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--hksev-line);
    border-radius: var(--hksev-radius);
    background: var(--hksev-white);
  }

  .hksev-step {
    position: relative;
    min-height: 230px;
    padding: 38px 20px 24px;
    border-right: 1px solid var(--hksev-line);
  }

  .hksev-step:last-child {
    border-right: 0;
  }

  .hksev-step-number {
    position: absolute;
    top: -1px;
    left: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 0 0 11px 11px;
    background: var(--hksev-navy);
    color: var(--hksev-white);
    font-weight: 900;
  }

  .hksev-step h3 {
    margin-top: 28px;
  }

  .hksev-step p {
    margin-bottom: 0;
    color: var(--hksev-muted);
    font-size: 15px;
  }

  .hksev-fees {
    background: var(--hksev-navy);
    color: var(--hksev-white);
  }

  .hksev-fees h2,
  .hksev-fees .hksev-section-intro {
    color: var(--hksev-white);
  }

  .hksev-fee-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
  }

  .hksev-fee-card {
    min-height: 180px;
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hksev-fee-card h3 {
    min-height: 48px;
    color: var(--hksev-white);
    font-size: 17px;
  }

  .hksev-fee-price {
    margin-bottom: 7px;
    color: var(--hksev-white);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
  }

  .hksev-fee-card p:last-child {
    margin-bottom: 0;
    color: #d6e8f5;
    font-size: 14px;
  }

  .hksev-fee-note {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hksev-fee-note p {
    margin-bottom: 8px;
    color: #e5f2fa;
  }

  .hksev-fee-note strong {
    color: var(--hksev-white);
  }

  .hksev-review-disclaimer {
    margin: -12px 0 24px;
    padding: 13px 16px;
    border-left: 4px solid var(--hksev-amber);
    background: var(--hksev-amber-bg);
    color: #6d4200;
    font-size: 14px;
  }

  .hksev-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .hksev-review-card {
    padding: 24px;
    border: 1px solid var(--hksev-line);
    border-radius: var(--hksev-radius);
    background: var(--hksev-white);
  }

  .hksev-stars {
    margin-bottom: 12px;
    color: #e29b21;
    font-size: 20px;
    letter-spacing: 3px;
  }

  .hksev-review-card blockquote {
    margin: 0 0 16px;
    color: var(--hksev-ink);
  }

  .hksev-review-card cite {
    color: var(--hksev-blue);
    font-style: normal;
    font-weight: 800;
  }

  .hksev-branch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .hksev-branch-card {
    overflow: hidden;
    border: 1px solid var(--hksev-line);
    border-radius: var(--hksev-radius);
    background: var(--hksev-white);
    box-shadow: 0 8px 24px rgba(7, 59, 102, 0.07);
  }

  .hksev-branch-head {
    padding: 22px 22px 18px;
    background: var(--hksev-navy);
    color: var(--hksev-white);
  }

  .hksev-branch-head h3 {
    margin-bottom: 4px;
    color: var(--hksev-white);
  }

  .hksev-branch-head p {
    margin-bottom: 0;
    color: #dcecf7;
    font-size: 14px;
  }

  .hksev-branch-body {
    padding: 22px;
  }

  .hksev-nap {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
  }

  .hksev-nap li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 10px;
    color: var(--hksev-muted);
  }

  .hksev-nap svg {
    margin-top: 3px;
    color: var(--hksev-blue);
  }

  .hksev-map {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
    border: 1px solid var(--hksev-line);
    border-radius: 10px;
    background: #e7eef3;
  }

  .hksev-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .hksev-branch-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hksev-branch-actions .hksev-btn {
    min-height: 48px;
    padding: 11px 8px;
    font-size: 14px;
  }

  .hksev-faq-list {
    border-top: 1px solid var(--hksev-line);
  }

  .hksev-faq-item {
    border-bottom: 1px solid var(--hksev-line);
    background: var(--hksev-white);
  }

  .hksev-faq-item summary {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 13px;
    padding: 18px 50px 18px 4px;
    color: var(--hksev-navy);
    cursor: pointer;
    font-size: 17px;
    font-weight: 850;
    list-style: none;
  }

  .hksev-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .hksev-faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--hksev-blue);
    border-bottom: 2px solid var(--hksev-blue);
    content: "";
    transform: translateY(-70%) rotate(45deg);
    transition: transform 160ms ease;
  }

  .hksev-faq-item[open] summary::after {
    transform: translateY(-30%) rotate(225deg);
  }

  .hksev-faq-number {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--hksev-soft);
    color: var(--hksev-blue);
    font-size: 13px;
    font-weight: 900;
  }

  .hksev-faq-answer {
    max-width: 930px;
    padding: 0 50px 22px 47px;
    color: var(--hksev-muted);
  }

  .hksev-faq-answer p:last-child {
    margin-bottom: 0;
  }

  .hksev-final-cta {
    padding: 40px 0 104px;
    background: var(--hksev-white);
  }

  .hksev-final-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 16px;
    background: var(--hksev-navy);
    color: var(--hksev-white);
  }

  .hksev-final-box h2 {
    margin-bottom: 8px;
    color: var(--hksev-white);
  }

  .hksev-final-box p {
    margin-bottom: 0;
    color: #dbeaf5;
  }

  .hksev-final-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 230px;
  }

  .hksev-medical-note {
    margin-top: 18px !important;
    color: var(--hksev-muted);
    font-size: 13px;
    line-height: 1.6;
  }

  .hksev-sticky-bar {
    display: none;
  }

  @media (max-width: 1024px) {
    .hksev-hero-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .hksev-hero-media {
      order: -1;
    }

    .hksev-symptom-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .hksev-why-grid,
    .hksev-fee-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hksev-process {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hksev-step {
      min-height: 205px;
      border-bottom: 1px solid var(--hksev-line);
    }

    .hksev-step:nth-child(2n) {
      border-right: 0;
    }

    .hksev-step:last-child {
      grid-column: 1 / -1;
      border-bottom: 0;
    }
  }

  @media (max-width: 767px) {
    .hksev-page {
      font-size: 15px;
      line-height: 1.65;
    }

    .hksev-container {
      width: min(100% - 24px, 1160px);
    }

    .hksev-section {
      padding: 52px 0;
    }

    .hksev-section-head {
      margin-bottom: 24px;
    }

    .hksev-section-intro {
      font-size: 16px;
    }

    .hksev-hero {
      padding: 12px 0 24px;
    }

    .hksev-hero-grid {
      gap: 22px;
    }

    .hksev-hero-media {
      margin-right: -12px;
      margin-left: -12px;
      border-radius: 0 0 14px 14px;
      box-shadow: none;
    }

    .hksev-hero-caption {
      margin-right: 0;
      text-align: left;
    }

    .hksev-page h1 {
      margin-bottom: 15px;
      font-size: clamp(32px, 10vw, 44px);
    }

    .hksev-page h2 {
      font-size: 29px;
    }

    .hksev-hero-lead {
      margin-bottom: 16px;
      font-size: 16px;
    }

    .hksev-alert {
      padding: 13px 14px;
    }

    .hksev-cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 9px;
    }

    .hksev-cta-row .hksev-btn {
      width: 100%;
      min-height: 54px;
      padding: 12px;
      font-size: 15px;
    }

    .hksev-cta-row .hksev-btn--outline {
      grid-column: 1 / -1;
    }

    .hksev-branch-now {
      font-size: 14px;
    }

    .hksev-quick-links-inner {
      grid-template-columns: repeat(2, 1fr);
    }

    .hksev-quick-link {
      min-height: 62px;
      padding: 12px 9px;
      border-bottom: 1px solid var(--hksev-line);
      font-size: 14px;
    }

    .hksev-quick-link:nth-child(2n) {
      border-right: 0;
    }

    .hksev-quick-link:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

    .hksev-symptom-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .hksev-symptom-card {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      column-gap: 13px;
      padding: 17px;
    }

    .hksev-symptom-mark {
      grid-row: 1 / span 2;
      margin-bottom: 0;
    }

    .hksev-symptom-card h3 {
      margin-bottom: 3px;
      font-size: 18px;
    }

    .hksev-symptom-card p {
      grid-column: 2;
    }

    .hksev-risk-layout,
    .hksev-care-grid,
    .hksev-home-care,
    .hksev-review-grid,
    .hksev-branch-grid,
    .hksev-final-box {
      grid-template-columns: 1fr;
    }

    .hksev-risk-layout {
      gap: 24px;
    }

    .hksev-risk-copy {
      position: static;
    }

    .hksev-why-grid,
    .hksev-fee-grid {
      grid-template-columns: 1fr;
    }

    .hksev-why-item {
      padding-left: 16px;
    }

    .hksev-process {
      grid-template-columns: 1fr;
    }

    .hksev-step,
    .hksev-step:nth-child(2n),
    .hksev-step:last-child {
      grid-column: auto;
      min-height: 0;
      padding: 25px 18px 21px 72px;
      border-right: 0;
      border-bottom: 1px solid var(--hksev-line);
    }

    .hksev-step:last-child {
      border-bottom: 0;
    }

    .hksev-step-number {
      top: 22px;
      left: 18px;
      border-radius: 50%;
    }

    .hksev-step h3 {
      margin-top: 0;
    }

    .hksev-fee-card {
      min-height: 0;
    }

    .hksev-fee-card h3 {
      min-height: 0;
    }

    .hksev-branch-actions {
      grid-template-columns: 1fr 1fr;
    }

    .hksev-branch-actions .hksev-btn--outline {
      grid-column: 1 / -1;
    }

    .hksev-faq-item summary {
      align-items: flex-start;
      padding: 16px 42px 16px 0;
      font-size: 16px;
    }

    .hksev-faq-answer {
      padding: 0 10px 20px 43px;
    }

    .hksev-final-cta {
      padding: 28px 0 104px;
    }

    .hksev-final-box {
      gap: 22px;
      padding: 26px 20px;
    }

    .hksev-final-actions {
      min-width: 0;
    }

    .hksev-sticky-bar {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 9998;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
      border-top: 1px solid var(--hksev-line);
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 -10px 24px rgba(7, 59, 102, 0.14);
    }

    .hksev-sticky-bar .hksev-btn {
      min-height: 52px;
      padding: 11px 8px;
      font-size: 15px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hksev-page *,
    .hksev-page *::before,
    .hksev-page *::after {
      scroll-behavior: auto !important;
      transition: none !important;
    }
  }
