/* =================================================================
   NORTHMARK COMMERCE — styles.css
   =================================================================
   Table of Contents:
   01. CSS Custom Properties (Variables)
   02. Global Reset & Base
   03. Accessibility Utilities
   04. Typography Utilities
   05. Button Components
   06. Animation & Reveal
   07. Navigation
   08. Hero Section
   09. Problem Section
   10. How It Works Section
   11. Services Section
   12. Why Us Section
   13. Brand Fit Section
   14. Results Section
   15. Amazon Context Section
   16. Final CTA Section
   17. Contact Form
   18. Footer
   19. Responsive Breakpoints
   ================================================================= */


/* ── 01. CSS CUSTOM PROPERTIES ── */
:root {
  --green-deep:  #0D1F1A;
  --green-mid:   #152B23;
  --green-light: #1E3D30;
  --green-soft:  #2A5040;
  --cream:       #F5F0E8;
  --cream-dim:   #E8E0D0;
  --white:       #FDFAF5;
  --amber:       #D4883A;
  --amber-light: #E8A855;
  --amber-dim:   rgba(212, 136, 58, 0.12);
  --text-dark:   #A8C0B0;
  --text-light:  #4A5A50;
  --bd-dark:     rgba(255, 255, 255, 0.07);
  --bd-light:    rgba(13, 31, 26, 0.1);

  /* Font stacks */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;
}


/* ── 02. GLOBAL RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  overflow-x: hidden;
  background: var(--cream);
  color: var(--green-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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


/* ── 03. ACCESSIBILITY UTILITIES ── */

/* Skip-to-content link — visible only on keyboard focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Keyboard-visible focus ring */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Honeypot field — completely hidden from real users, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}


/* ── 04. TYPOGRAPHY UTILITIES ── */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  animation: blink 2.5s ease infinite;
  flex-shrink: 0;
}

.eyebrow-light::before {
  background: rgba(245, 240, 232, 0.5);
}

.eyebrow-light {
  color: rgba(245, 240, 232, 0.6);
}

.eyebrow-center {
  justify-content: center;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

.sh {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.sh-xl { font-size: clamp(3.4rem, 6.5vw, 6.2rem); }
.sh-lg { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.sh-md { font-size: clamp(1.7rem, 2.8vw, 2.6rem); }


/* ── 05. BUTTON COMPONENTS ── */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}

.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 136, 58, 0.3);
}

.btn-amber:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 232, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: var(--cream);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid rgba(13, 31, 26, 0.3);
}

.btn-ghost-dark:hover {
  background: var(--green-deep);
  color: var(--cream);
}

.btn-sm {
  padding: 11px 26px;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
  display: block;
}

/* Loading state inside a button */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ── 06. ANIMATION & REVEAL ── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.rev-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rev-l.vis {
  opacity: 1;
  transform: none;
}

.rev-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.rev-r.vis {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.26s; }
.d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.42s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}


/* ── 07. NAVIGATION ── */

nav#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 31, 26, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd-dark);
  transition: background 0.3s;
  will-change: background;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active {
  color: var(--amber);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}

.nav-cta {
  padding: 9px 20px !important;
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: 5px;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
  color: #fff !important;
}

/* Hamburger button — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(13, 31, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd-dark);
  padding: 24px 5% 28px;
  flex-direction: column;
  gap: 18px;
  z-index: 199;
}

.mobile-menu a {
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid var(--bd-dark);
}

.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--amber);
}

.mobile-menu.open {
  display: flex;
}


/* ── 08. HERO SECTION ── */

#hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  padding: 120px 5% 100px;
  position: relative;
  overflow: hidden;
}

/* Radial mesh background */
.h-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 42%, rgba(212, 136, 58, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 12% 75%, rgba(21, 43, 35, 0.8) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle grid overlay */
.h-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Floating orb container (JS-populated) */
#orbWrap {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 20px)); }
}

.orb-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--amber);
  animation: orbPulse 3s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 0.12; transform: scale(0.65); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  animation: fadeUp 0.8s both;
  margin-bottom: 28px;
}

.hero-h {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--cream);
  animation: fadeUp 0.8s 0.1s both;
}

.hero-h em {
  font-style: italic;
  color: var(--amber);
  display: block;
}

