:root {
      --bg: #f5f9f8;
      --bg-soft: #eaf8f5;
      --surface: #ffffff;
      --surface-2: #eaf8f5;
      --line: #d8e7e4;
      --text: #172f2c;
      --muted: #607572;
      --primary: #0f766e;
      --primary-2: #115e59;
      --cyan: #14a394;
      --success: #0f766e;
      --white: #ffffff;
      --shadow: 0 24px 70px rgba(15,70,65,.10);
      --radius: 24px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Manrope", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 4%, rgba(15,118,110,.24), transparent 27%),
        radial-gradient(circle at 90% 18%, rgba(20,163,148,.15), transparent 24%),
        linear-gradient(180deg, #f5f9f8 0%, #eef7f4 52%, #f5f9f8 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .26;
      background-image:
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(90deg, #ffffff 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, black, transparent 72%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, a { -webkit-tap-highlight-color: transparent; }

    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid #d8e7e4;
    }
    .nav-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.3px; }
    .brand-mark {
      width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 10px 28px rgba(15,118,110,.36);
      overflow: hidden;
    }
    .brand-mark img { width: 27px; height: 27px; object-fit: contain;  }
    .brand-fallback { font-size: 19px; font-weight: 900; }
    .brand-text small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .4px; margin-top: 1px; }

    .nav-links { display: flex; align-items: center; gap: 28px; color: #48635e; font-size: 14px; font-weight: 650; }
    .nav-links a:hover { color: white; }
    .nav-actions { display: flex; align-items: center; gap: 12px; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      min-height: 46px; padding: 0 18px; border-radius: 13px; font-weight: 760; font-size: 14px;
      border: 1px solid transparent; transition: .2s ease; white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: white; box-shadow: 0 12px 32px rgba(15,118,110,.28);
    }
    .btn-secondary { border-color: var(--line); background: #ffffff; color: white; }
    .btn-secondary:hover { background: #eaf8f5; }
    .btn-light { background: white; color: #172f2c; }

    .menu-btn { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--surface); color: white; border-radius: 12px; }

    .hero { padding: 92px 0 72px; position: relative; }
    .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 999px;
      background: rgba(15,118,110,.11); border: 1px solid rgba(15,118,110,.25); color: #115e59;
      font-size: 12px; font-weight: 800; letter-spacing: .45px; text-transform: uppercase;
    }
    .eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(20,163,148,.08); }
    h1 { font-size: clamp(44px, 6vw, 76px); line-height: .99; letter-spacing: -3.5px; margin: 22px 0 24px; }
    .gradient-text { background: linear-gradient(90deg, #fff 0%, #0f766e 55%, #14a394 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .hero-copy { color: var(--muted); font-size: 18px; line-height: 1.72; max-width: 650px; margin: 0; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
    .trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 31px; color: #607572; font-size: 13px; }
    .trust-item { display: flex; align-items: center; gap: 8px; }
    .check { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(15,118,110,.12); color: var(--success); border: 1px solid rgba(15,118,110,.25); font-size: 11px; }

    .visual-wrap { position: relative; }
    .glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; filter: blur(80px); background: rgba(15,118,110,.22); right: 8%; top: 20%; z-index: -1; }
    .dashboard {
      border: 1px solid #d8e7e4; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
      background: #ffffff;
      transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
    }
    .dash-top { padding: 18px 20px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
    .dash-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; }
    .dots { display: flex; gap: 6px; }
    .dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
    .dash-body { display: grid; grid-template-columns: 130px 1fr; min-height: 410px; }
    .sidebar { border-right: 1px solid var(--line); padding: 18px 12px; }
    .side-item { padding: 11px 12px; border-radius: 10px; color: #c2dcd6; font-size: 11px; margin-bottom: 7px; display: flex; align-items: center; gap: 8px; }
    .side-item.active { background: rgba(15,118,110,.15); color: #ffffff; }
    .side-dot { width: 7px; height: 7px; border-radius: 3px; background: currentColor; opacity: .9; }
    .dash-main { padding: 20px; }
    .dash-head { display: flex; justify-content: space-between; align-items: end; gap: 15px; }
    .dash-head h3 { margin: 0; font-size: 21px; }
    .dash-head p { margin: 4px 0 0; font-size: 10px; color: var(--muted); }
    .live-pill { font-size: 10px; color: #115e59; padding: 6px 9px; border-radius: 999px; background: rgba(15,118,110,.08); border: 1px solid rgba(15,118,110,.18); }
    .metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 17px; }
    .metric { background: #ffffff; border: 1px solid #d8e7e4; border-radius: 14px; padding: 13px; }
    .metric b { display: block; font-size: 18px; margin-top: 7px; }
    .metric span { font-size: 9px; color: var(--muted); }
    .metric em { font-style: normal; font-size: 9px; color: var(--success); }
    .chart { margin-top: 12px; height: 148px; border-radius: 15px; border: 1px solid #d8e7e4; background: #ffffff; padding: 13px; position: relative; overflow: hidden; }
    .chart-title { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
    .chart svg { position: absolute; left: 10px; right: 10px; bottom: 12px; width: calc(100% - 20px); height: 95px; }
    .activity { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; margin-top: 10px; }
    .panel { border: 1px solid #d8e7e4; background: #ffffff; border-radius: 14px; padding: 12px; min-height: 85px; }
    .panel strong { font-size: 10px; }
    .mini-line { height: 7px; background: #d8e7e4; border-radius: 999px; margin-top: 9px; overflow: hidden; }
    .mini-line i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--cyan)); }

    .section { padding: 88px 0; }
    .section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
    .section-head > div:first-child { max-width: 690px; }
    .kicker { color: #0f766e; text-transform: uppercase; letter-spacing: 1.7px; font-weight: 850; font-size: 11px; }
    h2 { font-size: clamp(32px, 4.2vw, 50px); line-height: 1.08; letter-spacing: -2px; margin: 11px 0 12px; }
    .section-head p, .lead { color: var(--muted); line-height: 1.72; font-size: 16px; margin: 0; }

    .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .card {
      padding: 24px; border-radius: 20px; border: 1px solid var(--line);
      background: linear-gradient(145deg, #ffffff, #ffffff);
      transition: .22s ease; min-height: 210px;
    }
    .card:hover { transform: translateY(-5px); border-color: rgba(15,118,110,.30); background: linear-gradient(145deg, rgba(15,118,110,.10), #ffffff); }
    .icon {
      width: 45px; height: 45px; border-radius: 13px; display: grid; place-items: center;
      background: rgba(15,118,110,.12); border: 1px solid rgba(15,118,110,.22); color: #0f766e;
    }
    .icon svg { width: 22px; height: 22px; }
    .card h3 { margin: 20px 0 9px; font-size: 18px; letter-spacing: -.3px; }
    .card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

    .process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; counter-reset: step; }
    .step { position: relative; padding: 24px 22px; border: 1px solid var(--line); border-radius: 20px; background: #ffffff; }
    .step::before { counter-increment: step; content: "0" counter(step); display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(135deg, rgba(15,118,110,.18), rgba(20,163,148,.10)); border: 1px solid #d8e7e4; color: #115e59; font-weight: 850; font-size: 12px; }
    .step h3 { margin: 20px 0 8px; font-size: 16px; }
    .step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

    .split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 26px; align-items: stretch; }
    .compliance {
      border-radius: 26px; padding: 34px; border: 1px solid rgba(15,118,110,.18);
      background: radial-gradient(circle at top left, rgba(15,118,110,.11), transparent 38%), #ffffff;
    }
    .compliance h2 { margin-top: 16px; }
    .check-list { display: grid; gap: 14px; margin-top: 24px; }
    .check-row { display: flex; gap: 12px; align-items: flex-start; color: #29413e; font-size: 14px; line-height: 1.55; }
    .check-row .check { flex: 0 0 22px; margin-top: 1px; }

    .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat { border: 1px solid var(--line); background: #ffffff; border-radius: 22px; padding: 26px; min-height: 180px; }
    .stat b { display: block; font-size: 34px; letter-spacing: -1.3px; }
    .stat span { display: block; color: var(--muted); font-size: 13px; margin-top: 7px; line-height: 1.5; }
    .stat.highlight { background: linear-gradient(145deg, rgba(15,118,110,.16), rgba(20,163,148,.06)); border-color: rgba(15,118,110,.24); }

    .faq { max-width: 900px; margin: 0 auto; }
    details { border-bottom: 1px solid var(--line); padding: 21px 0; }
    summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-weight: 760; font-size: 16px; }
    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; width: 30px; height: 30px; flex: 0 0 30px; border: 1px solid var(--line); border-radius: 9px; display: grid; place-items: center; color: #607572; font-size: 18px; font-weight: 400; }
    details[open] summary::after { content: "−"; }
    details p { margin: 14px 46px 0 0; color: var(--muted); line-height: 1.68; font-size: 14px; }

    .cta {
      margin-top: 34px; border-radius: 28px; padding: 44px; position: relative; overflow: hidden;
      background: linear-gradient(135deg, #123b38 0%, #115e59 52%, #0f766e 140%);
      box-shadow: 0 30px 70px rgba(15,70,65,.25);
    }
    .cta::after { content: ""; position: absolute; width: 330px; height: 330px; border-radius: 50%; background: #d8e7e4; right: -120px; top: -150px; }
    .cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
    .cta h2 { margin: 0 0 10px; max-width: 640px; }
    .cta p { color: rgba(255,255,255,.78); margin: 0; line-height: 1.6; }
    .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

    footer { padding: 44px 0 26px; color: var(--muted); }
    .footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 35px; padding-bottom: 30px; }
    .footer-brand p { max-width: 520px; font-size: 13px; line-height: 1.7; margin-top: 15px; }
    .footer-col h4 { color: white; font-size: 13px; margin: 0 0 14px; }
    .footer-col a { display: block; font-size: 13px; margin: 10px 0; }
    .footer-col a:hover { color: white; }
    .footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
    .disclaimer { max-width: 760px; }

    .reveal { opacity: 1; transform: none; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 980px) {
      .nav-links { display: none; position: absolute; left: 20px; right: 20px; top: 72px; padding: 16px; border-radius: 16px; border: 1px solid var(--line); background: #172f2c; flex-direction: column; align-items: stretch; gap: 4px; box-shadow: var(--shadow); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 11px 10px; }
      .menu-btn { display: inline-grid; place-items: center; }
      .nav-actions .btn-secondary { display: none; }
      .hero { padding-top: 62px; }
      .hero-grid, .split { grid-template-columns: 1fr; }
      .hero-grid { gap: 52px; }
      .dashboard { max-width: 680px; margin: 0 auto; transform: none; }
      .features { grid-template-columns: repeat(2, 1fr); }
      .process { grid-template-columns: repeat(2, 1fr); }
      .cta-inner { align-items: flex-start; flex-direction: column; }
      .cta-actions { justify-content: flex-start; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 640px) {
      .container { width: min(var(--max), calc(100% - 28px)); }
      .nav-inner { height: 70px; }
      .brand-mark { width: 38px; height: 38px; }
      .brand-text small { display: none; }
      .nav-actions .btn-primary { min-height: 40px; padding: 0 13px; }
      h1 { letter-spacing: -2.2px; }
      .hero-copy { font-size: 16px; }
      .hero-actions .btn { width: 100%; }
      .trust-row { gap: 12px; }
      .dash-body { grid-template-columns: 1fr; }
      .sidebar { display: none; }
      .metric-grid { grid-template-columns: 1fr 1fr; }
      .metric-grid .metric:last-child { grid-column: 1 / -1; }
      .activity { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
      .section-head { align-items: flex-start; flex-direction: column; }
      .features, .process, .stats { grid-template-columns: 1fr; }
      .compliance, .cta { padding: 27px 22px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; }
    }
  
/* Shared BulkMessageWala identity: teal accents, white cards and a soft mint canvas. */
body { background: radial-gradient(ellipse at 85% 5%, #d8f0e9 0%, transparent 35%), var(--bg); overflow-x: visible; }
body::before { display: none; }
.brand-mark { background: transparent; box-shadow: none; border-radius: 12px; flex-shrink: 0; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { color: var(--text); }
.nav-links { gap: 20px; }
.nav-links a:hover, .footer-col a:hover { color: var(--primary); }
.btn-secondary, .menu-btn { color: var(--primary); background: #fff; }
.btn-primary { background: var(--primary); box-shadow: 0 7px 18px rgba(15,118,110,.15); }
.btn-primary:hover { background: var(--primary-2); }
.gradient-text { background: linear-gradient(100deg, #115e59, #0f766e 65%, #14877a); background-clip: text; -webkit-background-clip: text; }
h1 { font-size: clamp(40px, 5.2vw, 68px); line-height: 1.06; letter-spacing: -.055em; }
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; }
.hero-grid > *, .dash-body > *, .features > *, .process > *, .split > * { min-width: 0; }
.dashboard { transform: none; border-color: var(--line); border-radius: 20px; }
.dash-top { background: #fff; }
.dots span { background: #c9dcd8; }
.sidebar { background: #123b38; }
.side-item.active { background: #0f766e; color: #fff; }
.dash-main { background: #f5f9f8; padding: 16px; }
.dash-body { grid-template-columns: 108px minmax(0, 1fr); }
.dash-head { flex-wrap: wrap; }
.dash-head h3 { font-size: 18px; }
.metric-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.metric { padding: 10px; }
.live-pill { color: #115e59; background: #eaf8f5; }
.mini-line { background: #e8f1ee; }
.card, .step, .stat { background: #fff; box-shadow: 0 7px 22px rgba(15,70,65,.04); }
.card:hover { background: #fff; border-color: #89c8bd; box-shadow: 0 12px 28px rgba(15,70,65,.08); }
.icon, .step::before { color: #0f766e; background: #eaf8f5; border-color: #cbe6df; }
.compliance { background: #eaf8f5; border-color: #cbe6df; }
.stat.highlight { background: #eaf8f5; border-color: #cbe6df; }
.cta { color: #fff; background: linear-gradient(120deg, #123b38, #0f766e); }
.cta .btn-secondary { background: transparent; border-color: #78aaa1; color: #fff; }
.cta .btn-secondary:hover { background: rgba(255,255,255,.12); }
.footer-col h4 { color: var(--text); }
.preview-note { text-align: center; color: var(--muted); font-size: 12px; margin: 16px 0 0; }
section[id], #support { scroll-margin-top: 100px; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #0f766e; outline-offset: 4px; }
.menu-btn { cursor: pointer; flex-shrink: 0; }
.btn { white-space: normal; text-align: center; }
@media (max-width: 1100px) and (min-width: 981px) {
  .nav-inner { gap: 16px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-actions .btn-secondary { display: none; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .nav-links { background: #fff; }
  .dashboard { max-width: 680px; }
}
@media (max-width: 640px) {
  .nav-inner { gap: 8px; }
  .brand { gap: 7px; font-size: 14px; min-width: 0; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-primary { padding: 0 10px; font-size: 13px; }
  .nav-actions .btn-primary > span { display: none; }
  .nav-inner .brand-mark { width: 32px; height: 32px; }
  .menu-btn { width: 38px; height: 42px; }
  .hero { padding-top: 44px; }
  .eyebrow { font-size: 10px; letter-spacing: .2px; padding: 8px 10px; }
  .hero-grid { gap: 36px; }
  .dash-body { grid-template-columns: minmax(0, 1fr); }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dash-top { padding: 14px; }
  .dash-main { padding: 14px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .btn:hover, .card:hover { transform: none; }
}
.cta::after { background: rgba(255,255,255,.08); pointer-events: none; }

/* Pricing */
.pricing-section { background: linear-gradient(180deg, rgba(234,248,245,.48), rgba(255,255,255,.15)); }
.pricing-head { justify-content: center; text-align: center; }
.pricing-head > div:first-child { max-width: 760px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff;
  box-shadow: 0 10px 28px rgba(15,70,65,.05);
}
.price-card.featured { border-color: rgba(15,118,110,.42); box-shadow: 0 18px 42px rgba(15,70,65,.10); }
.price-card.featured::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(15,118,110,.08), transparent 42%); pointer-events: none; }
.price-card-top, .plan-features { position: relative; z-index: 1; }
.popular-badge { position: absolute; top: 20px; right: 20px; z-index: 2; padding: 7px 10px; border-radius: 999px; background: #0f766e; color: #fff; font-size: 10px; line-height: 1; font-weight: 850; letter-spacing: .6px; text-transform: uppercase; }
.plan-label { color: var(--primary); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.price-card h3 { margin: 9px 0 18px; font-size: 20px; letter-spacing: -.45px; }
.plan-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.plan-price .currency { font-size: 24px; font-weight: 800; }
.plan-price strong { font-size: clamp(42px, 4vw, 54px); line-height: .98; letter-spacing: -2.2px; }
.plan-price .period { color: var(--muted); font-size: 14px; font-weight: 650; }
.billing-line { min-height: 24px; margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.billing-line strong { color: var(--text); }
.plan-features { list-style: none; display: grid; gap: 13px; padding: 22px 0 0; margin: 24px 0 0; border-top: 1px solid var(--line); }
.plan-features li { display: flex; align-items: center; gap: 10px; color: #29413e; font-size: 14px; line-height: 1.45; }
.plan-features .check { flex: 0 0 20px; }
.pricing-details { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.pricing-info-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 10px 28px rgba(15,70,65,.04); }
.pricing-info-label { color: var(--primary); font-size: 11px; font-weight: 850; letter-spacing: 1.2px; text-transform: uppercase; }
.pricing-info-card h3 { margin: 7px 0 0; font-size: 20px; }
.message-rate-list, .addon-list { display: grid; gap: 10px; }
.message-rate, .addon-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 14px; border-radius: 14px; background: var(--bg-soft); }
.message-rate span { color: #3e5d58; font-size: 13px; font-weight: 700; }
.message-rate strong { font-size: 15px; }
.message-rate .free-rate { color: var(--primary); }
.addon-row > div { display: grid; gap: 3px; }
.addon-row strong { font-size: 13px; }
.addon-row > div span { color: var(--muted); font-size: 11px; }
.addon-row > b { white-space: nowrap; font-size: 15px; }
.addon-row > b span { color: var(--muted); font-size: 10px; font-weight: 650; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { max-width: 720px; width: 100%; margin: 0 auto; }
  .pricing-details { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .price-card, .pricing-info-card { padding: 22px; }
  .pricing-info-card { grid-template-columns: 1fr; gap: 18px; }
  .popular-badge { top: 17px; right: 17px; }
  .plan-price strong { font-size: 44px; }
}

/* Pricing details inside each plan card */
.plan-common-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.plan-detail-block { min-width: 0; }
.plan-detail-heading { margin-bottom: 10px; }
.plan-detail-heading h4 {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -.2px;
}
.price-card .compact-list { gap: 8px; }
.price-card .message-rate,
.price-card .addon-row {
  padding: 11px 12px;
  border-radius: 12px;
}
.price-card .addon-row { align-items: flex-start; }
.price-card .addon-row > b { text-align: right; }

@media (max-width: 1120px) and (min-width: 721px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .price-card { max-width: none; margin: 0; }
  .price-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 9px); justify-self: center; width: 100%; }
}
@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { width: 100%; max-width: none; margin: 0; padding: 22px; border-radius: 20px; }
  .plan-common-details { gap: 16px; margin-top: 20px; padding-top: 20px; }
  .price-card .message-rate,
  .price-card .addon-row { gap: 10px; }
}
@media (max-width: 420px) {
  .price-card { padding: 18px; }
  .popular-badge { position: static; display: inline-flex; width: fit-content; margin-bottom: 12px; }
  .price-card.featured .price-card-top { margin-top: 0; }
  .plan-price strong { font-size: 40px; }
  .plan-price .currency { font-size: 21px; }
  .billing-line { min-height: auto; }
  .price-card .addon-row { align-items: center; }
  .price-card .addon-row > div { min-width: 0; }
  .price-card .addon-row > b { font-size: 14px; }
}
