:root {
      --primary-blue: #1a73e8;
      --primary-blue-dark: #0d47a1;
      --bg-light: #f6f8fb;
      --bg-soft-blue: #e8f0fe;
      --text-dark: #1a2e35;
      --text-muted: #64748b;
      --card-border: rgba(148, 163, 184, 0.25);
      --shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.08);
      --shadow-hero: 0 16px 40px rgba(15, 23, 42, 0.16);
      --white: #ffffff;
      --radius-lg: 22px;
      --radius-md: 14px;
      --sticky-height: 80px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background: radial-gradient(circle at top left, #e8f0fe, #f6f8fb);
      color: var(--text-dark);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      padding-top: 64px;
      padding-bottom: var(--sticky-height);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      max-width: 480px;
      margin: 0 auto;
      padding: 10px 14px 20px;
    }

    /* Header */

    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 40;
      background: rgba(246, 248, 251, 0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
      padding: 8px 10px 10px;
    }

    .header-inner {
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 12px;
      background: radial-gradient(circle at 30% 30%, #4a9cff, var(--primary-blue));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
      box-shadow: 0 8px 20px rgba(26, 115, 232, 0.4);
    }

    .logo-text-main {
      font-weight: 700;
      letter-spacing: -0.02em;
      font-size: 18px;
    }

    .logo-text-sub {
      font-size: 11px;
      color: var(--text-muted);
    }

    .header-call {
      text-align: right;
      font-size: 11px;
      color: var(--text-muted);
    }

    .header-call strong {
      display: block;
      font-size: 14px;
      color: var(--text-dark);
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 2px;
    }

    .live-dot span:first-child {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      position: relative;
      box-shadow: 0 0 0 4px rgba(34,197,94,0.3);
    }

    .live-dot span:first-child::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: #22c55e;
      opacity: 0.8;
      animation: pulse 1.6s infinite ease-out;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.9; }
      70% { transform: scale(2.3); opacity: 0; }
      100% { transform: scale(2.3); opacity: 0; }
    }

    /* Hero */

    .hero {
      margin-top: 10px;
      border-radius: 26px;
      padding: 14px 6px;
      background:
        radial-gradient(circle at top left, #e8f0fe, #ffffff 50%, #e8f0fe 100%);
      box-shadow: var(--shadow-hero);
    }

    .hero-inner {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: center;
      text-align: center;
    }

    

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(148,163,184,0.35);
      box-shadow: 0 6px 18px rgba(15,23,42,0.08);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin: 0 auto 10px;
    }

    .hero-chip-badge {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(26,115,232,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--primary-blue);
    }

    .hero-title {
      font-size: 24px;
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .hero-text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .hero-phone {
      display: inline-flex;
      flex-direction: column;
      gap: 2px;
      padding: 7px 11px;
      border-radius: 999px;
      background-image: linear-gradient(135deg, rgba(232,240,254,0.8), rgba(191,219,254,0.9));
      border: 1px solid rgba(148,163,184,0.6);
      margin: 0 auto 6px;
      box-shadow: 0 10px 24px rgba(15,23,42,0.20);
    }

    .hero-phone span:first-child {
      font-size: 15px;
      font-weight: 700;
    }

    .hero-phone span:last-child {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
      justify-content: center;
    }

    .hero-tag {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 3px 8px;
      border-radius: 999px;
      background: #f1f5f9;
      border: 1px solid rgba(148,163,184,0.5);
      color: var(--text-dark);
    }

    .hero-cta {
      margin-top: 10px;
      text-align: center;
    }

    
.btn-call-main {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 11px;
  border-radius: 999px;
  background-image: linear-gradient(135deg, rgba(209,250,229,0.90), rgba(134,239,172,0.96));
  border: 1px solid rgba(34,197,94,0.6);
  margin: 10px auto 0;
  box-shadow: 0 10px 24px rgba(22,163,74,0.25);
  color: #065f46;
  font-size: 14px;
  font-weight: 700;
  width: auto;
}


    

    .hero-mini {
      margin-top: 6px;
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-right {
      justify-self: flex-end;
      position: sticky;
      top: 76px;
      z-index: 15;
    }

    @media (max-width: 430px) {
      .hero-right {
        justify-self: center;
        position: sticky;
        top: 76px;
        z-index: 15;
      }
    }

    /* Hero card inspired by reference, but contextual */

    .hero-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15,23,42,0.14);
  padding: 12px 12px 10px;
  width: 125%;
  margin-left: -12.5%;
  font-size: 11px;
  margin-top: 8px;
}

    .hero-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .hero-card-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .hero-card-sub {
      font-size: 10px;
      color: var(--text-muted);
    }

    .hero-voice-status {
      border-radius: 999px;
      padding: 4px 9px;
      background: linear-gradient(135deg, #bbf7d0, #dcfce7);
      font-size: 10px;
      font-weight: 600;
      color: #166534;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 0 0 1px rgba(22,101,52,0.2);
    }

    .live-pulse {
      width: 9px;
      height: 9px;
      background: #22c55e;
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }

    .live-pulse::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #22c55e;
      opacity: 0.7;
      animation: ripple 1.6s infinite ease-out;
    }

    @keyframes ripple {
      0% { transform: scale(1); opacity: 0.8; }
      70% { transform: scale(2.4); opacity: 0; }
      100% { transform: scale(2.4); opacity: 0; }
    }

    .hero-bars-wrap {
      position: relative;
      margin-top: 4px;
      margin-bottom: 6px;
    }

    .hero-bars-bg {
      position: absolute;
      inset: 4px 0 8px;
      border-radius: 16px;
      background: linear-gradient(to top, rgba(26,115,232,0.16), rgba(26,115,232,0.03));
      box-shadow: inset 0 0 0 1px rgba(148,163,184,0.2);
      overflow: hidden;
    }

    .hero-bars-grid {
      position: absolute;
      inset: 8px 10px;
      background-image:
        linear-gradient(to right, rgba(148,163,184,0.18) 1px, transparent 1px),
        linear-gradient(to top, rgba(148,163,184,0.16) 1px, transparent 1px);
      background-size: 40px 1px, 1px 22px;
      opacity: 0.3;
    }

    .hero-bars {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      align-items: flex-end;
      padding: 14px 14px 12px;
      height: 90px;
    }

    .hero-bar {
      border-radius: 999px 999px 14px 14px;
      background-image: linear-gradient(to top, #1a73e8, #8bb4ff);
      box-shadow:
        0 10px 24px rgba(26,115,232,0.35),
        0 0 0 1px rgba(26,115,232,0.32);
      position: relative;
      overflow: hidden;
      transform-origin: bottom center;
      animation: barWave 3.2s ease-in-out infinite;
    }

    .hero-bar::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.9), transparent 55%);
      opacity: 0.8;
    }

    .hero-bar-1 { height: 40px; animation-delay: 0s; }
    .hero-bar-2 { height: 54px; animation-delay: 0.25s; }
    .hero-bar-3 { height: 74px; animation-delay: 0.5s; }
    .hero-bar-4 {
      height: 50px;
      background-image: linear-gradient(to top, #16a34a, #4ade80);
      box-shadow:
        0 10px 24px rgba(22,163,74,0.4),
        0 0 0 1px rgba(22,163,74,0.45);
      position: relative;
      overflow: hidden;
    }
    .hero-bar-4::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -14px;
      height: 28px;
      background:
        radial-gradient(circle at 10% 120%, rgba(74,222,128,0.9) 0, transparent 55%),
        radial-gradient(circle at 50% 120%, rgba(34,197,94,0.95) 0, transparent 55%),
        radial-gradient(circle at 90% 120%, rgba(74,222,128,0.9) 0, transparent 55%);
      opacity: 1;
    }

    .hero-card-footer {
      margin-top: 4px;
      padding-top: 2px;
      font-size: 10px;
      color: var(--text-muted);
    }

    .hero-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      justify-content: center;
      text-align: center;
    }

    .pill {
      border-radius: 999px;
      padding: 3px 7px;
      background: #f1f5f9;
      color: #0f172a;
      font-size: 10px;
    }

    /* Sections */

    .section {
      margin-top: 18px;
    }

    .section-label {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 6px;
    }

    .card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-soft);
      padding: 14px 13px 13px;
    }

    .section-title {
      font-size: 18px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 6px;
    }

    .section-sub {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 8px;
    }

    /* Problem list */

    .problem-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 6px;
      font-size: 13px;
    }

    .problem-item {
      display: grid;
      grid-template-columns: auto minmax(0,1fr);
      gap: 8px;
      align-items: flex-start;
    }

    .problem-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: rgba(248,113,113,0.1);
      color: #ef4444;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
    }

    .problem-highlight {
      margin-top: 8px;
      padding: 8px 9px;
      border-radius: var(--radius-md);
      background: #ecfdf5;
      font-size: 12px;
      color: #166534;
      border: 1px solid rgba(34,197,94,0.35);
    }

    /* Steps */

    .steps {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 6px;
      font-size: 13px;
    }

    .step {
      display: grid;
      grid-template-columns: auto minmax(0,1fr);
      gap: 9px;
      align-items: flex-start;
      padding: 9px 9px;
      border-radius: var(--radius-md);
      background: #f8fafc;
      border: 1px solid rgba(148,163,184,0.45);
    }

    .step-num {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      background: #fffbeb;
      color: #92400e;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
    }

    /* Services */

    .service-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 6px;
    }

    .service-item {
      padding: 9px 9px;
      border-radius: var(--radius-md);
      background: #f8fafc;
      border: 1px solid rgba(148,163,184,0.45);
      display: grid;
      grid-template-columns: minmax(0,1fr) auto;
      gap: 8px;
      align-items: center;
      font-size: 13px;
    }

    .service-title {
      font-size: 14px;
      font-weight: 600;
    }

    .service-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .service-tag {
      font-size: 11px;
      padding: 4px 7px;
      border-radius: 999px;
      background: rgba(26,115,232,0.08);
      color: var(--primary-blue-dark);
      font-weight: 600;
    }

    /* Stories */

    .story-list {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 6px;
      font-size: 12px;
    }

    .story-item {
      padding: 7px 8px;
      border-radius: var(--radius-md);
      background: #f8fafc;
      border: 1px dashed rgba(148,163,184,0.6);
    }

    .story-meta {
      font-size: 11px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    /* Why call */

    .why-grid {
      display: grid;
      grid-template-columns: minmax(0,1fr);
      gap: 8px;
      margin-top: 6px;
      font-size: 12px;
    }

    .why-box {
      padding: 9px 9px;
      border-radius: var(--radius-md);
      background: #f8fafc;
      border: 1px solid rgba(148,163,184,0.45);
    }

    .why-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    /* Trust & FAQ */

    .trust-points {
      display: flex;
      flex-direction: column;
      gap: 5px;
      font-size: 12px;
      margin-top: 6px;
      color: var(--text-muted);
    }

    .trust-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
      font-size: 11px;
    }

    .trust-pill {
      padding: 4px 8px;
      border-radius: 999px;
      background-image: linear-gradient(135deg, rgba(209,250,229,0.9), rgba(187,247,208,0.98));
      border: 1px solid rgba(34,197,94,0.5);
      color: #065f46;
      
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .faq-q {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    /* Final CTA */

    .final-main {
      text-align: center;
    }

    .final-phone {
      font-size: 19px;
      font-weight: 800;
      margin: 6px 0 8px;
    }

    .final-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
      margin-top: 8px;
      font-size: 11px;
    }

    .final-tag {
      padding: 4px 8px;
      border-radius: 999px;
      background: #f8fafc;
      border: 1px solid rgba(148,163,184,0.6);
    }

    /* Footer */

    .footer {
      margin-top: 18px;
      font-size: 10px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    

    /* Sticky bar */

    .sticky-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 30;
      background: #0f172a;
      color: #e5e7eb;
      padding: 8px 10px 10px;
      box-shadow: 0 -12px 26px rgba(15,23,42,0.4);
    }

    .sticky-inner {
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .sticky-copy {
      flex: 1;
      font-size: 11px;
      line-height: 1.4;
    }

    .sticky-copy strong {
      display: block;
      font-size: 13px;
    }

    .btn-sticky {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 12px;
      border-radius: 999px;
      background: var(--primary-blue);
      border: none;
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 12px 30px rgba(26,115,232,0.4);
    }

    .dot-pulse {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34,197,94,0.35);
      position: relative;
    }

    .dot-pulse::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: #22c55e;
      opacity: 0.8;
      animation: pulse 1.6s infinite ease-out;
    }
  
    .hero-bar::before {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -16px;
      font-size: 9px;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .hero-bar-1::before { content: "<strong>0–60s</strong>"; }
    .hero-bar-2::before { content: "<strong>60–120s</strong>"; }
    .hero-bar-3::before { content: "<strong>Completing</strong>"; }
    .hero-bar-4::before {
      content: "<strong>Available</strong>";
      color: #ef4444;
      font-weight: 700;
    }

    .hero-bar-4 {
      height: 50px;
      background-image: linear-gradient(to top, #16a34a, #4ade80);
      box-shadow:
        0 10px 24px rgba(22,163,74,0.4),
        0 0 0 1px rgba(22,163,74,0.45);
      position: relative;
      overflow: hidden;
    }
    .hero-bar-4::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0, rgba(255,255,255,0.95), transparent 60%);
      opacity: 0.9;
    }


    


    


    .pill-wait {
      margin-top: 9px;
      font-weight: 600;
      font-size: 11px;
      color: #f97316;
    }


    @keyframes barWave {
      0%   { transform: scaleY(0.92) translateY(0); }
      25%  { transform: scaleY(1.02) translateY(-2px); }
      50%  { transform: scaleY(1.06) translateY(-3px); }
      75%  { transform: scaleY(1.0) translateY(-1px); }
      100% { transform: scaleY(0.96) translateY(0); }
    }


    .hero-bars-labels {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      font-size: 10px;
      color: #6b7280;
      margin: 4px 6px 0;
      text-align: center;
    }

    .hero-bars-labels span:last-child {
      font-weight: 600;
      color: #ef4444;
    }


    .footer-notes {
      text-align: left;
    }
    .footer-notes p {
      margin-bottom: 4px;
    }

    .footer-links {
      text-align: center;
      margin-top: 8px;
    }
    .footer-links a {
      color: #1d4ed8;
      text-decoration: underline;
      margin: 0 3px;
    }

    .footer-company {
      text-align: center;
      margin-top: 6px;
    }


    .card-soft {
      background: radial-gradient(circle at top left, rgba(219,234,254,0.55), rgba(248,250,252,0.9));
      border-color: rgba(148,163,184,0.45);
    }

    .trust-lead {
      margin: 4px 0 8px;
      font-size: 11px;
      color: #4b5563;
    }

    .trust-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .trust-pill {
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(209,213,219,0.3);
      font-size: 10px;
      color: #374151;
    }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }


    .card-center {
      text-align: center;
    }
    .card-center .trust-pill-row,
    .card-center .faq-list {
      justify-content: center;
    }


    .card-emphasis {
      background: radial-gradient(circle at top left, rgba(219,234,254,0.9), rgba(248,250,252,0.98));
      border-color: rgba(37,99,235,0.55);
      box-shadow: 0 18px 40px rgba(15,23,42,0.16);
    }
    .card-emphasis .section-title {
      font-size: 15px;
      color: #0f172a;
    }
    .card-emphasis .problem-list {
      margin-top: 10px;
    }
    .card-emphasis .problem-item {
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(255,255,255,0.8);
      border: 1px solid rgba(148,163,184,0.4);
    }
    .card-emphasis .problem-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59,130,246,0.1);
    }


    .call-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15,23,42,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 80;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.22s ease-out;
      padding: 12px;
    }
    .call-popup-overlay.is-visible {
      opacity: 1;
      pointer-events: auto;
    }
    .call-popup {
      max-width: 380px;
      width: 100%;
      border-radius: 24px;
      background: #ffffff;
      box-shadow: 0 28px 70px rgba(15,23,42,0.4);
      padding: 14px 14px 16px;
      position: relative;
      text-align: center;
    }
    .call-popup-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,0.7);
      background: rgba(248,250,252,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #6b7280;
      cursor: pointer;
    }
    .call-popup-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-weight: 700;
      font-size: 15px;
      color: #111827;
      margin-bottom: 8px;
    }
    .call-popup-dot {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
      box-shadow: 0 0 0 3px rgba(34,197,94,0.3);
    }
    .call-popup-sub {
      font-size: 12px;
      color: #4b5563;
      margin-bottom: 10px;
    }
    .call-popup-main-card {
      border-radius: 20px;
      background: radial-gradient(circle at top left, rgba(239,246,255,0.95), rgba(219,234,254,0.98));
      box-shadow: inset 0 0 0 1px rgba(148,163,184,0.5);
      padding: 12px 10px 10px;
      margin-bottom: 10px;
    }
    .call-popup-number {
      font-size: 18px;
      font-weight: 800;
      color: #111827;
      letter-spacing: 0.02em;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }
    .call-popup-number span.icon {
      font-size: 17px;
    }
    .call-popup-cta {
      margin-top: 4px;
    }
    .call-popup-cta a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      border-radius: 999px;
      background-image: linear-gradient(135deg, #fb923c, #f97316);
      padding: 11px 16px;
      color: #ffffff;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 18px 40px rgba(248,113,113,0.45);
    }
    .call-popup-cta a span.icon {
      font-size: 18px;
    }
    .call-popup-meta {
      font-size: 11px;
      color: #6b7280;
      line-height: 1.45;
      margin-top: 6px;
    }
    .call-popup-meta span {
      display: block;
    }
    .call-popup-links {
      font-size: 11px;
      margin-top: 8px;
    }
    .call-popup-links a {
      color: #1d4ed8;
      text-decoration: underline;
      margin: 0 3px;
    }


    .live-dot span:last-child {
      font-weight: 600;
    }


    .call-popup-dot {
      position: relative;
    }
    .call-popup-dot::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: #22c55e;
      opacity: 0.8;
      animation: pulse 1.6s infinite ease-out;
    }
