/* planear-page.css — page-specific styles for planear.html + en/planear.html
   Extracted from inline <style> blocks to prevent PT/EN divergence (see commit bc46b55 for precedent).
   Base: planear.html (PT) — includes min-height:44px touch target fix (MOBILE-07) absent in EN.
   v=20260513-i18n6 */

.btn { display:inline-flex; align-items:center; gap:8px; padding:10px 22px; border-radius:50px; font-family:'Inter',sans-serif; font-size:0.875rem; font-weight:500; transition:var(--transition); cursor:pointer; min-height:44px; }
    .btn-outline { border:1.5px solid var(--glass-border); color:var(--white); backdrop-filter:blur(12px); background:var(--glass); }
    .btn-outline:hover { border-color:var(--gold); color:var(--gold); }
    .btn-primary { background:linear-gradient(135deg,var(--gold),var(--gold-light)); color:var(--blue); font-weight:600; }
    .btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(201,168,76,0.40); }

    /* ── Page hero ── */
    .page-hero {
      background: linear-gradient(150deg, var(--blue) 0%, #0d4880 45%, #1a5fa3 100%);
      padding: 130px 5vw 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero { display: block; min-height: auto; align-items: initial; }
    @media (max-width: 640px) { .page-hero { padding-top: 80px; padding-bottom: 44px; } }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,168,76,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(41,128,212,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.14);
      border: 1px solid rgba(201,168,76,0.30);
      border-radius: 50px;
      padding: 6px 16px 6px 10px;
      margin-bottom: 24px;
    }
    .hero-eyebrow-pill span {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-light);
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.5; transform: scale(0.75); }
    }
    .page-hero h1 {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .page-hero h1 em { font-style: italic; color: var(--gold-light); }
    .page-hero p {
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: rgba(255,255,255,0.78);
      max-width: 560px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.8rem;
      font-weight: 500;
      color: rgba(255,255,255,0.88);
    }
    .hero-chip svg { width:14px; height:14px; stroke:var(--gold-light); fill:none; flex-shrink:0; }

    /* ── Main layout ── */
    .plan-layout {
      max-width: 1160px;
      margin: 0 auto;
      padding: 72px 5vw 100px;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 56px;
      align-items: start;
    }
    @media(max-width: 960px) {
      .plan-layout {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 5vw 80px;
      }
    }

    /* ── Form card ── */
    .form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      border: 1px solid rgba(10,61,107,0.07);
      overflow: hidden;
    }
    .form-card-header {
      padding: 32px 36px 28px;
      border-bottom: 1px solid rgba(10,61,107,0.07);
      background: linear-gradient(135deg, rgba(10,61,107,0.03) 0%, rgba(201,168,76,0.04) 100%);
    }
    @media(max-width: 540px) { .form-card-header { padding: 24px 20px 20px; } }
    .form-card-header-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .form-card-header h2 {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: 1.55rem;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .form-card-header p {
      font-size: 0.875rem;
      color: var(--text-mid);
      line-height: 1.55;
    }
    .form-body {
      padding: 32px 36px 36px;
    }
    @media(max-width: 540px) { .form-body { padding: 24px 20px 28px; } }

    /* ── Form rows ── */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-row.full { grid-template-columns: 1fr; }
    @media(max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

    /* ── Field ── */
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field label {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.02em;
    }
    .field label .req { color: var(--gold); margin-left: 2px; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 11px 14px;
      min-height: 44px; /* MOBILE-07: touch target */
      border: 1.5px solid rgba(10,61,107,0.14);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(10,61,107,0.09);
    }
    .field input.error,
    .field select.error { border-color: #e53e3e; }
    .field .field-error {
      font-size: 0.75rem;
      color: #e53e3e;
      display: none;
    }
    .field .field-error.visible { display: block; }
    .field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }
    .field textarea { resize: vertical; min-height: 90px; line-height: 1.55; }

    /* ── Interest checkboxes ── */
    .interest-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    @media(max-width: 400px) { .interest-grid { grid-template-columns: 1fr; } }
    @media(max-width: 599px) {
      /* Tap targets: 44px minimum for checkboxes and radios */
      .interest-item, .budget-item { min-height: 44px; padding: 12px 14px; }
      /* Form spacing: breathe between fields on mobile */
      .form-row { gap: 14px; margin-bottom: 18px; }
      /* Section CTA full-width on mobile */
      .what-cta { width: 100%; max-width: 340px; justify-content: center; }
      .what-cta-row { padding: 0 16px; }
    }
    .interest-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 1.5px solid rgba(10,61,107,0.12);
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      user-select: none;
    }
    .interest-item:hover { border-color: rgba(10,61,107,0.28); background: rgba(10,61,107,0.025); }
    .interest-item input[type="checkbox"] { display: none; }
    .interest-item.checked {
      border-color: var(--blue);
      background: rgba(10,61,107,0.06);
    }
    .interest-icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: rgba(10,61,107,0.07);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s;
    }
    .interest-item.checked .interest-icon { background: var(--blue); }
    .interest-icon svg { width:16px; height:16px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; transition: stroke 0.2s; }
    .interest-item.checked .interest-icon svg { stroke: var(--white); }
    .interest-label {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text);
    }

    /* ── Budget radio ── */
    .budget-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    @media(max-width: 400px) { .budget-grid { grid-template-columns: 1fr; } }
    .budget-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 1.5px solid rgba(10,61,107,0.12);
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .budget-item:hover { border-color: rgba(10,61,107,0.28); background: rgba(10,61,107,0.025); }
    .budget-item input[type="radio"] { display: none; }
    .budget-item.selected { border-color: var(--gold); background: rgba(201,168,76,0.07); }
    .budget-dot {
      width: 16px; height: 16px;
      border-radius: 50%;
      border: 2px solid rgba(10,61,107,0.25);
      flex-shrink: 0;
      transition: border-color 0.2s, background 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    .budget-item.selected .budget-dot { border-color: var(--gold); background: var(--gold); }
    .budget-dot::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--white);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .budget-item.selected .budget-dot::after { opacity: 1; }
    .budget-label { font-size: 0.82rem; font-weight: 500; color: var(--text); line-height: 1.35; }
    .budget-sub { font-size: 0.72rem; color: var(--text-light); }

    /* ── Submit area ── */
    .form-submit-area { margin-top: 28px; }
    .form-submit-btn {
      width: 100%;
      padding: 15px;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: transform 0.25s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(10,61,107,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .form-submit-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(10,61,107,0.38);
    }
    .form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }
    .form-submit-btn svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2.5; }
    .cf-turnstile { margin: 1rem 0; display: flex; justify-content: center; }
    .form-disclaimer {
      margin-top: 14px;
      font-size: 0.75rem;
      color: var(--text-light);
      text-align: center;
      line-height: 1.5;
    }
    .form-disclaimer a { color: var(--blue); text-decoration: underline; }

    /* ── Success state ── */
    .form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px 36px;
      gap: 16px;
    }
    .form-success.visible { display: flex; }
    .success-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(34,197,94,0.30);
    }
    .success-icon svg { width:28px; height:28px; stroke:var(--white); fill:none; stroke-width:2.5; }
    .form-success h3 {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--blue);
      margin: 0;
    }
    .form-success p {
      font-size: 0.9rem;
      color: var(--text-mid);
      max-width: 380px;
      line-height: 1.65;
      margin: 0;
    }
    .success-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(34,197,94,0.10);
      border: 1px solid rgba(34,197,94,0.25);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #16a34a;
    }
    .success-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 8px;
    }
    .success-btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 24px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--blue);
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem; font-weight: 600;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .success-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,0.40); }
    .success-btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 24px;
      border: 1.5px solid rgba(10,61,107,0.18);
      color: var(--blue);
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem; font-weight: 500;
      border-radius: 50px;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .success-btn-outline:hover { border-color: var(--blue); background: rgba(10,61,107,0.05); }

    /* ── Sidebar ── */
    .sidebar { display: flex; flex-direction: column; gap: 24px; }

    /* ── How it works ── */
    .sidebar-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(10,61,107,0.07);
      padding: 28px;
    }
    .sidebar-card-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }
    .sidebar-card h3 {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .steps { display: flex; flex-direction: column; gap: 16px; }
    .step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .step-num {
      flex-shrink: 0;
      width: 28px; height: 28px;
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--white);
    }
    .step-body { flex: 1; padding-top: 3px; }
    .step-title {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 2px;
    }
    .step-desc {
      font-size: 0.8rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* ── What you can ask ── */
    .ask-list { display: flex; flex-direction: column; gap: 10px; }
    .ask-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .ask-icon {
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: rgba(10,61,107,0.06);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .ask-icon svg { width:16px; height:16px; stroke:var(--blue); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
    .ask-text { flex: 1; padding-top: 6px; }
    .ask-title { font-size: 0.875rem; font-weight: 600; color: var(--text); }
    .ask-sub { font-size: 0.78rem; color: var(--text-light); line-height: 1.45; }

    /* ── Trust card ── */
    .trust-list { display: flex; flex-direction: column; gap: 12px; }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-mid);
    }
    .trust-item svg { flex-shrink:0; width:16px; height:16px; stroke:#22c55e; fill:none; stroke-width:2.5; }

    /* ── Coming soon notice ── */
    .coming-soon-notice {
      background: linear-gradient(135deg, rgba(10,61,107,0.05) 0%, rgba(201,168,76,0.07) 100%);
      border: 1px solid rgba(201,168,76,0.22);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.5;
    }
    .coming-soon-notice svg { flex-shrink:0; width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:2; margin-top:1px; }
    .coming-soon-notice strong { color: var(--text); }

    /* ── Why us section ── */
    .why-section {
      background: var(--white);
      border-top: 1px solid rgba(10,61,107,0.07);
      padding: 72px 5vw;
    }
    .why-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-eyebrow {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
      text-align: center;
    }
    .section-title-centered {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--text);
      text-align: center;
      margin-bottom: 48px;
      line-height: 1.2;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    @media(max-width: 760px) { .why-grid { grid-template-columns: 1fr; } }
    .why-card {
      padding: 28px;
      background: var(--off-white);
      border-radius: var(--radius);
      border: 1px solid rgba(10,61,107,0.06);
    }
    .why-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--blue), var(--blue-mid));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .why-icon svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
    .why-title {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--blue);
      margin-bottom: 8px;
    }
    .why-desc {
      font-size: 0.875rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ── Bottom CTA ── */
    .bottom-cta {
      background: linear-gradient(135deg, var(--blue) 0%, #1a5fa3 100%);
      padding: 72px 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .bottom-cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 110%, rgba(201,168,76,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .bottom-cta h2 {
      font-family: 'Bodoni Moda', Georgia, serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 14px;
      line-height: 1.2;
      position: relative;
    }
    .bottom-cta p {
      color: rgba(255,255,255,0.72);
      font-size: 1rem;
      max-width: 460px;
      margin: 0 auto 32px;
      line-height: 1.6;
      position: relative;
    }
    .cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }
    .cta-gold {
      display:inline-flex; align-items:center; gap:8px;
      padding:14px 32px;
      background:linear-gradient(135deg,var(--gold),var(--gold-light));
      color:var(--blue); font-family:'Inter',sans-serif; font-size:0.9rem; font-weight:700;
      border-radius:50px; text-decoration:none;
      box-shadow:0 4px 20px rgba(201,168,76,0.40);
      transition:transform 0.25s,box-shadow 0.25s;
    }
    .cta-gold:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(201,168,76,0.55); }
    .cta-ghost {
      display:inline-flex; align-items:center; gap:8px;
      padding:14px 32px;
      border:1.5px solid rgba(255,255,255,0.28); color:var(--white);
      font-family:'Inter',sans-serif; font-size:0.9rem; font-weight:500;
      border-radius:50px; text-decoration:none;
      transition:border-color 0.25s,background 0.25s;
    }
    .cta-ghost:hover { border-color:rgba(255,255,255,0.60); background:rgba(255,255,255,0.08); }

    /* ── Reveal ── */
    .reveal { opacity:0; transform:translateY(28px); transition:opacity 0.65s var(--ease),transform 0.65s var(--ease); }
    .reveal.visible { opacity:1; transform:none; }

    /* ── Context banner (referral from beach partner block) ── */
    .context-banner { display:none; align-items:flex-start; gap:12px; background:linear-gradient(135deg,rgba(201,168,76,0.07) 0%,rgba(10,61,107,0.04) 100%); border:1px solid rgba(201,168,76,0.28); border-left:3px solid var(--gold); border-radius:var(--radius-sm); padding:13px 16px; margin-bottom:20px; opacity:0; transform:translateY(-6px); transition:opacity 0.22s ease-out,transform 0.22s ease-out; }
    .context-banner.visible { opacity:1; transform:translateY(0); }
    .context-banner-icon { flex-shrink:0; width:32px; height:32px; border-radius:8px; background:rgba(201,168,76,0.12); display:flex; align-items:center; justify-content:center; }
    .context-banner-icon svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
    .context-banner-text { flex:1; font-size:0.82rem; color:var(--text-mid); line-height:1.5; }
    .context-banner-text strong { color:var(--text); font-weight:600; display:block; margin-bottom:1px; }
    .context-banner-text em { color:var(--blue); font-style:normal; font-weight:600; }
    @media(prefers-reduced-motion:reduce){ .context-banner { transition:none; } }

    /* ── What section ── */
    .what-section { background: var(--off-white); border-top: 1px solid rgba(10,61,107,0.07); padding: 72px 5vw; }
    .what-inner { max-width: 1100px; margin: 0 auto; }
    .what-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
    @media (max-width: 960px) { .what-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 580px) { .what-grid { grid-template-columns: repeat(2, 1fr); } }
    .what-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; border: 1.5px solid rgba(10,61,107,0.07); box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
    .what-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,168,76,0.18); }
    .what-card-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .what-card-icon svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .what-card-title { font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
    .what-card-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
    .what-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.75rem; font-weight: 600; color: var(--blue); margin-top: 10px; text-decoration: none; transition: gap 0.2s; }
    .what-card-link:hover { gap: 8px; }
    .what-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.5; }
    .what-cta-row { text-align: center; margin-top: 40px; }
    .what-cta { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; background: linear-gradient(135deg, var(--blue), var(--blue-mid)); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 20px rgba(10,61,107,0.25); transition: transform 0.25s, box-shadow 0.25s; }
    .what-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,61,107,0.35); }
    .what-cta svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }

    /* ── Slide-to-confirm button ── */
    .sld-wrap { margin-top: 16px; }
    .sld-track {
      position: relative; width: 100%; height: 56px; border-radius: 50px;
      background: rgba(10,61,107,0.055); border: 1.5px solid rgba(10,61,107,0.11);
      overflow: hidden; cursor: grab; user-select: none; -webkit-user-select: none;
      touch-action: pan-y; outline: none;
    }
    .sld-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    .sld-track.sld-dragging { cursor: grabbing; }
    .sld-fill {
      position: absolute; inset: 0; width: 0%; border-radius: inherit;
      background: linear-gradient(135deg, rgba(10,61,107,0.09), rgba(26,95,163,0.07));
      pointer-events: none; will-change: width;
    }
    .sld-track.sld-success .sld-fill {
      width: 100% !important;
      background: linear-gradient(135deg, rgba(39,174,96,0.16), rgba(46,204,113,0.10));
      transition: background 0.35s ease;
    }
    .sld-thumb {
      position: absolute; top: 4px; left: 4px; width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 3px 12px rgba(201,168,76,0.50), 0 1px 3px rgba(0,0,0,0.08);
      will-change: transform; flex-shrink: 0;
    }
    .sld-thumb svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .sld-arrow { display: block; }
    .sld-spinner {
      display: none; width: 18px; height: 18px;
      border: 2.5px solid rgba(10,61,107,0.18); border-top-color: var(--blue);
      border-radius: 50%;
    }
    .sld-check { display: none; width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .sld-track.sld-loading .sld-thumb { animation: sld-pulse 0.9s ease-in-out infinite; }
    .sld-track.sld-loading .sld-arrow { display: none; }
    .sld-track.sld-loading .sld-spinner { display: block; animation: sld-spin 0.65s linear infinite; }
    .sld-track.sld-success .sld-thumb {
      background: linear-gradient(135deg, #27ae60, #2ecc71);
      box-shadow: 0 3px 12px rgba(39,174,96,0.50);
      animation: none;
    }
    .sld-track.sld-success .sld-arrow, .sld-track.sld-success .sld-spinner { display: none; }
    .sld-track.sld-success .sld-check { display: block; }
    .sld-label {
      position: absolute; left: 68px; right: 16px; top: 0; bottom: 0;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
      color: var(--text-mid); pointer-events: none; white-space: nowrap;
    }
    .sld-label svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.5; flex-shrink: 0; opacity: 0.65; }
    .sld-track.sld-loading .sld-label { color: var(--blue); }
    .sld-track.sld-loading .sld-label svg { display: none; }
    .sld-track.sld-success .sld-label { color: #1a7a3c; font-weight: 700; }
    .sld-track.sld-success .sld-label svg { display: none; }
    @keyframes sld-spin { to { transform: rotate(360deg); } }
    @keyframes sld-pulse {
      0%, 100% { box-shadow: 0 3px 12px rgba(201,168,76,0.50); }
      50%       { box-shadow: 0 3px 22px rgba(201,168,76,0.88); }
    }
    @keyframes sld-shake {
      0%, 100% { transform: translateX(0); }
      20%       { transform: translateX(-8px); }
      40%       { transform: translateX(7px); }
      60%       { transform: translateX(-5px); }
      80%       { transform: translateX(4px); }
    }
    .sld-track.sld-shake { animation: sld-shake 0.38s ease; }
    @media (prefers-reduced-motion: reduce) {
      .sld-fill, .sld-thumb, .sld-label { transition: none !important; }
      .sld-track.sld-loading .sld-thumb { animation: none !important; }
      .sld-track.sld-shake { animation: none !important; }
      .sld-spinner { animation: none !important; }
    }
    /* ── Success actions — mobile stack ── */
    @media (max-width: 480px) {
      .success-actions { flex-direction: column; align-items: stretch; }
      .success-btn-primary, .success-btn-outline { justify-content: center; }
    }
