@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0f172a;
  --dark-2:     #1e293b;
  --dark-3:     #334155;
  --orange:     #ea580c;
  --orange-h:   #c2410c;
  --orange-lt:  #fff7ed;
  --gray:       #64748b;
  --gray-lt:    #94a3b8;
  --border:     #e2e8f0;
  --bg-lt:      #f8fafc;
  --white:      #ffffff;
  --text:       #0f172a;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(15,23,42,.08);
  --shadow-lg:  0 12px 40px rgba(15,23,42,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(234,88,12,.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ─── Section Labels ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 640px;
  margin-top: 12px;
}

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-lt);
  transition: color .15s;
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a.btn { color: var(--white); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(234,88,12,.12), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(234,88,12,.07), transparent);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-sub {
  font-size: 19px;
  color: var(--gray-lt);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Pain ──────────────────────────────────────────── */
.pain {
  padding: 96px 0;
  background: var(--bg-lt);
}
.pain h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 48px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.pain-icon { margin-bottom: 14px; color: var(--orange); }
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.pain-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── Who We Serve ──────────────────────────────────── */
.who {
  padding: 96px 0;
  background: var(--white);
}
.who h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.who-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
}
.who-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.who-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.who-criteria {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--orange-lt);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark-3);
  border-left: 4px solid var(--orange);
}
.who-criteria strong { color: var(--orange); }

/* ─── Services ──────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--dark);
}
.services .section-label { color: var(--orange); }
.services h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 48px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s;
}
.service-card:hover { border-color: rgba(234,88,12,.4); }
.service-icon { margin-bottom: 16px; color: var(--orange); }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--gray-lt); line-height: 1.65; }

/* ─── Why Us ─────────────────────────────────────────── */
.why {
  padding: 96px 0;
  background: var(--bg-lt);
}
.why h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 48px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.why-item { }
.why-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-item p { font-size: 15px; color: var(--gray); line-height: 1.65; }

/* ─── Pricing ───────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--white);
}
.pricing h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 48px;
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.pricing-header { margin-bottom: 32px; }
.pricing-card .pricing-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-lt);
  margin-bottom: 16px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.price-from { font-size: 15px; color: var(--gray-lt); }
.price-num {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.price-unit { font-size: 16px; color: var(--gray-lt); }
.pricing-min { font-size: 13px; color: var(--gray); margin-top: 6px; }
.pricing-includes { margin-bottom: 28px; }
.pricing-includes li {
  font-size: 15px;
  color: var(--gray-lt);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-onboard {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  padding: 12px;
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.07);
}
.addons-card {
  background: var(--bg-lt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.addons-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.addons-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 16px;
  position: relative;
}
.addons-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.addons-list li:last-child { border-bottom: none; }
.addons-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-lt);
  font-style: italic;
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta {
  background: var(--orange);
  padding: 96px 0;
  text-align: center;
}
.cta h2 {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.cta p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta .btn-primary {
  background: var(--white);
  color: var(--orange);
}
.cta .btn-primary:hover { background: var(--orange-lt); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

/* ─── Contact Form ───────────────────────────────────── */
.contact {
  padding: 96px 0;
  background: var(--bg-lt);
}
.contact h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.req { color: var(--orange); }
.optional { font-weight: 400; color: var(--gray-lt); font-size: 13px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-lt); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234,88,12,.1);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  color: var(--orange);
}
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--dark); }
.form-success p { font-size: 16px; color: var(--gray); }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span { color: var(--orange); }
.footer-copy { font-size: 13px; color: var(--gray); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links li:not(:last-child) { display: none; }
  .hero { padding: 72px 0; }
  .hero h1 { font-size: 38px; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .cta h2 { font-size: 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 20px; }
}
