/* -------------------------------------------------------------
   One-Off Studios - High-Converting Paid Media Funnel Stylesheet
   Typography: League Spartan (Headlines, 800) & Poppins (Body & Controls)
   Palette: Off-white canvas, Deep Navy accents, Bold Crimson Red (#D4383A)
------------------------------------------------------------- */

:root {
  --font-headline: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F3F4F6;
  --color-surface-dark: #0A1128;
  --color-surface-dark-card: #111B38;
  
  --color-text-main: #121417;
  --color-text-muted: #525866;
  --color-text-light: #F8FAFC;
  --color-text-light-muted: #94A3B8;
  
  --color-crimson: #D4383A;
  --color-crimson-hover: #BA282A;
  --color-crimson-active: #9E1F21;
  --color-crimson-subtle: rgba(212, 56, 58, 0.08);
  --color-crimson-glow: rgba(212, 56, 58, 0.25);
  
  --color-border: #E2E5EB;
  --color-border-dark: #1E293B;
  --color-border-focus: #D4383A;
  
  --color-success: #16A34A;
  --color-warning: #D97706;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-crimson: 0 8px 20px -4px rgba(212, 56, 58, 0.35);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  
  --container-max: 1080px;
  --container-narrow: 760px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--color-text-main);
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -8%, rgba(212, 56, 58, 0.055) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 25%, rgba(10, 17, 40, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 15% 70%, rgba(212, 56, 58, 0.03) 0%, transparent 55%),
    linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-position: center top, center top, center top, 0 0, 0 0;
  overflow-x: hidden;
}

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

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

/* Typography Hierarchy */
h1, h2, h3, h4, .headline-font {
  font-family: var(--font-headline);
  letter-spacing: -0.015em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.24rem, 6.16vw, 4.03rem);
  color: var(--color-text-main);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-main);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

/* Responsive Line Breaks for Controlled Cadence */
.br-mobile {
  display: none;
}

.br-desktop {
  display: inline;
}

p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #2D333D;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: clamp(48px, 8vw, 84px);
  padding-bottom: clamp(48px, 8vw, 84px);
}

.section-dark {
  background-color: var(--color-surface-dark);
  color: var(--color-text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-text-light);
}

.section-dark p {
  color: var(--color-text-light-muted);
}

/* Top Header Bar */
.brand-header {
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 229, 235, 0.8);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px -6px rgba(0, 0, 0, 0.03);
}

.brand-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 56, 58, 0.35) 50%, transparent 100%);
  pointer-events: none;
}

.brand-header.brand-header-dark {
  background: rgba(10, 17, 40, 0.9);
  border-bottom: 1px solid var(--color-border-dark);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  line-height: 1;
}

.brand-logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: clamp(32px, 3.8vw, 40px);
  width: auto;
  max-width: min(240px, 75vw);
  object-fit: contain;
  display: block;
}

.brand-header-dark .brand-logo-img {
  filter: brightness(0) invert(1);
}

.brand-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #E04446 0%, #D4383A 100%);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(212, 56, 58, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Target Audience Pill & Badges */
.audience-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212, 56, 58, 0.09) 0%, rgba(212, 56, 58, 0.03) 100%);
  border: 1px solid rgba(212, 56, 58, 0.28);
  color: var(--color-crimson);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(212, 56, 58, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.phase-pill {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, #E04446 0%, #D4383A 100%);
  color: #FFFFFF;
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(212, 56, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
  padding-top: clamp(40px, 6.5vw, 72px);
  padding-bottom: clamp(28px, 4vw, 44px);
  text-align: center;
  position: relative;
  background: 
    radial-gradient(circle at 50% 12%, rgba(212, 56, 58, 0.065) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 250, 248, 0.9) 100%);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 25%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 25%, black 35%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.82vw, 3.64rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin-bottom: 22px;
  color: var(--color-text-main);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  text-wrap: pretty;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-subheading {
  max-width: 780px;
  margin: 0 auto 32px auto;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.65;
  color: #374151;
}

.hero-subheading p + p {
  margin-top: 14px;
  font-weight: 500;
  color: #1F2937;
}

/* CTA Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #E04446 0%, #D4383A 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: var(--shadow-crimson);
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), background 0.15s ease, box-shadow 0.18s ease;
  text-align: center;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.cta-btn:hover {
  background: linear-gradient(180deg, #D4383A 0%, #BA282A 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -2px rgba(212, 56, 58, 0.48);
}

.cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px -2px rgba(212, 56, 58, 0.4);
}

.cta-btn-block {
  width: 100%;
}

.hero-cta-wrapper {
  margin-top: 28px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-partner-badge-wrap {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-partner-badge-img {
  display: block;
  max-width: 440px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(15, 23, 42, 0.08));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-partner-badge-img:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 18px rgba(15, 23, 42, 0.12));
}

.cta-subtext {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Hero Survey Embed */
.hero-survey-embed {
  margin-top: 28px;
  margin-bottom: 8px;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-height: 0;
  overflow: visible;
  text-align: left;
  position: relative;
}

.hero-survey-embed iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 0;
  background: transparent;
  background-color: transparent;
}

/* Why Choose Us Section */
.why-section {
  padding-top: clamp(32px, 5vw, 54px);
  padding-bottom: clamp(48px, 7vw, 76px);
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 56, 58, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-bg) 0%, #F5F6F8 100%);
  position: relative;
}

