/* ─── BRAND TOKENS ──────────────────────────────────────── */
:root {
  --orange:        #F47920;
  --orange-dark:   #C45E10;
  --orange-dim:    rgba(244, 121, 32, 0.12);
  --orange-glow:   rgba(244, 121, 32, 0.18);
  --navy:          #0B1F35;
  --navy-light:    #1B3A5C;
  --charcoal:      #0D0F11;
  --surface:       #13161A;
  --surface-2:     #1A1E23;
  --steel:         #22272D;
  --steel-light:   #2C323A;
  --silver:        #8B96A2;
  --silver-light:  #C0C8D2;
  --white:         #EDF0F4;
  --border:        rgba(255, 255, 255, 0.07);
  --border-bright: rgba(255, 255, 255, 0.12);
  --border-orange: rgba(244, 121, 32, 0.28);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-lift:   0 16px 48px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.35);
  --shadow-orange: 0 8px 32px rgba(244,121,32,0.22);
  --radius:        10px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --max-width:     1200px;
  --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #071d38;
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

/* ─── GRAIN TEXTURE ─────────────────────────────────────── */
/* Applied via .grain class — adds subtle noise over any section */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
  opacity: 0.035;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 2; }

/* Blueprint grid overlay */
.blueprint-grid {
  background-image:
    linear-gradient(rgba(244, 121, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 121, 32, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 104px 0; background: rgba(9, 12, 16, 0.82); }
.section-navy {
  background: rgba(8, 20, 42, 0.85);
  position: relative;
}
.section-surface {
  background: rgba(16, 20, 24, 0.83);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 18px;
  color: var(--silver);
  max-width: 540px;
  line-height: 1.75;
}
.section-header { margin-bottom: 72px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6, 10, 16, 0.93);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 68px; width: auto; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-text .x { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--silver);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition);
}
.nav-login:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 20px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--silver);
  border-radius: var(--radius);
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-mobile .btn-primary { text-align: center; margin-top: 8px; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(244,121,32,0.3), 0 1px 4px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,121,32,0.4), 0 2px 8px rgba(0,0,0,0.4);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn-outline:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn-lg { font-size: 19px; padding: 16px 40px; }
.btn-full { display: flex; width: 100%; justify-content: center; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: rgba(7, 11, 16, 0.66);
}

/* Orange radial glow - top right */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(244,121,32,0.13) 0%, rgba(244,121,32,0.04) 40%, transparent 70%);
  pointer-events: none;
}

/* Navy deep glow - bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(11,31,53,0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  /* Blueprint drafting paper — 2-level grid */
  background-image:
    /* Major grid: 80px apart, cool blue */
    linear-gradient(rgba(120, 185, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 185, 255, 0.07) 1px, transparent 1px),
    /* Fine grid: 16px apart, subtler */
    linear-gradient(rgba(100, 165, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 165, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 10%, transparent 75%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,121,32,0.1);
  border: 1px solid rgba(244,121,32,0.28);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(56px, 7.5vw, 104px);
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero-title .accent {
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--silver-light);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 13px;
  color: var(--silver);
  opacity: 0.65;
  letter-spacing: 0.01em;
}
.hero-note span { margin: 0 8px; opacity: 0.4; }

/* ─── HERO VISUAL (mock app) ────────────────────────────── */
.hero-visual-wrap {
  position: relative;
}

/* Orange glow behind the card */
.hero-visual-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(244,121,32,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-visual {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}

.hv-header {
  background: var(--steel);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.hv-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hv-date { font-size: 12px; color: var(--silver); }
.hv-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #22C55E;
}
.hv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 6px #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hv-project-label {
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-project-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hv-body { padding: 8px 0; }
.hv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.hv-row:hover { background: rgba(255,255,255,0.025); }
.hv-row:last-child { border-bottom: none; }
.hv-worker-info {}
.hv-worker { font-size: 14px; color: var(--white); font-weight: 500; }
.hv-trade { font-size: 11px; color: var(--silver); margin-top: 2px; }
.hv-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}
.hv-badge.present { background: rgba(34,197,94,0.12); color: #22C55E; border: 1px solid rgba(34,197,94,0.2); }
.hv-badge.absent { background: rgba(239,68,68,0.1); color: #F87171; border: 1px solid rgba(239,68,68,0.2); }
.hv-badge.rain { background: rgba(59,130,246,0.1); color: #60A5FA; border: 1px solid rgba(59,130,246,0.2); }

.hv-divider {
  padding: 8px 24px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.5;
}

.hv-footer {
  background: var(--steel);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hv-totals { display: flex; gap: 20px; }
.hv-total-item { text-align: center; }
.hv-total-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hv-total-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 2px;
}
.hv-save-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
  background: rgba(7, 11, 16, 0.72);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(244,121,32,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
}
.page-hero-title {
  font-size: clamp(44px, 6.5vw, 80px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--silver-light);
  max-width: 540px;
  line-height: 1.78;
}

/* ─── PAIN POINTS ───────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(244,121,32,0.2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pain-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--border-orange);
}
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon {
  font-size: 44px;
  margin-bottom: 24px;
  display: block;
  filter: grayscale(0.1);
}
.pain-title {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.pain-text { font-size: 15px; color: var(--silver); line-height: 1.8; }

/* ─── VIDEO PLACEHOLDER BUTTON ───────────────────────────── */
.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  text-decoration: none;
  border: 1px dashed var(--border);
  padding: 10px 18px;
  border-radius: 8px;
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.video-btn .vb-play { color: var(--orange); font-size: 12px; }

/* ─── FEATURE CARDS (home grid) ─────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
/* Diagonal orange strip in corner */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(244,121,32,0.12) 0%, transparent 60%);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-bright);
}
.feature-icon { font-size: 36px; margin-bottom: 20px; display: block; }
.feature-title {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.feature-text { font-size: 15px; color: var(--silver); line-height: 1.8; }

/* Orange left accent line */
.feature-card-accent {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(244,121,32,0.15) 100%);
  border-radius: 0 2px 2px 0;
}

