:root {
    --bg: #f8fafc;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --stroke: rgba(148, 163, 184, 0.25);
    --stroke-soft: rgba(148, 163, 184, 0.14);
    --text: #0f172a;
    --muted: #64748b;
    --muted-strong: #94a3b8;
    --accent: #ffbc00;
    --success: #10b981;
    --error: #ef4444;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --radius-xl: 32px;
    --radius-lg: 26px;
    --radius-md: 20px;
    color-scheme: light;
    font-family: "Inter", system-ui, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }

  /* ════════════════════════════════════════════════════════════
     HEADER
  ════════════════════════════════════════════════════════════ */

  .lp-header {
    position: sticky;
    top: 0;
    z-index: 200;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background 220ms ease;
  }

  /* Scrolled state — added by JS */
  .lp-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  }

  .lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(calc(100% - 2rem), 1180px);
    margin: 0 auto;
    padding: 0.85rem 0;
  }

  /* ── Logo ── */
  .lp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
  }

  .lp-logo-img {
    height: 2.25rem;
    width: auto;
    display: block;
    object-fit: contain;
  }

  /* ── Desktop nav ── */
  .lp-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
  }

  .lp-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color 160ms ease;
    white-space: nowrap;
  }

  .lp-nav-link:hover {
    color: var(--text);
  }

  /* ── Desktop CTA button ── */
  .lp-nav-cta {
    display: none;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 12px;
    flex-shrink: 0;
  }

  /* ── Hamburger (mobile) ── */
  .lp-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0.35rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }

  .lp-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform 240ms ease, opacity 240ms ease, width 240ms ease;
  }

  .lp-burger span:nth-child(1) { width: 100%; }
  .lp-burger span:nth-child(2) { width: 75%; }
  .lp-burger span:nth-child(3) { width: 100%; }

  /* Open state */
  .lp-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
  .lp-burger.open span:nth-child(2) { opacity: 0; }
  .lp-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

  /* ── Mobile drawer ── */
  .lp-mobile-nav {
    display: grid;
    gap: 0.2rem;
    overflow: hidden;
    max-height: 0;
    padding: 0 calc((100% - min(calc(100% - 2rem), 1180px)) / 2);
    padding-left: max(1rem, calc((100% - 1180px) / 2));
    padding-right: max(1rem, calc((100% - 1180px) / 2));
    border-top: 0 solid rgba(226, 232, 240, 0.9);
    transition: max-height 300ms ease, padding 300ms ease, border-top-width 300ms ease;
  }

  .lp-mobile-nav.open {
    max-height: 400px;
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
    border-top-width: 1px;
  }

  .lp-mobile-nav .lp-nav-link {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  }

  .lp-mobile-cta {
    margin-top: 0.6rem;
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  /* ── Responsive ── */
  @media (min-width: 1024px) {
    .lp-nav        { display: flex; }
    .lp-nav-cta    { display: inline-flex; }
    .lp-burger     { display: none; }
    .lp-mobile-nav { display: none !important; }
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
  }
  
  body {
    margin: 0;
    min-width: 320px;
    background:
      radial-gradient(circle at top left, rgba(255, 188, 0, 0.14), transparent 28%),
      radial-gradient(circle at top center, rgba(255, 188, 0, 0.08), transparent 26%),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    color: var(--text);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  select {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  img {
    display: block;
    max-width: 100%;
  }
  
  .page {
    position: relative;
    overflow: hidden;
  }
  
  .layout {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 2rem), 1080px);
    margin: 0 auto;
    padding: 2.5rem 0 3.2rem;
  }
  
  .glow {
    position: absolute;
    pointer-events: none;
    filter: blur(70px);
    border-radius: 999px;
    z-index: 0;
  }
  
  .glow-left {
    left: -8%;
    top: 0;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 188, 0, 0.12);
  }
  
  .glow-right {
    right: -4%;
    top: 7rem;
    width: 20rem;
    height: 20rem;
    background: rgba(255, 188, 0, 0.09);
  }
  
  .glow-bottom {
    left: 50%;
    bottom: 6rem;
    width: 18rem;
    height: 18rem;
    transform: translateX(-50%);
    background: rgba(255, 188, 0, 0.08);
  }
  
  .hero,
  .panel,
  .section,
  .perk-section,
  .footer {
    margin-top: 2.3rem;
  }
  
  .hero {
    display: grid;
    gap: 2.8rem;
    align-items: center;
  }
  
  .hero-copy h1,
  .panel-copy h2,
  .section-head h2,
  .perk-copy h2 {
    margin:35px 3px;
    font-family: "Poppins", "Inter", sans-serif;
    letter-spacing: -0.04em;
  }
  
  .hero-copy h1 {
    max-width: 672px;
    font-size: 3.2rem;
    line-height: 0.95;
    letter-spacing :-1.5px;
    color: #0f172a;
  }
  
  .hero-copy p,
  .panel-copy p,
  .info-card p,
  .faq-panel p,
  .footer p,
  .footer-links a,
  .helper,
  .preview-note,
  .fineprint,
  .field label,
  .field-label,
  .role-btn small,
  .stat-card p,
  .search-label,
  .search-value {
    color: var(--muted);
  }
  
  .hero-copy p {
    max-width: 46rem;
    font-size: 0.975rem;
    line-height: 1.75;
  }
  
  .stack {
    display: grid;
    gap: 1.1rem;
  }
  
  .badge,
  .eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.95rem;
    border: none;
    border-radius: 999px;
    background: none;
    color: var(--accent);
    font-size: 0.90rem;
    font-weight: 600;
    /* letter-spacing: 0.18em;
    text-transform: uppercase; */
    backdrop-filter: blur(10px);
  }
  
  .hero-actions {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.65rem;
    justify-items: start;
  }
  
  .primary-btn,
  .ghost-btn,
  .role-btn,
  .faq-trigger {
    border: 0;
  }
  
  .primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.45rem;
    border-radius: 16px;
    background: var(--accent);
    color: #111827;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(255, 188, 0, 0.22);
    transition:
      transform 180ms ease,
      box-shadow 180ms ease,
      filter 180ms ease;
  }
  
  .primary-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 26px rgba(255, 188, 0, 0.28);
  }
  
  .primary-btn:focus-visible,
  .ghost-btn:focus-visible,
  .role-btn:focus-visible,
  .faq-trigger:focus-visible,
  input:focus-visible,
  select:focus-visible {
    outline: 2px solid rgba(255, 188, 0, 0.9);
    outline-offset: 2px;
  }
  
  .helper {
    margin: 0;
    font-size: 0.75rem;
  }
  
  .stats-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
  }
  
  .stat-card,
  .info-card,
  .panel,
  .counter-card,
  .faq-item,
  .preview-card,
  .form,
  .chip,
  .benefit,
  .footer {
    backdrop-filter: blur(18px);
  }
  
  .stat-card {
    padding: 0.9rem 1rem 1rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: #ffffff;
  }
  
  .stat-card p,
  .mockup-item p,
  .search-label,
  .field label,
  .field-label {
    margin: 0;
    font-size: 0.8rem;
  }
  
  .stat-card strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 700;
  }
  
  .hero-visual {
    position: relative;
  }
  
  .preview-card {
    position: relative;
    width: min(100%, 32rem);
    margin-inline: auto;
    padding: 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
  }
  
  .preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0.9rem 1rem 0.8rem;
    background: #020617;
    border-radius: 20px 20px 0 0;
  }
  
  .preview-top h2 {
    margin: 0.2rem 0 0;
    font-size: 1.15rem;
    color: #ffffff;
  }
  
  .traffic {
    display: flex;
    gap: 0.45rem;
  }
  
  .traffic span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
  }
  
  .traffic span:nth-child(1) {
    background: #fb7185;
  }
  
  .traffic span:nth-child(2) {
    background: #fcd34d;
  }
  
  .traffic span:nth-child(3) {
    background: #4ade80;
  }
  
  .preview-panel {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    background: #111827;
  }
  
  .search-bar,
  .mockup-item,
  .chip,
  .bullet,
  .benefit,
  .card-top,
  .button-row,
  .footer {
    display: flex;
    align-items: center;
  }
  
  .search-bar {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .search-label {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.62rem;
  }
  
  .search-value {
    margin: 0.15rem 0 0;
    color: #ffffff;
    font-weight: 500;
  }
  
  .mockup-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .mockup-item {
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .mockup-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  
  .mockup-left p,
  .mockup-left strong {
    margin: 0;
  }
  
  .mockup-left p {
    color: #cbd5e1;
  }
  
  .mockup-left strong {
    color: #ffffff;
  }
  
  .accent {
    color: var(--accent);
  }
  
  .accent-bg {
    background: rgba(255, 188, 0, 0.14);
    color: var(--accent);
  }
  
  .success {
    color: #bbf7d0;
  }
  
  .preview-note {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.45;
  }
  
  .preview-image {
    margin-top: 1rem;
    height: 10.7rem;
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  }

  /* ── Preview card — full-card image (keeps all original card styles) ── */
  .preview-card--image-slot {
    min-height: 30rem;
    /* padding, border, border-radius, background, box-shadow all inherit from .preview-card */
  }

  .preview-card-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: calc(30rem - 1.8rem); /* card min-height minus top+bottom padding (2 × 0.9rem) */
    object-fit: cover;
    border-radius: 20px; /* inner radius — card is 28px, padding insets it ~8px */
  }
  
  .panel {
    padding: 1.1rem;
    border: none;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  }
  
  .panel-grid {
    display: grid;
    gap: 1.7rem;
  }
  
  .panel-copy h2 {
    margin-top: 0.4rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #0f172a;
  }

  .panel-copy p {
    max-width: 42rem;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  
  .chip-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
  }
  
  .chip,
  .benefit {
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    background: #ffffff;
  }
  
  .form {
    display: grid;
    gap: 1rem;
    padding: 0.95rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background: #ffffff;
  }
  
  .two-col {
    display: grid;
    gap: 1rem;
  }
  
  .field {
    display: grid;
    gap: 0.55rem;
  }
  
  .field label,
  .field-label {
    font-weight: 600;
    color: var(--muted);
  }
  
  .field input,
  .field select {
    width: 100%;
    padding: 0.88rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    transition:
      border-color 180ms ease,
      box-shadow 180ms ease,
      transform 180ms ease;
  }
  
  .field input::placeholder {
    color: #94a3b8;
  }
  
  .field input:focus,
  .field select:focus {
    border-color: rgba(255, 188, 0, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.14);
  }
  
  /* ── intl-tel-input phone field ── */
  .lp-phone-input {
    width: 100%;
    padding: 0.88rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .lp-phone-input:focus {
    outline: none;
    border-color: rgba(255, 188, 0, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.14);
  }

  /* Make iti container fill the field width */
  .iti.iti--lp { display: block; width: 100%; }

  /* Adjust padding so text doesn't hide under the flag button */
  .iti.iti--lp input[type="tel"] {
    width: 100%;
    padding-left: 90px; /* enough room for flag + dial code */
  }

  /* Flag button borders match field border-radius */
  .iti.iti--lp .iti__flag-container {
    border-radius: 14px 0 0 14px;
  }

  /* ── Google Places city input ── */
  .lp-city-input {
    width: 100%;
    padding: 0.88rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    background: #ffffff;
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease;
  }

  .lp-city-input:focus {
    outline: none;
    border-color: rgba(255, 188, 0, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 188, 0, 0.14);
  }

  /* Style the Google Places dropdown to match the form */
  .pac-container {
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 1);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    font-family: inherit;
    margin-top: 4px;
    overflow: hidden;
  }

  .pac-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
  }

  .pac-item:hover,
  .pac-item-selected {
    background: rgba(255, 188, 0, 0.08);
  }

  .pac-item-query {
    font-weight: 600;
    color: var(--text);
  }

  .error {
    min-height: 1.1rem;
    margin: 0;
    color: var(--error);
    font-size: 0.88rem;
  }
  
  .role-grid {
    display: grid;
    gap: 0.7rem;
  }
  
  .role-btn {
    display: grid;
    gap: 0.25rem;
    padding: 0.95rem 0.95rem 1rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    background: #ffffff;
    text-align: left;
    color: var(--text);
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease;
  }
  
  .role-btn span {
    font-weight: 700;
    font-size: 0.9375rem;
  }

  .role-btn small {
    font-size: 0.775rem;
  }
  
  .role-btn.active {
    border-color: rgba(255, 188, 0, 0.9);
    background: rgba(255, 188, 0, 0.12);
    box-shadow: 0 0 24px rgba(255, 188, 0, 0.18);
  }
  
  .button-row {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
  
  .ghost-btn {
    padding: 0.9rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 1);
    background: #ffffff;
    color: #94a3b8;
    font-weight: 700;
  }
  
  .ghost-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
  }
  
  .fineprint {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.6;
  }
  
  .success-message {
    margin: 0;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(74, 222, 128, 0.22);
    border-radius: 18px;
    background: rgba(74, 222, 128, 0.12);
    color: #15803d;
    font-size: 0.95rem;
  }
  
  .section-head {
    max-width: 44rem;
  }
  
  .section-head h2,
  .perk-copy h2 {
    margin-top: 0.6rem;
    font-size: clamp(1.85rem, 3.8vw, 2.45rem);
    color: #0f172a;
  }
  
  .cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  
  .info-card {
    padding: 1.15rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  }
  
  .card-top {
    justify-content: space-between;
    gap: 1rem;
  }
  
  .card-top strong {
    color: var(--accent);
    font-size: 0.95rem;
  }
  
  .info-card h3 {
    margin: 0.9rem 0 0;
    font-size: 1.08rem;
    line-height: 1.3;
    color: #0f172a;
  }

  /* Tall 2-column cards ("Looking for a service?" / "Do you offer a service?") */
  .info-card.tall h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
  }

  .info-card p {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .bullet-list,
  .benefit-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.95rem;
  }
  
  .bullet {
    gap: 0.8rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 14px;
    background: #ffffff;
  }
  
  .bullet span:last-child {
    color: var(--text);
    font-weight: 500;
  }
  
  .tall {
    padding: 1.2rem;
  }
  
  .perk-section {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    background: #fdf4cf;
    overflow: hidden;
  }
  
  .counter-card {
    margin-top: 2rem;
    padding: 1.2rem;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: #fffaf0;
  }
  
  .counter-card strong {
    display: block;
    margin-top: 0.45rem;
    font-size: clamp(2.8rem, 9vw, 4rem);
    font-weight: 800;
    color: var(--text);
  }
  
  .counter-card p {
    margin: 0.8rem 0 0;
    color: var(--muted);
    line-height: 1.8;
  }
  
  .avatars {
    display: flex;
    margin-top: 1.25rem;
  }
  
  .avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-left: -0.7rem;
    border: 2px solid #fffaf0;
    border-radius: 999px;
    background: var(--accent);
    color: #111827;
    font-weight: 800;
  }
  
  .faq-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
  }
  
  .faq-item {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 16px;
    background: #ffffff;
  }
  
  .faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0.95rem 1rem;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-weight: 600;
    font-size: 0.9375rem;
  }
  
  .faq-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 280ms ease;
  }

  .faq-panel > p {
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .faq-item.open .faq-panel {
    max-height: 400px;
  }
  
  .chevron {
    transition: transform 240ms ease;
  }
  
  .faq-item.open .chevron {
    transform: rotate(180deg);
  }
  
  .footer {
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(226, 232, 240, 1);
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem;
  }
  
  .footer-links a {
    transition: color 180ms ease;
  }
  
  .footer-links a:hover {
    color: var(--accent);
  }
  
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 700ms ease,
      transform 700ms ease;
  }
  
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hidden {
    display: none !important;
  }
  
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  
  .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .icon-sm {
    width: 1.1rem;
    height: 1.1rem;
  }
  
  .icon-md {
    width: 1.35rem;
    height: 1.35rem;
  }
  
  .icon-lg {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 16px;
    padding: 0.3rem;
  }
  
  .icon-sm.accent-bg,
  .icon-md.accent-bg,
  .icon-lg.accent-bg {
    border-radius: 14px;
  }
  
  @media (min-width: 700px) {
    .layout {
      width: min(calc(100% - 3rem), 1180px);
      padding-top: 2.5rem;
    }
  
    .stats-grid,
    .chip-grid,
    .two-col,
    .benefit-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .role-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .cards-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .cards-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  
    .perk-section {
      grid-template-columns: 1fr 0.72fr;
      align-items: center;
    }
  }
  
  @media (min-width: 1024px) {
    .hero {
      grid-template-columns: 1.08fr 0.92fr;
      gap: 2.5rem;
    }
  
    .panel-grid {
      grid-template-columns: 0.92fr 1.08fr;
      align-items: center;
    }
  
    .form {
      padding: 1.35rem;
    }
  
    .stats-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 699px) {
    .hero-copy h1 {
      max-width: none;
    }

    .footer {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  /* ── Preview card dark header — eyebrow is plain text, not a badge pill ── */
  .preview-top .eyebrow {
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    color: var(--accent);
    font-size: 0.68rem;
  }

  /* ── Icon sizing inside the small stat-card ── */
  .stat-card .icon-sm {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 10px;
    padding: 0.18rem;
  }

  /* ── Chip text colour ── */
  .chip span:last-child,
  .benefit span:last-child {
    color: var(--text);
    font-weight: 500;
    font-size: 0.88rem;
  }
  