/* EMX Technologies - Claude design system reapplied */

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

:root {
  --bg-deep: #07070b;
  --bg-card: #0e0e14;
  --bg-elevated: #14141c;
  --bg-subtle: #1a1a24;
  --text-primary: #f0ece2;
  --text-secondary: #9a968e;
  --text-muted: #5c5952;
  --accent-gold: #c9a24c;
  --accent-gold-dim: #9a7a35;
  --accent-blue: #4a7aff;
  --accent-blue-dim: #2a4a99;
  --border: rgba(240, 236, 226, 0.06);
  --border-light: rgba(240, 236, 226, 0.1);
  --glow-gold: rgba(201, 162, 76, 0.15);
  --glow-blue: rgba(74, 122, 255, 0.12);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.section {
  padding: clamp(80px, 12vh, 160px) 0;
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.eyebrow,
.section-tag,
.panel-label,
.card-kicker,
.timeline-step,
.proof-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-gold-dim);
}

.hero-title,
.subhero-title,
.section-title,
.cta-title,
.section-heading,
.offer-card h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(48px, 7.5vw, 96px);
  max-width: none;
}

.subhero-title {
  font-size: clamp(42px, 6.5vw, 80px);
  max-width: none;
}

.section-title,
.cta-title,
.section-heading {
  font-size: clamp(34px, 5vw, 64px);
  max-width: none;
}

.hero-title em,
.subhero-title em,
.section-title em,
.cta-title em,
.section-heading em,
.offer-card h3 em {
  font-style: italic;
  color: var(--accent-gold);
}

.hero-text,
.subhero-text,
.section-text,
.cta-text,
.section-desc {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
}

.button-row,
.hero-actions,
.contact-actions,
.cta-actions,
.offer-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 32px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-nav:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-deep);
  box-shadow: 0 8px 32px var(--glow-gold);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px var(--glow-gold);
}

.btn-secondary,
.btn-nav {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-primary);
}

.btn-nav {
  min-height: 46px;
  padding: 10px 24px;
  border-color: var(--accent-gold-dim);
  color: var(--accent-gold);
}

.btn-secondary:hover,
.btn-nav:hover {
  border-color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.text-link::after {
  content: "→";
  transition: transform 0.3s var(--ease-out-expo);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(7, 7, 11, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-word {
  color: var(--text-primary);
}

.brand-dot {
  color: var(--accent-gold);
  margin-left: 1px;
}

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

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links > a:not(.btn):hover {
  color: var(--text-primary);
}

.nav-links > a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  min-width: 46px;
  min-height: 46px;
  padding: 10px;
  background: rgba(14, 14, 20, 0.72);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 6px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent-gold-dim);
  background: rgba(20, 20, 28, 0.92);
  color: var(--accent-gold);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 72px;
}

.hero-aurora,
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-aurora::before,
.hero-aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-aurora::before {
  width: 800px;
  height: 800px;
  right: -200px;
  top: -200px;
  background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-aurora::after {
  width: 600px;
  height: 600px;
  left: -100px;
  bottom: -100px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
  animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.hero-grid {
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 70%);
}

.hero-layout,
.subhero-layout,
.split-layout,
.audit-layout,
.faq-layout,
.contact-shell,
.cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.hero-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.page-home .hero-layout {
  grid-template-columns: minmax(0, 1fr);
  max-width: none;
}

.page-home .hero-copy {
  max-width: none;
  gap: 22px;
}

.page-home .hero-title {
  max-width: none;
  font-size: clamp(46px, 5.2vw, 72px);
  text-wrap: balance;
}

.page-home .hero-text {
  max-width: 820px;
}

.page-home .hero-actions {
  padding-top: 10px;
}

.hero-copy,
.subhero-copy,
.split-copy,
.cta-copy,
.contact-copy {
  display: grid;
  gap: 20px;
}

.hero-panel,
.spotlight-panel,
.pricing-panel,
.subhero-panel,
.contact-shell,
.cta-shell,
.faq-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.86), rgba(10, 10, 16, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.hero-panel,
.spotlight-panel,
.pricing-panel,
.subhero-panel {
  padding: clamp(24px, 3vw, 32px);
}

.panel-stack {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.signal-card,
.detail-card,
.timeline-card,
.feature-card,
.offer-card,
.quote-card,
.deliverable-card,
.fit-card,
.story-card,
.stat-item {
  position: relative;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.35s var(--ease-out-expo), background 0.35s ease, border-color 0.35s ease;
}

.signal-card::before,
.detail-card::before,
.timeline-card::before,
.feature-card::before,
.offer-card::before,
.deliverable-card::before,
.fit-card::before,
.story-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out-expo);
}

.signal-card:hover,
.detail-card:hover,
.timeline-card:hover,
.feature-card:hover,
.offer-card:hover,
.deliverable-card:hover,
.fit-card:hover,
.story-card:hover,
.quote-card:hover {
  transform: translateY(-4px);
  background: var(--bg-elevated);
  border-color: var(--border-light);
}

.signal-card:hover::before,
.detail-card:hover::before,
.timeline-card:hover::before,
.feature-card:hover::before,
.offer-card:hover::before,
.deliverable-card:hover::before,
.fit-card:hover::before,
.story-card:hover::before,
.quote-card:hover::before {
  transform: scaleX(1);
}

.signal-card,
.detail-card,
.timeline-card,
.feature-card,
.offer-card,
.deliverable-card,
.fit-card,
.story-card {
  padding: clamp(24px, 3vw, 36px);
}

.quote-card {
  padding: clamp(28px, 3vw, 36px);
}

.signal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent-gold-dim);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card h2,
.detail-card h3,
.timeline-card h3,
.feature-card h3,
.deliverable-card h3,
.fit-card h3,
.story-card h3,
.quote-meta strong,
.offer-card h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
}

