/* SOS Tulsa — Disc Replacement Landing Page Styles */
/* Generated from design. Edit here — do not edit style.css directly. */

:root {
  --navy: #2c3e50;
  --navy-mid: #243241;
  --blue: #83b8e4;
  --accent: #7ed0de;
  --accent-light: #a1dbe7;
  --teal-mid: #a1ceee;
  --light-bg: #f0f9fb;
  --white: #ffffff;
  --text: #2c3e50;
  --muted: #6b7b8d;
  --border: #c4e6ee;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.1);
  border-bottom: 1px solid var(--border);
}

.logo img {
  height: 46px;
  display: block;
}

/* Text wordmark */
.site-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.site-wordmark:hover {
  opacity: 0.75;
}

.site-wordmark-top {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
  display: block;
}

.site-wordmark-bottom {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: var(--navy) !important;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 65% 65% at 85% 50%,
      rgba(126, 208, 222, 0.22) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 70% at 15% 70%,
      rgba(131, 184, 228, 0.15) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #1e2d3d 0%, #2c3e50 55%, #243241 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-left {
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(126, 208, 222, 0.12);
  border: 1px solid rgba(126, 208, 222, 0.3);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 420px;
}

h1 em {
  font-style: normal;
  color: var(--accent-light);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  border: none;
  padding: 16px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(126, 208, 222, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.hero-right {
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  overflow: hidden;
}

.hero-card-header {
  padding: 26px 28px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-icon svg {
  display: block;
}

.hero-card-title {
  font-family: "Playfair Display", serif;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-card-title span {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.stat-item {
  background: rgba(44, 62, 80, 0.55);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  background: rgba(44, 62, 80, 0.8);
}
.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.hero-card-footer {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(126, 208, 222, 0.12);
  border: 1px solid rgba(126, 208, 222, 0.25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--accent);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.trust-icon {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

/* ── SECTIONS ── */
section {
  padding: 100px 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5bb8c8;
  margin-bottom: 14px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}

/* ── WHAT IS IT ── */
.what-section {
  background: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.what-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.what-text p strong {
  color: var(--navy);
}

.what-visual {
  position: relative;
}

.what-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 62, 80, 0.15);
  position: relative;
}

.what-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  border: 1px solid rgba(44, 62, 80, 0.08);
  pointer-events: none;
}

.what-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spine-diagram {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.spine-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(131, 184, 228, 0.2),
    transparent 70%
  );
}

.vertebra {
  width: 100px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.vertebra.large {
  width: 120px;
}
.vertebra.xl {
  width: 130px;
}

.disc {
  width: 95px;
  height: 12px;
  background: rgba(126, 208, 222, 0.3);
  border-radius: 3px;
  border: 1px solid rgba(126, 208, 222, 0.5);
  position: relative;
  z-index: 1;
}

.disc.highlight {
  background: var(--accent);
  border-color: var(--accent-light);
  box-shadow: 0 0 24px rgba(126, 208, 222, 0.65);
  animation: pulse 2s ease-in-out infinite;
}

.disc-label {
  position: absolute;
  right: -110px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disc-label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.diagram-title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

/* ── CANDIDATES ── */
.candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.candidate-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.candidate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.candidate-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 40px rgba(131, 184, 228, 0.12);
  transform: translateY(-5px);
}

.candidate-card:hover::before {
  transform: scaleX(1);
}

.candidate-card-body {
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5bb8c8;
  margin-bottom: 10px;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

/* ── BENEFITS ── */
.benefits-section {
  background: var(--navy);
}

.benefits-section h2 {
  color: var(--white);
}
.benefits-section .section-label {
  color: var(--accent-light);
}

.benefits-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.benefits-intro {
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.benefit-item {
  background: rgba(44, 62, 80, 0.5);
  padding: 40px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.25s;
}

.benefit-item:hover {
  background: rgba(131, 184, 228, 0.15);
}

.benefit-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(126, 208, 222, 0.4);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.benefit-content {
}

.benefit-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── PROCEDURE ── */
.procedure-section {
  background: var(--light-bg);
}

.steps-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  max-width: 760px;
  position: relative;
}

.steps-list::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 46px;
  bottom: 46px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--blue));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s ease;
}

.steps-list.line-visible::before {
  transform: scaleY(1);
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 22px 0;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.step.step-visible {
  opacity: 1;
  transform: translateX(0);
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--light-bg);
  box-shadow: 0 0 0 2px var(--accent);
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

.step.step-visible .step-num {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.step-body {
  padding-top: 10px;
  border-bottom: 1px solid var(--border);
  flex: 1;
  padding-bottom: 22px;
}

.step:last-child .step-body {
  border-bottom: none;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── PRODISC ── */
.prodisc-section {
}

.prodisc-wrapper {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.prodisc-left {
  padding: 64px 56px;
}

.prodisc-left .section-label {
  color: var(--accent-light);
}
.prodisc-left h2 {
  color: var(--white);
}
.prodisc-left .section-intro {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

.prodisc-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pf-check {
  width: 22px;
  height: 22px;
  background: rgba(126, 208, 222, 0.2);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
  font-size: 11px;
  margin-top: 2px;
}

.pf-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.pf-text strong {
  color: var(--white);
}

.prodisc-right {
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  gap: 28px;
}

.prodisc-stat-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prodisc-stat-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.prodisc-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.prodisc-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-top: 4px;
}

.prodisc-stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.prodisc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(126, 208, 222, 0.12);
  border: 1px solid rgba(126, 208, 222, 0.25);
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  align-self: flex-start;
}

.centinel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 56px;
  max-width: 860px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 24px 28px;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  user-select: none;
}

.faq-q:hover {
  background: var(--light-bg);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--blue);
  transition: all 0.25s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  contain: layout;
}

.faq-a-inner {
  padding: 20px 28px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  overflow: hidden;
  contain: layout style;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #1e2d3d 0%, var(--navy) 100%);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(131, 184, 228, 0.25),
      transparent
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(126, 208, 222, 0.1),
      transparent
    );
}

.cta-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-left {
}

.cta-left .section-label {
  color: var(--accent-light);
}

.cta-left h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-bullet-icon {
  width: 36px;
  height: 36px;
  background: rgba(126, 208, 222, 0.15);
  border: 1px solid rgba(126, 208, 222, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* Form */
.cta-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  appearance: none;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.submit-btn:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 208, 222, 0.3);
}

.form-fine {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
}

.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  display: block;
}

.footer-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  margin-bottom: 18px;
  transition: opacity 0.2s;
}

.footer-wordmark:hover {
  opacity: 0.75;
}

.footer-wordmark-top {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(126, 208, 222, 0.75);
  line-height: 1;
  display: block;
}

.footer-wordmark-bottom {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

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

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.6;
}

.footer-bottom-left a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
}

