/* ── VARIABLES ── */
:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --border: #2e2e2e;
  --fg: #f0ede8;
  --fg-muted: #7a7670;
  --accent: #00897B;
  --accent-hover: #007a6a;
  --accent-dim: rgba(0,137,123,0.10);
  --accent-glow: rgba(0,137,123,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--fg); }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 64px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--fg);
  text-decoration: none;
}
.nav-wordmark span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 8px 20px; border-radius: 5px; }
.nav-cta:hover { background: var(--accent-hover) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_187921/a3cb7f9e-4ae0-431a-b36f-5f68c0189e38.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: grayscale(30%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.70) 60%, rgba(0,137,123,0.08) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 64px 80px;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(0,137,123,0.25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 15px;
  color: var(--fg-muted);
}
.hero-phone strong { color: var(--fg); font-weight: 600; }

/* Right side: trust strip */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.trust-card-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.trust-card-text p { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

/* ── SECTION SHARED ── */
.section {
  padding: 96px 64px;
}
.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── WHO WE SERVE ── */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.trade-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.trade-item:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}
.trade-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.trade-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

/* ── WHAT WE DO ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(0,137,123,0.4); }
.service-tag {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(0,137,123,0.2);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── WHY IT WORKS ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  position: relative;
}
.why-visual-quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.4;
}
.why-visual-attribution {
  font-size: 13px;
  color: var(--fg-muted);
}
.why-visual-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-big {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 14px; color: var(--fg-muted); }
.reason-list { display: flex; flex-direction: column; gap: 24px; }
.reason-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.reason-num {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.reason-text h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.reason-text p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-steps {
  display: flex;
  gap: 32px;
  margin-top: 60px;
}
.step-card {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 30px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 30px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 4px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.step-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface-2);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 4px;
  white-space: nowrap;
}
.pricing-tier { font-size: 13px; color: var(--fg-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--fg); }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 64px;
  background: var(--bg);
  text-align: center;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(36px, 4vw, 60px); font-weight: 800; margin-bottom: 20px; }
.cta-sub { font-size: 17px; color: var(--fg-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contact-item {
  font-size: 15px;
  color: var(--fg-muted);
}
.cta-contact-item strong { color: var(--fg); }

/* ── FOOTER ── */
.footer {
  background: #111111;
  border-top: 1px solid var(--border);
  padding: 48px 64px 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 20px; }
.footer-legal { font-size: 12px; color: #555; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: #555; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .trade-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
}
@media (max-width: 900px) {
  .section, .cta-section { padding: 72px 24px; }
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-right { display: none; }
  .trade-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}