* {
  
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #f5f9ff;
  color: #0f172a;
}

.container {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #082f5f 0%, #0b63bd 52%, #061b38 100%);
  color: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 420px;
  height: 420px;
  top: -130px;
  right: -120px;
  background: rgba(147, 197, 253, 0.24);
}

.hero-glow-2 {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: -90px;
  background: rgba(56, 189, 248, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  
  display: grid;
  grid-template-columns: 1.1fr 440px;
  align-items: center;
  gap: 64px;
  padding: 20px 0;
}

.badge {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #dbeafe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero p {
  margin-top: 28px;
  max-width: 690px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

.pill-list {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  padding: 13px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.form-card {
  background: rgba(255, 255, 255, 0.97);
  color: #0f172a;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 36px 90px rgba(2, 6, 23, 0.35);
}

.form-card h2 {
  color: #082f5f;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.form-card > p {
  margin-top: 16px;
  color: #64748b;
  line-height: 1.7;
}

form {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

input {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 20px;
  background: #f1f5f9;
  padding: 0 20px;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

input:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.30);
}

button {
  height: 64px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.28);
  transition: 0.25s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.36);
}

.form-message {
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 14px;
}

.form-message.success {
  background: #ecfdf5;
  color: #047857;
}

.form-message.error {
  background: #fef2f2;
  color: #b91c1c;
}

.trust-list {
  margin-top: 24px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

.section {
  padding: 104px 0;
}

.white {
  background: #fff;
}

.soft-blue {
  background: #eef5ff;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-title h2,
.process-grid h2,
.cta-box h2 {
  color: #082f5f;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-title p,
.process-grid p,
.cta-box p {
  margin-top: 20px;
  color: #64748b;
  font-size: 18px;
  line-height: 1.75;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.reason-card,
.faq-item,
.step {
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: #fff;
}

.card {
  padding: 34px;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
}

.icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #eff6ff;
  font-size: 30px;
  margin-bottom: 24px;
}

.card h3,
.reason-card h3,
.faq-item h3,
.step h3 {
  color: #082f5f;
  font-size: 24px;
  line-height: 1.2;
}

.card p,
.reason-card p,
.faq-item p,
.step p {
  margin-top: 14px;
  color: #64748b;
  line-height: 1.75;
}

.reason-card {
  padding: 32px;
}

.accent-line {
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  margin-bottom: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.small-label {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #f8fafc;
}

.step span {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 800;
}

.cta-box {
  border-radius: 40px;
  padding: 82px 64px;
  background: linear-gradient(135deg, #0b3c78, #0b63bd);
  color: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(11, 60, 120, 0.24);
}

.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  color: #dbeafe;
}

.cta-box a {
  margin-top: 34px;
  display: inline-flex;
  padding: 20px 36px;
  border-radius: 18px;
  background: #fff;
  color: #0b3c78;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.cta-box a:hover {
  transform: translateY(-3px);
}

.faq-container {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding: 30px;
  background: #f8fafc;
}

.footer {
  padding: 40px 16px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.36);
  z-index: 20;
}

@media (max-width: 1024px) {
  .hero-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .cards.three,
  .cards.four {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px;
  }

  .section {
    padding: 78px 0;
  }

  .cta-box {
    padding: 56px 24px;
    border-radius: 30px;
  }

  .step {
    flex-direction: column;
  }
}