.why-section .section-header {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 3px rgba(0, 0, 0, 0.03),
    0 8px 24px -6px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 36px -8px rgba(15, 23, 42, 0.09);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #E04446 0%, #D4383A 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(212, 56, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.18;
  color: var(--color-text-main);
}

.feature-body {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4B5563;
  padding-left: 38px;
  max-width: 52ch;
}

/* Process Section */
.process-section {
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 56, 58, 0.035) 0%, transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-top: clamp(48px, 7vw, 76px);
  padding-bottom: clamp(48px, 7vw, 76px);
}

.process-intro {
  max-width: 760px;
  margin: 0 auto 36px auto;
  text-align: center;
  font-size: 1.12rem;
  color: #2D333D;
  line-height: 1.6;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* Faint red progression line connecting the four phases on desktop */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  bottom: 36px;
  left: 77px;
  width: 2px;
  background: linear-gradient(180deg, 
    #D4383A 0%, 
    rgba(212, 56, 58, 0.45) 50%, 
    rgba(212, 56, 58, 0.2) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.process-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.95);
  border-left: 3px solid rgba(212, 56, 58, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 8px 20px -6px rgba(15, 23, 42, 0.05);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  border-color: #CBD5E1;
  border-left-color: var(--color-crimson);
  transform: translateY(-1px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 4px 12px rgba(0, 0, 0, 0.03),
    0 14px 30px -6px rgba(15, 23, 42, 0.08);
}

/* Progression connector between stacked cards */
.process-card:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 77px;
  bottom: -17px;
  width: 2px;
  height: 17px;
  background: rgba(212, 56, 58, 0.45);
  z-index: 2;
}

.process-card-phase {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.process-card-phase .phase-pill {
  margin-bottom: 0;
  font-size: 0.92rem;
  padding: 5px 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.process-card-content {
  display: flex;
  flex-direction: column;
}

.process-card-title {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--color-text-main);
  margin-bottom: 10px; /* increased spacing between headline and description */
}

.process-card-desc {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
  max-width: 78ch; /* no more than two or three lines on desktop */
}

/* Survey / Qualification Section */
.survey-section {
  background-color: var(--color-surface-dark);
  color: var(--color-text-light);
  padding-top: clamp(52px, 8vw, 88px);
  padding-bottom: clamp(52px, 8vw, 88px);
}

.survey-box {
  background-color: var(--color-surface-dark-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.survey-header {
  text-align: center;
  margin-bottom: 32px;
}

.survey-header h2 {
  color: #FFFFFF;
  margin-bottom: 10px;
}

.survey-header p {
  color: var(--color-text-light-muted);
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 8px;
}

.form-label .required-mark {
  color: #EF4444;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
  background-color: #0A1128;
  border: 1px solid #283556;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-crimson);
  box-shadow: 0 0 0 3px var(--color-crimson-glow);
}

.form-input::placeholder {
  color: #64748B;
}

.radio-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.radio-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background-color: #0A1128;
  border: 1px solid #283556;
  border-radius: var(--radius-md);
  color: #E2E8F0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.15s ease;
}

.radio-card-label:hover {
  border-color: #475569;
}

.radio-card-label input[type="radio"] {
  accent-color: var(--color-crimson);
  width: 18px;
  height: 18px;
  margin: 0;
}

.radio-card-label.selected {
  border-color: var(--color-crimson);
  background-color: rgba(212, 56, 58, 0.12);
  color: #FFFFFF;
}

/* FAQ Accordion Section */
.faq-section {
  background: 
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 56, 58, 0.025) 0%, transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, var(--color-bg) 100%);
  position: relative;
}

.faq-section .section-header h2 {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border: 1px solid rgba(226, 229, 235, 0.9);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 4px 12px -2px rgba(15, 23, 42, 0.04);
}

.faq-item.active {
  border-color: #CBD5E1;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 6px rgba(0, 0, 0, 0.03),
    0 10px 24px -4px rgba(15, 23, 42, 0.07);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
}

.faq-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  color: var(--color-crimson);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding-bottom: 18px;
  font-size: 0.785rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.faq-answer-inner p + p {
  margin-top: 10px;
}

/* Final CTA Section */
.final-cta-section {
  background: 
    radial-gradient(circle at 50% 30%, rgba(212, 56, 58, 0.065) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F6F8 100%);
  border-top: 1px solid var(--color-border);
  text-align: center;
  padding: clamp(56px, 9vw, 92px) 20px;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 960px;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(18, 20, 23, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 20, 23, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 65%);
  pointer-events: none;
}

.final-cta-box {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Footer & Legal */
.site-footer {
  margin-top: auto;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 56, 58, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0D152F 0%, #070B18 100%);
  border-top: 1px solid #1E293B;
  position: relative;
  padding: 42px 20px;
  text-align: center;
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 56, 58, 0.45) 50%, transparent 100%);
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: clamp(26px, 3vw, 32px);
  width: auto;
  max-width: 175px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: block;
}

