/* ==========================================================================
   Bridge the Gap Mockup CSS
   Author: Antigravity
   Aesthetics: Clean, Premium, Human, Trustworthy, Plain-English Focused
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,500&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-primary: #FAF9F6;       /* Warm cream off-white */
  --bg-secondary: #FFFFFF;     /* Crisp white for cards */
  --bg-dark: #0F172A;          /* Deep warm slate/navy */
  --bg-dark-card: #1E293B;     /* Inner slate/navy */
  
  --brand-primary: #0F172A;    /* Slate/navy */
  --brand-accent: #D97706;     /* Warm Amber (Single Accent Color) */
  --brand-accent-hover: #B45309;
  --brand-accent-light: #FEF3C7; /* Soft amber background */
  
  --text-main: #475569;        /* Slate body text */
  --text-heading: #0F172A;     /* Obsidian headings */
  --text-light: #64748B;       /* Muted gray */
  --text-white: #F8FAFC;       /* Off-white text for dark layouts */
  
  --border-color: #E7E5E4;     /* Warm gray borders */
  --border-accent: #FEF3C7;    /* Light amber border */
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-signature: 'Playfair Display', serif; /* Signature styling for founder name */

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.06);
  --shadow-inset: inset 0 2px 4px 0 rgba(0,0,0,0.06);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .section-title { font-size: 1.75rem; }
  .section-intro { font-size: 1rem; margin-bottom: 2rem; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-primary);
  color: var(--bg-secondary);
}

.btn-primary:hover {
  background-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.2);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--brand-accent);
  color: #ffffff;
}

.btn-accent:hover {
  background-color: var(--brand-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.25);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Navigation Header --- */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  height: 80px;
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-heading);
}

.logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand-accent);
  border-radius: 4px;
  display: inline-block;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-accent);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-heading);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-heading);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Header Action */
.nav-cta {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 3rem 1.5rem;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: var(--transition-normal);
    z-index: 99;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-links.nav-active {
    transform: translateX(0);
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-cta {
    display: none; /* Hide standard nav CTA on small screens inside header, we'll put it in mobile list if needed */
  }
  
  .nav-links .btn {
    width: 100%;
    margin-top: 1.5rem;
  }

  /* Hamburger Animation */
  .mobile-menu-btn.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background-color: var(--bg-primary);
  overflow: hidden;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.hero-trust-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust-note svg {
  color: var(--brand-accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-mockup {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-card-mockup::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
}

.mockup-title {
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
}

.mockup-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mockup-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.mockup-list-item.done .mockup-checkbox {
  background-color: var(--brand-accent);
  color: white;
}

.mockup-list-item.done span {
  text-decoration: line-through;
  color: var(--text-light);
}

.mockup-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-visual {
    margin-top: 1rem;
  }
}

/* --- "Does This Sound Familiar?" Section --- */
.familiar {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.familiar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.familiar-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition-normal);
}

.familiar-card:hover {
  border-color: var(--brand-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.familiar-quote-icon {
  color: var(--brand-accent);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  opacity: 0.15;
}

.familiar-quote {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
  border-left: 3px solid var(--brand-accent);
  padding-left: 0.75rem;
}

.familiar-outro-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--brand-accent-light);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: left;
}

.familiar-outro-text {
  font-size: 1.1rem;
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .familiar-grid {
    grid-template-columns: 1fr;
  }
}

/* --- "What We Help With" Section --- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.help-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 119, 6, 0.3);
}

.help-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--brand-accent-light);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.help-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
}

.help-card-desc {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

/* --- "Three Ways We Help" Section --- */
.ways {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ways-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.ways-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--text-light);
}

.ways-card.featured::before {
  background-color: var(--brand-accent);
}

.ways-badge {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background-color: var(--brand-accent-light);
  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.ways-num {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.ways-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.ways-card-desc {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.ways-list {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.ways-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
  font-weight: 500;
}

.ways-list-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 992px) {
  .ways-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --- "Why I Built" Section --- */
.why-built {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.why-built .section-title {
  color: var(--bg-secondary);
}

.why-built-p {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-founder-card {
  background-color: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
}

.founder-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  border: 2px solid var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-accent);
  margin: 0 auto 1.5rem;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-secondary);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.875rem;
  color: var(--brand-accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.founder-signature {
  font-family: var(--font-signature);
  font-size: 2rem;
  color: var(--bg-secondary);
  font-style: italic;
  margin-top: 1rem;
  opacity: 0.9;
}

.founder-note {
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- "Who This Is For" Comparison Section --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.comp-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.comp-card.not-for {
  background-color: var(--bg-secondary);
}

.comp-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
}

.for-icon {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--brand-accent);
}

.not-for-icon {
  background-color: #f1f5f9;
  color: var(--text-light);
}

.comp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-heading);
  font-weight: 500;
}

.comp-list-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.comp-list-item.for-item svg {
  color: var(--brand-accent);
}

.comp-list-item.not-for-item svg {
  color: var(--text-light);
}

@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comp-card {
    padding: 2rem 1.5rem;
  }
}

/* --- Packages Section --- */
.packages {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.package-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-accent);
}

