:root {
  --bg: #f3f4f7;
  --surface: #ffffff;
  --brand: #ff7f1a;
  --brand-dark: #e56f11;
  --text: #12131a;
  --muted: #5f6473;
  --hero-a: #2b0a61;
  --hero-b: #6430c2;
  --line: #d9dce6;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(14, 18, 35, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.hero {
  color: #fff;
  background: radial-gradient(circle at 25% -20%, #7e59d8 5%, transparent 45%), linear-gradient(120deg, var(--hero-a), var(--hero-b));
  /* padding-bottom: 3rem; */
}

.hero-copy span{
  background-color: #2563eb;
}

.hero-copy-title{
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
}

li h1{
  font-size: 1rem;
  font-weight: 400;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: 0.4rem 0 0.8rem;
}

h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.lead {
  color: #eef0ff;
  max-width: 56ch;
}

.eyebrow {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7e67ff;
}

.hero .eyebrow {
  color: #cdc4ff;
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.11);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.hero-media {
  justify-self: center;
  border-radius: 18px 18px 0 0;
  overflow: clip;
  /* box-shadow: var(--shadow); */
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.72rem 1rem;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease;
}

.btn:hover, .btn-orange {
  background: var(--brand-dark) !important;
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.social-proof {
  background: #211038;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.stats-grid article {
  padding: 1rem 0.4rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-grid article:last-child {
  border-right: 0;
}

.metric {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-weight: 800;
}

.label {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: #d9d9e6;
}

.section {
  padding: 4rem 0;
}

.section2 {
  padding: 4rem 0 0 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1rem 0.8rem;
  box-shadow: 0 6px 18px rgba(20, 28, 58, 0.08);
}

.card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-alt {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: center;
}

.split img {
  /* border-radius: 12px; */
  /* border: 1px solid var(--line); */
  /* box-shadow: var(--shadow); */
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #1e8f45;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.info h3 {
  font-size: 0.95rem;
  color: var(--muted);
}

.info p {
  margin: 0.45rem 0 0;
  font-weight: 700;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta {
  background: linear-gradient(120deg, #230948, #3f167a);
  color: #fff;
  padding: 4rem 0;
}

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 1.2rem;
  align-items: center;
}

.cta-form {
  display: grid;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem;
  border-radius: var(--radius);
}

.cta-form label {
  font-size: 0.85rem;
}

.cta-form input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
}

.footer {
  background: #0e1020;
  color: #ced3ea;
  padding: 1.2rem 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 950px) {
  .hero-content,
  .split,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  /* .hero-media {
    max-width: 280px;
  } */
   
  .lead, .hero-points{
    display: none;
  }

  .card h3{
    font-size: 1rem !important;
  }

  .card ul li{
    font-size: 0.8rem !important;
  }

  .eyebrow {
    font-size: 0.7rem !important;
  }

  .hero-copy h1{
    font-size: 1.5rem !important;
  }

  .hero-actions .btn-orange{
    font-size: 1rem !important;
  }

  .hero-actions .btn-ghost{
    font-size: 0.8rem !important;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy-title{
    font-size: 1.5rem;
  }
}

@media (max-width: 720px) {
  .cards-grid,
  .stats-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ----- Cookie consent (fade-up panel) ----- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  pointer-events: none;
}

.cookie-banner:not([hidden]) {
  pointer-events: auto;
}

.cookie-banner__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cookie-banner.is-open .cookie-banner__backdrop {
  opacity: 1;
}

.cookie-banner__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(85vh, 560px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 -8px 40px rgba(14, 18, 35, 0.18);
  padding: 1.25rem 1.35rem 1.15rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-open .cookie-banner__panel {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.94rem;
  color: var(--text);
}

.cookie-banner__text p {
  margin: 0 0 0.85rem;
}

.cookie-banner__text p:last-of-type {
  margin-bottom: 1rem;
}

.cookie-banner__text a {
  color: #2563eb;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #1d4ed8;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  padding-top: 0.25rem;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.cookie-banner__btn:active {
  transform: scale(0.98);
}

.cookie-banner__btn--primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.cookie-banner__btn--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner__backdrop,
  .cookie-banner__panel {
    transition-duration: 0.01ms;
  }

  .cookie-banner__panel {
    transform: none;
  }

  .cookie-banner.is-open .cookie-banner__panel {
    opacity: 1;
  }
}

.error {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.input-error {
  border: 1px solid #ff4d4f;
}

.input-success {
  border: 1px solid #28a745;
}

input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 5px;
}

.btn {
  padding: 12px;
  background: #290a59;
  color: #fff;
  border: none;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
  }
}