:root {
  --blue: #3657f6;
  --purple: #734fe0;
  --gold: #e1a63b;
  --white: #ffffff;
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --dark: #0b0f14;
  --dark-soft: #111827;
  --neon: #39ff88;
  --neon-soft: #00e676;
  --line: rgba(57, 255, 136, 0.22);
  --gradient: linear-gradient(115deg, var(--blue) 0%, var(--purple) 54%, var(--gold) 100%);
  --neon-gradient: linear-gradient(115deg, #3657f6 0%, #00e676 56%, #39ff88 100%);
  --shadow: 0 26px 80px rgba(0, 230, 118, 0.14);
  --soft-shadow: 0 18px 44px rgba(57, 255, 136, 0.14);
  --max: 1180px;
}

* {
  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 8% 14%, rgba(57, 255, 136, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 24%, rgba(54, 87, 246, 0.18), transparent 30rem),
    radial-gradient(circle at 70% 72%, rgba(0, 230, 118, 0.1), transparent 28rem),
    linear-gradient(180deg, #070a0f 0%, #0b0f14 48%, #111827 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(57, 255, 136, 0.08), transparent 18%, transparent 82%, rgba(57, 255, 136, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
}

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(54px);
  pointer-events: none;
}

.glow-blue {
  width: 34rem;
  height: 34rem;
  top: 18%;
  left: -18rem;
  background: var(--blue);
  opacity: 0.18;
}

.glow-purple {
  width: 30rem;
  height: 30rem;
  right: 12%;
  top: 58%;
  background: var(--purple);
  opacity: 0.12;
}

.glow-gold {
  width: 34rem;
  height: 34rem;
  right: -18rem;
  top: 24%;
  background: var(--neon);
  opacity: 0.13;
}

.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;
  border-bottom: 1px solid rgba(57, 255, 136, 0.24);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(7, 16, 20, 0.92));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 24px rgba(57, 255, 136, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  width: min(218px, 42vw);
}

.brand img,
.footer-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(57, 255, 136, 0.2));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.3vw, 54px);
  color: #f8fafc;
  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(--neon);
}

.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(57, 255, 136, 0.35);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(57, 255, 136, 0.12);
  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: #07100b;
  background: var(--neon-gradient);
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

main {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.landing-hero {
  position: relative;
  padding: clamp(76px, 9vw, 138px) 0 clamp(44px, 6vw, 78px);
  text-align: center;
}

.landing-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: min(760px, 92vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 136, 0.75), transparent);
  transform: translateX(-50%);
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--neon);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(57, 255, 136, 0.28);
}

.landing-hero h1 {
  max-width: 970px;
  margin: 0 auto;
  color: transparent;
  background: linear-gradient(115deg, #ffffff 0%, #f8fafc 30%, #39ff88 62%, #3657f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  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(203, 213, 225, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.78;
  font-weight: 700;
}

.form-section {
  padding: 0 0 clamp(76px, 8vw, 126px);
}

.qualification-form,
form {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(57, 255, 136, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.94), rgba(11, 15, 20, 0.9)),
    radial-gradient(circle at 92% 8%, rgba(57, 255, 136, 0.12), transparent 18rem);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 42px rgba(57, 255, 136, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.qualification-form::before,
form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(57, 255, 136, 0.18), transparent 24%, transparent 76%, rgba(57, 255, 136, 0.13)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 32%);
}

.form-heading,
.form-group,
fieldset,
button {
  position: relative;
  z-index: 1;
}

.form-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
}

.form-heading h2 {
  margin: 0;
  color: #ffffff;
  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: rgba(248, 250, 252, 0.96);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.38;
  font-weight: 900;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  min-height: 60px;
  padding: 0 20px;
  color: #f8fafc;
  border: 1px solid rgba(57, 255, 136, 0.26);
  border-radius: 18px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border-color: rgba(57, 255, 136, 0.76);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 5px rgba(57, 255, 136, 0.1), 0 0 28px rgba(57, 255, 136, 0.12);
}

fieldset {
  padding: 0;
  border: 0;
}

.choice-group,
.agreement-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(226, 232, 240, 0.94);
  border: 1px solid rgba(57, 255, 136, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.choice-card:hover {
  border-color: rgba(57, 255, 136, 0.52);
  background: rgba(57, 255, 136, 0.09);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(57, 255, 136, 0.1);
}

.choice-card input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--neon);
  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: #fca5a5;
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 800;
}

.submit-button,
button[type="submit"],
.return-link {
  width: min(100%, 340px);
  min-height: 62px;
  margin: 10px auto 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #06120c;
  background: var(--neon-gradient);
  box-shadow: 0 22px 50px rgba(57, 255, 136, 0.18), 0 0 28px rgba(57, 255, 136, 0.16);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.submit-button:hover,
button[type="submit"]:hover,
.return-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 28px 62px rgba(57, 255, 136, 0.24), 0 0 34px rgba(57, 255, 136, 0.22);
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 64px) 0 36px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr) 1.1fr;
  gap: clamp(24px, 3.3vw, 48px);
  border-top: 1px solid rgba(57, 255, 136, 0.24);
  color: #f8fafc;
}

.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: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
}

.footer-col a {
  color: #dbeafe;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 850;
}

.footer-powered {
  padding: 16px;
  border: 1px solid rgba(57, 255, 136, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-powered h3 {
  color: #ffffff;
}

.footer-powered-logo {
  width: min(210px, 100%);
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: invert(1) brightness(1.7) contrast(1.1);
  opacity: 0.92;
}

.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: #07100b;
  font-size: 1.7rem;
  background: var(--neon-gradient);
  box-shadow: 0 18px 42px rgba(57, 255, 136, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(57, 255, 136, 0.28);
}

.cookie-bar {
  border-color: rgba(57, 255, 136, 0.22);
  background: rgba(7, 10, 15, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 30px rgba(57, 255, 136, 0.08);
}

.cookie-bar__button {
  color: #06120c;
  background: var(--neon-gradient);
}

@media (min-width: 1400px) {
  :root {
    --max: 1240px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(150px, 0.9fr) minmax(0, 1.4fr) minmax(150px, 0.9fr);
    gap: 18px;
    padding: 20px max(16px, calc((100vw - var(--max)) / 2)) 16px;
  }

  .brand {
    width: min(190px, 28vw);
  }

  .main-nav {
    gap: clamp(16px, 2.4vw, 30px);
    font-size: 0.8rem;
  }

  .header-socials {
    gap: 7px;
  }

  .header-socials a {
    width: 34px;
    height: 34px;
    font-size: 0.84rem;
  }

  .landing-hero {
    padding-top: 62px;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  main,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 18px 14px 16px;
  }

  .brand {
    width: min(210px, 72vw);
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 0.82rem;
  }

  .header-socials {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-socials a {
    width: 36px;
    height: 36px;
    font-size: 0.88rem;
  }

  .landing-hero {
    padding: 58px 0 38px;
  }

  .landing-hero h1 {
    font-size: clamp(2.05rem, 9vw, 3.35rem);
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .qualification-form,
  form {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  input[type="text"],
  input[type="email"] {
    min-height: 58px;
    border-radius: 16px;
  }

  .choice-card {
    min-height: 58px;
    padding: 14px;
    border-radius: 16px;
  }

  .choice-card span {
    font-size: 0.94rem;
  }

  .submit-button,
  button[type="submit"],
  .return-link {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 88px;
  }

  .footer-powered {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .main-nav {
    gap: 10px 16px;
  }

  .landing-hero h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.85rem);
  }

  .form-heading h2 {
    font-size: clamp(1.72rem, 8vw, 2.35rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }
}