/* ── Variables ─────────────────────────────────────────── */
:root {
  --blue: #2b66a6;
  --blue-dark: #1e4d82;
  --blue-light: #eaf1f8;
  --blue-mid: #8ca8ba;
  --red: #b71c1c;
  --red-light: #fdecea;
  --green: #1b5e20;
  --green-light: #e8f5e9;
  --yellow: #f57f17;
  --yellow-light: #fff8e1;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf0;
  --gray-400: #9aa5b1;
  --gray-600: #555f6b;
  --gray-900: #1a202c;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(43, 102, 166, 0.12);
  --shadow-lg: 0 12px 40px rgba(43, 102, 166, 0.18);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--blue);
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
}

/* ── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: #4273c2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 52px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}
.menu-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
}
.topbar a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.18s,
    transform 0.12s,
    box-shadow 0.18s;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  background: var(--gray-200);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--blue-light);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-400);
}
.btn-outline-dark:hover {
  background: var(--gray-100);
}
.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1a3d7a 0%, #3a6dbf 50%, #669ffa 100%);
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  max-width: 800px;
}
.hero-title-accent {
  display: block;
  color: #93c5fd;
  font-size: 0.75em;
  font-weight: 600;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
  max-width: 620px;
}
.hero-sub strong {
  color: #fcd34d;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Sections ───────────────────────────────────────────── */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--gray-100);
}
.section-white {
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.free-tag {
  background: #e8f5e9;
  color: #1b5e20;
}
.premium-tag {
  background: #fff8e1;
  color: #b45309;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Benefits Grid ──────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon-blue {
  background: var(--blue-light);
  color: var(--blue);
}
.benefit-icon-green {
  background: var(--green-light);
  color: var(--green);
}
.benefit-icon-orange {
  background: var(--yellow-light);
  color: var(--yellow);
}
.benefit-icon-red {
  background: var(--red-light);
  color: var(--red);
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Features List ──────────────────────────────────────── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 32px;
  align-items: center;
}
.feature-item-reverse {
  direction: rtl;
}
.feature-item-reverse > * {
  direction: ltr;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
}
.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.feature-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.feature-img {
  width: 380px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.feature-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ── CTA Sections ───────────────────────────────────────── */
.cta-section {
  padding: 64px 0;
}
.cta-blue {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
}
.cta-dark {
  background: var(--gray-900);
  color: #fff;
}
.cta-final {
  background: linear-gradient(135deg, #0d2b52 0%, #1e4d82 60%, #2b66a6 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-container h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-container p {
  font-size: 0.95rem;
  opacity: 0.85;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-actions-center {
  justify-content: center;
}
.cta-final-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-final-icon {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #93c5fd;
}
.cta-final h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-final p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 36px;
}
.cta-links {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.7;
}
.cta-links a {
  color: rgba(255, 255, 255, 0.85);
}
.cta-links a:hover {
  color: #fff;
}

/* ── Plan Cards ─────────────────────────────────────────── */
.plan-card {
  max-width: 560px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  background: #fff;
}
.plan-free .plan-header {
  background: var(--gray-100);
  padding: 32px 36px 24px;
}
.plan-premium .plan-header-premium {
  background: linear-gradient(135deg, #0d2b52, #2b66a6);
  color: #fff;
  padding: 32px 36px 24px;
}
.plan-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.plan-badge-free {
  background: #e8f5e9;
  color: var(--green);
}
.plan-badge-premium {
  background: rgba(255, 255, 255, 0.2);
  color: #fcd34d;
}
.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.plan-header-premium h3 {
  color: #fff;
}
.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
}
.plan-price-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}
.plan-features {
  list-style: none;
  padding: 24px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan-feat-ok,
.plan-feat-na,
.plan-feat-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.plan-feat-ok {
  color: var(--gray-900);
}
.plan-feat-ok svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.plan-feat-na {
  color: var(--gray-400);
}
.plan-feat-na svg {
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 3px;
}
.plan-feat-info {
  color: var(--gray-600);
  font-style: italic;
}
.plan-feat-info svg {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 3px;
}
.plan-free .btn-full {
  margin: 0 36px 32px;
  width: calc(100% - 72px);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.plans-grid .plan-card {
  max-width: none;
}
.plans-grid .plan-free .btn-full {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
}
.premium-features-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.premium-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.plan-premium .premium-feature {
  border-bottom: 1px solid var(--gray-200);
}
.plan-premium .premium-feature:last-child {
  border-bottom: none;
}
.pf-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.premium-feature h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--gray-900);
}
.premium-feature p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.premium-cta {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-100);
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-200);
}
@media (max-width: 860px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Steps ──────────────────────────────────────────────── */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.step-bubble {
  width: 56px;
  height: 56px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  z-index: 1;
  position: relative;
}
.step-line {
  position: absolute;
  top: 27px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--gray-200);
}
.step-line-none {
  display: none;
}
.step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.step-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── Audience ───────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.audience-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s;
}
.audience-card:hover {
  box-shadow: var(--shadow);
}
.audience-icon {
  margin-bottom: 20px;
}
.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.audience-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}
.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.audience-list li {
  font-size: 0.85rem;
  color: var(--blue-dark);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}
.audience-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* ── Comparison Table ───────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-900);
}
.comparison-table thead tr {
  background: #629af5;
  color: #fff;
}
.comparison-table thead th:first-child {
  color: #000000;
}
.comparison-table thead th {
  border-bottom: none;
  padding: 16px 20px;
}
.comparison-table tbody tr:hover {
  background: var(--gray-100);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.col-sat {
  color: var(--gray-100);
}
.col-dm {
  color: var(--gray-100);
  font-weight: 500;
}
.badge-yes {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-no {
  display: inline-block;
  background: var(--red-light);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.badge-partial {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.comparison-note {
  font-size: 0.88rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}
.comparison-note a {
  color: var(--blue);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover {
  background: var(--gray-100);
}
.faq-question[aria-expanded="true"] {
  background: var(--blue-light);
  color: var(--blue-dark);
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
  background: #fff;
}
.faq-question[aria-expanded="true"] + .faq-answer {
  background: var(--blue-light);
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand strong {
  color: #fff;
  font-size: 1rem;
}
.footer-brand p {
  font-size: 0.82rem;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 52px 0 48px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stat-div {
    display: none;
  }

  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }
  .feature-item-reverse {
    direction: ltr;
  }
  .feature-num {
    display: none;
  }
  .feature-img {
    width: 100%;
  }

 
  .premium-feature:nth-last-child(2) {
    border-bottom: 1px solid var(--gray-200);
  }

  .cta-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-line {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }

  .topbar {
    padding: 0 12px;
    height: auto;
    padding: 8px 12px;
  }
  .menu-left {
    gap: 4px;
  }
  .topbar a {
    font-size: 0.78rem;
    padding: 5px 8px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .comparison-table {
    font-size: 0.8rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.plans-grid .plan-card {
  max-width: none;
}
.plans-grid .plan-free .btn-full {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
}
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}
.btn-outline-blue {
  background: #fff;
  color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-dark);
}
