:root {
  --navy: #0B1F3A;
  --blue: #1D4ED8;
  --gold: #C89B3C;
  --gold-dark: #9C6B16;
  --green: #15803D;
  --text: #111827;
  --muted: #6B7280;
  --line: #E5E7EB;
  --soft: #F8FAFC;
  --soft-blue: #EFF6FF;
  --white: #FFFFFF;
  --shadow: 0 20px 50px rgba(11,31,58,.14);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(200,155,60,.14);
  color: #7C4F0E;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.h1, h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.055em; margin: 18px 0 18px; color: var(--navy); }
.h2, h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.04em; margin: 0 0 16px; color: var(--navy); }
.h3, h3 { font-size: 22px; line-height: 1.2; margin: 0 0 10px; color: var(--navy); }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: clamp(18px, 2.2vw, 22px); color: #374151; max-width: 790px; }
.text-center { text-align: center; }
.center { margin-left: auto; margin-right: auto; }
.bg-soft { background: var(--soft); }
.bg-navy { background: var(--navy); color: white; }
.bg-navy p, .bg-navy .lead { color: rgba(255,255,255,.76); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: white; }
.gold { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,231,235,.78);
}
.navbar { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 800; font-size: 14px; color: #243247; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: transparent; border: 0; font-size: 28px; color: var(--navy); cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(11,31,58,.18); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1842b8; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-outline { border-color: rgba(11,31,58,.18); color: var(--navy); background: white; }
.btn-white { background: white; color: var(--navy); }
.btn-whatsapp { background: #16A34A; color: white; }
.btn-lg { padding: 17px 25px; font-size: 16px; }
.btn-block { width: 100%; }

.hero {
  padding: 94px 0 70px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(29,78,216,.10), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(200,155,60,.18), transparent 26%),
    linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; }
.hero-card {
  position: relative;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
  padding: 16px;
  border: 1px solid #E4EAF5;
}
.hero-card::before {
  content: "Live Demo Preview";
  position: absolute;
  top: -17px;
  right: 36px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(11,31,58,.2);
}
.hero-card img { border-radius: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 18px; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}
.trust-pill span { color: var(--green); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(11,31,58,.05);
}
.card:hover { border-color: #C7D2FE; box-shadow: 0 20px 45px rgba(11,31,58,.09); }
.icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 16px;
}
.icon.gold-bg { background: rgba(200,155,60,.16); color: var(--gold-dark); }
.icon.green-bg { background: #DCFCE7; color: var(--green); }

.problem-list { display: grid; gap: 14px; margin-top: 24px; }
.problem-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.check, .cross {
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 999px; display: grid; place-items: center;
  font-weight: 900; font-size: 14px;
}
.check { background: #DCFCE7; color: #15803D; }
.cross { background: #FEE2E2; color: #B91C1C; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: center; }
.module-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module-pill { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: white; font-weight: 900; color: var(--navy); }
.module-pill small { display:block; color: var(--muted); font-weight: 600; margin-top: 4px; }

.cta-band {
  border-radius: 34px;
  padding: 48px;
  background:
    radial-gradient(circle at right top, rgba(200,155,60,.24), transparent 30%),
    linear-gradient(135deg, #0B1F3A, #102D55);
  color: white;
  overflow: hidden;
  position: relative;
}
.cta-band p { color: rgba(255,255,255,.78); }
.cta-band h2 { color: white; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.stat { padding: 22px; border-radius: 20px; background: white; border: 1px solid var(--line); }
.stat strong { font-size: 30px; color: var(--navy); display: block; line-height: 1; }
.stat span { color: var(--muted); font-weight: 700; font-size: 13px; }

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}
.feature-row + .feature-row { margin-top: 16px; }
.feature-value { font-weight: 900; color: var(--blue); }

.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { color: var(--navy); font-weight: 900; font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #D7DEE9;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  color: var(--text);
  background: white;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,78,216,.10); }
.honeypot { display: none !important; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

.faq-item { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: white; }
.faq-question { width: 100%; background: white; border: 0; padding: 20px 22px; text-align: left; display:flex; justify-content:space-between; gap:16px; cursor:pointer; font-weight:900; color: var(--navy); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.active .faq-answer { display: block; }
.faq-item + .faq-item { margin-top: 12px; }

.site-footer { background: #06152B; color: white; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 30px; }
.footer-grid h4 { margin: 0 0 14px; color: white; }
.footer-grid a, .footer-grid p { color: rgba(255,255,255,.72); display: block; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; display:flex; justify-content:space-between; gap: 18px; color: rgba(255,255,255,.58); font-size: 13px; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  box-shadow: 0 16px 34px rgba(22,163,74,.32);
}
.page-hero { padding: 78px 0; background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%); }
.breadcrumb { color: var(--muted); font-weight: 700; font-size: 14px; }
.table-like { border:1px solid var(--line); border-radius:22px; overflow:hidden; background:white; }
.table-row { display:grid; grid-template-columns: 1fr 1.3fr 1fr; border-bottom:1px solid var(--line); }
.table-row:last-child { border-bottom:0; }
.table-row > div { padding:18px; }
.table-head { background: var(--navy); color:white; font-weight:900; }

@media (max-width: 980px) {
  .mobile-toggle { display: block; }
  .nav-links, .nav-actions { display: none; }
  .site-header.open .nav-links, .site-header.open .nav-actions {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-header.open .nav-actions { top: 360px; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: 64px 1fr; }
  .feature-value { grid-column: 2; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 62px 0; }
  .hero { padding: 60px 0; }
  .hero-actions, .cta-band .actions { flex-direction: column; }
  .btn { width: 100%; }
  .grid-4, .grid-3, .grid-2, .module-list, .form-grid, .stats, .footer-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .cta-band { padding: 30px 22px; border-radius: 24px; }
  .footer-bottom { flex-direction: column; }
  .table-row { grid-template-columns: 1fr; }
  .logo img { width: 170px; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
  .floating-whatsapp span { display: none; }
}
