/* ============================================
   TOOLBELT WEB — Premium Navy Theme
   Built for Mahmoud Alabbasi · Gadsden, Alabama
   ============================================ */

:root {
  --navy-900: #0A1628;
  --navy-800: #0F1E36;
  --navy-700: #142745;
  --navy-600: #1B335A;
  --navy-card: #122546;
  --navy-line: rgba(255, 255, 255, 0.10);
  --navy-line-strong: rgba(255, 255, 255, 0.18);

  --orange: #D85A22;
  --orange-2: #F37032;
  --orange-glow: rgba(216, 90, 34, 0.35);

  --cream: #F4ECDC;
  --cream-2: #FBF6EB;

  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.78);
  --text-3: rgba(255, 255, 255, 0.58);

  --text-on-cream: #18253F;
  --text-on-cream-2: #3D4A63;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;

  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.05);
  --shadow-pri: 0 14px 30px -8px rgba(216, 90, 34, 0.55);

  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Section Label (em-dash + small caps) ===== */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label .dash {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -2px;
}
.section-label.dark { color: var(--orange); }

/* ===== Section title ===== */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.55;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.1px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, var(--orange-2) 0%, var(--orange) 100%);
  color: white;
  box-shadow: var(--shadow-pri);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -8px rgba(216, 90, 34, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--navy-line-strong);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* Small secondary text link below a plan button (e.g., upsell add-on) */
.btn-secondary-link {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--orange);
  text-decoration: none;
  margin-top: 10px;
  padding: 6px 0;
  transition: color 0.18s ease, transform 0.18s ease;
}
.btn-secondary-link:hover {
  color: var(--orange-2);
  transform: translateX(2px);
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--navy-line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }

/* ===== Mobile hamburger menu ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--navy-line-strong);
  border-radius: 11px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 22px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--navy-line);
  border-top: 1px solid var(--navy-line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  padding: 13px 6px;
  border-bottom: 1px solid var(--navy-line);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .mobile-menu-phone {
  color: #fff;
  font-weight: 700;
}
.mobile-menu .mobile-menu-cta {
  margin-top: 14px;
  text-align: center;
  border-bottom: none;
  justify-content: center;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-2);
}
.nav-phone:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.7;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}
.grad-accent {
  background: linear-gradient(120deg, var(--orange-2) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.trust-row li {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(216, 90, 34, 0.18);
  color: var(--orange-2);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== HERO MOCKUP ===== */
.hero-mock {
  position: relative;
}
.browser-frame {
  background: var(--navy-card);
  border: 1px solid var(--navy-line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: rotate(0.6deg);
  transition: transform 0.4s ease;
}
.browser-frame:hover { transform: rotate(0deg) translateY(-4px); }
.browser-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--navy-line);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yel { background: #FEBC2E; }
.dot-grn { background: #28C840; }
.browser-url {
  margin-left: 14px;
  font-size: 11px;
  color: var(--text-3);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.3px;
}
.browser-body {
  background: linear-gradient(180deg, #0F1E36 0%, #0B1B33 100%);
  padding: 16px 18px 18px;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--navy-line);
  gap: 12px;
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-logo-mark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 11px;
}
.mock-nav-links {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
}
.mock-cta {
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

/* hero block in mockup */
.mock-hero-block {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
  align-items: stretch;
}
.mock-hero-img {
  position: relative;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216,90,34,0.35) 0%, rgba(10,22,40,0.4) 60%),
    radial-gradient(circle at 30% 30%, #2a4a78 0%, #142745 70%);
  min-height: 110px;
  overflow: hidden;
}
.mock-hero-img::before {
  content: '🔧';
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
.mock-hero-img-badge {
  position: absolute;
  bottom: 7px;
  left: 7px;
  background: rgba(255,255,255,0.96);
  color: #0A1628;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.2px;
}
.mock-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mock-pill {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--orange-2);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.mock-hero-copy h3 {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin: 0 0 5px;
}
.mock-hero-copy p {
  font-size: 10.5px;
  color: var(--text-2);
  margin-bottom: 9px;
  line-height: 1.4;
}
.mock-buttons { display: flex; gap: 6px; margin: 0; }
.mock-btn-pri {
  background: var(--orange);
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
}
.mock-btn-sec {
  border: 1px solid var(--navy-line-strong);
  color: var(--text);
  font-size: 9.5px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
}

/* section labels inside mockup */
.mock-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--orange-2);
  text-transform: uppercase;
  margin: 12px 0 8px;
}

/* services grid */
.mock-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 6px;
}
.mock-svc {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-line);
  border-radius: 6px;
  padding: 8px 7px;
  text-align: left;
}
.mock-svc-icon { font-size: 14px; margin-bottom: 4px; }
.mock-svc strong { display: block; font-size: 10px; font-weight: 700; color: var(--text); margin-bottom: 2px; line-height: 1.2; }
.mock-svc span { font-size: 8.5px; color: var(--text-3); line-height: 1.3; }