.package-card.highlighted {
  border: 2px solid var(--brand-accent);
  background-color: var(--bg-secondary);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 1.25rem;
}

.package-price-sub {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.package-list {
  margin-bottom: 2rem;
}

.package-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--text-heading);
  font-weight: 500;
}

.package-list-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-btn {
  margin-top: auto;
  width: 100%;
}

.packages-disclaimer {
  max-width: 600px;
  margin: 3rem auto 0;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* --- Ownership Philosophy Section --- */
.philosophy {
  background-color: var(--bg-primary);
}

.philosophy-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--brand-accent);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
}

.philosophy-key-graphic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--brand-accent-light);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.philosophy-key-graphic::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed rgba(217, 119, 6, 0.3);
  border-radius: 50%;
}

.philosophy-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .philosophy-card {
    padding: 2rem 1.5rem;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
  transition: var(--transition-fast);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.faq-question:hover {
  color: var(--brand-accent);
}

.faq-icon-svg {
  transition: transform var(--transition-normal);
  color: var(--text-light);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-svg {
  transform: rotate(180deg);
  color: var(--brand-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0.75rem 0 1.25rem 0;
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-main);
}

/* --- Final CTA Section --- */
.final-cta {
  background-color: var(--bg-primary);
  text-align: center;
  padding: 7rem 0;
}

.final-cta-container {
  max-width: 750px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.final-cta-desc {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.final-cta .btn-group {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.final-cta-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  border-bottom: 2px solid var(--brand-accent);
  padding-bottom: 2px;
}

.final-cta-link:hover {
  color: var(--brand-accent);
  border-color: transparent;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-secondary);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-link:hover {
  color: var(--bg-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-disclaimer {
  max-width: 600px;
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-disclaimer {
    text-align: left;
  }
}

/* ==========================================================================
   Start a Setup Request Modal Overlay
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.modal-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.modal-visible .modal-container {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--text-heading);
}

.modal-header {
  padding: 2rem 2.5rem 1rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.modal-body {
  padding: 1rem 2.5rem 2.5rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  color: var(--text-heading);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand-accent);
  background-color: var(--bg-secondary);
}

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

.modal-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

/* Success Mockup View */
.success-card {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon-container {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--brand-accent-light);
  color: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.success-card-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.success-mockup-notice {
  background-color: var(--bg-primary);
  border: 1px dashed var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-heading);
  text-align: left;
  line-height: 1.5;
}

.success-mockup-notice h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--brand-accent);
}

@media (max-width: 576px) {
  .modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
  }
  
  .modal-body {
    padding: 0.5rem 1.5rem 1.5rem;
  }
}
