:root {
  --blue: #3657f6;
  --purple: #734fe0;
  --gold: #e1a63b;
  --white: #ffffff;
  --ink: #25345c;
  --muted: #6b748c;
  --line: rgba(54, 87, 246, 0.14);
  --gradient: linear-gradient(115deg, var(--blue) 0%, var(--purple) 54%, var(--gold) 100%);
  --shadow: 0 18px 46px rgba(54, 87, 246, 0.14);
  --soft-shadow: 0 12px 32px rgba(115, 79, 224, 0.12);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 2% 42%, rgba(54, 87, 246, 0.18), transparent 30rem),
    radial-gradient(circle at 96% 45%, rgba(225, 166, 59, 0.18), transparent 32rem),
    radial-gradient(circle at 68% 76%, rgba(115, 79, 224, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8f9ff 54%, #ffffff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
}

.glow-blue {
  width: 36rem;
  height: 36rem;
  top: 23%;
  left: -20rem;
  background: var(--blue);
  opacity: 0.14;
}

.glow-purple {
  width: 28rem;
  height: 28rem;
  right: 22%;
  top: 55%;
  background: var(--purple);
  opacity: 0.08;
}

.glow-gold {
  width: 36rem;
  height: 36rem;
  right: -18rem;
  top: 32%;
  background: var(--gold);
  opacity: 0.15;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 24px max(20px, calc((100vw - var(--max)) / 2)) 18px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  width: min(218px, 42vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.3vw, 54px);
  color: rgba(37, 52, 92, 0.86);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.footer-col a {
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.footer-col a:hover {
  color: var(--blue);
}

.header-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(54, 87, 246, 0.13);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(54, 87, 246, 0.08);
  font-size: 0.94rem;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-socials a:hover {
  color: var(--white);
  background: var(--gradient);
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  min-height: calc(100vh - 80px);
  padding: clamp(84px, 10vw, 190px) 0 clamp(70px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 4.5vw, 76px);
}

.hero-copy {
  align-self: center;
  min-width: 0;
  width: 100%;
}

.hero-copy h1 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.02em;
  font-size: clamp(3.4rem, 6vw, 6.8rem);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 span,
.statement-section h2,
.landing-hero h1,
.thank-you-panel h2 {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy h1 span {
  display: block;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.hero-copy h1 span:last-child {
  font-size: clamp(2.7rem, 4.08vw, 4.42rem);
  line-height: 1.08;
}

.hero-copy p {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(37, 52, 92, 0.68);
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  line-height: 1.62;
  font-weight: 800;
}

.hero-visual {
  align-self: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-58px);
}

.hero-logo {
  width: min(100%, 300px);
  max-width: 300px;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 30px 48px rgba(54, 87, 246, 0.18));
}

.hero-text-sub {
  max-width: 460px;
  margin: 16px auto 0;
  color: rgba(37, 52, 92, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.56;
  font-weight: 800;
  text-align: center;
}

.cta-section {
  padding: 8px 0 clamp(64px, 8vw, 108px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
}

.cta-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(2.25rem, 3.75vw, 3.85rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-talk {
  text-transform: none;
  margin-bottom: 28px;
  white-space: nowrap;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn,
.social-strip a,
.submit-button,
.return-link {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.btn-primary,
.submit-button,
.return-link {
  width: min(100%, 260px);
  padding: 0 34px;
  color: var(--white);
  font-size: 1.1rem;
  background: var(--gradient);
  box-shadow: 0 20px 42px rgba(54, 87, 246, 0.24);
  border: 0;
  cursor: pointer;
}

.btn-secondary {
  min-width: 174px;
  padding: 0 28px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(115, 79, 224, 0.1);
  backdrop-filter: blur(14px);
}

.btn:hover,
.social-strip a:hover,
.floating-whatsapp:hover,
.submit-button:hover,
.return-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(54, 87, 246, 0.22);
}

.social-strip {
  margin: 0 auto clamp(56px, 6vw, 82px);
  padding: 16px 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid rgba(54, 87, 246, 0.1);
  border-bottom: 1px solid rgba(54, 87, 246, 0.1);
}

.social-strip a {
  min-height: 48px;
  padding: 0 24px;
  color: rgba(37, 52, 92, 0.82);
  font-size: 0.84rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(54, 87, 246, 0.12);
}

.statement-section {
  padding: clamp(46px, 6vw, 82px) 0 clamp(54px, 6.5vw, 92px);
  text-align: center;
}

.statement-section h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.45vw, 4.75rem);
  line-height: 0.94;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.landing-hero {
  padding: clamp(70px, 9vw, 130px) 0 clamp(42px, 6vw, 74px);
  text-align: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 970px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 5.6vw, 5.7rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 920px;
  margin: 30px auto 0;
  color: rgba(37, 52, 92, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.78;
  font-weight: 700;
}

.form-section {
  padding: 0 0 clamp(72px, 8vw, 120px);
}

.qualification-form,
.thank-you-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.form-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.form-heading h2,
.thank-you-panel h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.8vw, 3.45rem);
  line-height: 1.05;
  font-weight: 900;
}

.form-group {
  margin: 0 0 28px;
}

.field-label,
.choice-group legend,
.agreement-group legend {
  display: block;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.38;
  font-weight: 900;
}

input[type="text"] {
  width: 100%;
  min-height: 60px;
  padding: 0 20px;
  color: var(--ink);
  border: 1px solid rgba(54, 87, 246, 0.18);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(54, 87, 246, 0.06);
}

input[type="text"]:focus {
  border-color: rgba(54, 87, 246, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(54, 87, 246, 0.1);
}

fieldset {
  padding: 0;
  border: 0;
}

.choice-group {
  display: grid;
  gap: 12px;
}

.choice-card {
  min-height: 58px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 13px;
  color: rgba(37, 52, 92, 0.84);
  border: 1px solid rgba(54, 87, 246, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(115, 79, 224, 0.06);
  cursor: pointer;
}

.choice-card input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.choice-card span {
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 750;
}

.agreement-card {
  align-items: start;
}

.field-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: #c83a3a;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 800;
}

.form-group.is-invalid input[type="text"],
.choice-group.is-invalid .choice-card,
.agreement-group.is-invalid .choice-card {
  border-color: rgba(200, 58, 58, 0.44);
}

.submit-button,
.return-link {
  width: min(100%, 340px);
  margin: 10px auto 0;
}

.thank-you-panel {
  text-align: center;
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(37, 52, 92, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.72;
  font-weight: 750;
}

.return-link {
  margin-top: 34px;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 58px) 0 34px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr) 1.1fr;
  gap: clamp(24px, 3.3vw, 48px);
  border-top: 1px solid rgba(54, 87, 246, 0.12);
}

.footer-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo img {
  width: min(220px, 100%);
}

.footer-col h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 0.92rem;
  font-weight: 900;
}

.footer-col a {
  color: rgba(37, 52, 92, 0.68);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-powered,
.footer-powered-logo {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-powered-logo {
  width: min(190px, 100%);
  height: auto;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 1.7rem;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(54, 87, 246, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding-top: 20px;
  }

  .header-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding-top: clamp(62px, 8vw, 100px);
  }

  .hero-copy h1 {
    width: 100%;
    align-items: center;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    transform: none;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cta-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .social-strip {
    flex-wrap: wrap;
  }

  .social-strip a {
    flex: 1 1 150px;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 14px 16px;
  }

  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    width: min(210px, 72vw);
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 0.82rem;
  }

  .header-socials a {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  .hero-grid {
    padding: 54px 0 66px;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.12rem, 11vw, 4.1rem);
    line-height: 1;
  }

  .hero-copy h1 span:last-child {
    font-size: clamp(1.5rem, 7.85vw, 2.9rem);
    line-height: 1.08;
  }

  .btn-primary,
  .btn-secondary,
  .submit-button,
  .return-link {
    width: 100%;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .statement-section h2 {
    font-size: clamp(1.72rem, 8.2vw, 3.05rem);
    line-height: 0.98;
  }

  .landing-hero h1 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .qualification-form,
  .thank-you-panel {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 88px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }
}