:root {
    --ink: #0a1628;
    --ink-soft: #4a5970;
    --paper: #f6f9fd;
    --paper-2: #e9f0fa;
    --brand: #1e5fbf;
    --brand-dark: #143f85;
    --brand-light: #4a86dc;
    --accent: #f5a623;
    --line: #d8e2f0;
    --green: #1a8044;
    --green-soft: #d6f0e0;
    --red-soft: #fde7e7;
    --red: #c8102e;
    --shadow: 0 10px 30px rgba(10,22,40,.08), 0 2px 6px rgba(10,22,40,.06);
    --shadow-lg: 0 20px 50px rgba(10,22,40,.14);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter Tight', system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
  .container-narrow { max-width: 820px; margin: 0 auto; padding: 0 22px; }
  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    color: var(--ink);
  }
  h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 900; }
  h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
  h3 { font-size: 1.35rem; }
  p { margin: 0; color: var(--ink-soft); }

  .kicker {
    display: inline-block;
    color: var(--brand);
    font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; font-size: .8rem;
    margin-bottom: 12px;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700; font-size: 1.02rem;
    border-radius: 14px; text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    border: none; cursor: pointer;
  }
  .btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 26px rgba(30,95,191,.32); }
  .btn-primary:hover { transform: translateY(-2px); background: var(--brand-dark); }
  .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.28); }
  .btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: #000; }
  .btn-accent { background: var(--accent); color: var(--ink); }
  .btn-accent:hover { background: #e09418; transform: translateY(-2px); }
  .btn-lg { padding: 18px 32px; font-size: 1.08rem; }
  .btn svg { width: 18px; height: 18px; }

  /* ========== HERO ========== */
  .hero {
    background: linear-gradient(180deg, #0a1628 0%, #143f85 100%);
    color: #fff;
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 18% 30%, rgba(74,134,220,.20), transparent 50%),
      radial-gradient(circle at 82% 70%, rgba(245,166,35,.12), transparent 50%);
  }
  .hero .container { position: relative; z-index: 2; }
  .hero h1 { color: #fff; max-width: 18ch; margin: 0 auto 22px; }
  .hero h1 em { font-style: italic; color: var(--brand-light); font-family: 'Fraunces', serif; font-weight: 500; }
  .hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,.92);
    max-width: 38ch;
    margin: 0 auto 36px;
    line-height: 1.5;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

  /* ========== TRUST STRIP ========== */
  .trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }
  .trust-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px;
  }
  .trust-item .ico {
    width: 38px; height: 38px;
    color: var(--brand);
    display: grid; place-items: center;
  }
  .trust-item .ico svg { width: 28px; height: 28px; }
  .trust-item .lbl {
    font-weight: 700;
    font-size: .98rem;
    color: var(--ink);
  }
  .trust-item .sub {
    font-size: .82rem;
    color: var(--ink-soft);
  }

  /* ========== SECTIONS ========== */
  section { padding: 72px 0; }

  .section-head {
    text-align: center;
    max-width: 60ch;
    margin: 0 auto 50px;
  }
  .section-head p {
    font-size: 1.1rem;
    margin-top: 12px;
    line-height: 1.6;
  }

  /* ========== HEADS-UP CTA CARD ========== */
  .heads-up-section {
    padding: 60px 0 0;
  }
  .heads-up-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    position: relative;
  }
  .heads-up-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
    z-index: 1;
  }

  /* Top row: pin / content / drive CTAs */
  .heads-up-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  /* ========== COUPON TEASER BANNER (top-of-page CTA) ========== */
  .coupon-teaser-bar {
    background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 100%);
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    position: relative;
    overflow: hidden;
  }
  .coupon-teaser-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 10% 50%, rgba(245,166,35,.22), transparent 40%),
      radial-gradient(circle at 90% 50%, rgba(245,166,35,.22), transparent 40%);
    pointer-events: none;
  }
  .coupon-teaser-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .coupon-teaser-icon {
    width: 56px; height: 56px;
    background: var(--accent);
    border-radius: 14px;
    display: grid; place-items: center;
    color: var(--ink);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(245,166,35,.4);
  }
  .coupon-teaser-icon svg { width: 32px; height: 32px; }
  .coupon-teaser-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .coupon-teaser-text strong {
    color: var(--accent);
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.85rem;
    letter-spacing: -0.02em;
    margin-right: 4px;
  }
  .coupon-teaser-btn {
    background: var(--accent);
    color: var(--ink);
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    box-shadow: 0 8px 22px rgba(245,166,35,.35);
  }
  .coupon-teaser-btn:hover {
    transform: translateY(-2px);
    background: #ffb840;
    box-shadow: 0 12px 28px rgba(245,166,35,.5);
  }
  .coupon-teaser-btn svg { width: 18px; height: 18px; }

  /* Floating sticky coupon button (right edge, mid-page) */
  .sticky-coupon {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    background: var(--accent);
    color: var(--ink);
    padding: 14px 22px;
    border-radius: 14px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(245,166,35,.5), 0 4px 10px rgba(10,22,40,.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    animation: stickyPulse 3s ease-in-out infinite;
    border: 2px solid #fff;
  }
  .sticky-coupon:hover {
    transform: translateY(-3px) scale(1.03);
    background: #ffb840;
  }
  .sticky-coupon svg { width: 20px; height: 20px; }
  .sticky-coupon .amount {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--brand-dark);
  }
  @keyframes stickyPulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(245,166,35,.5), 0 4px 10px rgba(10,22,40,.2), 0 0 0 0 rgba(245,166,35,.6); }
    50% { box-shadow: 0 12px 30px rgba(245,166,35,.5), 0 4px 10px rgba(10,22,40,.2), 0 0 0 14px rgba(245,166,35,0); }
  }
  .sticky-coupon-close {
    background: rgba(10,22,40,.15);
    border: none;
    color: var(--ink);
    width: 22px; height: 22px;
    border-radius: 50%;
    display: grid; place-items: center;
    cursor: pointer;
    margin-left: 4px;
    font-size: 14px;
    line-height: 1;
    padding: 0;
    transition: background .2s ease;
  }
  .sticky-coupon-close:hover { background: rgba(10,22,40,.3); }
  .heads-up-card-stub-removed {
    /* container is now structured by .heads-up-top + .heads-up-coupon */
  }

  /* Left: Map pin visual (clean, readable) */
  .heads-up-visual {
    padding: 36px 28px;
    background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid var(--line);
    position: relative;
    min-width: 200px;
  }
  .pin-graphic {
    position: relative;
    width: 96px;
    height: 110px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .pin-graphic svg {
    width: 96px;
    height: 110px;
    filter: drop-shadow(0 8px 14px rgba(30,95,191,.32));
  }
  .pin-distance {
    background: var(--ink);
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .pin-distance strong {
    color: var(--accent);
    font-weight: 800;
  }

  /* Center: heading + body */
  .heads-up-content {
    padding: 32px 32px;
  }
  .heads-up-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--accent);
    color: var(--ink);
    padding: 5px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .heads-up-content h2 {
    font-size: clamp(1.5rem, 2.6vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .heads-up-content h2 em {
    font-style: italic;
    color: var(--brand);
    font-weight: 500;
  }
  .heads-up-content p {
    font-size: 1.02rem;
    color: var(--ink);
    line-height: 1.55;
    margin: 0;
  }

  /* Right: CTA buttons stacked */
  .heads-up-cta {
    padding: 32px 36px 32px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid var(--line);
    align-self: stretch;
    justify-content: center;
  }

  /* Bottom strip: coupon CTA spanning full width */
  .heads-up-coupon {
    background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand) 100%);
    padding: 22px 36px 22px 41px;  /* extra left padding accounts for the 5px accent bar */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }
  .heads-up-coupon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 12% 50%, rgba(245,166,35,.22), transparent 38%),
      radial-gradient(circle at 88% 50%, rgba(245,166,35,.22), transparent 38%);
    pointer-events: none;
  }
  .heads-up-coupon-left {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
  }
  .heads-up-coupon-icon {
    width: 52px; height: 52px;
    background: var(--accent);
    border-radius: 13px;
    display: grid; place-items: center;
    color: var(--ink);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(245,166,35,.4);
  }
  .heads-up-coupon-icon svg { width: 28px; height: 28px; }
  .heads-up-coupon-text {
    color: #fff;
    line-height: 1.1;
  }
  .heads-up-coupon-text .amount {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 2.6rem;
    color: var(--accent);
    letter-spacing: -0.02em;
    display: block;
  }
  .heads-up-coupon-text .label {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,.95);
    margin-top: 6px;
    display: block;
    letter-spacing: -0.01em;
  }
  .heads-up-coupon-btn {
    background: var(--accent);
    color: var(--ink);
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter Tight', sans-serif;
    box-shadow: 0 8px 22px rgba(245,166,35,.35);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  .heads-up-coupon-btn:hover {
    transform: translateY(-2px);
    background: #ffb840;
    box-shadow: 0 12px 28px rgba(245,166,35,.5);
  }
  .heads-up-coupon-btn svg { width: 16px; height: 16px; }

  /* ========== INTRO LOCAL CONTENT ========== */
  .intro-card {
    background: #fff;
    border-radius: 22px;
    padding: 50px 56px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .intro-card h2 { margin-bottom: 18px; }
  .intro-card p {
    color: var(--ink);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .intro-card p:last-child { margin-bottom: 0; }

  /* ========== SERVICES ========== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .service-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .service-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-light);
  }
  .service-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--paper-2), var(--paper));
    border: 1px solid var(--line);
    border-radius: 18px;
    display: grid; place-items: center;
    color: var(--brand);
    margin: 0 auto 16px;
  }
  .service-icon svg { width: 32px; height: 32px; }
  .service-tile h3 { font-size: 1.08rem; margin-bottom: 6px; }
  .service-tile p {
    font-size: .9rem;
    color: var(--ink-soft);
  }

  /* ========== US vs THE GEEKS ========== */
  .vs-section { background: var(--paper-2); }
  .vs-rows {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .vs-row-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    overflow: hidden;
    display: grid;
    grid-template-columns: 240px 1fr 1fr;
  }
  .vs-topic {
    background: var(--ink);
    color: #fff;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .vs-topic .ico {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--accent);
  }
  .vs-topic .ico svg { width: 24px; height: 24px; }
  .vs-topic .label {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.2;
  }
  .vs-cell {
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    position: relative;
  }
  .vs-cell-them {
    background: #f7f4f4;
    border-right: 1px solid var(--line);
  }
  .vs-cell-us {
    background: #fff;
  }
  .vs-cell .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    width: fit-content;
  }
  .vs-cell-them .tag { background: #f0d9d9; color: #a04545; }
  .vs-cell-us .tag { background: var(--green-soft); color: var(--green); }
  .vs-cell .answer {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .vs-cell-them .answer { color: #8a6262; }
  .vs-cell-us .answer { color: var(--ink); }
  .vs-cell .detail {
    font-size: .92rem;
    line-height: 1.45;
  }
  .vs-cell-them .detail { color: #99807d; }
  .vs-cell-us .detail { color: var(--ink-soft); }

  .vs-stat {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1;
    margin-top: 4px;
  }
  .vs-cell-them .vs-stat { color: #b07474; }
  .vs-cell-us .vs-stat { color: var(--brand); }
  .vs-stat small {
    display: block;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--ink-soft);
  }
  .vs-cell-them .vs-stat small { color: #99807d; }

  /* ========== DIRECTIONS w/ DRAWN MAP ========== */
  .directions-section { background: #fff; }
  .directions-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: stretch;
  }
  .map-frame {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  .map-svg {
    width: 100%;
    height: auto;
    display: block;
    background: #e8edf3;
  }
  .map-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .map-meta .stat {
    text-align: center;
    padding: 18px 10px;
    border-right: 1px solid var(--line);
  }
  .map-meta .stat:last-child { border-right: none; }
  .map-meta .v {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--brand);
    line-height: 1;
  }
  .map-meta .l {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ink-soft);
    margin-top: 6px;
    font-weight: 700;
  }

  .directions-text h2 { margin-bottom: 14px; }
  .directions-steps {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    counter-reset: dstep;
  }
  .directions-steps li {
    counter-increment: dstep;
    padding: 16px 0 16px 52px;
    position: relative;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
  }
  .directions-steps li:last-child { border-bottom: none; }
  .directions-steps li::before {
    content: counter(dstep);
    position: absolute;
    left: 0; top: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
  }
  .directions-cta {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px;
  }

  /* ========== CAN'T CARRY IT IN — WITH PHONE GRAPHIC ========== */
  .help-section { padding: 80px 0; }
  .help-card {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(30,95,191,.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    position: relative;
  }
  .help-card::before {
    content: "";
    position: absolute; right: 30%; top: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(245,166,35,.25), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .help-illustration {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  .phone-mockup {
    width: 240px;
    height: 480px;
    background: #0a1628;
    border-radius: 38px;
    padding: 10px;
    box-shadow:
      0 30px 60px rgba(0,0,0,.35),
      0 10px 20px rgba(0,0,0,.25),
      inset 0 0 0 2px #2a3550;
    position: relative;
    transform: rotate(-4deg);
  }
  .phone-mockup::before {
    content: "";
    position: absolute;
    top: 18px; left: 50%;
    transform: translateX(-50%);
    width: 78px; height: 20px;
    background: #0a1628;
    border-radius: 999px;
    z-index: 3;
  }
  .phone-screen {
    background: linear-gradient(180deg, #f5f5f7 0%, #e8e8ed 100%);
    border-radius: 28px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .phone-status {
    padding: 14px 26px 8px;
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    font-weight: 700;
    color: #0a1628;
  }
  .phone-status .right-icons {
    display: inline-flex;
    gap: 4px;
    align-items: center;
  }
  .phone-call-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 18px 18px;
    text-align: center;
  }
  .phone-call-area .label {
    font-size: .72rem;
    color: #6a7286;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 6px;
  }
  .phone-call-area .name {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: #0a1628;
    margin-bottom: 10px;
  }
  .phone-call-area .number {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.55rem;
    color: var(--brand);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }
  .phone-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 2.4rem;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(30,95,191,.3);
  }
  .phone-keypad-hint {
    font-size: .68rem;
    color: #8a92a3;
    margin-bottom: 16px;
    line-height: 1.4;
    max-width: 22ch;
  }
  .phone-call-button {
    width: 64px;
    height: 64px;
    background: #2eb84e;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(46,184,78,.4);
    margin: 0 auto;
    animation: pulseRing 2s ease-in-out infinite;
  }
  .phone-call-button svg {
    width: 28px;
    height: 28px;
    color: #fff;
  }
  @keyframes pulseRing {
    0%, 100% { box-shadow: 0 6px 18px rgba(46,184,78,.4), 0 0 0 0 rgba(46,184,78,.5); }
    50% { box-shadow: 0 6px 18px rgba(46,184,78,.4), 0 0 0 14px rgba(46,184,78,0); }
  }
  .phone-bottom-text {
    font-size: .7rem;
    color: #6a7286;
    margin-top: 12px;
    font-weight: 600;
  }

  /* Floating "tap to call" badge */
  .tap-badge {
    position: absolute;
    top: 28px;
    right: 18px;
    background: var(--accent);
    color: var(--ink);
    padding: 8px 14px;
    border-radius: 999px;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: .85rem;
    transform: rotate(8deg);
    box-shadow: 0 6px 16px rgba(245,166,35,.45);
    z-index: 4;
    white-space: nowrap;
  }
  .tap-badge::before {
    content: "👉";
    margin-right: 4px;
  }

  .help-text {
    padding: 50px 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; z-index: 2;
  }
  .help-badge {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: var(--accent);
    color: var(--ink);
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 18px;
  }
  .help-text h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 2.1rem;
  }
  .help-text p {
    color: rgba(255,255,255,.92);
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .help-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }