:root {
  --bg: #0D1B2A;
  --surface: #132337;
  --surface2: #1A2F47;
  --accent: #FFB800;
  --accent-dim: #CC9400;
  --text: #F0F4F8;
  --text-muted: #8FA8BE;
  --text-dim: #5A7A96;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* HERO */
.hero {
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,184,0,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* HERO SCREENSHOT */
.hero-screenshot {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 32px 0 16px;
}
.btn-hero-cta {
  background: var(--accent);
  color: #0D1B2A;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .1s;
}
.btn-hero-cta:hover { background: var(--accent-dim); }
.btn-hero-cta:active { transform: scale(.98); }
.btn-hero-secondary {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.btn-hero-secondary:hover { color: var(--accent); }
.hero-trust {
  font-size: 13px;
  color: var(--text-dim);
}
.mockup-bar {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}
.mockup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mockup-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mockup-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  font-weight: 600;
}
.card-count {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}
.card-active .card-count { color: var(--accent); }
.card-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.mockup-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.sched-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.sched-job {
  font-size: 13px;
  color: var(--text);
}
.sched-tech {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface);
  padding: 3px 8px;
  border-radius: 20px;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: var(--surface);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: 0;
}
.feature-item:first-child { border-radius: 12px 0 0 0; }
.feature-item:nth-child(2) { border-radius: 0 12px 0 0; }
.feature-item:nth-child(3) { border-radius: 0 0 0 12px; }
.feature-item:nth-child(4) { border-radius: 0; }
.feature-item:nth-child(5) { border-radius: 0; }
.feature-item:last-child { border-radius: 0 0 12px 0; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* HOW */
.how {
  padding: 100px 40px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}
.how-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}
.how-step h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.how-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.how-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}
.how-stat-block {
  padding: 32px 32px;
  border-bottom: 1px solid var(--border);
}
.how-stat-block:last-child { border-bottom: none; }
.stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 100px 40px 120px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-vision {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 40px;
}
.btn-closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #0D1B2A;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 16px;
}
.btn-closing-cta:hover { background: var(--accent-dim); }
.closing-no-cc { font-size: 13px; color: var(--text-dim); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* TESTIMONIALS */
.testimonials { padding: 100px 40px; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; }
.testimonial-stars { display: flex; gap: 4px; color: var(--accent); margin-bottom: 20px; }
.testimonial-quote { font-size: 16px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 80px 24px; }
}
.trust { padding: 100px 40px; background: var(--surface); }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.trust-stat { background: var(--bg); border: 1px solid var(--border); padding: 48px 40px; text-align: center; border-radius: 0; }
.trust-stat:first-child { border-radius: 12px 0 0 12px; }
.trust-stat:last-child { border-radius: 0 12px 12px 0; }
.trust-num { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 800; color: var(--accent); letter-spacing: -2px; line-height: 1; margin-bottom: 16px; }
.trust-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; }
.trust-logos { margin-top: 48px; text-align: center; }
.trust-logos-label { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dim); font-weight: 600; margin-bottom: 16px; }
.logo-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.logo-chip { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 8px 20px; font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* PRICING */
.pricing { padding: 100px 40px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.pricing-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 56px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; position: relative; }
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #0D1B2A; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-tier { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.pricing-price { margin-bottom: 12px; }
.price-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 48px; font-weight: 800; color: var(--accent); letter-spacing: -2px; }
.price-period { font-size: 15px; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--text-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.btn-pricing { display: block; text-align: center; padding: 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; transition: border-color .2s, color .2s; }
.btn-pricing:hover { border-color: var(--accent); color: var(--accent); }
.btn-pricing-primary { background: var(--accent); color: #0D1B2A; border-color: var(--accent); }
.btn-pricing-primary:hover { background: var(--accent-dim); border-color: var(--accent-dim); color: #0D1B2A; }
.pricing-footnote { font-size: 13px; color: var(--text-dim); margin-top: 32px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .how-inner { grid-template-columns: 1fr; }
  .how-right { order: -1; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid--3 { grid-template-columns: 1fr; }
  .feature-item { border-radius: 0 !important; }
  .feature-item:first-child { border-radius: 12px 12px 0 0 !important; }
  .feature-item:last-child { border-radius: 0 0 12px 12px !important; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-stat:first-child { border-radius: 12px 12px 0 0; }
  .trust-stat:last-child { border-radius: 0 0 12px 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero { padding: 120px 24px 80px; }
  .features, .how, .manifesto, .closing, .trust, .pricing { padding: 80px 24px; }
}

/* BOOKING WIDGET */
.booking-section {
  padding: 100px 40px 120px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.booking-inner {
  max-width: 760px;
  margin: 0 auto;
}
.booking-header {
  text-align: center;
  margin-bottom: 48px;
}
.booking-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.booking-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.booking-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.booking-field--full {
  grid-column: 1 / -1;
}
.booking-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.booking-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: var(--text-dim);
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.12);
}
.booking-field select {
  cursor: pointer;
  -webkit-appearance: none;
  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='%238FA8BE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.booking-field textarea {
  resize: vertical;
  min-height: 80px;
}
.booking-error {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #fca5a5;
  margin-bottom: 16px;
}
.booking-submit {
  width: 100%;
  background: var(--accent);
  color: #0D1B2A;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .1s;
}
.booking-submit:hover:not(:disabled) { background: var(--accent-dim); }
.booking-submit:active:not(:disabled) { transform: scale(.99); }
.booking-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.booking-submit-spinner {
  display: none;
  animation: spin 0.7s linear infinite;
}
.booking-submit:disabled .booking-submit-spinner { display: block; }
.booking-submit:disabled .booking-submit-label { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.booking-success {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
}
.booking-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,184,0,0.15);
  border: 1px solid rgba(255,184,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 24px;
}
.booking-success h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.booking-success p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .mockup-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 30px; }
  .nav { padding: 16px 24px; }
  .booking-form-wrap { padding: 24px 20px; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-success { padding: 40px 24px; }
}