/* ══════════════════════════════════════
   RL HVAC — Styles
   ══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: #ffffff;
}

a { color: inherit; }

/* ══════════════════════════════════════
   SHARED — Video, Overlay, Nav, Buttons
   ══════════════════════════════════════ */

/* ── Film grain texture ── */
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-1%, -1%); }
  30% { transform: translate(1%, 2%); }
  50% { transform: translate(-2%, 1%); }
  70% { transform: translate(2%, -1%); }
  90% { transform: translate(1%, 1%); }
}

body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
  opacity: 0.4;
}

/* ── Video background ── */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #0a0f1a;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Overlays ── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(6, 10, 22, 0.7) 0%,
      rgba(6, 10, 22, 0.85) 50%,
      rgba(6, 10, 22, 0.95) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 10, 22, 0.4) 0%,
      rgba(6, 10, 22, 0.3) 50%,
      rgba(6, 10, 22, 0.6) 100%
    );
}

.overlay-solid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: #060a16;
}

/* ── Soft section divider (replaces hard border-top) ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(78, 168, 222, 0.12) 20%,
    rgba(78, 168, 222, 0.08) 50%,
    rgba(255, 255, 255, 0.06) 80%,
    transparent 100%
  );
}

/* ── Top bar ── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  position: relative;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
}

.logo-sm {
  font-size: 1.1rem;
}

.logo-accent {
  color: #4ea8de;
  margin-left: 0.15em;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #4ea8de;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  background: #4ea8de;
  color: #0a0f1a;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-nav-cta:hover {
  background: #6bbfef;
  color: #0a0f1a;
}

/* ── Buttons ── */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #4ea8de;
  color: #0a0f1a;
  border-color: #4ea8de;
}

.btn-primary:hover {
  background: #6bbfef;
  border-color: #6bbfef;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-full {
  width: 100%;
}

/* ── Shared elements ── */
.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4ea8de;
  background: rgba(78, 168, 222, 0.1);
  border: 1px solid rgba(78, 168, 222, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4ea8de;
  margin-bottom: 2.5rem;
  text-align: center;
}

.accent {
  color: #4ea8de;
}

.dot {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 0.25rem;
}


/* ══════════════════════════════════════
   HOMEPAGE — Fixed viewport
   ══════════════════════════════════════ */

