:root {
  --bg-1: #0f2326;
  --bg-2: #102a30;
  --text: #e8f2f4;
  --muted: #b8c7cc;
  --brand: #1e88e5;
  --accent: #ff9f2d;
  --highlight: #ffb703;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 35%, #17353b 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-1), var(--bg-2));
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 18px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% -10% -10%;
  background:
    radial-gradient(900px 450px at 30% 30%, rgba(23, 83, 90, .65) 0%, transparent 70%),
    radial-gradient(600px 300px at 70% 55%, rgba(16, 48, 40, .55) 0%, transparent 70%);
  pointer-events: none;
}

.whatsapp-btn {
  position: absolute;
  right: 24px;
  top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transform: translateZ(0);
  z-index: 9999999999999 !important;
}
.whatsapp-btn svg { width: 20px; height: 20px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
  min-height: clamp(640px, 90vh, 820px);
  position: relative;
  z-index: 1;
}

.kicker {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 8px 0 12px;
}

h1 {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 800;
  text-wrap: balance;
}
.highlight {
  display: block;
  color: #fff;
  position: relative;
}
.highlight::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: .6em;
  background: linear-gradient(90deg, rgba(255,183,3,.25), rgba(255,159,45,.35));
  filter: blur(12px);
  z-index: -1;
}

.lede {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  margin: 10px 0 18px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 28px;
  position: relative;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='%23ff9f2d' /><path d='M7 12.5l3 3 7-7' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  --shadow: 0 10px 28px rgba(0,0,0,.25);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow);
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-primary { background: #2ea0ff; color: #fff; }
.btn-primary:hover { transform: translateY(-2px); background: #1594ff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { transform: translateY(-2px); filter: brightness(1.05); }

.hero-art {
  position: relative;
  justify-self: end;
}
.bird {
  width: min(430px, 90vw);
  height: auto;
  border-radius: 18px;
  transform: perspective(800px) translateZ(0) rotateZ(-.6deg);
  will-change: transform;
}
.badge {
  position: absolute;
  left: -24px;
  bottom: 18px;
  width: 160px;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.45));
  animation: bob 5s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bottom-fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 120px;
  z-index: 0;
  pointer-events: none;
}

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(18px) scale(.98); filter: blur(4px); transition: opacity .6s ease, transform .6s ease, filter .6s ease; }
.is-visible[data-reveal] { opacity: 1; transform: none; filter: none; }

/* Steps section */
.steps {
  --light-bg: #eef5f7;
  --card-bg: #ffffff;
  --ink: #0e2a31;
  --ink-soft: #44656d;
  --pill: #1ea475;
  background: radial-gradient(600px 220px at 50% 0%, rgba(0,0,0,.08), transparent 60%), var(--light-bg);
  color: var(--ink);
  padding: 80px 0 90px;
}
.steps .container { text-align: center; }
.steps-cta-top { margin-bottom: 18px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pill);
  font-weight: 700;
  margin: 0 0 6px;
}
.steps h2 {
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 0 0 26px;
  color: var(--ink);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 10px 0 26px;
}
.card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 26px 24px 24px;
  text-align: left;
  box-shadow: 0 20px 60px rgba(3, 21, 24, .12), 0 2px 6px rgba(3, 21, 24, .06);
}
.badge-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  font-weight: 800;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1ea475, #0fb37a);
  box-shadow: 0 10px 20px rgba(15,179,122,.24);
  margin-bottom: 16px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--ink);
}
.card p { margin: 0; color: var(--ink-soft); line-height: 1.55; }

.steps-cta-bottom { margin-top: 14px; }

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
}