.offer-card h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.signal-card p,
.detail-card p,
.timeline-card p,
.feature-card p,
.deliverable-card p,
.fit-card p,
.story-card p,
.offer-card p,
.quote-card p,
.faq-answer {
  margin: 0;
  color: var(--text-secondary);
}

.stat-band {
  padding: 6px 0 46px;
}

.stat-grid,
.card-grid,
.offer-grid,
.timeline-grid,
.quote-grid,
.deliverables-grid,
.fit-grid,
.story-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.stat-item {
  padding: 22px 24px;
}

.stat-item strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--text-primary);
}

.stat-item span {
  color: var(--text-secondary);
  font-size: 14px;
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(20, 20, 28, 0.92), rgba(8, 8, 12, 0.96));
}

.offer-card-audit {
  box-shadow: inset 0 1px 0 rgba(201, 162, 76, 0.14);
}

.offer-card-desk {
  box-shadow: inset 0 1px 0 rgba(74, 122, 255, 0.16);
  border-color: rgba(74, 122, 255, 0.2);
}

.offer-card .checklist {
  margin-top: 18px;
}

.offer-actions {
  margin-top: auto;
  padding-top: 24px;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
}

.offer-actions .btn {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.timeline-grid,
.deliverables-grid,
.quote-grid,
.fit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.section-split .split-layout,
.subhero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.audit-layout {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.subhero {
  position: relative;
  padding: 160px 0 60px;
  overflow: hidden;
}

.subhero::before,
.subhero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.subhero::before {
  width: 680px;
  height: 680px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, var(--glow-gold) 0%, transparent 68%);
}

.subhero::after {
  width: 520px;
  height: 520px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, var(--glow-blue) 0%, transparent 68%);
}

.subhero-panel {
  display: grid;
  gap: 18px;
}

.subhero-metrics {
  display: grid;
  gap: 16px;
}

.subhero-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
}

.offer-card .checklist,
.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--text-secondary);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.pricing-panel,
.spotlight-panel {
  display: grid;
  gap: 18px;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 14px;
}

.inline-link {
  color: var(--accent-gold);
}

.quote-card {
  display: grid;
  gap: 20px;
}

.quote-card p {
  font-size: 18px;
  line-height: 1.8;
}

.quote-meta {
  display: grid;
  gap: 4px;
}

.quote-meta span {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-shell,
.cta-shell {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(28px, 4vw, 40px);
}

.cta-shell {
  position: relative;
  overflow: hidden;
}

.cta-shell::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--glow-gold) 0%, transparent 60%);
  pointer-events: none;
}

