:root {
  --bg: #F7F6F3;
  --bg-alt: #EEECEA;
  --fg: #1A1A2E;
  --fg-muted: #6B7280;
  --accent: #F5A623;
  --accent-dark: #D4890F;
  --navy: #0B1D35;
  --navy-mid: #1B3A5C;
  --white: #FFFFFF;
  --radius: 6px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  background: var(--navy);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(44px, 6vw, 80px);
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.stat { padding: 0 48px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  margin-right: 48px;
}

/* HOW IT WORKS */
.howitworks { background: var(--white); padding: 96px 48px; }
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  font-family: 'DM Sans', sans-serif;
}
.steps {
  display: flex;
  align-items: center;
  gap: 32px;
}
.step { flex: 1; }
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 16px;
  opacity: 0.18;
  line-height: 1;
}
.step-title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-body { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.step-arrow { color: var(--accent); flex-shrink: 0; }

/* FEATURES */
.features { background: var(--bg); padding: 96px 48px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.feature-card {
  background: var(--white);
  padding: 40px;
}
.feature-card:nth-child(2n) { background: #FAFAF9; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-body { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* VERTICALS */
.verticals { background: var(--navy); padding: 96px 48px; }
.verticals-inner { max-width: 1100px; margin: 0 auto; }
.verticals .section-label { color: rgba(255,255,255,0.4); }
.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vertical-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  border-radius: var(--radius);
}
.vertical-icon { font-size: 28px; display: block; margin-bottom: 16px; }
.vertical-name {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
  font-family: 'Instrument Serif', serif;
}
.vertical-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.vertical-card-link {
  display: block; text-decoration: none; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.vertical-card-link:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-2px);
}
.vertical-demo-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.04em;
}

/* CLOSING */
.closing { background: var(--accent); padding: 96px 48px; }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body {
  font-size: 17px;
  color: rgba(11,29,53,0.7);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta-text {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--navy);
  opacity: 0.6;
}

/* FOOTER */
.footer { background: var(--bg-alt); padding: 40px 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); display: block; margin-bottom: 16px; }
.footer-legal { font-size: 12px; color: rgba(107,114,128,0.6); }

/* HERO BUTTONS */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* NAV UPDATES */
.nav-inner { justify-content: space-between; width: 100%; max-width: 1100px; margin: 0 auto; }
.nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-link { color: rgba(255,255,255,0.65); font-size: 14px; text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--white); }
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* SECTION SHARED */
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* DEMO EMBED */
.demo-embed { background: var(--bg); padding: 96px 48px; }
.demo-embed-inner { max-width: 1100px; margin: 0 auto; }
.demo-frame-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  margin-bottom: 16px;
}
.demo-frame {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}
.demo-note {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* WHAT'S INCLUDED */
.whats-included { background: var(--white); padding: 96px 48px; }
.whats-included-inner { max-width: 780px; margin: 0 auto; }
.included-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.included-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.65;
}
.included-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

/* PRICING */
.pricing { background: var(--bg-alt); padding: 96px 48px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 32px;
  border: 1.5px solid transparent;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 4px 32px rgba(245,166,35,0.15);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier { font-size: 14px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.pricing-price { font-family: 'Instrument Serif', serif; font-size: 36px; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-setup { font-size: 16px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.pricing-mo { font-size: 15px; color: var(--fg-muted); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--fg); padding-left: 18px; position: relative; line-height: 1.5; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 13px; }
.pricing-cta {
  display: block;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 13px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}
.pricing-cta:hover { background: var(--navy-mid); }
.pricing-cta--featured { background: var(--accent); color: var(--navy); }
.pricing-cta--featured:hover { background: var(--accent-dark); color: var(--navy); }
.pricing-note { font-size: 13px; color: var(--fg-muted); text-align: center; font-style: italic; }

/* INQUIRY FORM */
.inquiry { background: var(--navy); padding: 96px 48px; }
.inquiry-inner { max-width: 740px; margin: 0 auto; }
.inquiry .section-label { color: rgba(255,255,255,0.4); }
.inquiry .section-title { color: var(--white); }
.inquiry .section-body { color: rgba(255,255,255,0.6); }
.inquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: var(--navy); color: var(--white); }
.btn-submit {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s;
}
.btn-submit:hover { background: var(--accent-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { color: #6ee7b7; font-size: 14px; font-weight: 500; }
.form-error { color: #fca5a5; font-size: 14px; }

/* FOOTER UPDATES */
.footer-top { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; }
.footer-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-link { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: var(--fg); }
.footer-sep { color: rgba(107,114,128,0.4); font-size: 12px; }
.footer-legal-link { color: rgba(107,114,128,0.6); }
.footer-legal-link:hover { color: var(--fg-muted); }

/* HOW IT WORKS UPDATES */
.howitworks { background: var(--white); padding: 96px 48px; }
.howitworks .section-label { margin-bottom: 20px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-headline { font-size: 38px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; margin-bottom: 40px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { text-align: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .stat-number { font-size: 34px; }
  .nav { padding: 0 24px; }
  .nav-inner { max-width: none; }
  .nav-actions { gap: 12px; }
  .nav-link { display: none; }
  .demo-embed { padding: 60px 24px; }
  .demo-frame { height: 420px; }
  .howitworks { padding: 60px 24px; }
  .steps { flex-direction: column; gap: 40px; }
  .step-arrow { transform: rotate(90deg); }
  .verticals { padding: 60px 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .whats-included { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .inquiry { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
}