/* Process section with alternating image/text */
.process {
  background: linear-gradient(180deg, #eef5f7 0%, #eef5f7 60%, #f4f8f9 100%);
  padding: 40px 0 90px;
}
.process-title {
  text-align: center;
  margin: 0 0 28px;
  color: #0e2a31;
}
.process-item {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  margin: 18px 0;
  box-shadow: 0 30px 70px rgba(3, 21, 24, .12), 0 2px 6px rgba(3, 21, 24, .06);
}

.process-item.is-reverse { grid-template-columns: 0.9fr 1.1fr; }
.process-item.is-reverse .process-media { grid-column: 2; grid-row: 1; }
.process-item.is-reverse .process-content { grid-column: 1; grid-row: 1; }

.process-media img {
  width: 100%; height: 300px; display: block;
  border-radius: 16px 120px 16px 16px;
}
.process-item.is-reverse .process-media img { border-radius: 120px 16px 16px 16px; }

.process-content h3 { margin: 0 0 10px; font-size: 26px; color: #12323a; }
.process-content p { margin: 0; color: #3f5c63; line-height: 1.6; }
.step-index { color: #1ea475; font-weight: 800; margin-right: 6px; }

@media (max-width: 980px) {
  .process-item,
  .process-item.is-reverse { grid-template-columns: 1fr; }
  .process-media img { border-radius: 16px; }
  /* Reset manual column placement so the mobile order follows DOM (media on top) */
  .process-item.is-reverse .process-media,
  .process-item.is-reverse .process-content { grid-column: auto; grid-row: auto; }
}

/* CTA Banner */
.cta-banner { background: #eef5f7; padding: 40px 0 70px; }
.cta-inner {
  background: linear-gradient(90deg, #0b2a33, #0b2a33 10%, #0c3e56 65%, #0b2a33 100%);
  border-radius: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 30px 70px rgba(3,21,24,.18);
}
.cta-text h3 { margin: 0 0 6px; color: #e9f3f6; font-size: clamp(18px, 2.2vw, 28px); }
.cta-text p { margin: 0; color: #b7c9ce; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: inline-flex; align-items: center; gap: 10px;
  z-index: 9999999999999 !important;
}
.btn-whatsapp:hover { filter: brightness(1.05); transform: translateY(-2px); }
.btn-whatsapp svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
  .cta-inner { grid-template-columns: 1fr; 
    text-align: center; }
  .btn-whatsapp { justify-self: center; }
}

/* FAQ */
.faq { background: #eef5f7; padding: 10px 0 80px; }
.faq .container { max-width: 1000px; }
.faq h2 { text-align: center; margin: 0 0 22px; color: #0e2a31; }
.faq-list { display: grid; gap: 16px; }
.faq-item { background: #fff; border-radius: 18px; box-shadow: 0 18px 40px rgba(3,21,24,.1); }
.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 22px 22px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: #10323a;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}
.faq-toggle .chevron {
  width: 22px; height: 22px;
  border-radius: 6px;
  position: relative;
}
.faq-toggle .chevron::before, .faq-toggle .chevron::after {
  content: ""; position: absolute; left: 4px; right: 4px; top: 10px; height: 2px; background: #10323a; transition: transform .25s ease;
}
.faq-toggle .chevron::after { transform: rotate(90deg); }
.faq-toggle[aria-expanded="true"] .chevron::after { transform: rotate(0deg); }

.faq-content { padding: 0 22px 22px; color: #3f5c63; }
.faq-note { text-align: center; color: #6b848a; margin-top: 14px; font-size: 13px; }

/* Footer */
.site-footer { background: #0b0f1a; color: #dfeaf0; }
.footer-top {
  background: radial-gradient(1000px 400px at 0% 0%, #1a0f2b 0%, transparent 60%),
              radial-gradient(900px 360px at 100% 0%, #0d2346 0%, transparent 60%),
              linear-gradient(90deg, #0f1630, #0b1b2e 60%, #0f1630);
  padding: 36px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 24px; align-items: start; }
.footer-col h4 { margin: 0 0 6px; color: #fff; }
.footer-col p { margin: 0; color: #b7c9ce; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-links a { color: #cfe1e7; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-actions { justify-self: end; }
.footer-partners { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }
.footer-partners h4 { margin: 0 0 8px 0; color: #fff; text-align: left; }
.partners-logos { display: flex; gap: 16px; align-items: center; justify-content: flex-start; }
.partners-logos img { height: 40px; width: auto; opacity: 0.8; transition: opacity 0.3s ease; }
.partners-logos img:first-child { height: 60px; }
.partners-logos img:hover { opacity: 1; }
.footer-bottom { background: #08121a; padding: 12px 0; }
.footer-bottom p { margin: 0; text-align: center; color: #8fa6ad; font-size: 13px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-actions { justify-self: center; }
  .footer-partners { align-items: center; }
  .footer-partners h4 { text-align: center; }
  .partners-logos { justify-content: center; }
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; min-height: auto; }
  .hero-art { justify-self: center; }
  .bird { width: min(520px, 96vw); }
  .badge { left: 10px; bottom: -18px; width: 140px; }
  .whatsapp-btn { position: static; left: auto; right: auto; top: auto; transform: none; display: inline-flex; margin: 8px auto 0; }
}

@media (max-width: 640px) {
  .container { padding: 18px; }
  .whatsapp-btn { position: static; left: auto; right: auto; top: auto; transform: none; display: inline-flex; margin: 8px auto 0; margin-left: 18px; }
  .ctas { gap: 10px; }
  .btn { width: 100%; justify-content: center; }
  .steps{
    padding: 30px 0;
  }
  .hero::before{
    display: none;
  }

  .process{
    padding: 0;
  }
  .cta-banner{
    padding: 0 0 30px 0;
  }

  .faq{
    padding: 0 0 10px 0;
  }
  .bird{
    display: none;
  }
  .process-item.is-reverse .process-media img{
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .badge, .bird, [data-reveal] { transition: none !important; animation: none !important; }
}