/* gallery */
.mock-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mock-thumb {
  aspect-ratio: 1.2 / 1;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.mock-thumb-1 { background: linear-gradient(135deg, #3a5a80 0%, #1a3050 100%); }
.mock-thumb-2 { background: linear-gradient(135deg, #804a30 0%, #401e10 100%); }
.mock-thumb-3 { background: linear-gradient(135deg, #506070 0%, #2a3845 100%); }
.mock-thumb-4 {
  background: linear-gradient(135deg, rgba(216,90,34,0.7) 0%, rgba(216,90,34,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-thumb-4 span { font-size: 13px; font-weight: 800; color: white; letter-spacing: -0.3px; }
.mock-thumb-1::after, .mock-thumb-2::after, .mock-thumb-3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 60%);
}

/* review strip */
.mock-review {
  margin-top: 14px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--navy-line);
  border-radius: 7px;
}
.mock-review-stars { color: #FFC93C; font-size: 11px; letter-spacing: 1px; margin-bottom: 4px; }
.mock-review p {
  font-size: 10.5px;
  color: var(--text-2);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 5px;
}
.mock-review-attr { font-size: 9px; color: var(--text-3); font-weight: 600; }

/* bottom cta bar */
.mock-cta-bar {
  margin-top: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(216,90,34,0.15) 0%, rgba(216,90,34,0.05) 100%);
  border: 1px solid rgba(216,90,34,0.35);
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mock-cta-bar > span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.mock-cta-bar-btn {
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
}
.mock-tag {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
}

/* ===== TRADES ===== */
.trades {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 70px 0 80px;
}
.trades .section-label {
  color: var(--orange);
}
.trades .section-label .dash { color: var(--orange); }
.trades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.trade-chip {
  background: white;
  border: 1px solid rgba(24, 37, 63, 0.08);
  color: var(--text-on-cream);
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(24, 37, 63, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trade-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(24, 37, 63, 0.10);
}
.trade-chip-more {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: white;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(216, 90, 34, 0.35);
}
.trade-chip-more:hover {
  box-shadow: 0 6px 18px rgba(216, 90, 34, 0.5);
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 110px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.step-card {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(18, 37, 70, 0.6) 100%);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-line-strong);
}
.step-card-mid {
  background: linear-gradient(180deg, rgba(216, 90, 34, 0.10) 0%, rgba(18, 37, 70, 0.4) 100%);
  border-color: rgba(216, 90, 34, 0.25);
}
.step-num {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== LOCAL ===== */
.local {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 110px 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}
.local-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.local-body {
  font-size: 17px;
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.65;
  max-width: 520px;
}
.local-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--navy-line);
}
.local-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange-2);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.local-stats span {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.4;
}
.local-card {
  background: var(--cream);
  color: var(--text-on-cream);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.local-quote {
  position: relative;
}
.quote-mark {
  font-family: 'DM Sans', 'Inter', serif;
  font-size: 100px;
  line-height: 0.6;
  color: var(--orange);
  font-weight: 800;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.4;
}
.local-quote p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-on-cream);
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 20px;
  padding-top: 24px;
}
.quote-attr {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-on-cream-2);
  letter-spacing: 0.2px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0;
  background: var(--navy-900);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.price-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-line-strong);
}
.price-card-featured {
  border: 1.5px solid var(--orange);
  background: linear-gradient(180deg, rgba(216, 90, 34, 0.08) 0%, var(--navy-card) 100%);
  box-shadow: 0 30px 60px -20px rgba(216, 90, 34, 0.35);
  transform: scale(1.02);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 8px 20px -6px rgba(216, 90, 34, 0.5);
}
.price-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-2);
  margin-bottom: 14px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}
.price-per {
  font-size: 17px;
  color: var(--text-3);
  font-weight: 500;
}
.price-setup {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--navy-line);
}
.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 11px;
  line-height: 1.5;
  padding-left: 26px;
  position: relative;
}
.price-features li .check {
  position: absolute;
  left: 0;
  top: 3px;
}
.price-features li strong {
  color: var(--text);
  font-weight: 700;
}