.footer-logo-img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #94A3B8;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* Sticky Bottom CTA for Mobile */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 17, 40, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  z-index: 100;
  transform: translateY(110%);
  transition: transform 0.25s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.sticky-bottom-cta::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 56, 58, 0.5) 50%, transparent 100%);
}

.sticky-bottom-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 500;
  display: none;
}

.sticky-bottom-cta .cta-btn {
  padding: 14px 20px;
  font-size: 0.95rem;
  width: 100%;
}

/* -------------------------------------------------------------
   BOOKING PAGE STYLES (booking.html)
------------------------------------------------------------- */
.booking-page-body {
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 50% 12%, rgba(212, 56, 58, 0.045) 0%, transparent 55%),
    linear-gradient(to right, rgba(18, 20, 23, 0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18, 20, 23, 0.022) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

.booking-container {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) 20px;
  position: relative;
  z-index: 2;
}

.booking-header {
  text-align: center;
  margin-bottom: 32px;
}

.booking-header h1 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.booking-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.calendar-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04),
    0 20px 48px -12px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  min-height: 520px;
  padding: 12px;
  position: relative;
}

.calendar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.45), transparent);
}

.calendar-card iframe {
  width: 100%;
  min-height: 640px;
  display: block;
  border: none;
}

.calendar-widget {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 520px;
}

.calendar-sidebar {
  background-color: var(--color-surface-dark);
  color: #FFFFFF;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.calendar-sidebar-brand {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.calendar-sidebar-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.calendar-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #CBD5E1;
  margin-bottom: 12px;
}

.calendar-meta-item svg {
  color: var(--color-crimson);
  flex-shrink: 0;
}

.calendar-main {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.calendar-dates-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-month-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.calendar-nav-btn {
  background: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 24px;
}

.calendar-day-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  padding-bottom: 4px;
}

.calendar-day-btn {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background-color: var(--color-surface-subtle);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.calendar-day-btn:hover:not(:disabled) {
  background-color: #E2E8F0;
}

.calendar-day-btn.selected {
  background-color: var(--color-crimson);
  color: #FFFFFF;
  border-color: var(--color-crimson);
}

.calendar-day-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: transparent;
}

