/* ============================================================
       DESIGN TOKENS — BreedBuddies warm palette
    ============================================================ */
    :root {
      --bg-page:      #fdf0e8;
      --bg-card:      #ffffff;
      --bg-surface:   #fdf5f0;
      --bg-muted:     #f5e8de;
      --bg-hover:     #f0ddd3;

      --border:       rgba(93,43,14,0.1);
      --border-focus: rgba(255,131,108,0.5);

      --text-primary: #2c1206;
      --text-muted:   #5a4031;
      --text-subtle:  #b09080;

      --coral:        #ff836c;
      --coral-dark:   #e06048;
      --coral-light:  #ffe0d6;
      --coral-glow:   rgba(255,131,108,0.18);
      --brown:        #5d2b0e;
      --brown-light:  rgba(93,43,14,0.08);

      --success:      #2a9d6f;
      --success-bg:   rgba(42,157,111,0.1);
      --warning:      #d4852a;
      --warning-bg:   rgba(212,133,42,0.1);

      --radius:       16px;
      --radius-sm:    12px;
      --radius-lg:    28px;
      --radius-xl:    36px;
      --shadow:       0 24px 64px rgba(93,43,14,0.18);
      --shadow-sm:    0 4px 20px rgba(93,43,14,0.1);
      --shadow-card:  0 2px 12px rgba(93,43,14,0.08);
      --transition:   all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy spring */
      --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth ease */
    }

    /* ============================================================
       RESET
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg-page);
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Cdefs%3E%3Cg id='p' fill='%235d2b0e'%3E%3Cellipse cx='50' cy='38' rx='6' ry='8'/%3E%3Cellipse cx='68' cy='34' rx='5.5' ry='7.5'/%3E%3Cellipse cx='37' cy='50' rx='5' ry='7'/%3E%3Cellipse cx='79' cy='46' rx='5' ry='7'/%3E%3Cpath d='M58 54 C48 54 40 62 42 72 C44 80 54 86 60 86 C66 86 76 80 78 72 C80 62 72 54 62 54 Z'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23p' opacity='0.03' transform='translate(40 50) scale(0.9) rotate(-15 60 60)'/%3E%3Cuse href='%23p' opacity='0.01' transform='translate(120 220) scale(0.8) rotate(-60 60 60)'/%3E%3Cuse href='%23p' opacity='0.008' transform='translate(350 280) scale(1.0) rotate(15 60 60)'/%3E%3Cuse href='%23p' opacity='0.04' transform='translate(200 360) scale(1.05) rotate(110 60 60)'/%3E%3Cuse href='%23p' opacity='0.025' transform='translate(380 120) scale(0.9) rotate(-80 60 60)'/%3E%3Cuse href='%23p' opacity='0.03' transform='translate(50 380) scale(1.0) rotate(140 60 60)'/%3E%3Cuse href='%23p' opacity='0.005' transform='translate(260 210) scale(0.85) rotate(-10 60 60)'/%3E%3Cuse href='%23p' opacity='0.038' transform='translate(100 330) scale(1.1) rotate(60 60 60)'/%3E%3Cuse href='%23p' opacity='0.022' transform='translate(380 380) scale(0.95) rotate(-120 60 60)'/%3E%3Cuse href='%23p' opacity='0.032' transform='translate(10 160) scale(0.85) rotate(-35 60 60)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      z-index: -1;
      pointer-events: none;
      mask-image: linear-gradient(to right, black 0%, transparent 25%, transparent 75%, black 100%);
      -webkit-mask-image: linear-gradient(to right, black 0%, transparent 25%, transparent 75%, black 100%);
    }

    /* ============================================================
       LANDING PAGE
    ============================================================ */
    .landing {
      display: flex;
      flex-direction: column;
      position: relative;
      padding-bottom: 80px; /* Space for fixed footer */
      min-height: 100vh;
    }

    /* --- Nav --- */
    .lp-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
      background: rgba(253,240,232,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 20;
      gap: 16px;
    }
    .lp-logo {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .lp-nav-center {
      display: flex;
      align-items: center;
      gap: 24px;
      flex: 1;
      justify-content: center;
    }
    .lp-nav-right-links {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0;
    }
    .lp-nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .lp-nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition-smooth);
      white-space: nowrap;
    }
    .lp-nav-link:hover { color: var(--coral-dark); }
    .btn-nav-cta {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: white;
      background: var(--coral);
      border: none;
      border-radius: 99px;
      padding: 10px 20px;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }
    .lp-burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--coral);
      padding: 4px;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .lp-nav-mobile {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(253,240,232,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 12px 20px 20px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
      z-index: 19;
    }
    .lp-nav-mobile.open { display: flex; }
    .lp-nav-mobile .lp-nav-link {
      padding: 12px 0;
      font-size: 15px;
      border-bottom: 1px solid rgba(93,43,14,0.05);
      display: block;
      text-align: right;
    }
    .lp-nav-mobile .btn-nav-cta {
      margin-top: 14px;
      width: 100%;
      padding: 14px;
      font-size: 15px;
      text-align: center;
    }

    /* --- Hero --- */
    .lp-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 48px 0 0;
      position: relative;
      overflow: hidden;
    }
    .lp-hero-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 680px;
      width: 100%;
      padding: 0 24px;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    .lp-hero-logo {
      width: 86px;
      height: 86px;
      margin-top: -36px;
      margin-bottom: 24px;
      object-fit: contain;
    }
    .lp-hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(36px, 5.5vw, 64px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .lp-hero-title span { color: var(--coral); }
    .lp-hero-sub {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 32px;
      max-width: 520px;
    }
    .lp-hero-by {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-subtle);
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    /* Save / Earn / Share pills - Horizontal layout */
    .lp-cta-cluster {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin: 40px auto 10px;
      z-index: 10;
    }
    .lp-cta-pills {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .sep-pill {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 50%;
      width: 72px;
      height: 72px;
      justify-content: center;
      transition: var(--transition);
      box-shadow: 0 6px 20px rgba(93,43,14,0.08);
      cursor: pointer;
      position: relative;
    }
    .sep-pill:hover {
      border-color: var(--coral);
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 10px 24px rgba(255,131,108,0.15);
    }
    .sep-pill-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 24px;
    }
    .pill-svg-icon {
      width: 22px;
      height: 22px;
      stroke: var(--coral);
      stroke-width: 2.2;
      transition: var(--transition);
    }
    .sep-pill:hover .pill-svg-icon {
      stroke: var(--coral-dark);
      transform: scale(1.1);
    }
    .sep-pill-label {
      font-size: 11px;
      font-weight: 800;
      color: var(--text-primary);
      font-family: 'Poppins', sans-serif;
    }

    /* Tooltip styles (Open above the pills) */
    .sep-pill-tooltip {
      position: absolute;
      left: 50%;
      bottom: 86px;
      transform: translateX(-50%) translateY(12px);
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 14px 16px;
      box-shadow: 0 10px 30px rgba(93,43,14,0.12);
      width: 240px;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      text-align: left;
    }
    .sep-pill-tooltip::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 8px;
      border-style: solid;
      border-color: white transparent transparent transparent;
    }
    .sep-pill-tooltip::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 9.5px;
      border-style: solid;
      border-color: var(--border) transparent transparent transparent;
      z-index: -1;
    }
    .sep-pill-tooltip h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--coral);
      margin: 0 0 4px 0;
      font-family: 'Poppins', sans-serif;
    }
    .sep-pill-tooltip p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.4;
      margin: 0;
      font-family: 'Poppins', sans-serif;
    }

    /* Hover triggers for desktop */
    @media (hover: hover) {
      .sep-pill:hover .sep-pill-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
      }
    }
    /* Tap trigger active class */
    .sep-pill.active .sep-pill-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    /* Responsive mobile tooltip orientation (slightly narrower to prevent edge clipping) */
    @media (max-width: 768px) {
      .sep-pill-tooltip {
        width: 190px;
        padding: 10px 12px;
      }
      .sep-pill-tooltip h4 {
        font-size: 12px;
      }
      .sep-pill-tooltip p {
        font-size: 11px;
      }
    }
    .btn-cta-launch {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: white;
      background: var(--coral);
      border: none;
      border-radius: 99px;
      padding: 18px 40px;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px rgba(255,131,108,0.4);
      animation: cta-float 3s ease-in-out infinite;
      margin-bottom: 14px;
    }
    @keyframes cta-float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-6px); }
    }
    .btn-cta-launch:hover {
      background: var(--coral-dark);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 48px rgba(255,131,108,0.5);
      animation: none;
    }
    .btn-cta-launch:active { transform: scale(0.95); animation: none; }
    .lp-hero-support {
      font-size: 13px;
      color: var(--text-subtle);
      font-style: italic;
    }

    /* --- Dog Card Scrolling Strip --- */
    .dog-strip-wrap {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 28px 0;
      border-top: 1px solid var(--border);
      mask-image: linear-gradient(to right, rgba(0,0,0,0.25) 0%, black 3.75%, black 96.25%, rgba(0,0,0,0.25) 100%);
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.25) 0%, black 3.75%, black 96.25%, rgba(0,0,0,0.25) 100%);
    }
    .dog-strip-wrap:hover .dog-strip-track { animation-play-state: paused; }
    .dog-strip-track {
      display: flex;
      gap: 16px;
      width: max-content;
      animation: strip-scroll 50s linear infinite;
    }
    @keyframes strip-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .dog-strip-card {
      width: 144px;
      flex-shrink: 0;
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1.5px solid rgba(93,43,14,0.06);
      box-shadow: 0 4px 16px rgba(93,43,14,0.07);
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .dog-strip-card:hover {
      transform: translateY(-6px) scale(1.04);
      box-shadow: 0 16px 32px rgba(93,43,14,0.14);
      border-color: var(--coral);
    }
    .dog-strip-photo {
      width: 100%;
      height: 135px;
      position: relative;
      overflow: hidden;
    }
    .dog-strip-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .dog-strip-card:hover .dog-strip-photo img { transform: scale(1.06); }
    .dog-strip-photo-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    }
    .dog-strip-info { padding: 12px 14px 14px; text-align: center; }
    .dog-strip-name {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 2px;
    }
    .dog-strip-breed {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 7px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .dog-strip-tag {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 8.5px;
      font-weight: 700;
      padding: 2.5px 7px;
      border-radius: 99px;
      letter-spacing: 0.03em;
    }
    .dog-strip-tag-verified { background: rgba(42,157,111,0.1); color: var(--success); border: 1px solid rgba(42,157,111,0.2); }
    .dog-strip-tag-location { background: var(--bg-muted); color: var(--text-muted); border: 1px solid var(--border); }

    /* --- Homepage Shared Section Styles --- */
    .hp-section {
      padding: 96px 40px;
      max-width: 1080px;
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
    }
    .hp-section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 12px;
      text-align: center;
    }
    .hp-section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 3.5vw, 40px);
      font-weight: 800;
      color: var(--text-primary);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .hp-section-sub {
      font-size: 16px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.65;
      max-width: 560px;
      margin: 0 auto 56px;
    }
    .hp-section-divider { border: none; border-top: 1.5px solid rgba(93,43,14,0.07); margin: 0; }

    /* --- How It Works (Page 2) --- */
    .how-steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 48px;
    }
    .how-step-card {
      background: var(--bg-surface);
      border: 1.5px solid var(--border);
      border-radius: 20px;
      padding: 32px 26px;
      transition: var(--transition);
    }
    .how-step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(93,43,14,0.1);
      border-color: rgba(255,131,108,0.3);
    }
    .how-step-num {
      width: 40px;
      height: 40px;
      background: var(--coral-light);
      color: var(--coral-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 16px;
      margin-bottom: 20px;
      border: 2px solid rgba(255,131,108,0.2);
    }
    .how-step-title {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }
    .how-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
    .hp-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .btn-hp-primary {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: white;
      background: var(--coral);
      border: none;
      border-radius: 99px;
      padding: 16px 36px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 20px var(--coral-glow);
    }
    .btn-hp-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,131,108,0.4); }
    .btn-hp-ghost {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: var(--coral);
      background: none;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition-smooth);
    }
    .btn-hp-ghost:hover { color: var(--coral-dark); gap: 10px; }

    /* --- Value / Pricing Section (Page 3) --- */
    .pricing-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .pricing-copy-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(24px, 2.5vw, 34px);
      font-weight: 800;
      color: var(--text-primary);
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .pricing-copy-body { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
    .pricing-copy-body strong { color: var(--text-primary); }
    .pricing-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
    .value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .value-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 22px 18px;
      transition: var(--transition);
    }
    .value-card:hover { border-color: rgba(255,131,108,0.3); box-shadow: 0 8px 24px rgba(93,43,14,0.08); transform: translateY(-2px); }
    .value-card-icon { font-size: 26px; margin-bottom: 10px; display: block; }
    .value-card-title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
    .value-card-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

    /* --- Trust Strip --- */
    .lp-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 40px;
      border-top: 1.5px solid rgba(93,43,14,0.06);
      box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
      background: white;
      position: relative;
      z-index: 10;
      gap: 24px;
    }
    .lp-trust-left { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
    .lp-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-primary); font-weight: 600; }
    .lp-trust-icon { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }

    /* Navbar */
    .lp-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 64px;
      background: rgba(253,240,232,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 20;
    }
    .lp-logo {
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--text-primary);
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    .lp-logo-paw { font-size: 22px; }
    .lp-burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--coral);
      padding: 4px;
      align-items: center;
      justify-content: center;
    }
    .lp-nav-links { display: flex; align-items: center; gap: 32px; }
    .lp-nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      transition: var(--transition-smooth);
    }
    .lp-nav-link:hover { color: var(--coral-dark); }
    .lp-nav-right { display: flex; align-items: center; gap: 12px; }
    .btn-login {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: white;
      background: var(--coral);
      border: none;
      border-radius: 99px;
      padding: 10px 22px;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-login:hover { background: var(--coral-dark); transform: translateY(-2px); }

    /* Hero */
    .lp-hero {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 24px 40px;
      position: relative;
      overflow: hidden;
    }
    .lp-hero-content {
      position: relative;
      z-index: 2;
      transform: translateY(-160px);
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }
    @media (max-width: 768px) {
      .lp-hero-content {
        transform: translateY(-120px);
      }
      .lp-hero-logo {
        width: 72px;
        height: 72px;
        margin-top: -20px;
        margin-bottom: 16px;
      }
    }
    .lp-hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(42px, 7vw, 72px);
      font-weight: 800;
      color: var(--coral);
      line-height: 1.1;
      margin-bottom: 12px;
    }
    .lp-hero-title .tm {
      font-size: 0.45em;
      vertical-align: super;
      font-weight: 600;
      color: var(--text-muted);
    }
    .lp-hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 6px; }
    .lp-hero-tagline { font-family: 'Poppins', sans-serif; font-size: 18px; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
    .lp-hero-love { font-family: 'Dancing Script', cursive; font-size: 28px; color: var(--coral); margin-bottom: 16px; font-weight: 700; }
    .btn-cta-launch {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: white;
      background: var(--coral);
      border: none;
      border-radius: 99px;
      padding: 18px 40px;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px rgba(255,131,108,0.4);
      animation: cta-float 3s ease-in-out infinite;
    }
    @keyframes cta-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .btn-cta-launch:hover {
      background: var(--coral-dark);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 16px 48px rgba(255,131,108,0.5);
      animation: none;
    }
    .btn-cta-launch:active { transform: scale(0.95); animation: none; }

    /* Trust strip */
    .lp-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 40px;
      border-top: 1.5px solid rgba(93,43,14,0.06);
      background: rgba(253, 240, 232, 0.96);
      backdrop-filter: blur(12px);
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 20;
      gap: 24px;
    }

    /* ============================================================
       INFO MODALS (How It Works & Pricing)
    ============================================================ */
    .info-modal-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(43, 24, 12, 0.4);
      backdrop-filter: blur(8px);
      z-index: 999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .info-modal-overlay.open { display: flex; }
    .info-modal-panel {
      background: var(--bg-page);
      width: 100%;
      max-width: 900px;
      max-height: 90vh;
      border-radius: 24px;
      position: relative;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 64px rgba(93,43,14,0.15);
      animation: modal-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .info-modal-body {
      padding: 40px;
      overflow-y: auto;
    }
    .info-modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 16px;
      color: var(--text-muted);
      transition: var(--transition-smooth);
      z-index: 10;
    }
    .info-modal-close:hover {
      color: var(--text-primary);
      background: white;
      transform: rotate(90deg);
    }
    .lp-trust-left {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .lp-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text-primary);
      font-weight: 600;
    }
    .lp-trust-icon {
      width: 18px;
      height: 18px;
      color: var(--coral);
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .lp-trust {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 16px;
        gap: 20px;
      }
      .lp-trust-left {
        justify-content: center;
        gap: 12px 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
      }
      .lp-trust-item {
        font-size: 12px;
      }
    }

    @media (max-width: 768px) {
      .name-input {
        padding: 14px 14px 14px 46px;
        font-size: 18px;
      }
      .name-input::placeholder {
        font-size: 16px;
      }
      .name-input-icon {
        font-size: 18px;
        left: 14px;
      }
      .trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      .dog-strip-card {
        height: auto;
      }
      .pro-pain-cards {
        grid-template-columns: 1fr;
      }
    }

    /* Dog card grid decoration */
    .lp-cards-bg {
      position: absolute; inset: 0; pointer-events: none;
      z-index: 0; overflow: hidden; opacity: 1;
    }
    .lp-cards-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: transparent;
      pointer-events: none;
      z-index: 1;
    }
    .lp-cards-bg-inner {
      position: absolute;
      top: calc(50% - 90px);
      left: 50%;
      transform: translate(-50%, -50%) rotate(-6deg) scale(1.15);
      display: grid;
      grid-template-columns: repeat(8, 205px);
      grid-template-rows: repeat(5, auto);
      gap: 16px;
      pointer-events: none;
      z-index: 0;
      width: max-content;
    }
    @media (max-width: 768px) {
      .lp-cards-bg-inner {
        grid-template-columns: repeat(8, 142px);
        grid-template-rows: repeat(5, auto);
        gap: 10px;
        top: calc(50% - 70px);
        transform: translate(-50%, -50%) rotate(-6deg) scale(1.08);
      }
    }

    /* Subtle background paw print decoration */
    .lp-hero .lp-bg-paw {
      position: absolute;
      width: 54px;
      height: 54px;
      color: var(--coral);
      pointer-events: none;
      z-index: 1;
      opacity: 0.05;
      animation: paw-fade 8s ease-in-out infinite;
    }
    @keyframes paw-fade {
      0%, 100% { opacity: 0.03; transform: scale(0.96); }
      50%       { opacity: 0.14; transform: scale(1.04); }
    }
    .lp-bg-paw-1 {
      top: 6%;
      left: 5%;
      transform: rotate(-15deg);
      animation-duration: 9s;
      animation-delay: 0s;
    }
    .lp-bg-paw-2 {
      top: 55%;
      right: 6%;
      transform: rotate(20deg);
      animation-duration: 12s;
      animation-delay: 2.5s;
    }
    .lp-bg-paw-3 {
      bottom: 15%;
      left: 8%;
      transform: rotate(-25deg);
      animation-duration: 15s;
      animation-delay: 5s;
    }
    @media (max-width: 768px) {
      .lp-hero .lp-bg-paw {
        width: 36px;
        height: 36px;
        display: block;
      }
      .lp-hero .lp-bg-paw-1 { left: 3%; top: 42%; }
      .lp-hero .lp-bg-paw-2 { right: 3%; top: 68%; }
      .lp-hero .lp-bg-paw-3 { left: 4%; bottom: 6%; }
    }
    .lp-mini-card {
      background: white; border-radius: 20px; padding: 12px 12px 8px 12px;
      box-shadow: 0 12px 24px rgba(93,43,14,0.06); height: auto;
      display: flex; flex-direction: column; gap: 8px; overflow: hidden;
      cursor: pointer;
      pointer-events: auto;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
      border: 1.5px solid rgba(93,43,14,0.04);
    }
    .lp-mini-card:hover {
      transform: translateY(-8px) scale(1.06);
      box-shadow: 0 20px 40px rgba(93,43,14,0.14);
      border-color: var(--coral);
    }
    .lp-mini-card-header {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: -2px;
      margin-bottom: -2px;
    }
    .lp-mini-card-paw {
      font-size: 10px;
      color: #fda4af;
      opacity: 0.65;
    }
    .lp-mini-card-photo {
      width: 100%; aspect-ratio: 1 / 1; border-radius: 12px;
      overflow: hidden; flex: none;
      position: relative;
    }
    .lp-mini-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }
    .lp-mini-card-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
      padding: 10px 10px 8px 10px;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 2px;
      text-align: left;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }
    .lp-mini-card-title-row {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .lp-mini-card-name-age {
      font-size: 11px;
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
      letter-spacing: -0.01em;
      color: #ffffff;
      text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }
    .lp-mini-card-verified-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #3b82f6;
      color: white;
      font-size: 6px;
      font-weight: bold;
      flex-shrink: 0;
    }
    .lp-mini-card-meta {
      font-size: 8.5px;
      color: rgba(255,255,255,0.85);
      font-weight: 500;
      margin-bottom: 1px;
    }
    .lp-mini-card-location-row {
      font-size: 7.5px;
      color: rgba(255,255,255,0.75);
      font-weight: 400;
    }
    .lp-mini-card-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 6px 0 2px 0;
      background: white;
    }
    .lp-mini-btn {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: bold;
      border: 1px solid;
      transition: transform 0.2s ease;
    }
    .lp-mini-btn:hover {
      transform: scale(1.15);
    }
    .lp-mini-btn-no {
      color: #ff836c;
      border-color: rgba(255,131,108,0.2);
      background: rgba(255,131,108,0.05);
    }
    .lp-mini-btn-star {
      color: #3b82f6;
      border-color: rgba(59,130,246,0.2);
      background: rgba(59,130,246,0.05);
      font-size: 10px;
    }
    .lp-mini-btn-yes {
      color: #10b981;
      border-color: rgba(16,185,129,0.2);
      background: rgba(16,185,129,0.05);
      font-size: 12px;
    }
    .lp-mini-btn-info {
      color: #9ca3af;
      border-color: rgba(156,163,175,0.2);
      background: rgba(156,163,175,0.05);
      font-size: 9px;
      font-family: serif;
    }

    .lp-hero > *:not(.lp-bg-paw) { position: relative; z-index: 1; }

    /* ============================================================
       MODAL OVERLAY
    ============================================================ */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(44,18,6,0.55);
      backdrop-filter: blur(8px); z-index: 100;
      display: flex; align-items: center; justify-content: center;
      padding: 20px; opacity: 0; pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }

    .modal-panel {
      background: var(--bg-card);
      border-radius: var(--radius-xl);
      width: 100%; max-width: 520px; max-height: 90vh;
      overflow-y: auto; overflow-x: hidden;
      box-shadow: var(--shadow);
      transform: translateY(40px) scale(0.95);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
      opacity: 0; scrollbar-width: none; position: relative;
    }
    .modal-panel::-webkit-scrollbar { display: none; }
    .modal-overlay.open .modal-panel { transform: translateY(0) scale(1); opacity: 1; }

    /* Modal header strip */
    .modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 0; }
    .modal-logo {
      font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px;
      color: var(--text-primary); display: flex; align-items: center; gap: 6px;
    }
    .modal-close {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--bg-surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; cursor: pointer; color: var(--text-muted);
      transition: var(--transition-smooth); line-height: 1;
    }
    .modal-close:hover { background: var(--bg-muted); color: var(--text-primary); transform: rotate(90deg); }

    /* Progress */
    .modal-progress { padding: 16px 24px 0; display: flex; flex-direction: column; gap: 8px; }
    .progress-dots { display: flex; gap: 6px; align-items: center; }
    .progress-dot {
      height: 7px; border-radius: 10px; background: var(--bg-muted);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      width: 12px; flex-grow: 1;
    }
    .progress-dot.done {
      background: var(--coral); flex-grow: 1;
      animation: dot-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    @keyframes dot-pop {
      0% { transform: scaleY(1); }
      50% { transform: scaleY(1.8); }
      100% { transform: scaleY(1); }
    }
    .progress-dot.active { background: var(--coral); flex-grow: 2.5; box-shadow: 0 0 8px var(--coral-glow); }
    .progress-label-text { font-size: 11px; color: var(--text-subtle); letter-spacing: 0.04em; font-weight: 500; }

    /* Step body */
    .modal-body { padding: 28px 28px 32px; position: relative; }

    /* ============================================================
       STEP COMPONENTS
    ============================================================ */
    @keyframes step-in {
      from { opacity: 0; transform: translateX(30px) scale(0.98); }
      to   { opacity: 1; transform: translateX(0) scale(1); }
    }
    @keyframes step-in-left {
      from { opacity: 0; transform: translateX(-30px) scale(0.98); }
      to   { opacity: 1; transform: translateX(0) scale(1); }
    }
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20%, 60% { transform: translateX(-6px); }
      40%, 80% { transform: translateX(6px); }
    }
    .shake {
      animation: shake 0.4s ease-in-out;
      border-color: var(--coral) !important;
      box-shadow: 0 0 0 4px var(--coral-glow) !important;
    }
    .step-wrap { animation: step-in 0.4s cubic-bezier(0.34,1.56,0.64,1); }
    .step-wrap.going-back { animation: step-in-left 0.4s cubic-bezier(0.34,1.56,0.64,1); }

    .step-eyebrow {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
    }
    .step-title {
      font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 800;
      color: var(--text-primary); line-height: 1.2; margin-bottom: 6px;
    }
    .step-subtitle {
      font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px;
    }

    /* Back button */
    .back-btn {
      display: inline-flex; align-items: center; gap: 4px;
      background: none; border: none; color: var(--text-subtle);
      font-size: 13px; font-family: 'Poppins', sans-serif; cursor: pointer;
      padding: 0; margin-bottom: 18px; transition: var(--transition-smooth);
    }
    .back-btn:hover { color: var(--text-muted); transform: translateX(-4px); }

    /* ============================================================
       FORM ELEMENTS
    ============================================================ */
    .form-group { margin-bottom: 16px; position: relative; }
    .form-label {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--text-muted); margin-bottom: 7px;
      letter-spacing: 0.02em; text-transform: uppercase;
      transition: var(--transition-smooth);
    }
    .form-input {
      width: 100%; background: var(--bg-surface);
      border: 1.5px solid var(--border); border-radius: var(--radius-sm);
      padding: 13px 16px; font-size: 15px; color: var(--text-primary);
      font-family: 'Poppins', sans-serif; outline: none;
      transition: var(--transition); appearance: none;
    }
    .form-input::placeholder { color: var(--text-subtle); }
    .form-input:focus {
      border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-glow);
      background: white; transform: translateY(-1px);
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    select.form-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a5c4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 38px; cursor: pointer;
    }

    /* Autocomplete dropdown styling */
    .autocomplete-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      max-height: 200px;
      overflow-y: auto;
      z-index: 50;
      box-shadow: var(--shadow-sm);
      margin-top: 4px;
    }
    .autocomplete-item {
      padding: 10px 16px;
      font-size: 14px;
      cursor: pointer;
      color: var(--text-primary);
      transition: background 0.2s ease, color 0.2s ease;
      text-align: left;
    }
    .autocomplete-item:hover, .autocomplete-item.active {
      background: var(--bg-surface);
      color: var(--coral);
    }

    /* ============================================================
       BIG NAME INPUT (Step 1 hero)
    ============================================================ */
    .name-input-wrap { position: relative; margin-bottom: 24px; }
    .name-input {
      width: 100%; background: #FDF7F5;
      border: 2px solid var(--border); border-radius: var(--radius);
      padding: 20px 20px 20px 54px; font-family: 'Poppins', sans-serif;
      font-size: 22px; font-weight: 700; color: var(--text-primary);
      outline: none; transition: var(--transition);
    }
    .name-input::placeholder { color: var(--text-subtle); font-weight: 400; font-size: 20px; }
    .name-input:focus {
      border-color: var(--coral); box-shadow: 0 0 0 4px var(--coral-glow);
      background: white; transform: translateY(-2px);
    }
    .name-input-icon {
      position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
      font-size: 22px; pointer-events: none; transition: var(--transition);
    }
    .name-input:focus + .name-input-icon { transform: translateY(-50%) scale(1.1); }
    
    .name-greeting {
      font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700;
      color: var(--coral); text-align: center; margin-bottom: 20px;
      min-height: 30px; transition: var(--transition);
      animation: pop-in 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    @keyframes pop-in {
      from { opacity: 0; transform: translateY(10px) scale(0.9); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* ============================================================
       SLIDER
    ============================================================ */
    .age-slider {
      -webkit-appearance: none; width: 100%; background: transparent; margin-top: 6px;
    }
    .age-slider:focus { outline: none; }
    .age-slider::-webkit-slider-runnable-track {
      width: 100%; height: 8px; cursor: pointer;
      background: var(--bg-muted); border-radius: 99px;
      border: 1px solid var(--border);
    }
    .age-slider::-webkit-slider-thumb {
      height: 24px; width: 24px; border-radius: 50%;
      background: white; border: 2px solid var(--coral);
      cursor: pointer; -webkit-appearance: none; margin-top: -9px;
      box-shadow: 0 4px 12px rgba(255,131,108,0.3);
      transition: transform 0.15s cubic-bezier(0.34,1.56,0.64,1);
    }
    .age-slider::-webkit-slider-thumb:hover { transform: scale(1.15); background: var(--bg-surface); }
    .age-slider::-webkit-slider-thumb:active { transform: scale(0.9); background: var(--coral-light); border-color: var(--coral-dark); }

    /* ============================================================
       PILL SELECTORS
    ============================================================ */
    .pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
    .pill-group-vertical { flex-direction: column; }
    .pill-opt { cursor: pointer; }
    .pill-opt input[type="radio"], .pill-opt input[type="checkbox"] { display: none; }
    .pill-opt label {
      display: block; padding: 10px 18px; border-radius: 99px;
      border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
      color: var(--text-muted); cursor: pointer; transition: var(--transition);
      background: var(--bg-surface); user-select: none;
      position: relative; overflow: hidden;
    }
    .pill-group-vertical .pill-opt label { padding: 14px 18px; border-radius: var(--radius-sm); }
    
    .pill-opt input:checked + label {
      border-color: var(--coral); color: var(--coral-dark);
      background: var(--coral-light); transform: scale(1.02);
      box-shadow: 0 4px 12px rgba(255,131,108,0.15);
    }
    .pill-opt label:hover { border-color: var(--coral); color: var(--coral); }
    
    /* Click ripple for pills */
    .pill-opt label::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(255,131,108,0.2); opacity: 0;
      transition: opacity 0.3s;
    }
    .pill-opt input:active + label::after { opacity: 1; }
    
    /* Success/Green Modifier */
    .pill-group-success .pill-opt input:checked + label {
      border-color: #10B981; color: #047857;
      background: rgba(16, 185, 129, 0.1);
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    }
    .pill-group-success .pill-opt label::after { background: rgba(16, 185, 129, 0.2); }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 16px 28px; font-family: 'Poppins', sans-serif; font-size: 16px;
      font-weight: 700; border: none; border-radius: 99px; cursor: pointer;
      transition: var(--transition); text-decoration: none; width: 100%;
      position: relative; overflow: hidden;
    }
    .btn:active { transform: scale(0.95); }

    .btn-primary {
      background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
      color: white; box-shadow: 0 4px 20px var(--coral-glow);
    }
    .btn-primary:hover {
      box-shadow: 0 8px 28px rgba(255,131,108,0.4); transform: translateY(-2px);
    }
    .btn-primary:disabled {
      background: var(--bg-muted); color: var(--text-subtle);
      box-shadow: none; cursor: not-allowed; transform: none;
    }
    .btn-ghost {
      background: transparent; color: var(--text-muted);
      border: 1.5px solid var(--border); font-size: 14px; padding: 12px 24px;
    }
    .btn-ghost:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }

    .step-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

    /* ============================================================
       LOCATION STATUS
    ============================================================ */
    .location-status {
      background: var(--bg-surface); border: 1.5px solid var(--border);
      border-radius: var(--radius-sm); padding: 14px 18px;
      display: flex; align-items: flex-start; gap: 12px; margin-top: 14px;
      animation: fade-up-bounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    .location-status.success { border-color: rgba(42,157,111,0.35); background: var(--success-bg); }
    .location-status.soft    { border-color: rgba(212,133,42,0.35); background: var(--warning-bg); }
    .loc-icon { font-size: 18px; line-height: 1.5; }
    .loc-title { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
    .loc-sub   { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

    @keyframes fade-up-bounce {
      from { opacity: 0; transform: translateY(12px) scale(0.98); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* ============================================================
       LOADER (Premium Radar Style)
    ============================================================ */
    .loader-wrap {
      display: flex; flex-direction: column; align-items: center;
      justify-content: center; padding: 50px 0 30px; text-align: center;
    }
    .radar {
      width: 90px; height: 90px; border-radius: 50%;
      background: var(--bg-surface); position: relative;
      border: 2px solid var(--coral-light); margin-bottom: 32px;
      overflow: hidden; box-shadow: 0 0 0 8px rgba(255,131,108,0.05);
    }
    .radar::before {
      content: ''; position: absolute; top: 0; left: 50%;
      width: 50%; height: 50%; background: linear-gradient(90deg, transparent 30%, var(--coral));
      transform-origin: bottom left;
      animation: radar-spin 1.95s linear infinite;
      opacity: 0.85;
    }
    .radar::after {
      content: ''; position: absolute; inset: 2px;
      border-radius: 50%; background: var(--bg-card);
    }
    .radar-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      z-index: 2;
      animation: pulse 2.8s ease infinite;
      object-fit: cover;
    }
    @keyframes radar-spin { 100% { transform: rotate(360deg); } }
    @keyframes pulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.1); } }

    .loader-progress {
      width: 200px; height: 6px; background: var(--bg-muted);
      border-radius: 99px; overflow: hidden; margin-bottom: 16px;
    }
    .loader-fill {
      height: 100%; background: var(--coral); width: 0%;
      transition: width 0.3s ease;
    }
    .loader-text {
      font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700;
      color: var(--text-primary); min-height: 60px; transition: opacity 0.3s ease;
    }
    .loader-subtext {
      font-size: 13px; color: var(--text-muted); margin-top: 4px;
      font-family: 'Poppins', sans-serif;
    }

    /* ============================================================
       DOG CARDS PREVIEW
    ============================================================ */
    .dog-cards-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
    }
    .dog-card {
      background: var(--bg-surface); border: 1.5px solid var(--border);
      border-radius: var(--radius); padding: 14px; cursor: pointer;
      transition: var(--transition); position: relative; overflow: hidden;
      text-align: center;
      /* Stagger entrance */
      animation: pop-card 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    .dog-card:nth-child(1) { animation-delay: 0.1s; }
    .dog-card:nth-child(2) { animation-delay: 0.2s; }
    .dog-card:nth-child(3) { animation-delay: 0.3s; }
    .dog-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes pop-card {
      from { opacity: 0; transform: translateY(20px) scale(0.9); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .dog-card-photo {
      width: 100%; height: 90px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 44px; margin-bottom: 10px; transition: var(--transition);
      overflow: hidden;
    }
    .dog-card-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
    .dog-card-name {
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
      color: var(--text-primary); margin-bottom: 1px;
    }
    .dog-card-breed { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
    .dog-card-tags { display: flex; flex-direction: column; gap: 4px; align-items: center; }
    .tag {
      font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 99px;
      letter-spacing: 0.03em; display: inline-block; width: fit-content;
    }
    .tag-verified { background: rgba(42,157,111,0.1); color: var(--success); border: 1px solid rgba(42,157,111,0.2); }
    .tag-health   { background: var(--coral-light); color: var(--coral-dark); border: 1px solid rgba(255,131,108,0.2); }
    .tag-region   { background: var(--bg-muted); color: var(--text-muted); border: 1px solid var(--border); }

    .dog-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(44,18,6,0.95) 0%, transparent 60%);
      display: flex; align-items: flex-end; padding: 14px; opacity: 0;
      transition: var(--transition-smooth); transform: translateY(10px);
    }
    .dog-card-overlay-text { font-size: 11px; font-weight: 700; color: var(--coral-light); }

    /* ============================================================
       RECOMMENDED PATH
    ============================================================ */
    .recommended-path-box {
      background: linear-gradient(135deg, var(--coral-light) 0%, #fce8e0 100%);
      border: 1.5px solid rgba(255,131,108,0.25); border-radius: var(--radius-sm);
      padding: 18px 20px; margin-bottom: 24px; position: relative; overflow: hidden;
      animation: fade-up-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
      cursor: pointer;
      transition: var(--transition);
    }
    .recommended-path-box:hover {
      border-color: var(--coral);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }
    /* Subtle shine effect */
    .recommended-path-box::after {
      content: ''; position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
      transform: rotate(30deg) translateY(-100%);
      animation: shine 3s infinite;
    }
    @keyframes shine { 0% { transform: rotate(30deg) translateY(-100%); } 20%, 100% { transform: rotate(30deg) translateY(100%); } }

    .rp-eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-dark); margin-bottom: 6px; }
    .rp-title { font-size: 18px; font-weight: 800; font-family: 'Poppins', sans-serif; color: var(--text-primary); margin-bottom: 6px; }
    .rp-desc { font-size: 13px; color: var(--brown); line-height: 1.5; }

    /* ============================================================
       EMAIL STEP (Starter Pack Bundle)
    ============================================================ */
    .email-step-header { text-align: center; padding: 0 0 16px; margin-top: -8px; }
    .email-step-icon {
      font-size: 56px; display: inline-block; margin-bottom: 12px;
      animation: heart-pulse 2s infinite alternate ease-in-out;
      transform-origin: center;
    }
    @keyframes heart-pulse {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }
    .email-step-title { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
    .email-step-sub { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    .bundle-box {
      background: linear-gradient(135deg, rgba(255,131,108,0.05) 0%, rgba(255,131,108,0.15) 100%);
      border: 1px solid rgba(255,131,108,0.3); border-radius: var(--radius);
      padding: 20px; margin-bottom: 24px; position: relative;
    }
    .bundle-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
    .bundle-title { font-size: 15px; font-weight: 800; font-family: 'Outfit', sans-serif; color: var(--coral-dark); }
    .bundle-value { background: var(--coral); color: white; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em; }
    .bundle-list { font-size: 13px; color: var(--brown); list-style: none; padding-left: 0; }
    .bundle-list li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-weight: 500; }
    .bundle-list li::before { content: '✓'; color: var(--coral); font-weight: 800; background: white; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 10px; flex-shrink: 0; margin-top: 2px; }

    .lyka-box {
      background: linear-gradient(135deg, #fcfaf8 0%, #f4ede4 100%);
      border: 2px dashed rgba(93,43,14,0.20);
      border-radius: var(--radius);
      padding: 24px;
      margin-bottom: 24px;
      position: relative;
      box-shadow: var(--shadow-card);
    }
    .lyka-box-notch-l, .lyka-box-notch-r {
      position: absolute;
      width: 16px;
      height: 16px;
      background: var(--bg-card); /* Blends with panel bg */
      border-radius: 50%;
      z-index: 5;
    }
    .lyka-box-notch-l {
      left: -9px;
      box-shadow: inset -3px 0 3px rgba(93,43,14,0.05);
    }
    .lyka-box-notch-r {
      right: -9px;
      box-shadow: inset 3px 0 3px rgba(93,43,14,0.05);
    }
    .lyka-divider {
      border: none;
      border-top: 2px dotted rgba(93,43,14,0.15);
      margin: 16px 0;
      position: relative;
    }

    /* ============================================================
       OUTCOME
    ============================================================ */
    .outcome-hero { text-align: center; padding: 8px 0 24px; position: relative; }
    .outcome-icon {
      font-size: 64px; display: block; margin-bottom: 12px;
      animation: pop-in 0.6s cubic-bezier(0.34,1.56,0.64,1), heart-pulse 2s infinite alternate ease-in-out 0.6s;
      transform-origin: center;
    }
    .outcome-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
    .outcome-sub { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 380px; margin: 0 auto; }

    .action-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .action-item {
      background: var(--bg-surface); border: 1.5px solid var(--border);
      border-radius: var(--radius-sm); padding: 16px 18px;
      display: flex; align-items: center; gap: 14px; cursor: pointer;
      transition: var(--transition); text-decoration: none;
      animation: fade-up-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    .action-item:nth-child(1) { animation-delay: 0.1s; }
    .action-item:nth-child(2) { animation-delay: 0.2s; }
    .action-item:nth-child(3) { animation-delay: 0.3s; }
    .action-item:hover { border-color: var(--coral); transform: translateX(6px) scale(1.01); background: white; box-shadow: 0 4px 16px var(--coral-glow); }
    .ai-icon { font-size: 22px; width: 36px; text-align: center; flex-shrink: 0; }
    .ai-body { flex: 1; }
    .ai-title { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
    .ai-sub   { font-size: 12px; color: var(--text-muted); }
    .ai-arrow { color: var(--text-subtle); font-size: 18px; transition: var(--transition); }
    .action-item:hover .ai-arrow { color: var(--coral); transform: translateX(2px); }

    /* Confetti effect on completion */
    .confetti {
      position: absolute; width: 8px; height: 8px; background: var(--coral); border-radius: 50%;
      animation: fall 2s linear forwards; opacity: 0;
    }
    @keyframes fall { 0% { transform: translateY(-50px) rotate(0deg); opacity: 1; } 100% { transform: translateY(200px) rotate(360deg); opacity: 0; } }

    /* ============================================================
       MICROCOPY / UTILS
    ============================================================ */
    .microcopy { font-size: 11px; color: var(--text-subtle); line-height: 1.5; text-align: center; margin-top: 10px; }
    .microcopy a { color: var(--text-muted); text-decoration: underline; cursor: pointer; }

    .optional-badge {
      font-size: 9px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-subtle); background: var(--bg-muted); border: 1px solid var(--border);
      border-radius: 99px; padding: 2px 7px; margin-left: 6px; vertical-align: middle;
      transition: var(--transition-smooth);
    }
    .optional-badge.filled {
      color: var(--success);
      background: var(--success-bg);
      border-color: rgba(42,157,111,0.3);
    }

    .trust-strip {
      display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px;
      padding-bottom: 16px;
      border-top: 1px solid var(--border); flex-wrap: wrap; justify-content: center;
    }
    .trust-item { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-subtle); font-weight: 600; }
    .trust-dot { width: 5px; height: 5px; background: var(--success); border-radius: 50%; flex-shrink: 0; }

    /* Social proof strip */
    .social-proof {
      background: linear-gradient(135deg, #fff 0%, var(--bg-surface) 100%);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 0;
      margin-top: 42px;
      margin-bottom: 20px;
      overflow: hidden;
      animation: fade-up-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
      box-shadow: var(--shadow-card);
    }
    .sp-main {
      display: flex; align-items: center; gap: 14px;
      padding: 14px 18px;
    }
    .sp-avatars { display: flex; align-items: center; flex-shrink: 0; }
    .sp-avatar {
      width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid white;
      font-size: 17px; display: flex; align-items: center; justify-content: center;
      background: var(--bg-muted); margin-left: -10px;
      box-shadow: 0 2px 6px rgba(93,43,14,0.12);
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
      animation: avatar-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
      overflow: hidden;
    }
    .sp-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .sp-avatar:nth-child(1) { animation-delay: 0.35s; z-index: 4; }
    .sp-avatar:nth-child(2) { animation-delay: 0.45s; z-index: 3; }
    .sp-avatar:nth-child(3) { animation-delay: 0.55s; z-index: 2; }
    .sp-avatar:nth-child(4) { animation-delay: 0.65s; z-index: 1; }
    .sp-avatar:first-child { margin-left: 0; }
    .sp-avatar:hover { transform: translateY(-4px) scale(1.15); z-index: 10; }
    @keyframes avatar-pop {
      from { opacity: 0; transform: scale(0.4) translateY(8px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }
    .sp-info { flex: 1; min-width: 0; }
    .sp-counter-row { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
    .sp-live-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--success); flex-shrink: 0;
      box-shadow: 0 0 0 0 rgba(42,157,111,0.5);
      animation: live-pulse 2s infinite;
    }
    @keyframes live-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(42,157,111,0.5); }
      70%  { box-shadow: 0 0 0 7px rgba(42,157,111,0); }
      100% { box-shadow: 0 0 0 0 rgba(42,157,111,0); }
    }
    .sp-count {
      font-size: 17px; font-weight: 800; color: var(--text-primary);
      font-family: 'Poppins', sans-serif; letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--coral), var(--coral-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .sp-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }
    .sp-ticker {
      border-top: 1px solid var(--border);
      padding: 7px 0;
      overflow: hidden;
      position: relative;
      background: var(--bg-surface);
    }
    .sp-ticker-inner {
      display: flex; gap: 32px;
      white-space: nowrap;
      animation: ticker-scroll 18s linear infinite;
      width: max-content;
    }
    .sp-ticker-inner:hover { animation-play-state: paused; }
    @keyframes ticker-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .sp-tick-item {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 600; color: var(--text-muted);
      padding: 0 8px;
    }
    .sp-tick-item img {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .sp-tick-item strong { color: var(--text-primary); }

    /* Collapsible optional section */
    .optional-section { margin-top: 8px; }
    .optional-toggle {
      background: none; border: none; cursor: pointer; width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 0; font-family: 'Poppins', sans-serif; font-size: 12px;
      font-weight: 600; color: var(--coral); text-transform: uppercase;
      letter-spacing: 0.04em; border-top: 1px solid var(--border);
      transition: var(--transition-smooth);
    }
    .optional-toggle.filled { color: var(--success); }
    .optional-toggle:hover { color: var(--coral-dark); }
    .optional-toggle.filled:hover { color: var(--success); opacity: 0.9; }
    .optional-toggle-icon { transition: transform 0.3s ease; font-size: 10px; }
    .optional-toggle.open .optional-toggle-icon { transform: rotate(180deg); }
    .optional-section-body {
      overflow: hidden; max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
      opacity: 0;
    }
    .optional-section-body.open { max-height: 400px; opacity: 1; }

    /* Skip link */
    .btn-skip {
      background: none; border: none; font-family: 'Poppins', sans-serif;
      font-size: 13px; color: var(--text-subtle); cursor: pointer;
      text-decoration: underline; padding: 8px 0; transition: var(--transition-smooth);
    }
    .btn-skip:hover { color: var(--text-muted); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 960px) {
      .pricing-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .lp-burger { display: flex; }
      .lp-nav-center, .lp-nav-right-links, .btn-nav-cta { display: none; }
      .how-steps-grid { grid-template-columns: 1fr; }
      .value-grid { grid-template-columns: 1fr; }
      .hp-section { padding: 64px 20px; }
      .lp-hero { padding: 32px 0 0; }
      .lp-hero-inner { margin-bottom: 20px; padding: 0 20px; }
      .hp-cta-row { flex-direction: column; }
      .pricing-cta-row { flex-direction: column; align-items: flex-start; }
       .lp-trust { flex-direction: column; align-items: center; text-align: center; padding: 24px 16px; gap: 20px; }
      .lp-trust-left { justify-content: center; gap: 16px 20px; }
      .lp-trust-item { font-size: 12px; }
      .lp-nav { padding: 4px 16px 0; height: 60px; }
    }

    @media (max-width: 560px) {
      .lp-nav {
        padding: 4px 16px 0;
        height: 60px;
      }
      .btn-login {
        padding: 8px 16px;
        font-size: 13px;
      }
      .lp-hero-title {
        font-size: 42px;
      }
      .lp-hero-tagline {
        font-size: 16px !important;
        padding: 0 12px;
      }
      .lp-hero-love {
        font-size: 24px;
        margin-bottom: 24px;
      }
      .btn-cta-launch {
        padding: 16px 32px;
        font-size: 16px;
      }

      /* Full screen mobile onboarding flow (App feel) */
      .modal-overlay {
        padding: 0;
      }
      .modal-panel {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        display: flex;
        flex-direction: column;
      }
      .modal-body {
        padding: 20px 20px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .step-wrap {
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .step-actions {
        margin-top: auto; /* Push buttons to the bottom of mobile viewport */
        padding-top: 20px;
      }
      .dog-cards-grid {
        grid-template-columns: 1fr;
      }
      .step-title {
        font-size: 22px;
      }
      .step-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
      }
    }
    /* ============================================================
       PRO FUNNEL MODAL STYLES
    ============================================================ */
    .pro-modal-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(15, 23, 42, 0.4);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      z-index: 1000;
      opacity: 0; visibility: hidden;
      transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.4s;
      display: flex; align-items: flex-end; justify-content: center;
    }
    .pro-modal-overlay.open { opacity: 1; visibility: visible; }
    
    .pro-modal-panel {
      background: var(--bg-card); width: 100%; max-width: 480px; max-height: 90vh;
      border-radius: 24px 24px 0 0; position: relative;
      display: flex; flex-direction: column; overflow: hidden;
      transform: translateY(100%);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    }
    .pro-modal-overlay.open .pro-modal-panel { transform: translateY(0); }
    
    @media (min-width: 600px) {
      .pro-modal-overlay { align-items: center; padding: 24px; }
      .pro-modal-panel { border-radius: 28px; max-height: 85vh; height: auto; transform: scale(0.95) translateY(20px); }
      .pro-modal-overlay.open .pro-modal-panel { transform: scale(1) translateY(0); }
    }

    .pro-hero-wrap {
      background-color: var(--bg-card);
      color: var(--text-primary);
      padding: 40px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .pro-hero-title {
      font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 800;
      color: var(--text-primary); line-height: 1.2; margin-bottom: 12px;
    }
    .pro-hero-subtitle {
      font-size: 15px; color: var(--text-muted); line-height: 1.5; margin-bottom: 32px;
    }
    .pro-btn-primary {
      width: 100%; padding: 16px; border-radius: 99px; border: none;
      background: var(--coral); color: #fff; font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 16px; cursor: pointer;
      box-shadow: 0 4px 12px var(--coral-glow);
      transition: var(--transition);
      margin-bottom: 16px;
    }
    .pro-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px var(--coral-glow); filter: brightness(1.05); }
    
    .pro-btn-secondary {
      width: 100%; padding: 16px; border-radius: 99px; border: 1.5px solid var(--border);
      background: transparent; color: var(--text-muted); font-family: 'Poppins', sans-serif;
      font-weight: 600; font-size: 15px; cursor: pointer;
      transition: var(--transition);
    }
    .pro-btn-secondary:hover { background: var(--bg-surface); border-color: var(--coral); color: var(--coral); }
    
    .pro-pain-cards {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px;
    }
    .pro-pain-card {
      background: var(--bg-surface); border: 1.5px solid var(--border);
      padding: 16px; border-radius: 16px; text-align: left;
    }
    .pro-pain-card-icon { color: var(--coral); margin-bottom: 8px; width: 20px; height: 20px; }
    .pro-pain-card-text { font-size: 13px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }

    .pro-how-works {
      padding: 32px 28px; background: var(--bg-card); color: var(--text-primary);
      text-align: left;
    }
    .pro-how-title { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 20px; text-align: center; }
    .pro-step { display: flex; gap: 16px; margin-bottom: 20px; }
    .pro-step-num { 
      background: var(--coral-light); color: var(--coral); width: 32px; height: 32px; 
      border-radius: 50%; display: flex; align-items: center; justify-content: center; 
      font-weight: 800; flex-shrink: 0; font-size: 14px;
    }
    .pro-step-text h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; margin-top: 0; }
    .pro-step-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }
    
    .pro-trust-strip {
      background: #f8fafc; padding: 20px; border-top: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 12px; text-align: center;
    }
    .pro-trust-item { font-size: 13px; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px;}

    .plan-card {
      background: var(--bg-surface);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      text-align: left;
      margin: 24px 0;
    }
    .plan-card-icon {
      width: 48px; height: 48px;
      color: var(--coral);
      margin-bottom: 16px;
    }
    .plan-card-title {
      font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800;
      color: var(--text-primary); margin-bottom: 8px;
    }
    .plan-card-desc {
      font-size: 14px; color: var(--text-muted); font-weight: 500;
      line-height: 1.4; margin-bottom: 20px;
    }
    .plan-list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 12px;
    }
    .plan-list li {
      font-size: 13px; font-weight: 600; color: var(--text-primary);
      display: flex; align-items: flex-start; gap: 10px; line-height: 1.4;
    }
    .plan-list li svg {
      width: 18px; height: 18px; flex-shrink: 0; color: var(--coral);
      margin-top: 1px;
    }

    .pro-modal-body { padding: 0; position: relative; overflow-y: auto; overflow-x: hidden; max-height: calc(90vh - 80px); }
    .pro-modal-body .step-wrap { padding: 28px 28px 32px; }
    .pro-modal-body .pro-hero-wrap { padding: 40px 28px; }