/* ===== ADD-ONS ROW ===== */
.addons {
  margin-top: 48px;
  padding: 32px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--navy-line-strong);
  border-radius: var(--radius-lg);
}
.addons-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 22px;
  text-align: center;
}
.addons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.addon {
  text-align: center;
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--navy-line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.addon:hover {
  border-color: var(--navy-line-strong);
  transform: translateY(-2px);
}
.addon strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.addon span {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.45;
}
.addon-highlight {
  background: linear-gradient(180deg, rgba(216, 90, 34, 0.12) 0%, rgba(216, 90, 34, 0.04) 100%);
  border-color: rgba(216, 90, 34, 0.4);
}
.addon-highlight strong { color: var(--orange-2); }

/* ===== WHY (replaces founder) ===== */
.why {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 110px 0;
}
.why .section-label { color: var(--orange); }
.why .section-label.dark { color: var(--orange); }
.why-inner { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.why-title {
  color: var(--text-on-cream);
  max-width: 760px;
  margin-bottom: 20px;
}
.why-lead {
  font-size: 18px;
  color: var(--text-on-cream-2);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 56px;
}
.why-lead strong { color: var(--text-on-cream); font-weight: 700; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}
.why-card {
  background: white;
  border: 1px solid rgba(24, 37, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 22px -10px rgba(24, 37, 63, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(24, 37, 63, 0.18);
}
.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(216, 90, 34, 0.12) 0%, rgba(216, 90, 34, 0.04) 100%);
  border-radius: 14px;
}
.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-on-cream);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 15px;
  color: var(--text-on-cream-2);
  line-height: 1.6;
}
.why-card .inline-link {
  color: var(--orange);
  border-bottom-color: rgba(216, 90, 34, 0.4);
  font-weight: 700;
}
.why-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.why-ctas .btn-ghost {
  color: var(--text-on-cream);
  border-color: rgba(24, 37, 63, 0.2);
}
.why-ctas .btn-ghost:hover {
  background: rgba(24, 37, 63, 0.06);
  border-color: rgba(24, 37, 63, 0.4);
}

/* ===== FOUNDER (legacy, kept for safety) ===== */
.founder {
  background: var(--cream);
  color: var(--text-on-cream);
  padding: 110px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 70px;
  align-items: center;
}
.founder-photo-wrap {
  position: relative;
}
.founder-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -15px rgba(24, 37, 63, 0.35);
  border: 6px solid white;
}
.founder-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy-900);
  color: white;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
}
.founder-badge-top {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 2px;
}
.founder-badge-bot {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.founder .section-label { color: var(--orange); }
.founder .section-title { color: var(--text-on-cream); }
.founder-body {
  font-size: 17px;
  color: var(--text-on-cream-2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.founder-body strong {
  color: var(--text-on-cream);
  font-weight: 700;
}
.founder-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.founder-ctas .btn-ghost {
  color: var(--text-on-cream);
  border-color: rgba(24, 37, 63, 0.2);
}
.founder-ctas .btn-ghost:hover {
  background: rgba(24, 37, 63, 0.06);
  border-color: rgba(24, 37, 63, 0.4);
}

/* ===== FAQ ===== */
.faq {
  padding: 110px 0;
  background: var(--navy-900);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(216, 90, 34, 0.3);
}
.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--orange-2);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-item p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== QUOTE ===== */
.quote {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 60%);
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.quote-body {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 460px;
}
.inline-link {
  color: var(--orange-2);
  font-weight: 700;
  border-bottom: 1px solid rgba(216, 90, 34, 0.4);
}
.inline-link:hover { color: var(--orange); }
.quote-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--navy-line);
  max-width: 480px;
}
.quote-trust strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange-2);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.quote-trust span {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.3;
}