.footer-credit-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(126, 208, 222, 0.4);
  }
  50% {
    box-shadow: 0 0 36px rgba(126, 208, 222, 0.7);
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
     RESPONSIVE — Laptop / Tablet / Mobile
     ══════════════════════════════════════ */

/* ── Laptop (≤1100px) ── */
@media (max-width: 1100px) {
  .hero-content {
    gap: 48px;
    padding: 80px 36px;
  }
  .container {
    padding: 0 36px;
  }
  section {
    padding: 80px 36px;
  }
  .prodisc-left {
    padding: 48px 40px;
  }
  .prodisc-right {
    padding: 48px 40px;
  }
  .cta-section {
    padding: 80px 36px;
  }
  .footer-main {
    padding: 48px 36px 36px;
    gap: 36px;
  }
  .footer-bottom {
    padding: 18px 36px;
  }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  /* Header */
  header {
    padding: 0 24px;
    height: 64px;
  }
  .logo img {
    height: 38px;
  }

  /* Global section padding */
  section {
    padding: 64px 24px;
  }
  .container {
    padding: 0;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 64px;
  }
  .hero-left {
    text-align: center;
  }
  h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-right {
    width: 100%;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Two-col sections */
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .what-img-wrap {
    max-height: 340px;
    overflow: hidden;
  }

  /* Candidates */
  .candidates-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Procedure */
  .steps-list {
    max-width: 100%;
  }

  /* prodisc */
  .prodisc-wrapper {
    grid-template-columns: 1fr;
  }
  .prodisc-left {
    padding: 40px 32px;
  }
  .prodisc-right {
    padding: 36px 32px;
  }
  .prodisc-stat-num {
    font-size: 2rem;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 64px 24px;
  }

  /* CTA */
  .cta-section {
    padding: 64px 24px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px;
    gap: 8px;
  }
  .footer-tagline {
    max-width: 100%;
  }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  header {
    padding: 0 16px;
    height: 60px;
  }

  section {
    padding: 52px 16px;
  }

  /* Hero */
  .hero-content {
    padding: 48px 16px 56px;
    gap: 36px;
  }
  h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-desc {
    font-size: 15px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .stat-num {
    font-size: 1.7rem;
  }
  .hero-card-header {
    padding: 20px;
  }
  .hero-card-footer {
    padding: 14px 20px;
    gap: 8px;
  }

  /* Candidates — single col on mobile */
  .candidates-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits */
  .benefit-item {
    padding: 28px 20px;
    gap: 16px;
  }
  .benefit-num {
    font-size: 1.8rem;
    width: 44px;
  }

  /* What is section */
  .what-text p {
    font-size: 15px;
  }

  /* prodisc */
  .prodisc-left {
    padding: 32px 24px;
  }
  .prodisc-right {
    padding: 28px 24px;
    gap: 20px;
  }
  .prodisc-stat-num {
    font-size: 1.8rem;
  }

  /* CTA form */
  .cta-form {
    padding: 28px 20px;
  }
  .cta-section {
    padding: 52px 16px;
  }
  .cta-inner {
    gap: 32px;
  }

  /* FAQ */
  .faq-q {
    padding: 18px 20px;
    font-size: 14px;
  }
  .faq-a-inner {
    padding: 0 20px 20px;
    padding-top: 16px;
  }
  .faq-section {
    padding: 52px 16px;
  }

  /* Steps */
  .step {
    gap: 18px;
  }
  .step-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .steps-list::before {
    left: 20px;
  }

  /* Video section */
  .container[style*="960px"] {
    max-width: 100% !important;
  }

  /* Footer */
  .footer-main {
    padding: 36px 16px 24px;
  }
  .footer-bottom {
    padding: 14px 16px;
    font-size: 11px;
  }

  /* Section headings */
  h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }
}

/* ── Small mobile (≤380px) ── */
@media (max-width: 380px) {
  h1 {
    font-size: 1.9rem;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .badge {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* ══════════════════
     MOBILE NAV
  ══════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
  /* Show hamburger, hide desktop nav links */
  .nav-toggle {
    display: flex;
  }
  nav#mainNav {
    display: none;
  }

  /* Fullscreen overlay when open */
  nav#mainNav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 36px 48px;
    z-index: 150;
    animation: menuFadeIn 0.25s ease forwards;
  }

  nav#mainNav.is-open a {
    color: var(--navy);
    font-size: 22px;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    padding: 16px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0;
    text-decoration: none;
    display: block;
  }

  nav#mainNav.is-open a:last-child {
    border-bottom: none;
  }
  nav#mainNav.is-open a:hover {
    color: var(--accent);
  }

  nav#mainNav.is-open .nav-cta {
    background: var(--accent) !important;
    color: var(--navy) !important;
    padding: 15px 28px !important;
    border-radius: 4px;
    text-align: center;
    margin-top: 16px;
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 600;
    border-bottom: none !important;
  }
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════════
   GRAVITY FORMS — Match original form design
   ══════════════════════════════════════════════ */