.cta-copy,
.cta-actions,
.contact-copy,
.contact-actions {
  position: relative;
  z-index: 1;
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.faq-list {
  grid-template-columns: 1fr;
}

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

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-question span:not(.faq-icon) {
  font-size: 19px;
  line-height: 1.3;
}

.faq-icon,
.faq-question svg {
  flex: 0 0 auto;
  color: var(--accent-gold);
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.25s var(--ease-out-expo), padding 0.25s var(--ease-out-expo);
}

.faq-item.is-open .faq-answer,
.faq-item.open .faq-answer {
  max-height: 520px;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-icon::after,
.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-card);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-gold-dim);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  color: var(--text-muted);
}

.footer-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

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

@media (max-width: 1100px) {
  .hero,
  .hero-home {
    min-height: auto;
  }

  .hero-home {
    padding-top: 112px;
    padding-bottom: 32px;
  }

  .hero-layout,
  .subhero-layout,
  .section-split .split-layout,
  .audit-layout,
  .faq-layout,
  .contact-shell,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .card-grid-four,
  .offer-grid,
  .timeline-grid,
  .quote-grid,
  .deliverables-grid,
  .fit-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    align-items: start;
    gap: 32px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(46px, 6.8vw, 72px);
    max-width: none;
  }

  .page-home .hero-title {
    max-width: none;
    font-size: clamp(38px, 5vw, 56px);
    text-wrap: balance;
  }

  .hero-text {
    max-width: 720px;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .stat-band {
    padding: 0 0 32px;
  }
}

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

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    padding: 16px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.98) 0%, rgba(7, 7, 11, 0.98) 100%);
    backdrop-filter: blur(24px) saturate(1.15);
    -webkit-backdrop-filter: blur(24px) saturate(1.15);
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(240, 236, 226, 0.03);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links > a:not(.btn) {
    padding: 14px 0;
    color: var(--text-primary);
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--border);
  }

  .nav-links > a:not(.btn)::after {
    display: none;
  }

  .nav-links > a:not(.btn):hover {
    color: var(--accent-gold);
  }

  .nav-links .btn-nav {
    margin-top: 16px;
  }

  .hero,
  .hero-home {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-title,
  .subhero-title,
  .section-title,
  .cta-title {
    max-width: none;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 58px);
  }

  .page-home .hero-copy {
    max-width: none;
  }

  .page-home .hero-title {
    max-width: none;
    font-size: clamp(36px, 9.2vw, 46px);
    text-wrap: wrap;
  }

  .subhero-title {
    font-size: clamp(36px, 11vw, 52px);
  }

  .section-title,
  .cta-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-text,
  .subhero-text,
  .section-text,
  .cta-text,
  .section-desc {
    font-size: 17px;
    line-height: 1.75;
  }

  .signal-card p,
  .detail-card p,
  .timeline-card p,
  .feature-card p,
  .deliverable-card p,
  .fit-card p,
  .story-card p,
  .offer-card p,
  .faq-answer,
  .checklist li,
  .stat-item span,
  .pricing-note {
    font-size: 16.5px;
    line-height: 1.72;
  }

  .hero-actions,
  .button-row,
  .contact-actions,
  .cta-actions,
  .offer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-nav {
    width: 100%;
  }

  .card-grid-four,
  .offer-grid,
  .timeline-grid,
  .quote-grid,
  .deliverables-grid,
  .fit-grid,
  .stat-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .signal-card,
  .detail-card,
  .timeline-card,
  .feature-card,
  .offer-card,
  .quote-card,
  .deliverable-card,
  .fit-card,
  .story-card,
  .stat-item,
  .hero-panel,
  .spotlight-panel,
  .pricing-panel,
  .subhero-panel,
  .contact-shell,
  .cta-shell,
  .faq-card {
    padding: 22px;
  }

  .offer-card h3 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .signal-card h2,
  .detail-card h3,
  .timeline-card h3,
  .feature-card h3,
  .deliverable-card h3,
  .fit-card h3,
  .story-card h3,
  .quote-meta strong {
    font-size: 22px;
  }

  .faq-question {
    padding: 20px;
    align-items: flex-start;
  }

  .faq-question span:not(.faq-icon) {
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-answer,
  .faq-item.open .faq-answer {
    padding: 0 20px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
