/* ─── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #6D0070;
  --accent: #00C8CD;
  --deep: #1e0020;
  --navy: #150017;
  --paper: #f3f1f4;
  --paper-strong: #ebe6ec;
  --lilac: #D5BFD8;
  --magenta: #c10ed0;
  --blue: #0087CB;
  --white: #ffffff;

  --text-strong: #6D0070;
  --text-body: color-mix(in srgb, #6D0070 82%, #0087CB 18%);
  --text-muted: color-mix(in srgb, #6D0070 68%, white 32%);

  --hero-start: #6D0070;
  --hero-mid: #7b1685;
  --hero-end: #4d0050;
  --footer-start: #5a005d;
  --footer-end: #2a002c;

  --font-body: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Outfit', ui-sans-serif, system-ui, sans-serif;

  --radius: 0.5rem;
  --destructive: #b42318;
  --success: #0d7a5c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-strong);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(30, 0, 32, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: clamp(1.8rem, 2.5vw, 2.5rem);
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-link {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.header-link:hover {
  color: var(--accent);
}

.header-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}

.header-cta:hover {
  background: color-mix(in srgb, var(--accent) 86%, black);
  transform: translateY(-1px);
}

.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Page ───────────────────────────────────────────────────────────────── */
.page {
  background: linear-gradient(180deg, var(--brand) 0%, var(--deep) 40%, var(--paper) 40%);
  color: #fff;
  overflow-x: clip;
}

/* ─── Shared ─────────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dark {
  display: block;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.accent { color: var(--accent); }
.accent-dark { color: var(--accent); }

.section-title {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-copy {
  max-width: 560px;
  margin-top: 1.75rem;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.75;
  text-wrap: pretty;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.massive-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: clamp(0.9rem, 1vw + 0.4rem, 1.4rem) clamp(1.3rem, 2.4vw + 0.5rem, 3.6rem);
  border-radius: 999px;
  background: var(--white);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 0.8vw + 0.48rem, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 6px 0 color-mix(in srgb, var(--brand) 40%, rgba(0, 0, 0, 0.2)),
    0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s;
  cursor: pointer;
  border: none;
}

.massive-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 color-mix(in srgb, var(--brand) 40%, rgba(0, 0, 0, 0.2)),
    0 16px 40px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

.massive-button:active {
  transform: translateY(4px);
  box-shadow:
    0 2px 0 color-mix(in srgb, var(--brand) 40%, rgba(0, 0, 0, 0.2)),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-button {
  background: var(--accent);
  color: #ffffff;
  box-shadow:
    0 5px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
  background: color-mix(in srgb, var(--accent) 86%, black);
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 16px 36px rgba(0, 0, 0, 0.35);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 48%, var(--hero-end) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(109, 0, 112, 0.88) 0%, rgba(109, 0, 112, 0.45) 45%, transparent 70%),
    radial-gradient(circle at 74% 44%, rgba(0, 200, 205, 0.18), transparent 22%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: clamp(2rem, 4vw, 5rem);
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
  padding-top: clamp(6rem, 12vh, 9rem);
  padding-bottom: 0;
}

@media (min-width: 1181px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
    min-height: 88vh;
  }
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 100%;
  align-self: center;
  padding-bottom: 1rem;
  text-align: center;
}

@media (min-width: 1181px) {
  .hero-text {
    align-items: flex-start;
    max-width: clamp(20rem, 38vw, 34rem);
    padding-bottom: 4rem;
    text-align: left;
  }
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.3vw, 5.8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
  color: #fff;
}

.hero-title-line {
  display: block;
}

.hero-description {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.3vw, 1.28rem);
  font-weight: 400;
  line-height: 1.75;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: visible;
  justify-content: center;
  align-self: end;
  justify-self: center;
  width: min(100%, 560px);
  pointer-events: none;
}

@media (min-width: 1181px) {
  .hero-media {
    justify-content: flex-end;
    justify-self: end;
    width: calc(100% + clamp(4rem, 10vw, 12rem));
    margin-right: calc(clamp(2rem, 6vw, 6rem) * -1);
  }
}

.hero-illustration-back {
  position: absolute;
  left: 50%;
  bottom: -2rem;
  z-index: 0;
  width: min(92vw, 28rem);
  height: auto;
  opacity: 0.12;
  object-fit: contain;
  transform: translateX(-50%);
}

@media (min-width: 1181px) {
  .hero-illustration-back {
    left: auto;
    right: clamp(-10rem, -10vw, -3rem);
    bottom: clamp(-12rem, -12vh, -4rem);
    width: clamp(34rem, 56vw, 64rem);
    opacity: 0.14;
    transform: none;
  }
}

.hero-image-front {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 90px rgba(32, 0, 36, 0.35));
}

@media (min-width: 1181px) {
  .hero-image-front {
    width: clamp(36rem, 54vw, 54rem);
    max-width: none;
    object-position: right bottom;
  }
}

/* ─── Partner Strip ──────────────────────────────────────────────────────── */
.partner-section {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0 2rem;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--brand) 34%, var(--deep) 66%) 0%,
    var(--deep) 100%
  );
}

.partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.partner-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-logos {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(1.25rem, 2vw, 2.5rem);
}

.partner-logo {
  justify-self: center;
  height: clamp(1.5rem, 2.1vw, 2.1rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.partner-logo-bndes {
  height: clamp(1.25rem, 1.8vw, 1.7rem);
}

/* ─── Benefits ───────────────────────────────────────────────────────────── */
.benefits-section {
  position: relative;
  overflow: hidden;
  margin-top: -40px;
  padding: calc(clamp(5rem, 12vh, 9rem) + 40px) 0 clamp(5rem, 12vh, 9rem);
  border-radius: 40px 40px 0 0;
  background: var(--paper);
  color: var(--text-strong);
}

.benefits-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 135, 203, 0.1), transparent 22%),
    radial-gradient(circle at bottom left, rgba(109, 0, 112, 0.08), transparent 18%);
}

.benefits-container {
  position: relative;
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.benefits-header {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(109, 0, 112, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(109, 0, 112, 0.13), 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  color: var(--brand);
}

.benefit-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-strong);
}

.benefit-description {
  margin: 0;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.65;
  flex: 1;
}

/* ─── How it works ───────────────────────────────────────────────────────── */
.how-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 9rem) 0 clamp(5rem, 10vh, 7rem);
  background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 48%, var(--hero-end) 100%);
  color: #fff;
}

.how-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0, 200, 205, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(213, 191, 216, 0.12), transparent 22%);
}

.how-orbit {
  position: absolute;
  top: 3rem;
  right: -8rem;
  z-index: 0;
  width: clamp(14rem, 24vw, 30rem);
  height: auto;
  opacity: 0.12;
  pointer-events: none;
}

.how-container {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.how-header {
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.how-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #fff;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: clamp(3rem, 6vh, 5rem);
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.how-step:hover {
  background: rgba(255, 255, 255, 0.13);
}

.how-step-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.7;
  letter-spacing: -0.04em;
}

.how-step-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.how-step-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  flex: 1;
}

.how-cta {
  display: flex;
  justify-content: flex-start;
}

.how-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 5px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 10px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.2s;
}

.how-cta-button:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 86%, black);
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 16px 36px rgba(0, 0, 0, 0.3);
}

.how-cta-button:active {
  transform: translateY(3px);
}

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 9rem) 0 clamp(5rem, 10vh, 8rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper-strong) 50%, var(--paper-strong) 100%);
  color: var(--text-strong);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 32%, rgba(0, 200, 205, 0.08), transparent 22%),
    radial-gradient(circle at 14% 68%, rgba(109, 0, 112, 0.07), transparent 18%);
}

.cta-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(3rem, 5vw, 6rem);
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
}

@media (min-width: 1181px) {
  .cta-container {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  }
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-top: 1.5rem;
}

@media (min-width: 1181px) {
  .cta-text {
    position: sticky;
    top: clamp(6rem, 10vh, 8rem);
  }
}

.cta-eyebrow {
  color: var(--brand);
}

.cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta-copy {
  margin: 0;
  max-width: 480px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.75;
  text-wrap: pretty;
}

.cta-form-column {
  display: flex;
  flex-direction: column;
}

/* ─── Form Card ──────────────────────────────────────────────────────────── */
.form-card {
  width: min(680px, calc(100vw - 3rem));
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(109, 0, 112, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.form-card-header {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3rem) 0;
}

.form-card-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-strong);
}

.form-card-subtitle {
  margin: 0 0 1.75rem;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Progress bar */
.progress-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.progress-segment {
  height: 4px;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.progress-done { background: var(--brand); }
.progress-active { background: var(--accent); }
.progress-pending { background: rgba(109, 0, 112, 0.15); }

/* Block content */
.block-content {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.block-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text-strong);
}

/* Fields */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.flex2 { flex: 2; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.address-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legend {
  padding: 0;
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-strong);
}

.field-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-strong);
}