/* ── Wrapper reset ── */
.cta-form .gform_wrapper,
.cta-form .gform_wrapper.gravity-theme {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.cta-form .gform_body {
  padding: 0 !important;
}

/* ── Field list — flexbox so half-width pairs work ── */
.cta-form .gform_wrapper .gform_fields,
.cta-form .gform_wrapper ul.gform_fields {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* ── Every field defaults to full width ── */
.cta-form .gform_wrapper .gfield,
.cta-form .gform_wrapper li.gfield {
  width: 100% !important;
  flex: 0 0 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  max-width: 100% !important;
}

/* ── Half-width fields (set field to 50% in GF admin → Appearance → Column Width) ── */
.cta-form .gform_wrapper .gfield--width-half,
.cta-form .gform_wrapper .gf_left_half,
.cta-form .gform_wrapper .gf_right_half,
.cta-form .gform_wrapper li.gf_left_half,
.cta-form .gform_wrapper li.gf_right_half {
  width: calc(50% - 8px) !important;
  flex: 0 0 calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* ── Labels ── */
.cta-form .gform_wrapper .gfield_label {
  font-family: "DM Sans", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  display: block !important;
  line-height: 1.4 !important;
}

.cta-form .gform_wrapper .gfield_required,
.cta-form .gform_wrapper .gfield_required_text {
  display: none !important;
}

/* ── Input containers ── */
.cta-form .gform_wrapper .ginput_container,
.cta-form .gform_wrapper [class*="ginput_container"] {
  margin: 0 !important;
  width: 100% !important;
}

/* ── All inputs, selects, textareas ── */
.cta-form
  .gform_wrapper
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.cta-form .gform_wrapper select,
.cta-form .gform_wrapper textarea {
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  color: var(--text) !important;
  background: var(--light-bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  width: 100% !important;
  outline: none !important;
  box-shadow: none !important;
  transition:
    border-color 0.2s,
    background 0.2s !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  height: auto !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.cta-form .gform_wrapper input:not([type="submit"]):focus,
.cta-form .gform_wrapper select:focus,
.cta-form .gform_wrapper textarea:focus {
  border-color: var(--blue) !important;
  background: var(--white) !important;
  box-shadow: none !important;
  outline: none !important;
}

.cta-form .gform_wrapper textarea {
  resize: vertical !important;
  min-height: 80px !important;
  max-height: 160px !important;
  width: 100% !important;
}

/* ── Select: full width + dropdown caret ── */
.cta-form .gform_wrapper .gfield--type-select,
.cta-form .gform_wrapper li.gfield--type-select {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.cta-form .gform_wrapper .ginput_container_select {
  position: relative !important;
  width: 100% !important;
  display: block !important;
}

.cta-form .gform_wrapper .ginput_container_select::after {
  content: "" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 6px solid var(--muted) !important;
  pointer-events: none !important;
}

.cta-form .gform_wrapper select {
  padding-right: 40px !important;
  cursor: pointer !important;
  width: 100% !important;
}

/* ── Textarea: full width, tighter height ── */
.cta-form .gform_wrapper .gfield--type-textarea,
.cta-form .gform_wrapper li.gfield--type-textarea {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

.cta-form .gform_wrapper .ginput_container_textarea {
  width: 100% !important;
  display: block !important;
}

/* ── Validation errors ── */
.cta-form .gform_wrapper .gfield_error input,
.cta-form .gform_wrapper .gfield_error select,
.cta-form .gform_wrapper .gfield_error textarea {
  border-color: #c0392b !important;
}

.cta-form .gform_wrapper .gfield_error .gfield_label {
  color: #c0392b !important;
}

.cta-form .gform_wrapper .validation_message,
.cta-form .gform_wrapper .gfield_validation_message {
  color: #c0392b !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.cta-form .gform_wrapper .gform_validation_errors,
.cta-form .gform_wrapper .validation_error {
  background: #fdf0ef !important;
  border: 1px solid #e8b4b0 !important;
  border-radius: 6px !important;
  color: #c0392b !important;
  font-size: 13px !important;
  padding: 12px 16px !important;
  margin-bottom: 16px !important;
  box-shadow: none !important;
}

/* ── Submit button ── */
.cta-form .gform_wrapper .gform_footer,
.cta-form .gform_wrapper .gform_page_footer {
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  width: 100% !important;
}

.cta-form .gform_wrapper .gform_button,
.cta-form .gform_wrapper input.gform_button,
.cta-form .gform_wrapper input[type="submit"] {
  width: 100% !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 16px 32px !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  display: block !important;
  text-align: center !important;
  letter-spacing: 0.01em !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  line-height: 1.5 !important;
  height: auto !important;
  margin: 0 !important;
}

.cta-form .gform_wrapper .gform_button:hover,
.cta-form .gform_wrapper input[type="submit"]:hover {
  background: var(--accent) !important;
  color: var(--navy) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(126, 208, 222, 0.3) !important;
}

/* ── Confirmation message ── */
.cta-form .gform_confirmation_wrapper {
  text-align: center;
  padding: 32px 20px;
}

.cta-form .gform_confirmation_message {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  line-height: 1.6 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* ── Disclaimer text ── */
.gf-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ── Hide stray GF elements ── */
.cta-form .gform_wrapper .gform_description,
.cta-form .gform_wrapper .gform_title {
  display: none !important;
}

/* ── Mobile: stack to single column ── */
@media (max-width: 600px) {
  .cta-form .gform_wrapper .gfield--width-half,
  .cta-form .gform_wrapper .gf_left_half,
  .cta-form .gform_wrapper .gf_right_half,
  .cta-form .gform_wrapper li.gf_left_half,
  .cta-form .gform_wrapper li.gf_right_half {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
