:root {
  --primary: #0A66C2;
  --primary-dark: #084a91;
  --secondary: #22C55E;
  --secondary-dark: #169947;
  --navy: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --light-blue: #E6F0FA;
  --light-green: #E8F8EF;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Poppins, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav {
  height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.55rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "AI";
  position: absolute;
  font-size: 0.55rem;
  right: 5px;
  bottom: 5px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  border-radius: 6px;
  padding: 1px 4px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy);
}

.menu a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
  font-size: 0.96rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--secondary);
  box-shadow: var(--shadow);
  font-size: 1.35rem;
  border: 0;
  cursor: pointer;
}

.float-btn.top {
  background: var(--primary);
  display: none;
}

.float-btn.top.visible {
  display: grid;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(34,197,94,0.18), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(10,102,194,0.16), transparent 28%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
  padding: 94px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--primary);
  font-weight: 750;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  font-weight: 700;
  color: var(--navy);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.dashboard {
  border-radius: 24px;
  background: linear-gradient(180deg, #F8FAFC, #EEF6FF);
  border: 1px solid var(--border);
  padding: 22px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.pill {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--light-green);
  color: var(--secondary-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.65rem;
}

.bar {
  height: 9px;
  border-radius: 999px;
  background: #DBEAFE;
  overflow: hidden;
  margin-top: 14px;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

section {
  padding: 82px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.link {
  color: var(--primary);
  font-weight: 800;
}

.soft {
  background: linear-gradient(180deg, #F8FBFF 0%, #EEF7FF 100%);
}

.solutions .card {
  border-left: 5px solid var(--primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #CBD5E1;
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: 24px;
  top: 14px;
  color: rgba(255,255,255,0.08);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.step h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.pricing-card {
  position: relative;
}

.popular {
  outline: 3px solid rgba(10, 102, 194, 0.16);
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  margin: 12px 0;
}

.features {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
}

.features li::before {
  content: "✓";
  color: var(--secondary);
  font-weight: 900;
  margin-right: 8px;
}

.tools-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tool {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  transition: 0.25s ease;
}

.tool:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tool span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.mini-btn {
  display: inline-flex;
  margin-top: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
}

.disclosure {
  text-align: center;
  margin-top: 24px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font: inherit;
  font-weight: 850;
  color: var(--navy);
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-intro {
  margin-top: 14px;
  color: var(--muted);
}

.contact-points {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.10);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.whatsapp-inline {
  margin-left: 8px;
}

#formMessage {
  margin-top: 14px;
  font-weight: 700;
}

.page-hero {
  padding: 90px 0;
  background: linear-gradient(180deg, #F8FBFF, #EEF7FF);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.content-page {
  padding: 70px 0;
}

.content-page article {
  max-width: 860px;
  margin: 0 auto;
}

.content-page h2 {
  margin: 30px 0 12px;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.content-page ul {
  padding-left: 20px;
  margin: 16px 0;
}

.footer {
  background: var(--navy);
  color: #CBD5E1;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 30px;
}

.footer h3, .footer .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #CBD5E1;
  margin: 8px 0;
}

.footer a:hover {
  color: var(--white);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  color: #94A3B8;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 950px) {
  .mobile-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.active {
    display: flex;
  }

  .hero-grid,
  .contact-box,
  .cta {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .steps,
  .tools-row,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 64px 0 46px;
  }

  section {
    padding: 58px 0;
  }

  .grid-3,
  .grid-4,
  .steps,
  .tools-row,
  .trust-row,
  .metric-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 34px 24px;
  }

  .whatsapp-inline {
    margin-left: 0;
    margin-top: 10px;
  }
}


.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  filter: drop-shadow(0 30px 60px rgba(15,23,42,0.16));
}
