/* ============================================
   NF Consulting Landing Page - Design System
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --color-primary: #1e3a5f;
  --color-primary-dark: #152a45;
  --color-primary-light: #2d5a8a;
  --color-accent: #3b82f6;
  --color-accent-hover: #2563eb;
  --color-accent-light: #60a5fa;

  --color-bg: #fafbfc;
  --color-bg-alt: #f1f5f9;
  --color-bg-card: #ffffff;

  --color-text: #1a1a2e;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;

  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography - Premium Scale */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --font-size-xs: 0.8125rem;
  /* 13px */
  --font-size-sm: 0.9375rem;
  /* 15px */
  --font-size-base: 1.0625rem;
  /* 17px */
  --font-size-lg: 1.1875rem;
  /* 19px */
  --font-size-xl: 1.375rem;
  /* 22px */
  --font-size-2xl: 1.875rem;
  /* 30px */
  --font-size-3xl: 2.5rem;
  /* 40px */
  --font-size-4xl: 3.25rem;
  /* 52px */

  /* Spacing */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-14: 3.5rem;
  /* 56px */
  --space-16: 4rem;
  /* 64px */
  --space-18: 4.5rem;
  /* 72px */
  --space-20: 5rem;
  /* 80px */

  /* Layout - Wider for better content spread */
  --max-width: 1200px;
  --nav-height: 80px;
  --nav-height-mobile: 72px;
  --sticky-cta-height: 60px;

  /* Borders & Shadows - More depth */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-4xl);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-8);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-4);
}

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

.text-muted {
  color: var(--color-text-muted);
}

.text-small {
  font-size: var(--font-size-sm);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height-mobile);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo img {
  height: 56px;
  width: auto;
}

/* Improved link styling */
a {
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

.nav-links a {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition-fast);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
}

.nav-links a:hover {
  color: var(--color-accent);
  background: var(--color-bg-alt);
}

.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height-mobile);
  left: 0;
  right: 0;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text);
}

/* Sticky Bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--sticky-cta-height);
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  min-width: 160px;
  padding: 0 var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  line-height: 48px;
  vertical-align: middle;
  text-decoration: none;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}

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

.btn-lg {
  height: 56px;
  min-width: 220px;
  font-size: var(--font-size-lg);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-light);
}

.card-featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
  position: relative;
}

.card-featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ---------- Badge / Pill ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 var(--space-5);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ---------- Hero Section ---------- */
.hero {
  padding-top: calc(var(--nav-height-mobile) + var(--space-14));
  padding-bottom: var(--space-10);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero h1 {
  font-size: var(--font-size-3xl);
  letter-spacing: -0.02em;
}

.hero-subhead {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  max-width: 540px;
  line-height: 1.6;
  opacity: 0.85;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--color-text);
}

.hero-bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
  margin-top: var(--space-2);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.hero-mockup {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-thumbnails {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-thumbnails img {
  width: 100px;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.hero-thumbnails img:hover {
  transform: scale(1.05);
}

/* ---------- Persona Section ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.persona-card {
  padding: var(--space-5);
}

.persona-card h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-2);
}

.persona-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ---------- Deliverables Section ---------- */
.deliverables-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.deliverables-list li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

/* Deliverables Grid - Premium Cards */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.deliverable-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
}

.deliverable-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.deliverable-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-4);
}

.deliverable-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

.deliverable-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.deliverable-card li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
}

.deliverable-card li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 600;
  font-size: 0.875rem;
}

.deliverables-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.deliverables-visual img {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.deliverables-visual img:hover {
  transform: scale(1.02);
}

/* ---------- How It Works ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.step-content p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.sla-note {
  margin-top: var(--space-8);
  padding: var(--space-4);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ---------- Inputs Section ---------- */
.inputs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.inputs-column {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.inputs-column h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-6);
  color: var(--color-primary);
  font-weight: 700;
}

.inputs-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.inputs-column li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.inputs-column.required li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  color: var(--color-success);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.inputs-column.optional li::before {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  flex-shrink: 0;
}

.not-a-fit {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.not-a-fit h3 {
  font-size: var(--font-size-base);
  color: var(--color-error);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.not-a-fit ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.not-a-fit li {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.not-a-fit li::before {
  content: '✗';
  color: var(--color-error);
  font-weight: 600;
}

/* ---------- Pricing Section ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
}

.pricing-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-1);
}

.pricing-card .for-who {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.pricing-card .price {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.pricing-card .price span {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 600;
}

.pricing-card .btn {
  width: 100%;
}

.addons {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.addons h3 {
  font-size: var(--font-size-base);
  margin-bottom: var(--space-4);
  text-align: center;
}

.addons-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.addons-list span {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ---------- Samples Section ---------- */
.samples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.sample-item {
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.sample-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.sample-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sample-item figcaption {
  padding: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  background: var(--color-bg-card);
  text-align: center;
}

/* ---------- FAQ Section ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  font-size: var(--font-size-base);
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  background: transparent;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-question::after {
  content: '+';
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: '−';
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary);
  color: white;
  padding: var(--space-10) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-minimal {
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  padding: var(--space-6) 0;
  text-align: center;
}

.footer-minimal .footer-links a {
  color: var(--color-text-muted);
}

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

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  text-align: center;
  color: white;
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
}

.lightbox-close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------- Desktop Styles ---------- */
@media (min-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .container {
    padding: 0 var(--space-6);
  }

  .section {
    padding: var(--space-18) 0;
  }

  .nav {
    height: var(--nav-height);
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-hamburger {
    display: none;
  }

  .sticky-cta {
    display: none;
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-20));
    padding-bottom: var(--space-14);
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: var(--space-16);
  }

  .hero-text {
    flex: 1;
  }

  .hero h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-thumbnails {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-5);
    justify-content: center;
  }

  .hero-thumbnails img {
    width: 140px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
  }

  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deliverables-content {
    flex-direction: row;
    gap: var(--space-12);
  }

  .deliverables-list,
  .deliverables-visual {
    flex: 1;
  }

  .steps {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-12);
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
  }

  .inputs-content {
    flex-direction: row;
    gap: var(--space-12);
  }

  .inputs-column {
    flex: 1;
  }

  .not-a-fit {
    max-width: 400px;
    margin: var(--space-8) auto 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .samples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }
}