.hero-sub {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.82;
  max-width: 490px;
  margin: 28px 0 16px;
  animation: fadeUp 0.8s 0.2s both;
}

.hero-qualifier {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.25s both;
}

.hero-qualifier span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(168, 192, 176, 0.6);
  letter-spacing: 0.08em;
}

.hq-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(168, 192, 176, 0.4);
  flex-shrink: 0;
}

.hero-acts {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s both;
}

/* Proof badges — absolute positioned on desktop */
.hero-proof {
  position: absolute;
  bottom: 100px;
  right: 5%;
  display: flex;
  gap: 12px;
  z-index: 2;
  animation: fadeUp 0.8s 0.5s both;
}

.proof-badge {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 22px;
  border-radius: 10px;
  text-align: center;
}

.proof-badge .pn {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}

.proof-badge .pl {
  font-size: 0.62rem;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* Scrolling ticker */
.ticker-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: rgba(21, 43, 35, 0.88);
  border-top: 1px solid var(--bd-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 48px;
  animation: tickScroll 28s linear infinite;
  white-space: nowrap;
  padding: 0 24px;
}

.ticker-inner span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 192, 176, 0.45);
}

.ticker-inner .ta {
  color: var(--amber);
}

@keyframes tickScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ── 09. PROBLEM SECTION ── */

#problem {
  background: var(--cream);
  padding: 110px 5%;
}

.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.problem-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.problem-hdr .sh {
  color: var(--green-deep);
  margin-top: 14px;
}

.problem-hdr p {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.prob-card {
  background: var(--white);
  border: 1px solid var(--bd-light);
  border-radius: 16px;
  padding: 42px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.prob-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.prob-card:hover {
  border-color: rgba(212, 136, 58, 0.3);
  box-shadow: 0 16px 48px rgba(13, 31, 26, 0.08);
  transform: translateY(-4px);
}

.prob-ico {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  /* Prevent emoji from shrinking on some browsers */
  font-style: normal;
}

.prob-card h3 {
  font-family: var(--font-serif);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.prob-card p {
  color: var(--text-light);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.85;
}


/* ── 10. HOW IT WORKS SECTION ── */

#how {
  background: var(--green-deep);
  padding: 110px 5%;
}

.how-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.how-hdr {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.how-hdr .sh {
  color: var(--cream);
  margin-top: 14px;
}

.how-hdr p {
  color: var(--text-dark);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal connector line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 20%, var(--amber) 80%, transparent);
  opacity: 0.25;
}

.step {
  padding: 0 28px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 1.5px solid rgba(212, 136, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step:hover .step-num {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  box-shadow: 0 0 30px rgba(212, 136, 58, 0.4);
}

.step-ico {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.step h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--text-dark);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.85;
}


/* ── 11. SERVICES SECTION ── */

#services {
  background: var(--cream);
  padding: 110px 5%;
}

.svc-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.svc-hdr {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.svc-hdr .sh {
  color: var(--green-deep);
  margin-top: 14px;
}

.svc-hdr p {
  color: var(--text-light);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 16px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--bd-light);
  border-radius: 14px;
  padding: 30px 24px;
  transition: all 0.3s;
}

.svc-card:hover {
  border-color: rgba(212, 136, 58, 0.3);
  box-shadow: 0 12px 36px rgba(13, 31, 26, 0.08);
  transform: translateY(-3px);
}

.svc-card .sc-ico {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.svc-card h4 {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep);
  margin-bottom: 9px;
}

.svc-card p {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.78;
}


/* ── 12. WHY US SECTION ── */

#why {
  background: var(--green-mid);
  padding: 110px 5%;
}

.why-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.why-hdr {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}

.why-hdr .sh {
  color: var(--cream);
  margin-top: 14px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--bd-dark);
  border-radius: 16px;
  padding: 46px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 136, 58, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: rgba(212, 136, 58, 0.3);
}

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

.why-card .wi {
  font-size: 2.2rem;
  margin-bottom: 24px;
  display: block;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.48rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--text-dark);
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.87;
}

.why-card .why-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(212, 136, 58, 0.25);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}


/* ── 13. BRAND FIT SECTION ── */

#fit {
  background: var(--cream);
  padding: 110px 5%;
}

