/* 
  Net Atelier vs Houzz Pro Comparison Page Styles
  Design System: Warm Architectural Minimalism
*/

:root {
  /* Colors */
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --bg-parchment: #E8E4DD;
  --surface: #FFFFFF;
  --primary: #1B3D2F;
  --primary-muted: #4A6358;
  --accent: #C67B5C;
  --accent-hover: #B36A4D;
  --text-headline: #2C2C2C;
  --text-body: #2C2C2C;
  --text-secondary: #6B6560;
  --text-muted: #9A9590;
  --border: #E8E4DD;
  
  /* Shadows */
  --shadow-card: 0 2px 8px rgba(44,44,44,0.04), 0 8px 24px rgba(44,44,44,0.06);
  --shadow-hover: 0 4px 12px rgba(44,44,44,0.06), 0 16px 32px rgba(44,44,44,0.08);
  
  /* Layout */
  --max-width: 1200px;
  --section-padding-v: 160px;
  --card-padding: 32px;
  --card-radius: 2px;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background-color: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, .hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--text-headline);
  font-weight: 400;
}

h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--text-headline);
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-default {
  background-color: var(--bg);
  padding: var(--section-padding-v) 0;
}

.section-alt {
  background-color: var(--bg-alt);
  padding: var(--section-padding-v) 0;
}

.section-compact {
  padding: 96px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.overline {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: #2A4F3F;
}

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

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

.btn-accent {
  background-color: var(--accent);
  color: #FFFFFF;
  padding: 18px 36px;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
}

.btn-inverted {
  background-color: var(--bg);
  color: var(--primary);
  padding: 18px 40px;
}

.btn-inverted:hover {
  background-color: var(--bg-alt);
}

.btn-tertiary {
  background-color: transparent;
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.btn-tertiary:hover {
  color: var(--primary-muted);
}

/* Motion / Reveals */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* SECTION 1: Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.site-nav.scrolled {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-headline);
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 101;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span:first-child { top: 8px; }
.mobile-menu-toggle span:last-child { bottom: 8px; }

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg);
  top: 11px;
}

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg);
  bottom: 11px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-content a {
  font-size: 18px;
  color: var(--text-headline);
}

/* SECTION 2: Hero */
.hero-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 208px 0 128px; /* 80px nav + 128px padding */
}

.hero-container {
  max-width: 800px;
  text-align: center;
}

.hero-overline {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 30px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust-bar {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust-bar .dot {
  margin: 0 8px;
}

/* SECTION 3: Comparison Table */
.table-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  overflow-x: auto;
  background-color: var(--surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background-color: var(--border);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  padding: 14px 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.comparison-table th.highlight-col {
  background-color: var(--primary);
  color: var(--bg);
}

.comparison-table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.comparison-table tr:nth-child(even) td {
  background-color: var(--bg);
}

.comparison-table td.highlight-cell {
  background-color: rgba(27,61,47,0.04);
  font-weight: 500;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--primary);
  font-weight: bold;
  margin-right: 4px;
}

.cross {
  color: #C0392B;
  font-weight: bold;
  margin-right: 4px;
}

.table-footer-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
}

/* SECTION 4: 5 Reasons */
.reasons-stack {
  max-width: 800px;
  margin: 0 auto;
}

.reason-card {
  background-color: var(--surface);
  border-radius: var(--card-radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  border-left: 3px solid var(--primary);
  margin-bottom: 20px;
  transition: box-shadow 0.4s ease;
}

.reason-card:hover {
  box-shadow: var(--shadow-hover);
}

.reason-badge {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 16px;
}

.reason-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.reason-body {
  font-size: 16px;
  color: var(--text-secondary);
}

.reason-callout {
  background-color: var(--bg-alt);
  border-radius: var(--card-radius);
  padding: 14px 20px;
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-headline);
  font-weight: 500;
}

/* SECTION 5: When Houzz Pro is Right */
.when-right-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 28px;
}

.when-right-header h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.when-right-header p {
  font-size: 17px;
  color: var(--text-secondary);
}

.when-right-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.when-card {
  background-color: var(--surface);
  padding: 24px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--border);
}

.when-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.when-card p {
  font-size: 15px;
  color: var(--text-secondary);
}

.when-right-footer {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION 6: Net Atelier Advantages */
.features-alternating {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-overline {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 26px;
  margin-bottom: 16px;
}

.feature-body {
  font-size: 17px;
  line-height: 26px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 15px;
  color: var(--text-headline);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.feature-list .check {
  margin-right: 12px;
}

.feature-visual {
  flex: 1;
}

/* Mockups */
.mockup-card {
  background-color: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg);
}

.mockup-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.mockup-id {
  font-size: 13px;
  color: var(--text-muted);
}

.mockup-body {
  padding: 24px;
}

.mockup-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.mockup-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mockup-label {
  color: var(--text-secondary);
}

.mockup-value {
  font-weight: 500;
  color: var(--text-headline);
}

.mockup-status {
  background-color: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}

.proposal-mockup {
  aspect-ratio: 8.5/11;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
}

.proposal-cover {
  text-align: center;
}

.proposal-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}

.proposal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 16px;
}