/* ─── FEATURE DETAIL (features page) ───────────────────── */
.feature-detail {
  display: flex;
  gap: 88px;
  align-items: center;
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
}
.feature-detail:last-of-type { border-bottom: none; }
.feature-detail.reverse { flex-direction: row-reverse; }
.feature-detail-content { flex: 1; }
.feature-detail-visual {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.feature-detail-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.015em;
}
.feature-detail-text { font-size: 17px; color: var(--silver); line-height: 1.8; margin-bottom: 28px; }
.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--silver-light);
  line-height: 1.65;
}
.feature-bullets li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 14px;
}
.pro-tag {
  display: inline-block;
  background: rgba(244,121,32,0.15);
  border: 1px solid rgba(244,121,32,0.35);
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── FEATURE DETAIL VISUAL MOCKUPS ─────────────────────── */
.feature-detail-visual { padding: 0; overflow: hidden; position: relative; }
.fdv-card { width: 100%; height: 100%; display: flex; flex-direction: column; padding: 20px; gap: 10px; font-family: 'Inter', sans-serif; box-sizing: border-box; }
.fdv-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.fdv-title { font-size: 12px; font-weight: 600; color: #f5f5f5; letter-spacing: 0.01em; }
.fdv-subtitle { font-size: 10px; color: #c0c0c0; }
.fdv-proj-section { font-size: 10px; font-weight: 700; color: #F47920; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 0; flex-shrink: 0; }
.fdv-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 9px; background: rgba(255,255,255,0.04); border-radius: 6px; }
.fdv-name { font-size: 11px; color: #f5f5f5; }
.fdv-trade { font-size: 10px; color: #c0c0c0; }
.fdv-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.fdv-badge.present { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.fdv-badge.absent { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }
.fdv-badge.rain { background: rgba(96,165,250,0.12); color: #93c5fd; border: 1px solid rgba(96,165,250,0.25); }
.fdv-save-btn { background: #F47920; color: #fff; border-radius: 6px; padding: 8px 14px; font-size: 11px; font-weight: 600; text-align: center; margin-top: auto; flex-shrink: 0; }
.fdv-table { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.fdv-table-head { display: grid; grid-template-columns: 1fr 36px 72px; gap: 8px; padding: 4px 9px; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.35); }
.fdv-table-row { display: grid; grid-template-columns: 1fr 36px 72px; gap: 8px; padding: 7px 9px; background: rgba(255,255,255,0.04); border-radius: 5px; font-size: 11px; color: #c0c0c0; align-items: center; }
.fdv-table-row span:last-child { text-align: right; color: #f5f5f5; font-weight: 600; }
.fdv-table-total { display: flex; justify-content: space-between; padding: 8px 9px 0; font-size: 13px; font-weight: 700; color: #F47920; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 4px; flex-shrink: 0; }
.fdv-sub-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.fdv-sub-name { font-size: 12px; font-weight: 600; color: #f5f5f5; display: flex; align-items: center; gap: 7px; }
.fdv-sub-trade-tag { font-size: 9px; font-weight: 700; background: rgba(244,121,32,0.15); color: #F47920; border-radius: 4px; padding: 1px 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.fdv-sub-site { font-size: 10px; color: #c0c0c0; }
.fdv-amounts { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.fdv-amt { background: rgba(255,255,255,0.04); border-radius: 6px; padding: 8px; }
.fdv-amt-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.07em; color: #c0c0c0; font-weight: 600; margin-bottom: 3px; }
.fdv-amt-val { font-size: 12px; font-weight: 700; color: #f5f5f5; }
.fdv-amt.owed .fdv-amt-val { color: #F47920; }
.fdv-proj-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.fdv-proj-top { display: flex; align-items: center; justify-content: space-between; }
.fdv-proj-name { font-size: 12px; font-weight: 600; color: #f5f5f5; }
.fdv-status-badge { font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); letter-spacing: 0.06em; text-transform: uppercase; }
.fdv-cost-row { display: flex; justify-content: space-between; font-size: 11px; color: #c0c0c0; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.fdv-cost-row span:last-child { color: #f5f5f5; font-weight: 600; }
.fdv-cost-total { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: #F47920; padding-top: 7px; }
.fdv-transport-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; padding: 7px 9px; background: rgba(255,255,255,0.04); border-radius: 6px; color: #c0c0c0; }
.fdv-transport-row span:last-child { color: #f5f5f5; font-weight: 600; }
.fdv-formula { font-size: 11px; color: #c0c0c0; text-align: center; padding: 8px; background: rgba(255,255,255,0.03); border-radius: 6px; margin-top: 2px; }
.fdv-formula strong { color: #F47920; }
.fdv-signoff-pads { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fdv-pad { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 7px; padding: 10px; }
.fdv-pad-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: #c0c0c0; font-weight: 600; margin-bottom: 6px; }
.fdv-pad-area { height: 44px; background: rgba(255,255,255,0.03); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.fdv-sig-squiggle { width: 65%; height: 2px; background: linear-gradient(90deg, transparent, #F47920 20%, #F47920 80%, transparent); border-radius: 1px; opacity: 0.7; position: relative; }
.fdv-sig-squiggle::before { content: ''; position: absolute; left: 20%; right: 20%; top: -3px; height: 2px; background: #F47920; opacity: 0.4; border-radius: 1px; }
.fdv-files-list { display: flex; flex-direction: column; gap: 5px; }
.fdv-file-row { display: flex; align-items: center; gap: 8px; padding: 7px 9px; background: rgba(255,255,255,0.04); border-radius: 6px; font-size: 11px; color: #c0c0c0; }
.fdv-file-icon { font-size: 13px; flex-shrink: 0; }

/* ─── COMING SOON ───────────────────────────────────────── */
.coming-soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coming-soon-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  opacity: 0.6;
  box-shadow: var(--shadow-card);
}
.soon-badge {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.coming-soon-card h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; text-transform: uppercase; }
.coming-soon-card p { font-size: 14px; color: var(--silver); line-height: 1.7; }

/* ─── SOCIAL PROOF ──────────────────────────────────────── */
.social-proof {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(8, 20, 42, 0.84);
}
.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(11,31,53,0.9) 0%, transparent 80%);
  pointer-events: none;
}
.quote-marks {
  font-size: 100px;
  color: var(--orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 0.7;
  display: block;
  margin-bottom: 12px;
  position: relative;
}
.quote-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
}
.quote-author { font-size: 14px; color: var(--silver); opacity: 0.7; position: relative; }

/* ─── PRICING ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pricing-card.featured {
  border-color: var(--border-orange);
  background: linear-gradient(160deg, rgba(244,121,32,0.06) 0%, var(--surface-2) 60%);
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--border-orange);
  transform: translateY(-10px);
}
.pricing-card.featured:hover { transform: translateY(-14px); }
.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(244,121,32,0.4);
}
.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 12px;
}
.price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price sup { font-size: 32px; vertical-align: top; margin-top: 14px; color: var(--silver); }
.price-period { font-size: 14px; color: var(--silver); margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 28px; }
.plan-limits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.plan-limit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--silver);
}
.plan-limit strong { color: var(--white); font-weight: 600; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--silver);
}
.plan-features .check { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.plan-features .cross { color: rgba(255,255,255,0.15); flex-shrink: 0; }
.pricing-footer-note {
  text-align: center;
  font-size: 14px;
  color: var(--silver);
  margin-top: 48px;
  opacity: 0.75;
  line-height: 1.7;
}

/* ─── COMPARISON TABLE ──────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 22px 28px;
  text-align: left;
  background: var(--steel);
  border-bottom: 1px solid var(--border);
}
th.featured-col { color: var(--orange); }
td {
  padding: 15px 28px;
  color: var(--silver);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }
td:first-child { color: var(--white); font-weight: 500; }
td.check-val { color: var(--orange); font-weight: 700; }
td.cross-val { color: rgba(255,255,255,0.18); }

/* ─── FAQ ───────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-orange); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  user-select: none;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  color: var(--orange);
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 28px 24px;
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ─── CTA BANNER ────────────────────────────────────────── */
.cta-banner {
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--orange);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.04) 20px,
      rgba(0,0,0,0.04) 40px
    );
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 40px; }
.cta-banner .btn-primary {
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.cta-banner .btn-primary:hover { background: #000; box-shadow: 0 12px 40px rgba(0,0,0,0.6); }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: rgba(5, 7, 10, 0.97);
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 48px; }
.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo-text .x { color: var(--orange); }
.footer-brand p { font-size: 14px; color: var(--silver); line-height: 1.75; max-width: 280px; margin-top: 10px; }
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--silver); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--silver); opacity: 0.45; }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--silver);
  opacity: 0.35;
  text-transform: uppercase;
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 88px; align-items: center; }
.story-image {
  background: var(--surface-2);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(244,121,32,0.18), 0 24px 80px rgba(244,121,32,0.1);
  position: relative;
  overflow: hidden;
}
/* Bottom gradient fade */
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(7, 29, 56, 0.45) 65%,
    rgba(7, 29, 56, 0.92) 100%
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
/* Orange left-edge accent bar */
.story-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
  z-index: 2;
  border-radius: 2px;
}
.founder-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: inherit;
  filter: contrast(1.06) saturate(1.1) brightness(0.97);
}
.founder-caption {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 24px;
  z-index: 3;
}
.founder-caption-role {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 6px;
}
.founder-caption-role::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.founder-caption-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.founder-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--silver);
  opacity: 0.35;
}
.founder-placeholder svg { width: 64px; height: 64px; }
.founder-placeholder span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.story-content p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 20px;
}
.story-content p:last-child { margin-bottom: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card {
  text-align: center;
  padding: 36px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition);
}
.stat-card:hover { border-color: var(--border-orange); transform: translateY(-2px); }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--silver); line-height: 1.5; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  padding: 40px 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), transform var(--transition);
}
.value-card:hover { border-color: var(--border-orange); transform: translateY(-3px); }
.value-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.value-title { font-size: 24px; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: -0.01em; }
.value-text { font-size: 14px; color: var(--silver); line-height: 1.8; }

/* ─── DIVIDER STRIPE ────────────────────────────────────── */
.stripe-divider {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px,
    var(--orange) 24px,
    transparent 24px,
    transparent 36px
  );
  opacity: 0.4;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .feature-detail { gap: 56px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual-wrap { display: none; }
  .hero { min-height: auto; padding: 80px 0 72px; }
  .pain-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-3px); }
  .feature-detail { flex-direction: column; gap: 40px; padding: 64px 0; }
  .feature-detail.reverse { flex-direction: column; }
  .feature-detail-visual { width: 100%; flex: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-method:first-child { border-top: 1px solid var(--border); }
.contact-method-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.contact-method-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 6px;
}
.contact-method-value {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}
.contact-method-value a { color: var(--orange); transition: opacity var(--transition); }
.contact-method-value a:hover { opacity: 0.8; }
.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--steel);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--silver); opacity: 0.5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--steel); }

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--silver);
  line-height: 1.9;
}
.legal-content h2 {
  font-size: 28px;
  color: var(--white);
  margin: 48px 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.legal-content h3 {
  font-size: 20px;
  color: var(--silver-light);
  margin: 28px 0 10px;
  text-transform: uppercase;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-content ul li::marker { color: var(--orange); }
.legal-content a { color: var(--orange); }
.legal-content a:hover { opacity: 0.8; }
.legal-updated {
  font-size: 13px;
  color: var(--silver);
  opacity: 0.6;
  margin-bottom: 40px;
  font-style: italic;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */

/* Float for hero visual card */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.float-anim {
  animation: float 7s ease-in-out infinite;
}

/* Glow pulse on hero visual wrap */
@keyframes glow-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.hero-visual-wrap::before {
  animation: glow-pulse 5s ease-in-out infinite;
}

/* Hero content stagger entrance */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge  { animation: hero-in 0.6s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.15s; }
.hero-title  { animation: hero-in 0.7s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.28s; }
.hero-sub    { animation: hero-in 0.7s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.42s; }
.hero-actions{ animation: hero-in 0.7s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.54s; }
.hero-note   { animation: hero-in 0.6s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.64s; }
.hero-visual-wrap { animation: hero-in 0.8s cubic-bezier(0.4,0,0.2,1) both; animation-delay: 0.45s; }

/* Scroll reveal */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
.d5 { transition-delay: 0.48s; }
.d6 { transition-delay: 0.58s; }

/* Blueprint corner marks on hero grid */
.hero-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle radial vignette with a faint blue center tint */
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    rgba(11, 31, 60, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Animated gradient shimmer on featured pricing card */
@keyframes shimmer-border {
  0%   { border-color: rgba(244,121,32,0.28); }
  50%  { border-color: rgba(244,121,32,0.55); }
  100% { border-color: rgba(244,121,32,0.28); }
}
.pricing-card.featured {
  animation: shimmer-border 3.5s ease-in-out infinite;
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 56px; }
  .page-hero-title { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { gap: 16px; }
  .cta-banner { padding: 72px 0; }
}