.time-slots-section {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.time-slots-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.time-slot-btn {
  padding: 10px 12px;
  border: 1px solid #CBD5E1;
  background-color: #FFFFFF;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.time-slot-btn:hover {
  border-color: var(--color-crimson);
  color: var(--color-crimson);
}

.time-slot-btn.selected {
  background-color: var(--color-crimson);
  color: #FFFFFF;
  border-color: var(--color-crimson);
}

.booking-confirm-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* -------------------------------------------------------------
   THANK-YOU PAGE STYLES (thank-you.html)
------------------------------------------------------------- */
.thankyou-wrapper {
  max-width: 680px;
  margin: clamp(40px, 8vw, 80px) auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.thankyou-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.95);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 48px);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04),
    0 20px 48px -12px rgba(15, 23, 42, 0.08);
  text-align: left;
  position: relative;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.45), transparent);
}

.thankyou-header {
  text-align: center;
  margin-bottom: 32px;
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #B45309;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.12);
}

.thankyou-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #121417;
  margin-bottom: 12px;
}

.thankyou-header p {
  font-size: 1.15rem;
  color: #374151;
  font-weight: 500;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.9);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #E04446 0%, #D4383A 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(212, 56, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: #2D333D;
}

.reinforcement-banner {
  background: linear-gradient(180deg, #FEF2F2 0%, #FEE2E2 100%);
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #991B1B;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(153, 27, 27, 0.05);
}

.help-banner {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #475569;
  font-size: 0.92rem;
}

/* -------------------------------------------------------------
   UNQUALIFIED PAGE STYLES (unqualified.html)
------------------------------------------------------------- */
.unqualified-card {
  max-width: 680px;
  margin: clamp(40px, 8vw, 80px) auto;
  padding: clamp(28px, 6vw, 44px);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04),
    0 20px 48px -12px rgba(15, 23, 42, 0.08);
  text-align: left;
  position: relative;
}

.unqualified-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.45), transparent);
}

.unqualified-card h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 14px;
}

.unqualified-card p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 16px;
}

.unqualified-card .notice-box {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
  border-left: 4px solid var(--color-crimson);
  border-top: 1px solid #E2E8F0;
  border-right: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 18px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-size: 0.95rem;
  color: #1F2937;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* -------------------------------------------------------------
   LEGAL PAGES (privacy.html & terms.html)
------------------------------------------------------------- */
.legal-content {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%);
  border: 1px solid rgba(226, 229, 235, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 8px -2px rgba(15, 23, 42, 0.04),
    0 20px 48px -12px rgba(15, 23, 42, 0.08);
  padding: clamp(28px, 6vw, 48px);
  margin-top: 32px;
  margin-bottom: 48px;
  position: relative;
}

.legal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.45), transparent);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.legal-content h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--color-text-main);
}