.fit-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.fit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.fit-text .sh {
  color: var(--green-deep);
  margin-top: 14px;
  margin-bottom: 22px;
}

.fit-text p {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.87;
  margin-bottom: 32px;
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--bd-light);
  border-radius: 11px;
  padding: 18px 20px;
  transition: all 0.3s;
}

.fit-item:hover {
  border-color: rgba(212, 136, 58, 0.3);
}

.fit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 136, 58, 0.12);
  border: 1.5px solid rgba(212, 136, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 1px;
}

.fit-item p {
  color: var(--text-light);
  font-size: 0.87rem;
  font-weight: 400;
  line-height: 1.65;
}

.fit-item strong {
  color: var(--green-deep);
  font-weight: 600;
}

/* Right column — disqualifier box */
.fit-not {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 40px 36px;
}

.fit-not h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.fit-not-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fit-not-item:last-child {
  margin-bottom: 0;
}

.fit-x {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #ff6060;
  margin-top: 2px;
}

.fit-not-item p {
  color: var(--text-dark);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.65;
}

.fit-cta-wrap {
  margin-top: 22px;
  text-align: center;
}


/* ── 14. RESULTS SECTION ── */

#results {
  background: var(--green-deep);
  padding: 110px 5%;
}

.results-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.results-hdr {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.results-hdr .sh {
  color: var(--cream);
  margin-top: 14px;
}

.results-hdr p {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 16px;
}

.results-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result-quote {
  background: var(--green-mid);
  border: 1px solid var(--bd-dark);
  border-radius: 18px;
  padding: 46px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rq-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  line-height: 1.38;
  margin-bottom: 28px;
  position: relative;
}

.rq-text::before {
  content: '\201C';
  color: var(--amber);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.rq-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rq-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber-dim);
  border: 2px solid rgba(212, 136, 58, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--amber);
  flex-shrink: 0;
}

.rq-name {
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--cream);
}

.rq-co {
  font-size: 0.74rem;
  color: var(--text-dark);
  margin-top: 2px;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rm {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--bd-dark);
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.rm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}

.rm:hover {
  border-color: rgba(212, 136, 58, 0.3);
}

.rm-n {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.05em;
  line-height: 1;
  display: block;
}

.rm-l {
  font-size: 0.68rem;
  color: var(--text-dark);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.5;
  display: block;
}


/* ── 15. AMAZON CONTEXT SECTION ── */

#amazon {
  background: var(--green-light);
  padding: 90px 5%;
  border-top: 1px solid var(--bd-dark);
  border-bottom: 1px solid var(--bd-dark);
}

.amazon-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}

.amazon-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-top: 14px;
}

.amazon-left h2 em {
  color: var(--amber);
  font-style: normal;
}

.amazon-left p {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 360px;
}

.amazon-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.az-stat {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid var(--bd-dark);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.az-n {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  letter-spacing: -0.04em;
  line-height: 1;
}

.az-l {
  font-size: 0.66rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 8px;
  display: block;
}


/* ── 16. FINAL CTA SECTION ── */

#cta {
  background: var(--green-deep);
  padding: 150px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind CTA */
#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 136, 58, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner .sh {
  color: var(--cream);
  margin: 16px 0 10px;
}

.cta-inner .sh em {
  color: var(--amber);
  font-style: italic;
}

.cta-sub {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
  margin: 20px auto 36px;
  max-width: 480px;
}

.cta-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(168, 192, 176, 0.45);
  letter-spacing: 0.07em;
}


/* ── 17. CONTACT FORM ── */

.contact-form {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--bd-dark);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: left;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 192, 176, 0.4);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8C0B0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group select option {
  background: var(--green-deep);
  color: var(--cream);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 136, 58, 0.5);
  background: rgba(245, 240, 232, 0.09);
}

/* Validation error state */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: rgba(255, 100, 100, 0.55);
  background: rgba(255, 80, 80, 0.04);
}

/* Per-field error message */
.field-error {
  font-size: 0.7rem;
  color: #ff7070;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  min-height: 1em;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Submit row */
.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 28px;
}

.form-submit-row .btn {
  width: 100%;
}

/* Form-level status (error or success toast) */
.form-status {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.form-status.is-error {
  display: block;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
}

/* Full success panel (replaces form) */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 32px;
}

.form-success .fs-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}