.proposal-client {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.invoice-mockup {
  padding: 32px;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}

.invoice-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.invoice-amount {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--primary);
}

.invoice-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.invoice-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.invoice-line:last-child {
  border-bottom: none;
}

/* SECTION 7: Social Proof */
.section-social-proof {
  background-color: var(--bg-alt);
  padding: var(--section-padding-v) 0;
}

.testimonial-large {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 120px;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 36px;
  color: var(--text-headline);
  max-width: 780px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avatar {
  width: 56px;
  height: 56px;
  background-color: var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
}

.author-name {
  font-weight: 500;
  font-size: 15px;
  margin-top: 14px;
}

.author-title {
  font-size: 13px;
  color: var(--text-secondary);
}

.author-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--border);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--card-radius);
  margin-top: 8px;
}

/* SECTION 8: Migration Path */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 64px;
}

.step-card {
  background-color: var(--surface);
  border-radius: var(--card-radius);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.step-badge {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  margin-bottom: 12px;
}

.step-body {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.step-timeline {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}

.changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.change-card {
  padding: 24px;
  border-radius: var(--card-radius);
}

.change-card.keep {
  border-left: 3px solid var(--primary);
}

.change-card.gain {
  border-left: 3px solid #C9B899;
}

.change-card.leave {
  border-left: 3px solid var(--border);
  background-color: var(--bg-alt);
}

.change-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.change-card.keep .change-title { color: var(--primary); }
.change-card.gain .change-title { color: #A89074; }
.change-card.leave .change-title { color: var(--text-muted); }

.change-list {
  list-style: none;
}

.change-list li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.change-list .check, .change-list .dot {
  margin-right: 8px;
}

/* SECTION 9: Pricing Comparison */
.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: var(--card-radius);
  padding: 40px;
}

.pricing-card.houzz {
  background-color: var(--surface);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--border);
}

.pricing-card.savings {
  background-color: var(--bg-alt);
  border-top: 3px solid #C9B899;
}

.pricing-card.net-atelier {
  background-color: var(--primary);
  color: var(--bg);
}

.pricing-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-card.houzz .pricing-label,
.pricing-card.savings .pricing-label {
  color: var(--text-muted);
}

.pricing-card.net-atelier .pricing-label {
  color: rgba(250,248,245,0.6);
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
}

.pricing-card.houzz .pricing-amount { color: var(--text-headline); }
.pricing-card.savings .pricing-amount { color: var(--primary); }
.pricing-card.net-atelier .pricing-amount { color: var(--bg); }

.pricing-period {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.pricing-card.houzz .pricing-period { color: var(--text-muted); }
.pricing-card.savings .pricing-period { color: var(--primary); }
.pricing-card.net-atelier .pricing-period { color: rgba(250,248,245,0.7); }

.pricing-annual {
  font-size: 14px;
  margin-top: 8px;
}

.pricing-card.houzz .pricing-annual { color: var(--text-secondary); }
.pricing-card.net-atelier .pricing-annual { color: rgba(250,248,245,0.7); }

.pricing-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 20px;
}

.pricing-features {
  font-size: 14px;
  color: rgba(250,248,245,0.85);
  margin-top: 20px;
  line-height: 1.8;
}

/* SECTION 10: FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-intro h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.faq-intro p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

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

.accordion-item {
  background-color: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, border-left 0.3s ease;
  border-left: 2px solid transparent;
}

.accordion-item:hover {
  box-shadow: var(--shadow-hover);
}

.accordion-item.active {
  border-left: 2px solid var(--primary);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-headline);
}

.accordion-icon {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
  padding-top: 12px;
}

/* SECTION 11: CTA */
.section-cta {
  background-color: var(--primary);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.cta-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.03;
  pointer-events: none;
}

.cta-title {
  font-size: 48px;
  color: var(--bg);
  margin-bottom: 20px;
}

.cta-subtext {
  font-size: 18px;
  color: rgba(250,248,245,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-note {
  font-size: 13px;
  color: rgba(250,248,245,0.6);
  margin-top: 12px;
}

/* FOOTER */
.site-footer {
  background-color: var(--primary);
  padding: 80px 0;
  color: var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(250,248,245,0.6);
  max-width: 240px;
  line-height: 22px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(250,248,245,0.65);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(250,248,245,0.12);
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250,248,245,0.4);
}

.footer-legal a {
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--bg);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .features-alternating {
    gap: 64px;
  }
  
  .feature-row, .feature-row.reverse {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-v: 96px;
  }
  
  .nav-links, .nav-actions .btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-section {
    padding: 160px 0 96px;
  }
  
  .hero-title {
    font-size: 44px;
    line-height: 52px;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .section-header h2 {
    font-size: 36px;
    line-height: 44px;
  }
  
  .when-right-grid, .steps-grid, .changes-grid, .pricing-compare-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  
  .brand-col {
    grid-column: 1 / -1;
  }
  
  .quote-text {
    font-size: 20px;
    line-height: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding-v: 64px;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
