:root {
    --verde: #00A651;
    --verde-escuro: #007a3c;
    --verde-claro: #e6f7ef;
    --azul: #1A2E4A;
    --azul-claro: #2a4060;
    --laranja: #F5A623;
    --branco: #ffffff;
    --cinza-claro: #f4f6f9;
    --cinza-texto: #5a6a7e;
    --whatsapp: #25D366;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--azul);
    background: var(--branco);
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,166,81,0.12);
    box-shadow: 0 2px 20px rgba(26,46,74,0.06);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.7rem; font-weight: 800;
    color: var(--verde);
    letter-spacing: -0.5px;
  }
  .logo span { color: var(--azul); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--azul); text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--verde); }
  .btn-nav {
    background: var(--verde); color: #fff;
    border: none; border-radius: 8px;
    padding: 10px 22px; font-size: 0.88rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: background .2s, transform .15s;
    font-family: 'Syne', sans-serif;
  }
  .btn-nav:hover { background: var(--verde-escuro); transform: translateY(-1px); }
  .menu-toggle { display: none; background: none; border: none; cursor: pointer; }

  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--azul) 0%, #253f60 60%, #1e3550 100%);
    padding: 140px 24px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300A651' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--laranja); color: #fff;
    padding: 6px 16px; border-radius: 30px;
    font-size: 0.82rem; font-weight: 700;
    margin-bottom: 24px; letter-spacing: 0.3px;
    font-family: 'Syne', sans-serif;
  }
  .hero-badge::before { content: '⏰'; }
  #countdown { font-size: 1.1em; }
  .hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero h1 em { color: var(--verde); font-style: normal; }
  .hero p {
    font-size: 1.1rem; color: rgba(255,255,255,0.78);
    line-height: 1.65; margin-bottom: 36px;
  }
  .hero-trustpills {
    display: flex; flex-wrap: wrap; gap: 16px;
  }
  .trustpill {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
  }
  .trustpill svg { flex-shrink: 0; }

  /* ── FORM CARD ── */
  .form-card {
    background: #fff; border-radius: 20px;
    padding: 36px; box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  }
  .form-card h2 {
    font-size: 1.6rem; font-weight: 800; color: var(--azul);
    margin-bottom: 6px;
  }
  .form-card p { font-size: 0.9rem; color: var(--cinza-texto); margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--azul); margin-bottom: 6px;
  }
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde3ec;
    border-radius: 10px;
    font-size: 0.93rem; font-family: 'DM Sans', sans-serif;
    color: var(--azul);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--verde);
    box-shadow: 0 0 0 3px rgba(0,166,81,0.12);
  }
  .btn-cta {
    width: 100%;
    background: var(--verde); color: #fff;
    border: none; border-radius: 10px;
    padding: 15px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; text-decoration: none; display: block; text-align: center;
    font-family: 'Syne', sans-serif;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,166,81,0.35);
    margin-top: 4px;
  }
  .btn-cta:hover { background: var(--verde-escuro); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,166,81,0.4); }
  .form-footer {
    display: flex; justify-content: center; gap: 20px; margin-top: 16px;
  }
  .form-footer span {
    font-size: 0.78rem; color: #9aa3b0;
    display: flex; align-items: center; gap: 5px;
  }

  /* ── ALERTA ── */
  .alert-bar {
    background: linear-gradient(90deg, var(--laranja) 0%, #f59c0b 100%);
    padding: 16px 24px;
  }
  .alert-bar-inner {
    max-width: 900px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    text-align: center;
  }
  .alert-bar p { color: #fff; font-size: 0.95rem; font-weight: 600; line-height: 1.4; }
  .alert-icon { font-size: 1.3rem; flex-shrink: 0; }

  /* ── SECTION BASE ── */
  section { padding: 80px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800; color: var(--azul);
    margin-bottom: 14px; letter-spacing: -0.3px;
  }
  .section-header h2.white { color: #fff; }
  .section-header p { font-size: 1.05rem; color: var(--cinza-texto); max-width: 600px; margin: 0 auto; }
  .section-header p.white { color: rgba(255,255,255,0.7); }

  /* ── CONSEQUÊNCIAS ── */
  .dark-section { background: var(--azul); }
  .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .card-dark {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 28px;
    transition: background .2s, transform .2s;
  }
  .card-dark:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
  .card-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--laranja);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 16px;
  }
  .card-dark h3 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
  .card-dark p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.55; }

  /* ── COMO FUNCIONA ── */
  .light-section { background: var(--branco); }
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
  .steps-grid::before {
    content: '';
    position: absolute; top: 36px; left: 12.5%; right: 12.5%;
    height: 2px; background: linear-gradient(90deg, var(--verde) 0%, rgba(0,166,81,0.15) 100%);
  }
  .step { text-align: center; }
  .step-num {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--verde); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800;
    margin: 0 auto 20px; position: relative; z-index: 1;
    box-shadow: 0 8px 24px rgba(0,166,81,0.35);
  }
  .step-icon { font-size: 2rem; margin-bottom: 14px; }
  .step h3 { font-size: 1rem; font-weight: 700; color: var(--azul); margin-bottom: 8px; }
  .step p { font-size: 0.87rem; color: var(--cinza-texto); line-height: 1.55; }

  /* ── BENEFÍCIOS ── */
  .gray-section { background: var(--cinza-claro); }
  .benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .benefit-card {
    background: #fff; border-radius: 16px;
    padding: 24px; border: 1px solid #e8edf4;
    box-shadow: 0 2px 12px rgba(26,46,74,0.06);
    transition: box-shadow .2s, transform .2s;
  }
  .benefit-card:hover { box-shadow: 0 8px 32px rgba(26,46,74,0.12); transform: translateY(-3px); }
  .benefit-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--verde-claro);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 14px;
  }
  .benefit-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--azul); margin-bottom: 6px; }
  .benefit-card p { font-size: 0.84rem; color: var(--cinza-texto); line-height: 1.5; }

  /* ── PREÇO ── */
  .pricing-wrapper { max-width: 480px; margin: 0 auto; }
  .pricing-card {
    background: #fff; border: 2.5px solid var(--verde);
    border-radius: 24px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,166,81,0.18);
    position: relative;
  }
  .pricing-badge {
    position: absolute; top: 24px; right: 24px;
    background: var(--laranja); color: #fff;
    padding: 6px 14px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700;
    font-family: 'Syne', sans-serif;
    display: flex; align-items: center; gap: 5px;
  }
  .pricing-body { padding: 40px; }
  .pricing-body h3 { font-size: 1.4rem; font-weight: 800; color: var(--azul); margin-bottom: 24px; }
  .price-old { font-size: 1.1rem; color: #aaa; text-decoration: line-through; margin-bottom: 4px; }
  .price-new { font-size: 3.2rem; font-weight: 800; color: var(--verde); font-family: 'Syne', sans-serif; line-height: 1; }
  .price-new span { font-size: 1.5rem; vertical-align: top; margin-top: 6px; display: inline-block; }
  .price-installments { font-size: 0.88rem; color: var(--cinza-texto); margin-top: 4px; margin-bottom: 28px; }
  .pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
  .pricing-features li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.92rem; color: #3a4a5e;
  }
  .check-icon {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--verde);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.75rem; color: #fff;
  }
  .pricing-safe { text-align: center; font-size: 0.82rem; color: #9aa3b0; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 5px; }

  /* ── DEPOIMENTOS ── */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testimonial-card {
    background: #fff; border-radius: 16px;
    padding: 28px; border: 1px solid #e8edf4;
    box-shadow: 0 2px 16px rgba(26,46,74,0.07);
    transition: box-shadow .2s;
  }
  .testimonial-card:hover { box-shadow: 0 8px 32px rgba(26,46,74,0.12); }
  .testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
  .avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--verde);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem;
  }
  .testimonial-name { font-weight: 700; color: var(--azul); font-size: 0.95rem; }
  .testimonial-city { font-size: 0.8rem; color: var(--cinza-texto); }
  .stars { color: var(--laranja); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
  .testimonial-card p { font-size: 0.9rem; color: #4a5a6e; line-height: 1.6; font-style: italic; }

  /* ── FAQ ── */
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: #fff; border: 1px solid #e2e8f0;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 1px 8px rgba(26,46,74,0.05);
  }
  .faq-question {
    width: 100%; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    background: none; border: none; cursor: pointer; text-align: left;
    font-size: 0.98rem; font-weight: 700; color: var(--azul);
    font-family: 'Syne', sans-serif;
    transition: background .15s;
  }
  .faq-question:hover { background: var(--verde-claro); }
  .faq-arrow {
    flex-shrink: 0;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--verde-claro); color: var(--verde);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: transform .3s, background .2s;
  }
  .faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--verde); color: #fff; }
  .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: var(--cinza-texto); line-height: 1.65; }
  .faq-item.open .faq-answer { max-height: 300px; }

  /* ── CTA FINAL ── */
  .cta-section { background: var(--azul); text-align: center; }
  .cta-section h2 { color: #fff; margin-bottom: 16px; }
  .cta-section p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
  .btn-hero {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--verde); color: #fff;
    border: none; border-radius: 12px;
    padding: 18px 40px; font-size: 1.05rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
    font-family: 'Syne', sans-serif;
    box-shadow: 0 8px 32px rgba(0,166,81,0.4);
    transition: background .2s, transform .15s, box-shadow .2s;
  }
  .btn-hero:hover { background: var(--verde-escuro); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,166,81,0.5); }
  .cta-note { margin-top: 16px; color: rgba(255,255,255,0.45); font-size: 0.88rem; }

  /* ── FOOTER ── */
  footer { background: #111e2e; color: rgba(255,255,255,0.65); padding: 60px 24px 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
  .footer-brand h3 { font-size: 1.6rem; font-weight: 800; color: var(--verde); margin-bottom: 12px; }
  .footer-brand p { font-size: 0.87rem; line-height: 1.65; margin-bottom: 14px; }
  .footer-brand small { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
  .footer-col h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
  .footer-col p, .footer-col a { font-size: 0.85rem; line-height: 1.9; color: rgba(255,255,255,0.6); text-decoration: none; display: block; }
  .footer-col a:hover { color: var(--verde); }
  .footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 0.85rem; }
  .footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
  .footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

  /* ── WA FLOAT ── */
  .wa-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--whatsapp); color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    text-decoration: none; font-size: 1.7rem;
    animation: pulse-wa 2s infinite;
    transition: transform .2s;
  }
  .wa-float:hover { transform: scale(1.1); }
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .nav-links, .btn-nav { display: none; }
    .menu-toggle { display: block; }
    nav.open .nav-links {
      display: flex; flex-direction: column;
      position: absolute; top: 68px; left: 0; width: 100%;
      background: #fff; padding: 20px 24px;
      border-bottom: 1px solid #e8edf4;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      gap: 0;
    }
    nav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
    nav.open .btn-nav {
      display: block; margin: 16px 24px 8px;
      text-align: center;
    }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 560px) {
    .cards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
  }