.legal-content p,
.legal-content ul {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Responsive Media Queries */
@media (min-width: 640px) {
  .sticky-cta-text {
    display: block;
  }
  .sticky-bottom-cta .cta-btn {
    width: auto;
  }
}

@media (max-width: 768px) {
  /* Responsive Line Breaks for Controlled Cadence */
  .br-mobile {
    display: inline;
  }

  .br-desktop {
    display: none;
  }

  /* Above-the-fold Mobile Optimization */
  .brand-header {
    padding: 12px 0;
  }

  .brand-logo-img {
    height: 30px;
    width: auto;
  }

  .hero-section {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  .audience-badge {
    font-size: 0.76rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-headline {
    font-size: clamp(1.77rem, 5.82vw, 2.41rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-subheading {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 92%;
  }

  .hero-cta-wrapper {
    margin-top: 16px;
    margin-bottom: 14px;
  }

  .hero-partner-badge-wrap {
    margin-top: 14px;
    width: 100%;
  }

  .hero-partner-badge-img {
    max-width: 420px;
  }

  .hero-survey-embed {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 24px;
  }

  .hero-survey-embed iframe {
    width: 100%;
    min-height: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 22px 20px;
  }
  
  .process-timeline::before {
    display: none;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 20px;
    border-left: 3px solid rgba(212, 56, 58, 0.6);
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  .radio-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-widget {
    grid-template-columns: 1fr;
  }
  
  .calendar-sidebar {
    padding: 24px 20px;
  }
  
  .calendar-main {
    padding: 24px 20px;
  }
  
  .time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-btn {
    font-size: 0.94rem;
    padding: 13px 20px;
  }

  .sticky-bottom-cta .cta-btn {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .hero-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-section {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .hero-headline {
    font-size: clamp(1.66rem, 6.5vw, 2.0rem);
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .hero-subheading {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .hero-cta-wrapper {
    margin-top: 14px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-partner-badge-wrap {
    margin-top: 12px;
    width: 100%;
  }

  .hero-partner-badge-img {
    max-width: 100%;
    width: 100%;
  }

  .hero-survey-embed {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
    max-width: calc(100% + 24px);
    padding: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-survey-embed iframe {
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .sticky-bottom-cta .cta-btn {
    font-size: 0.84rem;
    padding: 9px 12px;
  }
  
  .time-slots-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   One-Off Studios - V2 Dark Theme
   Aesthetic: Deep obsidian canvas, multi-layered atmospheric radial
   lighting, precision coordinate grid lines, luminous depth dividers,
   and edge-lit card elevation.
============================================================= */

html.theme-dark,
body.theme-dark {
  --color-bg: #0A0D15;
  --color-surface: #121726;
  --color-surface-subtle: #171F32;
  --color-text-main: #FFFFFF;
  --color-text-muted: #94A3B8;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  background-color: #0A0D15;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -6%, rgba(212, 56, 58, 0.16) 0%, transparent 65%),
    radial-gradient(ellipse 65% 45% at 85% 18%, rgba(28, 56, 120, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% 65%, rgba(212, 56, 58, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 60% 40% at 50% 95%, rgba(30, 58, 138, 0.12) 0%, transparent 60%),
    linear-gradient(to right, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  background-position: center top, center top, center top, center top, 0 0, 0 0;
}

/* Luminous Depth Dividers */
.theme-dark .depth-line {
  height: 1px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 56, 58, 0.15) 20%, 
    rgba(212, 56, 58, 0.6) 45%, 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(212, 56, 58, 0.6) 55%, 
    rgba(212, 56, 58, 0.15) 80%, 
    transparent 100%
  );
  opacity: 0.75;
}

/* Header */
.theme-dark .brand-header {
  background: rgba(10, 13, 21, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.theme-dark .brand-header::before {
  background: linear-gradient(90deg, transparent 0%, rgba(212, 56, 58, 0.6) 50%, transparent 100%);
  opacity: 0.8;
}

/* Hero Elements */
.theme-dark .hero-section {
  background: 
    radial-gradient(ellipse 90% 65% at 50% -8%, rgba(212, 56, 58, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 65% 45% at 85% 25%, rgba(28, 56, 120, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 15% 55%, rgba(212, 56, 58, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #0A0D15 0%, #0E1322 60%, #0A0D15 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.theme-dark .hero-section::before {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at 50% 30%, black 45%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 45%, transparent 78%);
  opacity: 1;
}

.theme-dark .audience-badge {
  background: rgba(212, 56, 58, 0.14);
  border: 1px solid rgba(212, 56, 58, 0.45);
  color: #FF8A8C;
  box-shadow: 0 0 16px rgba(212, 56, 58, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.theme-dark .hero-headline {
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 56, 58, 0.18);
}

.theme-dark .hero-subheading,
.theme-dark .hero-subheading p {
  color: #CBD5E1;
}

.theme-dark .cta-btn {
  background: linear-gradient(135deg, #E54547 0%, #D4383A 55%, #B92628 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 
    0 0 24px -2px rgba(212, 56, 58, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.theme-dark .cta-btn:hover {
  background: linear-gradient(135deg, #F04C4E 0%, #E03E40 55%, #C72B2D 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 0 34px 2px rgba(212, 56, 58, 0.65),
    0 12px 28px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.theme-dark .hero-partner-badge-img {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 12px rgba(212, 56, 58, 0.18));
}

.theme-dark .hero-survey-embed {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Why Choose Us Section */
.theme-dark .why-section {
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 56, 58, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, #090C14 0%, #0D121F 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-dark .section-header h2 {
  color: #FFFFFF;
}

.theme-dark .feature-card {
  background: linear-gradient(180deg, rgba(21, 28, 44, 0.75) 0%, rgba(13, 17, 28, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 10px 28px -6px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.theme-dark .feature-card::before {
  background: linear-gradient(90deg, transparent, rgba(212, 56, 58, 0.8), transparent);
}

.theme-dark .feature-card:hover {
  border-color: rgba(212, 56, 58, 0.5);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 24px -4px rgba(212, 56, 58, 0.25),
    0 16px 36px -8px rgba(0, 0, 0, 0.65);
}

.theme-dark .feature-title {
  color: #FFFFFF;
}

.theme-dark .feature-body {
  color: #94A3B8;
}

.theme-dark .feature-check {
  background: linear-gradient(135deg, #E24749 0%, #D4383A 100%);
  box-shadow: 0 0 12px rgba(212, 56, 58, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Process Section */
.theme-dark .process-section {
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 56, 58, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, #0C101C 0%, #080B13 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.theme-dark .process-intro {
  color: #94A3B8;
}

.theme-dark .process-timeline::before {
  background: linear-gradient(180deg, 
    #E54547 0%, 
    rgba(212, 56, 58, 0.6) 50%, 
    rgba(212, 56, 58, 0.25) 100%
  );
  box-shadow: 0 0 12px rgba(212, 56, 58, 0.45);
}

.theme-dark .process-card {
  background: linear-gradient(180deg, rgba(21, 28, 44, 0.78) 0%, rgba(13, 17, 28, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(212, 56, 58, 0.7);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.3),
    0 10px 28px -6px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.theme-dark .process-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: #E84B4D;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 22px -4px rgba(212, 56, 58, 0.25),
    0 14px 32px -6px rgba(0, 0, 0, 0.65);
}

.theme-dark .process-card:not(:last-child)::after {
  background: rgba(212, 56, 58, 0.65);
  box-shadow: 0 0 8px rgba(212, 56, 58, 0.35);
}

.theme-dark .phase-pill {
  background: linear-gradient(135deg, #E24749 0%, #D4383A 100%);
  box-shadow: 0 0 10px rgba(212, 56, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.theme-dark .process-card-title {
  color: #FFFFFF;
}

.theme-dark .process-card-desc {
  color: #94A3B8;
}

/* FAQ Section */
.theme-dark .faq-section {
  background: linear-gradient(180deg, #080B13 0%, #0A0D15 100%);
}

.theme-dark .faq-item {
  background: linear-gradient(180deg, rgba(21, 28, 44, 0.65) 0%, rgba(13, 17, 28, 0.78) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 16px -2px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-dark .faq-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.theme-dark .faq-item.active {
  border-color: rgba(212, 56, 58, 0.5);
  box-shadow: 
    0 0 24px -4px rgba(212, 56, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.theme-dark .faq-question {
  color: #FFFFFF;
}

.theme-dark .faq-toggle-icon {
  color: #E54547;
}

.theme-dark .faq-answer-inner {
  color: #94A3B8;
}

/* Final CTA Section */
.theme-dark .final-cta-section {
  background: 
    radial-gradient(circle at 50% 30%, rgba(212, 56, 58, 0.14) 0%, transparent 65%),
    linear-gradient(180deg, #0B0F1B 0%, #070910 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.theme-dark .final-cta-section::before {
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.theme-dark .final-cta-box h2 {
  color: #FFFFFF;
}

.theme-dark .final-cta-box p {
  color: #94A3B8;
}

/* Footer */
.theme-dark .site-footer {
  background: linear-gradient(180deg, #070910 0%, #05070C 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #64748B;
}

.theme-dark .site-footer::before {
  background: linear-gradient(90deg, transparent 0%, rgba(212, 56, 58, 0.5) 50%, transparent 100%);
}

.theme-dark .footer-logo-img {
  filter: none;
  opacity: 0.9;
}

.theme-dark .footer-links a {
  color: #94A3B8;
}

.theme-dark .footer-links a:hover {
  color: #FFFFFF;
}

/* Sticky Bottom CTA Mobile */
.theme-dark .sticky-bottom-cta {
  background-color: rgba(10, 13, 21, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.theme-dark .sticky-cta-text {
  color: #FFFFFF;
}

/* Mobile Adjustments for Dark Mode */
@media (max-width: 768px) {
  .theme-dark .hero-survey-embed {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .theme-dark .hero-survey-embed {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}