/* ===== QUOTE FORM ===== */
.quote-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-line-strong);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-card);
}
.hidden-honeypot { display: none; }
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: -0.1px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--navy-line-strong);
  border-radius: 10px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-3);
}
.form-row select {
  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' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F37032' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.07);
}
.form-row textarea {
  resize: vertical;
  font-family: inherit;
}
.form-foot {
  text-align: center;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.foot {
  background-color: #061021;
  background-image: url('assets/ac-pattern.png');
  background-repeat: repeat;
  background-size: 240px auto;
  padding: 70px 0 30px;
  border-top: 1px solid var(--navy-line);
  position: relative;
}
.foot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,33,0.55) 0%, rgba(6,16,33,0.75) 100%);
  pointer-events: none;
}
.foot > .container {
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.foot-logo {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  margin-bottom: 14px;
}
.foot-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.foot-tag {
  font-size: 14px;
  color: var(--text-3);
  max-width: 280px;
  line-height: 1.5;
}
.foot-h {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--orange-2);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  font-size: 14.5px;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.foot-col a:hover { color: var(--text); }
.foot-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--navy-line);
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .partners-grid { gap: 14px; }
  .partners-grid .partner-logo { height: 92px; padding: 14px 18px; }
  .partners-grid .partner-logo img { max-height: 60px; }
  .partners-grid .partner-logo--text { padding: 12px 14px; height: 92px; }
  .partner-text { font-size: 1.1rem !important; white-space: normal !important; line-height: 1.2 !important; word-break: normal; overflow-wrap: anywhere; }
  .hero { padding: 60px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .browser-frame { transform: rotate(0); }
  .steps,
  .price-grid,
  .faq-grid,
  .foot-grid,
  .why-grid { grid-template-columns: 1fr; }
  .addons-row { grid-template-columns: repeat(2, 1fr); }
  .local-grid,
  .quote-grid,
  .founder-grid { grid-template-columns: 1fr; gap: 50px; }
  .price-card-featured { transform: scale(1); }
  .founder-photo { max-width: 100%; }
  .quote-form { padding: 28px 22px; }
  .section-title { font-size: 32px; letter-spacing: -0.8px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .nav-phone { display: none; }
  .nav-brand .nav-name { display: none; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .trust-row { gap: 10px 16px; }
  .trust-row li { font-size: 13px; }
  .how, .local, .pricing, .founder, .why, .faq, .quote { padding: 70px 0; }
  .addons { padding: 24px 18px; }
  .addon strong { font-size: 19px; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 16px; margin-bottom: 36px; }
  .local-stats,
  .quote-trust,
  .mock-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .local-stats strong { font-size: 22px; }
  .local-card { padding: 32px 26px; }
  .quote-mark { font-size: 70px; }
  .step-card, .price-card { padding: 28px 22px; }
  .step-num { font-size: 36px; }
  .price-num { font-size: 44px; }
  .founder-badge { left: 16px; bottom: 16px; padding: 10px 16px; }
  .founder-badge-bot { font-size: 14px; }
}

/* ===== MRD-INSPIRED ENHANCEMENTS ===== */

/* Status pill - "● Now Building Sites..." */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.status-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

/* Bottom-right corner status watermark */
.status-watermark {
  position: fixed;
  right: 20px;
  bottom: 18px;
  font-family: 'DM Sans', monospace, system-ui;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  z-index: 50;
  pointer-events: none;
}
@media (max-width: 720px) {
  .status-watermark {
    display: none;
  }
}

/* ============================================== */
/* REAL CLIENT HERO FRAME (image inside browser)  */
/* ============================================== */
.browser-frame-live {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.browser-frame-live:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}
.browser-body-img {
  padding: 0 !important;
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}
.browser-body-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.mock-tag-link {
  color: #d4a55a;
  font-weight: 700;
}

/* ============================================== */
/* PARTNERS / TRUSTED BY STRIP                    */
/* ============================================== */
.partners {
  padding: 56px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
  border-top: 1px solid rgba(10,22,40,0.06);
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.partners-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.partners-label {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6357;
}
.partners-label .dash {
  color: #d4a55a;
  margin-right: 6px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(10,22,40,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(212,165,90,0.4);
  box-shadow: 0 8px 24px rgba(10,22,40,0.08);
}
.partner-logo img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 28px;
}
.partners-grid .partner-logo {
  width: 100%;
  height: 110px;
  padding: 16px 28px;
}
.partners-grid .partner-logo img {
  max-height: 78px;
  max-width: 100%;
  width: auto;
}
.partner-logo--text {
  text-align: center;
}
.partner-logo--text {
  overflow: hidden;
}
.partner-text {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 4.2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #0A1628;
  white-space: nowrap;
  max-width: 100%;
}
.partners-more {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0A1628;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(10,22,40,0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.partners-more:hover {
  background: #0A1628;
  color: #fff;
  border-color: #0A1628;
}
@media (max-width: 720px) {
  .partners { padding: 40px 0; }
  .partners-row { gap: 24px; }
  .partner-logo { height: 56px; }
  .partner-logo img { height: 40px; }
}
