/* ============================================
   DA Client Acquisition Funnel V2 — Design System
   Editorial Luxury × Infrastructure
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — Darker base with warm accents */
  --bg: #0A0A0A;
  --bg-alt: #0F0F11;
  --bg-card: #111114;
  --bg-elevated: #161619;

  --amber: #D4A574;
  --amber-light: #E8C9A0;
  --amber-dim: rgba(212,165,116,.12);
  --amber-glow: rgba(212,165,116,.08);

  --teal: #4ECDC4;
  --teal-dark: #3BA99E;
  --teal-dim: rgba(78,205,196,.10);

  --white: #F0EDE6;
  --white-bright: #FAFAF8;
  --text: #A8A5A0;
  --text-dim: #706D68;
  --text-faint: #4A4845;

  --border: rgba(240,237,230,.06);
  --border-light: rgba(240,237,230,.10);
  --border-hover: rgba(240,237,230,.16);

  /* Typography */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --max-w: 1100px;
  --max-w-narrow: 760px;
  --max-w-text: 640px;
  --section-pad: clamp(56px, 8vw, 100px);

  /* Motion */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.4, 0, .2, 1);
  --transition: .35s var(--ease-out);
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--amber); color: var(--bg); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

p { margin-bottom: 16px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ---- Typography Classes ---- */
.display-1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}

.display-2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--white);
}

.section-head {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

.accent-bar {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  margin: 0 auto 28px;
  border-radius: 1px;
}

.text-amber { color: var(--amber); }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-brand .accent { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
  transition: color .25s ease;
}

.nav-links a:hover { color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--amber);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(212,165,116,.2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--bg);
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(212,165,116,.25);
}

.btn .arrow {
  font-size: 1rem;
  transition: transform .3s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-nav {
  padding: 10px 24px;
  font-size: .7rem;
}

/* ---- Hero ---- */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: var(--text);
  max-width: var(--max-w-text);
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-proof {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-proof .label {
  font-size: .68rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.proof-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-logos span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  color: var(--text-dim);
  letter-spacing: .08em;
  opacity: .5;
  transition: var(--transition);
}

.proof-logos span:hover {
  opacity: 1;
  color: var(--amber);
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-alt { background: var(--bg-alt); }

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.section-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

/* ---- Problem Section ---- */
.problem-items {
  max-width: var(--max-w-narrow);
  margin: 32px auto 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

.problem-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  color: var(--amber);
  margin-top: 2px;
}

.problem-item p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: var(--text);
}

.problem-item strong { color: var(--white); }

/* ---- Philosophy Section ---- */
.philosophy-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.philosophy-inner p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}

.pullquote {
  background: var(--amber-dim);
  border-left: 3px solid var(--amber);
  padding: 28px 32px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
  line-height: 1.6;
  border-radius: 0 8px 8px 0;
}

/* ---- Process Cards ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 40px auto 0;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 28px;
  border-radius: 16px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  opacity: 0;
  transition: opacity .3s ease;
}

.process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

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

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--amber);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--amber);
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
}

.process-card .detail {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.process-card .detail li {
  font-size: .82rem;
  color: var(--text-dim);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
}

.process-card .detail li::before {
  content: '→';
  color: var(--amber);
  font-weight: 600;
  flex-shrink: 0;
}

/* ---- Outcomes Section ---- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 40px auto 0;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  border-radius: 14px;
  transition: all .3s ease;
}

.outcome-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.outcome-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.outcome-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.outcome-card p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.stat-item .number {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--amber), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .label {
  font-size: .72rem;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
}

/* ---- Portfolio Section (V2: Masonry Bento Layout) ---- */
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .4s var(--ease-out);
  position: relative;
  cursor: pointer;
  grid-row: span 2;
}

/* Tall cards span 3 rows */
.portfolio-card.masonry-tall {
  grid-row: span 3;
}

/* Wide cards span 2 columns */
.portfolio-card.masonry-wide {
  grid-column: span 2;
}

.portfolio-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px) scale(1.01);
  z-index: 5;
  box-shadow:
    0 20px 60px rgba(0,0,0,.5),
    0 0 40px rgba(212,165,116,.08),
    inset 0 0 0 1px rgba(212,165,116,.15);
}