.required { color: var(--brand); }

.hint {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.field-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(109, 0, 112, 0.2);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field-input::placeholder {
  color: rgba(109, 0, 112, 0.3);
}

.field-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 205, 0.18);
}

.field-select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(109, 0, 112, 0.2);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--text-strong);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 200, 205, 0.18);
}

/* Validation error state */
.field-group.has-error .field-input,
.field-group.has-error .field-select {
  border-color: var(--destructive);
}

.field-group.has-error .field-input:focus,
.field-group.has-error .field-select:focus {
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.15);
}

.field-error {
  margin: 0;
  font-size: 0.8rem;
  color: var(--destructive);
  display: none;
}

.field-group.has-error .field-error,
.fieldset.has-error .field-error,
.url-row.has-error .field-error {
  display: block;
}

.url-row.has-error .field-input {
  border-color: var(--destructive);
}

/* Radio */
.radio-group {
  display: flex;
  gap: 1.5rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-strong);
  cursor: pointer;
}

.radio-label input[type="radio"] {
  accent-color: var(--brand);
  width: 1rem;
  height: 1rem;
}

/* URL list */
.url-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.url-row .url-input {
  flex: 1;
  min-width: 0;
}

.url-row .field-error {
  flex-basis: 100%;
}

.btn-remove-url {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.4rem;
  background: rgba(109, 0, 112, 0.08);
  color: var(--brand);
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-remove-url:hover {
  background: rgba(109, 0, 112, 0.16);
}

.btn-add-url {
  display: inline-flex;
  align-items: center;
  border: none;
  padding: 0;
  background: transparent;
  color: var(--brand);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.15s ease;
}

.btn-add-url:hover { opacity: 0.75; }

/* Error message */
.error-message {
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: rgba(220, 38, 38, 0.07);
  border: 1px solid rgba(220, 38, 38, 0.22);
  color: #b91c1c;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Form nav */
.form-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(109, 0, 112, 0.1);
}

/* Form buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 5px 0 #3a003d, 0 10px 24px rgba(109, 0, 112, 0.3);
  transform: translateY(0);
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.18s;
}

.btn-primary:hover:not(:disabled) {
  background: #7d0080;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #3a003d, 0 14px 32px rgba(109, 0, 112, 0.38);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #3a003d, 0 4px 10px rgba(109, 0, 112, 0.2);
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 5px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 10px 24px rgba(0, 200, 205, 0.25);
  transform: translateY(0);
  transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-accent:hover:not(:disabled) {
  background: color-mix(in srgb, var(--accent) 86%, black);
  transform: translateY(-2px);
  box-shadow:
    0 7px 0 color-mix(in srgb, var(--accent) 60%, rgba(0, 0, 0, 0.3)),
    0 14px 30px rgba(0, 200, 205, 0.3);
}

.btn-accent:active:not(:disabled) {
  transform: translateY(3px);
}

.btn-accent:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(109, 0, 112, 0.25);
  border-radius: 999px;
  background: transparent;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-ghost:hover:not(:disabled) {
  border-color: var(--brand);
  background: rgba(109, 0, 112, 0.04);
}

.btn-ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Success */
.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(109, 0, 112, 0.3);
}

.success-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-strong);
}

.success-body {
  max-width: 440px;
  margin: 0;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  color: #fff;
  background: linear-gradient(180deg, var(--footer-start) 0%, var(--footer-end) 100%);
}

.footer-inner {
  width: min(1600px, calc(100vw - clamp(2rem, 8vw, 8rem)));
  margin: 0 auto;
  padding: 4rem 0;
}

.footer-top {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  }
}

.footer-brand {
  max-width: 560px;
}

.footer-logo {
  height: auto;
  width: clamp(190px, 20vw, 270px);
}

.footer-description {
  margin-top: 1.5rem;
  max-width: 480px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.footer-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.footer-column-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.74);
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .benefit-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-grid {
    padding-top: max(8.5rem, 18vh);
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(30, 0, 32, 0.97);
    backdrop-filter: blur(20px);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav .header-link {
    font-size: 1.2rem;
  }

  .header-hamburger {
    display: flex;
    z-index: 101;
  }

  .partner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .address-row {
    grid-template-columns: 1fr 1fr;
  }

  .address-row .flex2 {
    grid-column: 1 / -1;
  }

  .form-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .form-nav .btn-primary,
  .form-nav .btn-accent,
  .form-nav .btn-ghost {
    text-align: center;
    width: 100%;
  }
}
