:root {
    --green-deep: #005c32;
    --green: #006837;
    --green-mid: #0a8f4d;
    --green-bright: #00d084;
    --green-soft: #e8f8f0;
    --green-glow: rgba(0, 208, 132, 0.18);
    --ink: #0f1f17;
    --ink-soft: #3d5247;
    --muted: #6b7f74;
    --line: #d7e8de;
    --bg: #f4faf6;
    --white: #ffffff;
    --warn: #e85d04;
    --shadow: 0 18px 50px rgba(0, 104, 55, 0.12);
    --radius: 18px;
    --max: 1200px;
    --sticky-h: 74px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: Manrope, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    padding-bottom: calc(var(--sticky-h) + 18px);
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button, .btn { font: inherit; cursor: pointer; border: 0; }
  ul { list-style: none; }

  .wrap {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-mid);
    background: var(--green-soft);
    border: 1px solid #bfe8d1;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
  }
  .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-bright);
    box-shadow: 0 0 0 4px var(--green-glow);
  }

  h1, h2, h3, .display {
    font-family: Sora, Manrope, sans-serif;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .accent { color: var(--green-mid); }
  .underline {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
    text-decoration-color: var(--green-bright);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 52px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #f87171, #ef4444);
  }
  /* Keep booking / pay CTAs red even if other styles override */
  #payHero,
  #payMain,
  #payFinal,
  #paySticky,
  #payRetry,
  .frm-pay-btn,
  .sticky-cta .btn-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35) !important;
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
  }
  .btn-dark {
    background: var(--green);
    color: var(--white);
  }

  /* Top offer */
  .offer-bar {
    background: linear-gradient(90deg, #012816, var(--green-deep) 40%, #014d2a);
    color: var(--white);
    text-align: center;
    padding: 0.7rem 1rem;
    font-weight: 700;
    font-size: 0.92rem;
  }
  .offer-bar strong { color: var(--green-bright); font-size: 1.05rem; }
  .offer-bar .strike {
    color: rgba(255,255,255,0.45);
    text-decoration: line-through;
    margin-left: 0.35rem;
    font-weight: 600;
  }

  .trust-strip {
    background: var(--green);
    color: var(--white);
    text-align: center;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 15% 20%, rgba(0,208,132,0.18), transparent 32%),
      radial-gradient(circle at 85% 10%, rgba(0,104,55,0.35), transparent 28%),
      linear-gradient(160deg, #013821 0%, var(--green) 48%, #024d2a 100%);
    color: var(--white);
    padding: 3.2rem 0 3.6rem;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
  }
  .hero .wrap { position: relative; z-index: 1; }
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 2.5rem;
    align-items: center;
  }
  .hero-content { min-width: 0; }
  .hcard {
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
  }
  .hcard .hero-card { margin: 0; max-width: none; }
  .hero-label {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
  }
  .hero-label span { color: #ff6b6b; }
  .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.35rem);
    max-width: 15ch;
    margin-bottom: 1rem;
    animation: rise 0.7s ease both;
  }
  .hero-lead {
    max-width: 42ch;
    color: rgba(255,255,255,0.88);
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
    animation: rise 0.7s ease 0.08s both;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: rise 0.7s ease 0.16s both;
  }
  .lead-banner {
    background: #ecfdf3;
    border-bottom: 1px solid #b6e5c8;
    padding: 0.85rem 0;
  }
  .lead-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .lead-banner p {
    color: var(--ink);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
  }
  .lead-banner .btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.65rem 1.1rem;
    font-size: 0.92rem;
  }
  .meta-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    animation: rise 0.7s ease 0.24s both;
  }
  .meta {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 0.9rem 0.75rem;
    text-align: center;
    backdrop-filter: blur(6px);
  }
  .meta strong {
    display: block;
    font-family: Sora, sans-serif;
    font-size: 1.15rem;
    color: var(--green-bright);
    margin-bottom: 0.15rem;
  }
  .meta span {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    font-weight: 700;
  }
  @media (max-width: 1180px) {
    .hero-inner .meta-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }

  @keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  section { padding: 3.5rem 0; }
  .section-head {
    text-align: center;
    margin-bottom: 2rem;
  }
  .section-head h2 {
    font-size: clamp(1.55rem, 3.5vw, 2.3rem);
    margin: 0.8rem 0 0.7rem;
  }
  .section-head p {
    color: var(--ink-soft);
    max-width: 52ch;
    margin-inline: auto;
  }

  /* Pain points */
  .pain {
    background: var(--white);
  }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .pain-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1rem 1.05rem;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: #fbfffd;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    user-select: none;
  }
  .pain-item:hover { transform: translateY(-2px); }
  .pain-item.active {
    border-color: var(--green-mid);
    background: var(--green-soft);
  }
  .check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #9abbad;
    flex-shrink: 0;
    margin-top: 2px;
    display: grid;
    place-items: center;
    transition: 0.2s ease;
  }
  .pain-item.active .check {
    background: var(--green);
    border-color: var(--green);
  }
  .pain-item.active .check::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .pain-note {
    margin-top: 1.4rem;
    text-align: center;
    font-weight: 700;
    color: var(--green);
    min-height: 1.5em;
  }

  /* Split info */
  .band-soft { background: linear-gradient(180deg, var(--green-soft), var(--bg)); }
  .info-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  .panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
  }
  .panel h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
  .panel p { color: var(--ink-soft); margin-bottom: 0.85rem; }
  .stat-stack { display: grid; gap: 0.7rem; }
  .stat-card {
    background: linear-gradient(135deg, var(--green), #028a4d);
    color: white;
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
  }
  .stat-card strong {
    display: block;
    font-family: Sora, sans-serif;
    font-size: 1.55rem;
    color: var(--green-bright);
  }
  .stat-card span { font-size: 0.9rem; opacity: 0.9; }

  /* Tabs */
  .tabs {
    display: flex;
    gap: 0.5rem;
    background: #e7f4ec;
    padding: 0.35rem;
    border-radius: 999px;
    width: fit-content;
    margin: 0 auto 1.4rem;
  }
  .tab-btn {
    border: 0;
    background: transparent;
    color: var(--ink-soft);
    font-weight: 800;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
  }
  .tab-btn.active {
    background: var(--white);
    color: var(--green);
    box-shadow: 0 6px 18px rgba(0,104,55,0.12);
  }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: rise 0.35s ease; }
  .syllabus {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .syl {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  .syl:hover {
    transform: translateY(-3px);
    border-color: var(--green-bright);
  }
  .syl .num {
    font-family: Sora, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--green-mid);
    margin-bottom: 0.35rem;
  }
  .syl h4 { font-size: 1rem; margin-bottom: 0.35rem; }
  .syl p { color: var(--muted); font-size: 0.9rem; }
  .syl .weight {
    margin-top: 0.55rem;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--green);
    background: var(--green-soft);
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
  }

  /* Before / After */
  .compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .compare-card {
    border-radius: var(--radius);
    padding: 1.4rem;
    border: 1px solid var(--line);
  }
  .compare-card.before {
    background: #fff7f2;
    border-color: #f2d2bf;
  }
  .compare-card.after {
    background: var(--green-soft);
    border-color: #b6e5c8;
  }
  .compare-card h3 { margin-bottom: 1rem; font-size: 1.15rem; }
  .compare-card li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
  }
  .before .dot { background: var(--warn); }
  .after .dot { background: var(--green-mid); }

  /* Agenda */
  .agenda {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
  .agenda article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.2rem;
    min-height: 160px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .agenda article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
  .agenda .step {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: var(--green-bright);
    font-family: Sora, sans-serif;
    font-weight: 800;
    margin-bottom: 0.8rem;
  }
  .agenda h3 { font-size: 1rem; margin-bottom: 0.4rem; }
  .agenda p { color: var(--muted); font-size: 0.92rem; }

  /* Mentor */
  .mentor {
    background:
      radial-gradient(circle at 80% 20%, rgba(0,208,132,0.12), transparent 25%),
      linear-gradient(180deg, #012816, var(--green-deep));
    color: var(--white);
  }
  .mentor .section-head p { color: rgba(255,255,255,0.78); }
  .mentor-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1.5rem;
    align-items: center;
  }
  .photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    aspect-ratio: 1080 / 1500;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }
  .photo-frame img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
  }
  .mentor-copy h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 0.7rem;
  }
  .mentor-copy p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 1rem;
    max-width: 48ch;
  }
  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
  }
  .badges span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
  }
  .proof-list { display: grid; gap: 0.55rem; }
  .proof-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: rgba(255,255,255,0.88);
    font-weight: 600;
  }
  .proof-list li::before {
    content: "✓";
    color: var(--green-bright);
    font-weight: 800;
  }

  /* Pricing */
  .price-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.6rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.2rem;
    align-items: center;
  }
  .price-tag {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0.8rem 0 0.4rem;
  }
  .price-tag .now {
    font-family: Sora, sans-serif;
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    color: var(--green);
    letter-spacing: -0.04em;
  }
  .price-tag .old {
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 700;
    font-size: 1.2rem;
  }
  .price-box ul { margin: 1rem 0 1.3rem; display: grid; gap: 0.55rem; }
  .price-box li {
    display: flex;
    gap: 0.5rem;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .price-box li::before {
    content: "✓";
    color: var(--green-mid);
    font-weight: 800;
  }
  .session-chip {
    background: linear-gradient(160deg, var(--green), #028a4d);
    color: white;
    border-radius: 20px;
    padding: 1.4rem;
    text-align: center;
  }
  .session-chip .big {
    font-family: Sora, sans-serif;
    font-size: 2.4rem;
    color: var(--green-bright);
    line-height: 1;
    margin: 0.3rem 0;
  }
  .session-chip p { opacity: 0.88; font-weight: 600; }

  /* FAQ */
  .faq details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 0.7rem;
  }
  .faq summary {
    list-style: none;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 700;
  }
  .faq details[open] summary::after { content: "–"; }
  .faq details p {
    margin-top: 0.75rem;
    color: var(--ink-soft);
    padding-right: 1.5rem;
  }

  /* Final CTA */
  .final {
    background: var(--white);
    text-align: center;
  }
  .final .panel {
    max-width: 720px;
    margin-inline: auto;
    padding: 2rem 1.4rem;
  }

  footer {
    text-align: center;
    padding: 1.5rem 1rem 0.5rem;
    color: var(--muted);
    font-size: 0.88rem;
  }
  footer a { color: var(--green); font-weight: 700; }

  /* Sticky bottom CTA */
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.08);
    padding: 0.65rem 0.9rem;
    padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  }
  .sticky-inner {
    width: min(100%, var(--max));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .sticky-copy {
    flex: 1;
    min-width: 0;
  }
  .sticky-copy strong {
    display: block;
    font-family: Sora, sans-serif;
    color: var(--green);
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-copy span {
    display: block;
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .sticky-cta .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: 148px;
    min-height: 46px;
    padding: 0.7rem 1.1rem;
  }
  .btn-text-short { display: none; }

  /* Result pages */
  .result-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem 3rem;
    background:
      radial-gradient(circle at 20% 15%, rgba(0,208,132,0.16), transparent 28%),
      radial-gradient(circle at 85% 80%, rgba(0,104,55,0.1), transparent 30%),
      var(--bg);
  }
  .result-card {
    width: min(100%, 460px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
  }
  .result-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1.1rem;
    font-size: 2rem;
    font-weight: 800;
  }
  .result-icon.success {
    background: var(--green-soft);
    color: var(--green);
    border: 2px solid #b6e5c8;
  }
  .result-icon.fail {
    background: #fff1eb;
    color: var(--warn);
    border: 2px solid #f2d2bf;
  }
  .result-card h1 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
    margin-bottom: 0.65rem;
  }
  .result-card p {
    color: var(--ink-soft);
    margin-bottom: 0.7rem;
  }
  .result-card .actions {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.4rem;
  }
  .result-card .btn { width: 100%; }
  body.is-result {
    padding-bottom: 0;
  }
  body.is-result .sticky-cta,
  body.is-result .frm-popup,
  body.is-result .lead-banner {
    display: none !important;
  }
  [hidden] { display: none !important; }

  .frm-popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.25rem 1rem;
    padding-top: max(1.25rem, env(safe-area-inset-top));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    overflow: auto;
  }
  .frm-popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 24, 16, 0.62);
  }
  .frm-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    margin: auto;
  }
  .frm-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    color: #6b7280;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .frm-popup-close svg {
    width: 18px;
    height: 18px;
    display: block;
  }
  .frm-popup-close:hover,
  .frm-popup-close:focus,
  .frm-popup-close:focus-visible {
    color: #111;
    background: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
  }
  .frm-popup-mount .hero-card {
    margin: 0;
    max-width: none;
    padding-top: 2.2rem;
  }
  body.frm-popup-open { overflow: hidden; }

  @media (max-width: 960px) {
    .hero-inner {
      grid-template-columns: 1fr;
      gap: 1.75rem;
    }
    .hcard {
      max-width: 420px;
      margin-inline: auto;
    }
    .hero-content h1 { max-width: none; }
  }

  @media (max-width: 900px) {
    .meta-row { grid-template-columns: repeat(2, 1fr); }
    .info-grid,
    .mentor-grid,
    .price-box,
    .compare,
    .syllabus { grid-template-columns: 1fr; }
    .agenda { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
    .photo-frame { max-width: min(360px, 100%); }
    .lead-banner-inner {
      flex-direction: column;
      text-align: center;
    }
    .lead-banner .btn { width: 100%; }
  }

  @media (max-width: 560px) {
    .wrap { width: min(100% - 1.25rem, var(--max)); }
    section { padding: 2.6rem 0; }
    .hero { padding: 2rem 0 2.4rem; }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
    .hero-actions .btn { width: 100%; }
    .photo-frame { max-width: min(280px, 85vw); }
    .sticky-copy span { display: none; }
    .sticky-copy strong { font-size: 0.92rem; }
    .sticky-cta .btn {
      flex: 0 0 auto;
      min-width: 0;
      width: auto;
      padding: 0.7rem 1rem;
      font-size: 0.88rem;
      white-space: nowrap;
    }
    .btn-text-full { display: none; }
    .btn-text-short { display: inline; }
    .tabs { width: 100%; }
    .tab-btn { flex: 1; text-align: center; padding-inline: 0.5rem; font-size: 0.9rem; }
  }