/* The image */
.portfolio-thumb {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: .8rem;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .5s ease;
}

/* On hover: darken + zoom */
.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.08);
  filter: brightness(.3) saturate(.7);
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  pointer-events: none;
}

/* Gradient base */
.portfolio-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(10,10,10,.9));
  transition: height .4s ease, background .4s ease;
  z-index: -1;
}

/* On hover: expand gradient */
.portfolio-card:hover .portfolio-overlay::before {
  height: 100%;
  background: linear-gradient(transparent 5%, rgba(10,10,10,.94));
}

.portfolio-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
  display: block;
}

.portfolio-overlay h4 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--white);
  transition: margin .3s ease;
}

.portfolio-card:hover .portfolio-overlay h4 {
  margin-bottom: 10px;
}

/* Description */
.portfolio-desc {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease .05s;
}

.portfolio-card:hover .portfolio-desc {
  max-height: 140px;
  opacity: 1;
}

/* ---- Who This Is For ---- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 40px auto 0;
}

.fit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
}

.fit-card.yes { border-top: 2px solid var(--amber); }
.fit-card.no { border-top: 2px solid var(--text-dim); }

.fit-card h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.fit-card.yes h4 { color: var(--amber); }
.fit-card.no h4 { color: var(--text-dim); }

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

.fit-list li {
  font-size: .9rem;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.fit-list li .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.fit-card.yes .icon { color: var(--amber); }
.fit-card.no .icon { color: var(--text-dim); }

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 880px;
  margin: 0 auto;
  align-items: center;
}

.about-img {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: .8rem;
  text-align: center;
  padding: 20px;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-text p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text);
}

.about-sig {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--amber);
  margin-top: 20px;
}

.about-sig small {
  font-family: var(--body);
  font-style: normal;
  font-weight: 400;
  font-size: .78rem;
  color: var(--text-dim);
  display: block;
  margin-top: 4px;
}

/* ---- Email Capture Section ---- */
.capture {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

.capture::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  pointer-events: none;
}

.capture-box {
  background: rgba(240,237,230,.02);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 48px 36px;
  max-width: 480px;
  margin: 32px auto 0;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.capture-box input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,.03);
  color: var(--white);
  font-size: .92rem;
  font-family: var(--body);
  margin-bottom: 12px;
  border-radius: 0;
  transition: var(--transition);
  outline: none;
}

.capture-box input::placeholder {
  color: var(--text-dim);
}

.capture-box input:focus {
  border-color: var(--amber);
  background: rgba(212,165,116,.03);
  box-shadow: 0 0 0 3px var(--amber-dim);
}

.capture-box .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-top: 4px;
}

.capture-box .privacy {
  font-size: .68rem;
  color: var(--text-dim);
  margin-top: 14px;
  margin-bottom: 0;
  opacity: .6;
}

/* ---- Final CTA Section ---- */
.final-cta {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .display-1 {
  color: var(--amber);
  margin-bottom: 24px;
}

.final-cta .sub {
  color: var(--text-dim);
  font-size: .85rem;
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.footer-links a {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: .5;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--amber);
}

.footer p {
  font-size: .7rem;
  color: var(--text-dim);
  opacity: .4;
  margin-bottom: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Hero word-fade */
.word-fade {
  opacity: 0;
  display: inline-block;
  animation: word-fade-in .9s var(--ease) forwards;
}

@keyframes word-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero entrance */
.hero-anim {
  opacity: 0;
  animation: hero-in 1s var(--ease) forwards;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

/* Stagger children — supports up to 11 portfolio cards */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: .08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: .16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: .22s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: .28s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: .32s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: .36s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: .40s; }
.reveal-stagger .reveal:nth-child(9) { transition-delay: .44s; }
.reveal-stagger .reveal:nth-child(10) { transition-delay: .48s; }

/* Counter animation */
.count-up { transition: all .3s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }

  .fit-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    text-align: center;
    gap: 32px;
  }

  .about-img {
    max-width: 220px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
  }

  .hero {
    padding: 100px 0 56px;
  }

  .nav-links {
    display: none;
  }

  .display-1 {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-proof {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 90px 0 48px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .capture-box {
    padding: 32px 24px;
  }

  .problem-item {
    flex-direction: column;
    gap: 12px;
  }
}