.page {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.page .top-bar {
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: 0 3rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* ── Bottom strip ── */
.bottom-strip {
  flex-shrink: 0;
  padding: 1.25rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.strip-services {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-pill {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.strip-legal {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.strip-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.license {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
}

.made-by {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.made-by:hover {
  color: rgba(255, 255, 255, 0.5);
}


/* ══════════════════════════════════════
   ASSESSMENT PAGE
   ══════════════════════════════════════ */

.assess-body {
  background: #060a16;
  overflow-x: hidden;
}

.assess-page {
  position: relative;
  z-index: 2;
}

/* ── Assessment Hero ── */
.assess-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}

.assess-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.assess-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assess-hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 10, 22, 0.7) 0%,
      rgba(10, 18, 36, 0.55) 40%,
      rgba(6, 10, 22, 0.75) 70%,
      #060a16 100%
    ),
    linear-gradient(
      135deg,
      rgba(6, 10, 22, 0.3) 0%,
      transparent 100%
    );
}

.assess-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.assess-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.assess-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
}

/* ── Experience Stats ── */
.stats-section {
  padding: 4rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, rgba(78, 168, 222, 0.03) 50%, #060a16 100%);
}

.stats-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-plus {
  color: #4ea8de;
  font-weight: 700;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4ea8de;
  margin-left: 0.1em;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.stat-sub {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.35rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(78, 168, 222, 0.2), transparent);
}

/* ── Manufacturer Conveyor ── */
.mfr-section {
  padding: 5rem 0;
  overflow: hidden;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mfr-conveyor {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.mfr-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll-left 35s linear infinite;
  width: max-content;
}

.mfr-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.15;
  filter: grayscale(100%) brightness(1.5);
  transition: opacity 0.4s ease;
}

.mfr-conveyor:hover .mfr-track {
  animation-play-state: paused;
}

.mfr-conveyor:hover .mfr-logo {
  opacity: 0.3;
}

/* ── FAQ Accordion ── */
.faq-section {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, #070c1a 50%, #060a16 100%);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(78, 168, 222, 0.5);
  flex-shrink: 0;
  margin-left: 1.5rem;
  transition: transform 0.3s ease, color 0.3s;
}

.faq-item[open] .faq-q::after {
  content: '\2212';
  color: #4ea8de;
}

.faq-q:hover {
  color: #ffffff;
}

.faq-a {
  padding: 0 0 1.35rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 600px;
}

/* ── How It Works — Animated Timeline ── */
.how-section {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, #080e1e 50%, #060a16 100%);
  border-top: none;
}

.steps-timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  overflow: hidden;
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #4ea8de 0%, rgba(78, 168, 222, 0.2) 100%);
  border-radius: 1px;
  transition: height 0.1s linear;
}

.step-card {
  position: relative;
  display: flex;
  gap: 1.75rem;
  padding: 0 0 3.5rem 0;
  opacity: 0;
  transform: translateY(30px);
}

.step-card:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-marker-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060a16;
  position: relative;
  z-index: 2;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.step-marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.step-marker-ring--accent {
  border-color: rgba(78, 168, 222, 0.5);
}

.step-marker-dot--accent {
  background: #4ea8de;
}

.in-view .step-marker-ring {
  border-color: rgba(78, 168, 222, 0.4);
}

.in-view .step-marker-dot {
  background: #4ea8de;
  box-shadow: 0 0 12px rgba(78, 168, 222, 0.4);
}

.in-view .step-marker-ring--accent {
  border-color: #4ea8de;
  box-shadow: 0 0 20px rgba(78, 168, 222, 0.25);
}

.in-view .step-marker-dot--accent {
  box-shadow: 0 0 16px rgba(78, 168, 222, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.step-number {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(78, 168, 222, 0.3);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.step-content {
  flex: 1;
  padding-top: 0.1rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(78, 168, 222, 0.06);
  border: 1px solid rgba(78, 168, 222, 0.12);
  color: #4ea8de;
  margin-bottom: 1rem;
  transition: all 0.5s ease;
}

.in-view .step-icon {
  background: rgba(78, 168, 222, 0.1);
  border-color: rgba(78, 168, 222, 0.2);
}

.step-icon--accent {
  background: rgba(78, 168, 222, 0.1);
  border-color: rgba(78, 168, 222, 0.25);
}

.in-view .step-icon--accent {
  background: rgba(78, 168, 222, 0.15);
  border-color: rgba(78, 168, 222, 0.35);
  box-shadow: 0 0 30px rgba(78, 168, 222, 0.1);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.step-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4ea8de;
  background: rgba(78, 168, 222, 0.08);
  border: 1px solid rgba(78, 168, 222, 0.18);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  line-height: 1.4;
}

/* ── Scroll Animations ── */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 12px rgba(78, 168, 222, 0.4); }
  50% { box-shadow: 0 0 24px rgba(78, 168, 222, 0.7); }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.anim-fade {
  opacity: 0;
  transform: translateY(20px);
}

.anim-fade.in-view {
  animation: fadeSlideUp 0.7s ease forwards;
}

.anim-step {
  opacity: 0;
  transform: translateY(30px);
}

.anim-step.in-view {
  animation: fadeSlideUp 0.6s ease forwards;
}

.anim-card {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}

.anim-card.in-view {
  animation: fadeScale 0.5s ease forwards;
}

/* ── What We Assess — Module Cards ── */
.assess-modules {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, #070c1a 50%, #060a16 100%);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.module-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.module-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.module-card-accent {
  border-color: rgba(78, 168, 222, 0.25);
  background: rgba(78, 168, 222, 0.04);
}

.module-card-accent:hover {
  border-color: rgba(78, 168, 222, 0.4);
  background: rgba(78, 168, 222, 0.08);
}

.module-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(78, 168, 222, 0.08);
  color: #4ea8de;
  margin-bottom: 1.25rem;
}

.module-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.module-list li {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1rem;
  position: relative;
}

.module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(78, 168, 222, 0.4);
}

.module-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4ea8de;
  background: rgba(78, 168, 222, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ── The Promise ── */
.promise-section {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, #080e1e 50%, #060a16 100%);
}

.promise-card {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(78, 168, 222, 0.04);
  border: 1px solid rgba(78, 168, 222, 0.15);
  border-radius: 16px;
  padding: 4rem;
}

.promise-number {
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  color: #4ea8de;
  flex-shrink: 0;
}

.promise-unit {
  font-size: 2rem;
  font-weight: 600;
  vertical-align: super;
  margin-left: 0.1em;
  color: rgba(78, 168, 222, 0.6);
}

.promise-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.promise-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.promise-desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ── CTA Section ── */
.assess-cta {
  padding: 7rem 3rem;
  text-align: center;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
}

.assess-cta .hero-cta {
  justify-content: center;
}

/* ── Contact Form ── */
.contact-section {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #060a16 0%, #070c1a 50%, #060a16 100%);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(78, 168, 222, 0.5);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff40' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #0a0f1a;
  color: #ffffff;
}

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

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

.form-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  color: #4ea8de;
  margin-bottom: 1.5rem;
  animation: fadeScale 0.5s ease;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.success-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ── Site Footer ── */
.site-footer {
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
  font-size: 0.75rem;
}

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

.footer-credit .made-by:hover {
  color: rgba(255, 255, 255, 0.45);
}


/* ══════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════ */

.legal-page {
  position: relative;
  z-index: 2;
}

.legal-body {
  padding: 0 3rem 4rem;
  max-width: 720px;
}

.legal-body h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3rem;
}

.legal-body h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2.5rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-body p,
.legal-body li {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.legal-body ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
}

.legal-body li {
  margin-bottom: 0.35rem;
}

.legal-body a {
  color: #4ea8de;
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .promise-card {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 1.25rem 1.25rem;
  }

  .top-nav {
    gap: 1rem;
  }

  .hero {
    padding: 0 1.25rem;
  }

  .page {
    height: 100vh;
    height: 100dvh;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .bottom-strip {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
    align-items: center;
  }

  .strip-services {
    justify-content: center;
  }

  .strip-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-pill {
    font-size: 0.6rem;
    padding: 0.3rem 0.65rem;
  }

  .assess-hero {
    padding: 0 1.25rem;
    min-height: 55vh;
  }

  .assess-h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .assess-hero-sub {
    font-size: 0.95rem;
  }

  .steps-timeline {
    padding-left: 2.5rem;
  }

  .step-marker {
    left: -2.5rem;
  }

  .step-number {
    display: none;
  }

  .step-highlight {
    font-size: 0.72rem;
    flex-direction: row;
  }

  .stats-section {
    padding: 3rem 1.25rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-unit {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .stat-divider {
    height: 40px;
  }

  .mfr-section {
    padding: 3.5rem 0;
  }

  .mfr-logo {
    height: 22px;
  }

  .mfr-track {
    gap: 2.5rem;
  }

  .faq-section {
    padding: 4rem 1.25rem;
  }

  .faq-q {
    font-size: 0.9rem;
    padding: 1.15rem 0;
  }

  .faq-a {
    font-size: 0.85rem;
  }

  .how-section,
  .assess-modules,
  .promise-section,
  .assess-cta,
  .contact-section {
    padding: 4rem 1.25rem;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .module-card {
    padding: 1.5rem;
  }

  .promise-number {
    font-size: 4rem;
  }

  .promise-unit {
    font-size: 1.5rem;
  }

  .promise-title {
    font-size: 1.2rem;
  }

  .promise-desc {
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .cta-sub {
    font-size: 0.95rem;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-footer {
    padding: 2rem 1.25rem;
  }

  .legal-body {
    padding: 0 1.25rem 3rem;
  }

  .legal-body h1 {
    font-size: 1.5rem;
  }
}
