/* ============================================
   CAMERON CONSTRUCTION SSHO — STYLES
   Industrial Precision Design System
   ============================================ */

:root {
  --black: #0A0C0F;
  --gunmetal: #1C1F24;
  --gunmetal-light: #252930;
  --steel: #2E3340;
  --orange: #FF6B1A;
  --orange-dim: rgba(255, 107, 26, 0.15);
  --orange-glow: rgba(255, 107, 26, 0.4);
  --blue: #1E8FD5;
  --blue-dim: rgba(30, 143, 213, 0.15);
  --white: #F0EDE8;
  --white-dim: rgba(240, 237, 232, 0.6);
  --white-faint: rgba(240, 237, 232, 0.08);
  --red: #E53935;
  --green: #43A047;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-orange: 0 0 40px rgba(255,107,26,0.2);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; letter-spacing: 0.02em; }
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: transparent;
  color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(240,237,232,0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: var(--white-faint);
}
.btn--nav {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  font-size: 0.8rem;
  padding: 0.55rem 1.2rem;
}
.btn--nav:hover { background: transparent; color: var(--orange); }
.btn--lg { padding: 0.95rem 2rem; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ============ SECTION SHARED ============ */
.section__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--orange-dim);
  border-radius: 4px;
  background: var(--orange-dim);
}
.section__title { color: var(--white); margin-bottom: 1rem; }
.section__sub { color: var(--white-dim); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.text--accent { color: var(--orange); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,12,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,107,26,0.12);
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(10,12,15,0.97);
  border-bottom-color: rgba(255,107,26,0.2);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
}
.nav__logo-cam { color: var(--orange); }
.nav__logo-eron { color: var(--white); }
.nav__logo-ssho {
  color: var(--blue);
  font-size: 1rem;
  margin-left: 0.5rem;
  letter-spacing: 0.2em;
}
.nav__links {
  display: flex;
  gap: 0.2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--gunmetal);
  border-bottom: 1px solid var(--steel);
  padding: 1.5rem 2rem;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.5rem; }
.nav__mobile a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 500;
  color: var(--white-dim);
  border-bottom: 1px solid var(--white-faint);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--orange); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
.hero__grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,107,26,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero__scan-line {
  position: fixed;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,26,0.4), transparent);
  animation: scanLine 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scanLine {
  0% { top: 0; }
  100% { top: 100vh; }
}
.hero__inner { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  border: 1px solid var(--orange-dim);
  background: var(--orange-dim);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__headline { color: var(--white); margin-bottom: 0.5rem; }
.hero__headline--accent { color: var(--orange); }
.hero__sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.hero__body {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; align-items: center; gap: 2rem; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
}
.stat__pct { font-size: 1.6rem; }
.stat__label { font-size: 0.8rem; color: var(--white-dim); font-weight: 500; max-width: 100px; }
.stat__divider { width: 1px; height: 48px; background: var(--steel); }

/* ============ CAM FRAME ============ */
.hero__visual { position: relative; z-index: 2; }
.cam-frame {
  position: relative;
  border: 2px solid rgba(255,107,26,0.4);
  border-radius: var(--radius);
  background: rgba(28,31,36,0.8);
  padding: 2rem;
  min-height: 420px;
  overflow: hidden;
}
.cam-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,107,26,0.03) 30px, rgba(255,107,26,0.03) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,107,26,0.03) 30px, rgba(255,107,26,0.03) 31px);
}
.cam-frame__corner {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--orange);
  border-style: solid;
}
.cam-frame__corner--tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.cam-frame__corner--tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
.cam-frame__corner--bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; }
.cam-frame__corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }
.cam-frame__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  position: absolute;
  top: 14px; left: 32px;
}
.cam-frame__rec {
  position: absolute;
  top: 14px; right: 32px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.1em;
}
.rec-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1s ease-in-out infinite;
}
.cam-frame__scene {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: 1.5rem;
}
.detection-box {
  position: absolute;
  border: 2px solid;
  border-radius: 2px;
  padding: 0.2rem 0.4rem;
}
.detection-box__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: absolute;
  top: -1.4rem;
  left: 0;
}
.detection-box--worker {
  border-color: var(--green);
  top: 5%; left: 10%;
  width: 35%; height: 55%;
  animation: detectFade 3s ease-in-out infinite;
}
.detection-box--worker .detection-box__label { color: var(--green); }
.detection-box--hazard {
  border-color: var(--red);
  top: 15%; left: 55%;
  width: 38%; height: 30%;
  animation: detectFade 3s ease-in-out infinite 1s;
}
.detection-box--hazard .detection-box__label { color: var(--red); }
.detection-box--posture {
  border-color: var(--orange);
  top: 62%; left: 12%;
  width: 30%; height: 28%;
  animation: detectFade 3s ease-in-out infinite 2s;
}
.detection-box--posture .detection-box__label { color: var(--orange); }
@keyframes detectFade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.pose-skeleton {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pose-node {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  animation: nodePulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--blue);
}
@keyframes nodePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.pose-line {
  position: absolute;
  height: 2px;
  background: rgba(30,143,213,0.5);
  transform-origin: left center;
}
.geofence-ring {
  position: absolute;
  bottom: 10%; right: 10%;
  width: 80px; height: 80px;
  border: 2px dashed rgba(255,107,26,0.5);
  border-radius: 50%;
  animation: geoSpin 8s linear infinite;
}
.geofence-ring::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255,107,26,0.25);
  border-radius: 50%;
}
@keyframes geoSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
  background: var(--gunmetal);
  padding: 2rem;
  text-align: center;
}
.trust-bar__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.trust-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--white-faint);
  transition: all var(--transition);
}
.trust-logo:hover { color: var(--orange); border-color: var(--orange-dim); }