/* Optional field label tag */
.field-optional {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(168, 192, 176, 0.45);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-weight: 400;
}

/* Contact method selector */
.form-label-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cm-tabs {
  display: flex;
  gap: 8px;
  margin: 6px 0 10px;
}

.cm-tab {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.cm-tab input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cm-tab span {
  display: block;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 8px;
  background: rgba(245, 240, 232, 0.04);
  color: rgba(168, 192, 176, 0.55);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  transition: all 0.2s;
  cursor: pointer;
}

.cm-tab input[type="radio"]:checked + span {
  background: rgba(212, 136, 58, 0.1);
  border-color: rgba(212, 136, 58, 0.45);
  color: var(--amber);
}

.cm-tab:hover span {
  border-color: rgba(245, 240, 232, 0.28);
  color: var(--cream);
}

.cm-tab input[type="radio"]:focus-visible + span {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

#cm-email-wrap input,
#cm-phone-wrap input {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

#cm-email-wrap input::placeholder,
#cm-phone-wrap input::placeholder {
  color: rgba(168, 192, 176, 0.4);
}

#cm-email-wrap input:focus,
#cm-phone-wrap input:focus {
  border-color: rgba(212, 136, 58, 0.5);
  background: rgba(245, 240, 232, 0.09);
}

#cm-email-wrap input.error,
#cm-phone-wrap input.error {
  border-color: rgba(255, 100, 100, 0.55);
  background: rgba(255, 80, 80, 0.04);
}

/* Mailto fallback link */
.mailto-fallback {
  font-size: 0.78rem;
  color: rgba(168, 192, 176, 0.5);
  text-align: center;
}

.mailto-fallback a {
  color: rgba(168, 192, 176, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(168, 192, 176, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.mailto-fallback a:hover {
  color: var(--amber);
  border-color: var(--amber);
}


/* ── 18. FOOTER ── */

footer {
  background: var(--green-mid);
  border-top: 1px solid var(--bd-dark);
  padding: 70px 5% 36px;
}

.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.ft-brand .ft-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ft-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.ft-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.ft-brand p {
  color: var(--text-dark);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.9;
  margin-top: 14px;
  max-width: 280px;
}

.ft-col h4 {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-col a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 300;
  transition: color 0.2s;
}

.ft-col a:hover {
  color: var(--cream);
}

.ft-bottom {
  border-top: 1px solid var(--bd-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-bottom p {
  font-size: 0.73rem;
  color: rgba(168, 192, 176, 0.4);
}

.ft-disc {
  font-size: 0.68rem;
  color: rgba(168, 192, 176, 0.32);
  max-width: 500px;
  line-height: 1.65;
  text-align: right;
}


/* ── 19. RESPONSIVE BREAKPOINTS ── */

@media (max-width: 1024px) {
  .svc-grid          { grid-template-columns: repeat(2, 1fr); }
  .steps             { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps::before     { display: none; }
  .amazon-inner      { grid-template-columns: 1fr; gap: 44px; }
  .amazon-left p     { max-width: 100%; }
  .ft-top            { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  .problem-grid      { grid-template-columns: 1fr; }
  .steps             { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .fit-wrap          { grid-template-columns: 1fr; gap: 36px; }
  .results-wrap      { grid-template-columns: 1fr; }
  .result-metrics    { grid-template-columns: 1fr 1fr; }
  .svc-grid          { grid-template-columns: 1fr; }
  .hero-proof        { display: none; }
  .ft-top            { grid-template-columns: 1fr; }
  .ft-disc           { text-align: left; }
  .cta-acts          { flex-direction: column; align-items: center; }
  #orbWrap           { width: 320px; height: 320px; right: -10%; }
  .hero-h            { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  nav                { padding: 0 4%; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form      { padding: 32px 24px; }

  #hero, #problem, #how, #services, #why, #fit, #results, #amazon, #cta {
    padding-left: 4%;
    padding-right: 4%;
  }
}

@media (max-width: 480px) {
  .hero-acts         { flex-direction: column; width: 100%; }
  .hero-acts .btn    { width: 100%; text-align: center; }
  .result-metrics    { grid-template-columns: 1fr; }
  .amazon-stats      { grid-template-columns: 1fr; }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal, .rev-l, .rev-r {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
