:root {
  --brand: #004AAD;
  --brand-700: #003b8b;
  --brand-600: #0f63d1;
  --brand-500: #2f7ae3;
  --brand-400: #69a3f1;
  --brand-100: #eaf3ff;
  --brand-050: #f6f9ff;
  --text: #10233f;
  --muted: #5d6d86;
  --line: #d9e4f3;
  --surface: #ffffff;
  --surface-2: #f7faff;
  --success: #25d366;
  --shadow: 0 16px 40px rgba(0, 42, 97, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 35%, #f8fbff 100%);
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,74,173,.08);
}
.navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 20px;
}
.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-500));
  box-shadow: 0 14px 28px rgba(0,74,173,.24);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brand); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-500));
  color: #fff;
  box-shadow: 0 14px 30px rgba(0,74,173,.22);
}
.btn-secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn-ghost {
  background: rgba(0,74,173,.06);
  color: var(--brand);
}
.hero {
  padding: 54px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
}
.hero-copy .eyebrow,
.section-eyebrow,
.card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 18px 0 16px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  color: var(--muted);
  font-size: 14px;
}
.mini-points span::before {
  content: "✓";
  margin-inline-start: 0;
  margin-inline-end: 8px;
  color: var(--brand);
  font-weight: 900;
}
.hero-panel {
  background: linear-gradient(180deg, #fff, #f4f8ff);
  border: 1px solid rgba(0,74,173,.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.stat-box,
.feature-card,
.plan-card,
.testimonial,
.faq-item,
.info-box,
.form-card,
.page-hero-panel,
.metric-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.stat-box {
  padding: 18px;
}
.stat-box strong {
  display: block;
  font-size: 30px;
  color: var(--brand);
}
.stat-box span { color: var(--muted); font-size: 14px; }
.panel-screen {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.panel-top {
  padding: 14px 16px;
  background: linear-gradient(135deg, #f7faff, #ebf4ff);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.dots { display: flex; gap: 6px; }
.dots span {
  width: 10px; height: 10px; border-radius: 50%; background: #d1def1;
}
.panel-body {
  padding: 20px;
  display: grid;
  gap: 14px;
}
.progress-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
}
.bar {
  height: 10px;
  border-radius: 999px;
  background: #dfe9f8;
  overflow: hidden;
  margin-top: 12px;
}
.bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-400));
}
.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.small-card {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
section {
  padding: 44px 0;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin: 0 0 10px;
}
.section-text,
.lead {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.logo-item {
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}
.cards-3,
.cards-4,
.pricing-grid,
.testimonials-grid,
.metrics-grid,
.steps-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); }
.metrics-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.feature-card,
.metric-card,
.plan-card,
.testimonial,
.faq-item,
.info-box,
.form-card {
  padding: 24px;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-500));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3,
.metric-card h3,
.plan-card h3,
.testimonial h3,
.info-box h3,
.form-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.feature-card p,
.metric-card p,
.plan-card p,
.testimonial p,
.info-box p,
.form-card p {
  margin: 0;
  color: var(--muted);
}
.list-clean {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.list-clean li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
  margin-inline-end: 10px;
}
.plan-card {
  position: relative;
}
.plan-card.featured {
  border: 2px solid rgba(0,74,173,.3);
  transform: translateY(-6px);
}
.plan-badge {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 8px;
}
.plan-price strong {
  font-size: 42px;
  line-height: 1;
  color: var(--brand);
}
.plan-note {
  font-size: 14px;
  color: var(--muted);
}
.testimonial .name {
  font-weight: 800;
  margin-top: 16px;
}
.testimonial .role { color: var(--brand); font-size: 14px; }
.faq-item {
  box-shadow: none;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }
.cta-band {
  background: linear-gradient(135deg, var(--brand), var(--brand-500));
  color: #fff;
  border-radius: 32px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band p { color: rgba(255,255,255,.9); margin: 0; }
.page-hero {
  padding: 38px 0 24px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
}
.page-hero-panel { padding: 22px; }
.metric-card strong {
  display: block;
  font-size: 34px;
  color: var(--brand);
}
.form-card label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.input,
.select,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 4px rgba(0,74,173,.08);
}
.textarea { min-height: 140px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { margin-bottom: 16px; }
.note-box {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--brand-050);
  border: 1px solid rgba(0,74,173,.12);
  border-radius: 16px;
  color: var(--muted);
  font-size: 14px;
}
.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 20px;
}
.footer p,
.footer li,
.footer a { color: var(--muted); }
.footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
.whatsapp-float {
  position: fixed;
  inset-inline-start: 18px;
  bottom: 18px;
  z-index: 120;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  box-shadow: 0 14px 30px rgba(37,211,102,.28);
  font-size: 26px;
}
.ribbon {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.hero-surface {
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand) 0%, #0c63d8 55%, #4a96ff 100%);
  overflow: hidden;
  color: #fff;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,74,173,.28);
}
.hero-surface h3, .hero-surface p { margin: 0; }
.hero-highlights {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-highlight {
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
}
@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .contact-grid,
  .cards-3,
  .pricing-grid,
  .metrics-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .nav-links {
    position: fixed;
    top: 84px;
    inset-inline: 16px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-flex; }
  .nav-actions .btn-secondary { display: none; }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 36px; }
  .hero p,
  .section-text,
  .lead { font-size: 16px; }
  .stats-grid,
  .split-cards,
  .cards-4,
  .logo-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .navbar { min-height: 76px; }
  .brand { font-size: 18px; }
  .cta-band { padding: 26px; border-radius: 24px; }
  .whatsapp-float { inset-inline-start: 12px; bottom: 12px; }
}
