/* ============================================
   DOMIN8 ACQUISITIONS — MASTER STYLESHEET
   Warm Fire palette from logo: Orange, Amber, Red
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Fire / Logo palette */
  --fire-900: #8B3A00;
  --fire-700: #D4411E;
  --fire-600: #E8531A;
  --fire-500: #F7941D;
  --fire-400: #FAAB36;
  --fire-300: #FCC65C;
  --fire-200: #FDDA8A;
  --fire-100: #FFF0D1;
  --fire-50:  #FFF9ED;

  /* Red accent (from logo outer stroke) */
  --red-600: #D4411E;
  --red-500: #E94E3E;
  --red-400: #F06848;

  /* Neutrals (dark, matching logo bg) */
  --gray-950: #0A0A0A;
  --gray-900: #111111;
  --gray-800: #1A1A1A;
  --gray-700: #2A2A2A;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-300: #AAAAAA;
  --gray-200: #D0D0D0;
  --gray-100: #EBEBEB;
  --gray-50:  #F5F5F5;
  --white:    #FFFFFF;

  /* Functional */
  --success: #10B981;
  --error:   #EF4444;

  /* Gradients */
  --gradient-fire: linear-gradient(135deg, var(--red-600), var(--fire-500));
  --gradient-fire-light: linear-gradient(135deg, var(--fire-500), var(--fire-300));
  --gradient-brand: linear-gradient(135deg, var(--red-600), var(--fire-400));
  --gradient-hero: linear-gradient(160deg, #050505 0%, var(--gray-900) 40%, #1a1008 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --container-max: 1200px;
  --header-h: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --shadow-glow: 0 0 30px rgba(247,148,29,.2);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --duration: .35s;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--fire-600); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--fire-500); }
ul { list-style: none; }

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--fire-500);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.text-center { text-align: center; }
.gradient-text {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.required { color: var(--error); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  min-height: 48px;
  min-width: 48px;
  text-align: center;
}
.btn-primary {
  background: var(--gradient-fire);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212,65,30,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,65,30,.5);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--fire-400);
  color: var(--fire-300);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-text { display: inline; }
.btn-loader {
  display: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 44px; width: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .3px;
  border-radius: 50px;
  transition: all var(--duration) var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: var(--gradient-fire) !important;
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 8px;
}
.nav-cta:hover { box-shadow: 0 4px 20px rgba(247,148,29,.4); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(212,65,30,.12), transparent),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(247,148,29,.08), transparent);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,148,29,.06), transparent 70%);
  animation: float 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,65,30,.05), transparent 70%);
  animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-400);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fire-400);
}
.stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--fire-500);
  border-radius: 2px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: .4; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-500);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-header { margin-bottom: 60px; }

/* ---------- ABOUT ---------- */
.about { background: var(--gray-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--fire-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-values { margin-top: 32px; }
.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.value-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--fire-100);
  color: var(--fire-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong {
  display: block;
  font-size: .95rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.value-item p {
  font-size: .85rem;
  color: var(--gray-600);
  margin: 0;
}

/* ---------- SERVICES ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}
.service-card:hover {
  border-color: var(--fire-200);
  box-shadow: 0 8px 28px rgba(212,65,30,.1);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--fire-50);
  color: var(--fire-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- RESULTS ---------- */
.results {
  background: var(--gradient-hero);
  color: var(--white);
}
.results .section-eyebrow { color: var(--fire-400); }
.results .section-title { color: var(--white); }
.results .section-description { color: rgba(255,255,255,.55); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.result-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--duration) var(--ease);
}
.result-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(247,148,29,.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(247,148,29,.08);
}
.result-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.result-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.result-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--duration) var(--ease);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--fire-500); margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-fire);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
}
.author-name { display: block; font-weight: 600; font-style: normal; color: var(--gray-900); font-size: .9rem; }
.author-title { font-size: .8rem; color: var(--gray-400); }

/* ---------- CTA BAND ---------- */
.cta-band {
  padding: 80px 0;
  background: var(--gradient-fire);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -8%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title .gradient-text {
  background: linear-gradient(135deg, var(--white), var(--fire-100));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--red-600);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-band .btn-primary:hover {
  background: var(--fire-100);
  transform: translateY(-2px);
}

/* ---------- CONTACT ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--fire-100);
  color: var(--fire-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h3 { font-size: .9rem; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.contact-item p { font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.contact-item a { color: var(--fire-600); }
.contact-item a:hover { color: var(--fire-500); }
.contact-map { margin-top: 8px; }

/* Form styles */
.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-500);
  box-shadow: 0 0 0 3px rgba(247,148,29,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input.error, .form-group textarea.error, .form-group select.error {
  border-color: var(--error);
}
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #6EE7B7;
}
.form-status.error-msg {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--gray-950);
  color: rgba(255,255,255,.55);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }
.footer-links h4 {
  color: var(--fire-400);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  transition: color var(--duration) var(--ease);
}
.footer-links a:hover { color: var(--fire-400); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); }
.footer-bottom-links a:hover { color: var(--fire-400); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ====================================
   LEGAL PAGES (Privacy, Terms)
   ==================================== */
.legal-page {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
}
.legal-page .section-header { margin-bottom: 40px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gray-900);
  margin: 36px 0 12px;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--gray-800);
  margin: 24px 0 8px;
}
.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content .last-updated {
  font-size: .85rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ====================================
   APPLICATION PAGE
   ==================================== */
.apply-page { padding-top: calc(var(--header-h) + 60px); padding-bottom: 80px; }
.apply-page .section-header { margin-bottom: 40px; }
.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.form-section-title:first-of-type { margin-top: 0; }
.form-group small {
  display: block;
  margin-top: 4px;
  font-size: .78rem;
  color: var(--gray-400);
}
.form-group input[type="file"] {
  padding: 10px;
  background: var(--white);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.form-group input[type="file"]:focus {
  border-color: var(--fire-500);
  border-style: solid;
}
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}
.consent-group input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--fire-600);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-group label {
  font-size: .85rem;
  color: var(--gray-600);
  cursor: pointer;
}

/* ---------- INTERNAL NAV for legal/apply pages ---------- */
.internal-nav .nav-link { color: rgba(255,255,255,.8); }
.internal-nav .nav-link:hover { color: var(--white); }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
    z-index: 999;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta { margin-left: 0; text-align: center; }

  .section { padding: 70px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .image-frame { max-width: 400px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-stats { gap: 28px; }
  .stat-number { font-size: 2rem; }

  .apply-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