/* ============ FEATURES ============ */
.features {
  padding: 8rem 0;
}
.features__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.feature-card {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(255,107,26,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card--primary {
  grid-row: span 1;
  background: var(--gunmetal-light);
  border-color: rgba(255,107,26,0.2);
}
.feature-card__icon {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
}
.feature-card__tech {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.feature-card h3 { margin-bottom: 0.75rem; font-size: 1.5rem; }
.feature-card p { color: var(--white-dim); font-size: 0.95rem; margin-bottom: 1.2rem; }
.feature-card__list { display: flex; flex-direction: column; gap: 0.4rem; }
.feature-card__list li {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding-left: 1rem;
  position: relative;
}
.feature-card__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: 8rem 0;
  background: var(--gunmetal);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--black);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.step:hover {
  border-color: rgba(255,107,26,0.3);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.6;
}
.step__content h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step__content p { font-size: 0.9rem; color: var(--white-dim); }
.step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  flex-shrink: 0;
  position: relative;
  z-index: 0;
}

/* ============ SOCIAL PROOF ============ */
.social-proof {
  padding: 8rem 0;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial:hover {
  border-color: rgba(255,107,26,0.2);
  transform: translateY(-4px);
}
.testimonial__quote {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  padding-top: 1.5rem;
}
.testimonial__quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.4;
  line-height: 1;
}
.testimonial__author { display: flex; align-items: center; gap: 1rem; }
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--black);
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 0.9rem; }
.testimonial__author span { font-size: 0.78rem; color: var(--white-dim); }