/* ══════════════════════════════════════════
   MODAL DE PAGAMENTO
   ══════════════════════════════════════════ */
.mpag-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,40,.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 16px;
  overflow-y: auto;
  animation: mpag-fadein .2s ease;
}
@keyframes mpag-fadein { from { opacity:0 } to { opacity:1 } }

.mpag-box {
  background: #fff;
  border-radius: 18px;
  width: 100%; max-width: 520px;
  max-height: calc(100vh - 32px);
  box-shadow: 0 24px 80px rgba(10,20,40,.3);
  overflow-y: auto;
  overflow-x: hidden;
  margin: auto;
  animation: mpag-slidein .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mpag-slidein { from { transform:translateY(28px); opacity:0 } to { transform:translateY(0); opacity:1 } }

/* Header verde */
.mpag-header {
  background: linear-gradient(135deg, #1A2E4A 0%, #0d1e33 100%);
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.mpag-header-info { display:flex; flex-direction:column; gap:4px; }
.mpag-badge {
  display: inline-block;
  background: #00A651; color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: .82rem;
  padding: 4px 12px; border-radius: 50px;
  width: fit-content;
}
.mpag-price-label {
  color: rgba(255,255,255,.9); font-size:.9rem; margin:0;
}
.mpag-price-label strong { color:#fff; font-size:1.1rem; }
.mpag-price-label small  { color:rgba(255,255,255,.6); font-size:.78rem; }

.mpag-close {
  background: rgba(255,255,255,.12); border: none;
  color: #fff; font-size: 1.1rem; font-weight: 700;
  width: 34px; height: 34px; border-radius: 50%;
  cursor: pointer; line-height:1;
  transition: background .2s;
}
.mpag-close:hover { background: rgba(255,255,255,.25); }

/* Body */
.mpag-body { padding: 28px 28px 24px; }
.mpag-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #1A2E4A; margin: 0 0 6px;
}
.mpag-subtitle { font-size:.88rem; color:#64748b; margin:0 0 22px; }

/* Campos */
.mpag-row { margin-bottom: 14px; }
.mpag-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom:14px; }
.mpag-field { display:flex; flex-direction:column; gap:5px; }
.mpag-field label { font-size:.82rem; font-weight:600; color:#374151; }
.mpag-field input {
  border: 1.5px solid #d1d5db;
  border-radius: 9px;
  padding: 11px 14px;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  color: #1A2E4A;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%; box-sizing: border-box;
}
.mpag-field input:focus {
  border-color: #00A651;
  box-shadow: 0 0 0 3px rgba(0,166,81,.13);
}

.mpag-btn { width:100%; margin-top:6px; font-size:1rem; padding:15px; border-radius:12px; }
.mpag-msg { margin-bottom:0; }
.mpag-safe-note {
  text-align:center; font-size:.78rem; color:#94a3b8;
  margin: 14px 0 0;
}

@media (max-width: 480px) {
  .mpag-row-2 { grid-template-columns: 1fr; }
  .mpag-body  { padding: 22px 18px 20px; }
}

/* ── CEP / Endereço ───────────────────────────── */
.mpag-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0 14px;
  color: #94a3b8; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
}
.mpag-divider::before, .mpag-divider::after {
  content:''; flex:1; height:1px; background:#e5e7eb;
}
.mpag-cep-wrap { position: relative; display: flex; align-items: center; }
.mpag-cep-wrap input { padding-right: 36px; }
.mpag-cep-spinner { position:absolute; right:10px; font-size:.9rem; }
.mpag-cep-hint { font-size:.75rem; color:#94a3b8; margin-top:3px; transition: color .2s; }
.mpag-row-cep .mpag-field { max-width: 200px; }

/* ── PLANS BANNER ────────────────────────────────── */
.plans-banner {
  background: linear-gradient(135deg, #00A651 0%, #007a3c 100%);
  padding: 0 20px;
}
.plans-banner-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.plans-banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.plans-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.plans-banner-text strong {
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.plans-banner-text span {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.plans-banner-btn {
  background: #fff;
  color: #007a3c;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, color .2s, transform .2s;
}
.plans-banner-btn:hover {
  background: #1A2E4A;
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .plans-banner-inner { justify-content: center; text-align: center; }
  .plans-banner-text  { align-items: center; }
  .plans-banner-btn   { width: 100%; text-align: center; }
}