:root {
  --bg: #0F1117;
  --bg-alt: #181C27;
  --bg-card: #1E2333;
  --fg: #F2F4F8;
  --fg-muted: #8B92A5;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --green: #10B981;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(245,158,11,0.4);
  --surface: #1E2333;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #0F1117;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--fg); border-color: rgba(255,255,255,0.25); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.btn-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-glow); }
.btn-full { width: 100%; display: block; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,0.12) 0%, transparent 70%), var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
  );
  pointer-events: none;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,158,11,0.12);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-chip {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── INDUSTRIES ──────────────────────────────────────── */
.industries {
  padding: 60px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.industries-inner {
  max-width: 900px;
  margin: 0 auto;
}
.industries-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 28px;
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.15s ease;
}
.industry-chip:hover {
  border-color: var(--border-accent);
  background: rgba(245,158,11,0.06);
}
.industry-icon { font-size: 1.1rem; }

/* ── PROOF / TESTIMONIALS ────────────────────────────── */
.proof {
  padding: 100px 24px;
  background: var(--bg);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof-icon { color: var(--accent); }
.proof-item p {
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
}
.proof-attr {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 600;
}
.proof-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 24px;
  opacity: 0.6;
}

/* ── SECTION HEADER ──────────────────────────────────── */
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
  padding: 100px 24px;
  background: var(--bg-alt);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: border-color 0.15s ease;
}
.service-card:hover { border-color: var(--border-accent); }
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: var(--radius-sm);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.service-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing {
  padding: 100px 24px;
  background: var(--bg);
}
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card--growth {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, var(--bg-card) 40%);
}
.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 40px;
  background: var(--accent);
  color: #0F1117;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.price-period { font-size: 1rem; color: var(--fg-muted); }
.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 32px;
  line-height: 1.5;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-note {
  margin-top: 28px;
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}
/* Secondary "not ready" link below pricing CTA */
.btn-text-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.btn-text-link:hover { color: var(--fg); }

/* ── PROCESS ─────────────────────────────────────────── */
.process { padding: 100px 24px; background: var(--bg-alt); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.process-step { display: flex; flex-direction: column; gap: 20px; }
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.35;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* ── LEAD FORM ───────────────────────────────────────── */
.lead-form-section {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.lead-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.lead-form-header {
  text-align: center;
  margin-bottom: 48px;
}
.lead-form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.lead-form-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 16px;
  width: 100%;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B92A5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder { color: var(--fg-muted); opacity: 0.5; }
.form-group select option { background: var(--bg-card); color: var(--fg); }
.btn-submit { margin-top: 4px; padding: 16px 28px; font-size: 1rem; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.6;
}
.lead-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 16px 0;
}
.confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
}
.lead-confirm h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
}
.lead-confirm p { font-size: 1rem; color: var(--fg-muted); max-width: 400px; }
.confirm-sub { font-size: 0.85rem \!important; opacity: 0.6; }

/* ── CLOSING ─────────────────────────────────────────── */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}
.closing p { font-size: 1.1rem; color: var(--fg-muted); line-height: 1.7; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.875rem; color: var(--fg-muted); margin-top: 4px; }
.footer-location { display: flex; align-items: center; gap: 4px; margin-top: 8px; }
.footer-contact p { font-size: 0.875rem; color: var(--fg-muted); margin-top: 6px; }
.footer-contact a { color: var(--accent); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-tagline { font-style: italic; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--fg-muted); opacity: 0.5; }
.footer-bottom a { color: var(--fg-muted); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .lead-form-card { padding: 32px 24px; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 20px 60px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn { width: 100%; max-width: 320px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .industries-grid { gap: 8px; }
  .industry-chip { padding: 8px 14px; font-size: 0.85rem; }
}