/* ============ ROI SECTION ============ */
.roi-section {
  padding: 8rem 0;
  background: var(--gunmetal);
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}
.roi-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.roi-section__content h2 { margin-bottom: 1rem; }
.roi-section__content p { color: var(--white-dim); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.roi-card {
  background: var(--black);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.roi-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--white-faint);
  font-size: 0.9rem;
}
.roi-card__row:last-child { border-bottom: none; }
.roi-card__row--total {
  font-weight: 700;
  font-size: 1rem;
}
.roi-card__val { font-family: var(--font-mono); font-weight: 600; }
.roi-card__val--red { color: var(--red); }
.roi-card__val--green { color: var(--green); }
.roi-card__divider {
  height: 1px;
  background: var(--steel);
  margin: 0.5rem 0;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,107,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,26,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.final-cta__sub {
  color: var(--white-dim);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.trial-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.trial-form input,
.trial-form select {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  width: 100%;
}
.trial-form input::placeholder { color: rgba(240,237,232,0.3); }
.trial-form input:focus,
.trial-form select:focus {
  outline: none;
  border-color: var(--orange);
}
.trial-form select { appearance: none; cursor: pointer; }
.trial-form select option { background: var(--gunmetal); }
.trial-form .btn { grid-column: span 2; }
.trial-form__note {
  font-size: 0.78rem;
  color: var(--white-dim);
  position: relative;
  z-index: 1;
}
.trial-form__note a { color: var(--blue); text-decoration: underline; }

/* ============ FOOTER ============ */
.footer {
  background: var(--gunmetal);
  border-top: 1px solid var(--steel);
  padding: 5rem 0 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  color: var(--white-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}
.footer__legal-note {
  font-size: 0.75rem !important;
  color: rgba(240,237,232,0.3) !important;
  margin-top: 0.5rem !important;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer__col li { margin-bottom: 0.5rem; }
.footer__col a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--steel);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(240,237,232,0.3);
}

/* ============ PRODUCT PAGE ============ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  background: var(--gunmetal);
  border-bottom: 1px solid var(--steel);
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.page-hero h1 { margin-bottom: 1rem; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { color: var(--white-dim); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.feature-deep {
  padding: 7rem 0;
  border-bottom: 1px solid var(--steel);
}
.feature-deep:nth-child(even) { background: var(--gunmetal); }
.feature-deep__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-deep__inner.reverse { direction: rtl; }
.feature-deep__inner.reverse > * { direction: ltr; }
.feature-deep__content .section__eyebrow { text-align: left; }
.feature-deep__content h2 { margin-bottom: 1rem; }
.feature-deep__content p { color: var(--white-dim); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}
.feature-list__item::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-deep__visual {
  background: var(--black);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.visual-placeholder {
  text-align: center;
  position: relative;
  z-index: 1;
}
.visual-placeholder__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.visual-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white-dim);
  letter-spacing: 0.08em;
}

/* ============ PRICING PAGE ============ */
.pricing-section { padding: 7rem 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  background: var(--gunmetal-light);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-card__price span { font-size: 1.5rem; vertical-align: super; }
.pricing-card__cadence {
  font-size: 0.8rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}
.pricing-card__divider { height: 1px; background: var(--steel); margin: 1.5rem 0; }
.pricing-card__features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--white-dim);
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card__feature.dim { color: rgba(240,237,232,0.25); }
.pricing-card__feature.dim::before { color: rgba(240,237,232,0.2); content: '–'; }
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 2rem;
}
.pricing-note a { color: var(--blue); text-decoration: underline; }

/* ============ ABOUT PAGE ============ */
.about-section { padding: 7rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--white-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.about-visual {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat { text-align: center; }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.about-stat__label { font-size: 0.8rem; color: var(--white-dim); margin-top: 0.3rem; }
.team-section { margin-top: 4rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.team-card {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: rgba(255,107,26,0.3); }
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--black);
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.team-card__role { font-size: 0.8rem; color: var(--orange); font-family: var(--font-mono); letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--white-dim); }

/* ============ BLOG PAGE ============ */
.blog-section { padding: 7rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { border-color: rgba(255,107,26,0.3); transform: translateY(-4px); }
.blog-card__thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--steel), var(--gunmetal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--steel);
  position: relative;
  overflow: hidden;
}
.blog-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,107,26,0.03) 10px,
    rgba(255,107,26,0.03) 11px
  );
}
.blog-card__body { padding: 1.5rem; }
.blog-card__tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 1rem; }
.blog-card__meta { font-size: 0.75rem; color: rgba(240,237,232,0.3); font-family: var(--font-mono); }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.7rem; }

/* ============ CONTACT PAGE ============ */
.contact-section { padding: 7rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--white-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--white-dim);
}
.contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-form {
  background: var(--gunmetal);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2rem); min-height: auto; }
  .hero__visual { display: none; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--primary { grid-column: span 2; }
  .roi-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-deep__inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-deep__inner.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .btn--nav { display: none; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat__divider { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .feature-card--primary { grid-column: span 1; }
  .steps { flex-direction: column; }
  .step__connector { width: 2px; height: 30px; background: var(--orange); }
  .testimonials { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trial-form { grid-template-columns: 1fr; }
  .trial-form .btn { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .trust-bar__logos { gap: 0.8rem; }
  .trust-logo { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
}
