:root {
  --bg: #0A0A0A;
  --fg: #FFFFFF;
  --accent: #5BC0EB;
  --accent-dark: #3AAAD4;
  --muted: #9CA3AF;
  --surface: #141414;
  --border: #2A2A2A;
  --chip-bg: #1A1A1A;
}

* { 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, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: #000;
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--accent);
}

.nav-phone {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-phone a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-phone a:hover {
  color: var(--accent);
}

.nav-phone-icon {
  color: var(--accent);
}

.nav-tag {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 72px 48px 56px;
  background: #000;
}

.hero-logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.hero-logo {
  max-width: 340px;
  width: 100%;
  height: auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1.05;
}

.hero-headline .accent {
  color: var(--accent);
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--accent);
  color: #000;
}

.hero-right {
  padding-top: 8px;
}

.hero-stat-row {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-chip {
  background: var(--chip-bg);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}

.hero-rule {
  margin-top: 56px;
  height: 1px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  background: #111111;
  border-top: 3px solid var(--accent);
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-text {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.manifesto-body {
  margin-top: 24px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}

/* PROCESS */
.process {
  padding: 80px 48px;
}

.process-header {
  margin-bottom: 48px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--accent);
}

.process-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 48px;
  background: var(--chip-bg);
}

.outcomes-inner {}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  margin-top: 48px;
}

.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.outcome-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.outcome-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.outcome-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--accent);
}

.closing-inner {
  max-width: 640px;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #000;
  letter-spacing: -1px;
  line-height: 1.15;
}

.closing-body {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(0,0,0,0.7);
  line-height: 1.65;
}

.closing-phones {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.closing-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.closing-phone a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Manrope', sans-serif;
}

.closing-phone a:hover {
  text-decoration: underline;
}

.closing-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.5);
  font-weight: 600;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: #000;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
}

.footer-sub {
  font-size: 14px;
  color: var(--muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-phones a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-phones a:hover {
  color: var(--accent);
}

.footer-phones span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; flex-wrap: wrap; gap: 12px; }
  .nav-phone { gap: 12px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stat-row { gap: 24px; }
  .hero-logo { max-width: 260px; }
  .manifesto { padding: 56px 24px; }
  .process { padding: 56px 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .outcomes { padding: 56px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-phones { flex-direction: column; gap: 16px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; }
  .footer-phones { text-align: left; }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-stat-row { flex-wrap: wrap; }
  .hero-values { gap: 6px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .nav-phone { display: none; }
}

/* QUOTE FORM */
.quote-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 720px;
  width: 100%;
}

.quote-form-wrap.quote-form-bottom {
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 64px 48px;
  background: #111111;
}

.quote-form-header { margin-bottom: 28px; }

.quote-form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.quote-form-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.quote-form-sub {
  font-size: 14px;
  color: var(--muted);
}

.qf-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.qf-row-2 > .qf-field { flex: 1; }

.qf-field {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.qf-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.qf-req { color: var(--accent); }
.qf-opt { color: var(--muted); font-weight: 400; }

.qf-field input,
.qf-field select,
.qf-field textarea {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}

.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.qf-field select { 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='%235BC0EB' stroke-width='2'%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: 38px; }

.qf-field select option { background: #141414; color: var(--fg); }

.qf-field textarea { resize: vertical; min-height: 80px; }

.qf-submit { width: 100%; justify-content: center; font-size: 16px; padding: 15px 32px; }

.qf-error {
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.quote-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
  text-align: center;
}

.qf-check { color: var(--accent); }

.qf-success-msg {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  max-width: 400px;
  line-height: 1.5;
}

/* HERO QUOTE FORM SECTION */
.hero-quote-section {
  padding: 0 48px 72px;
  background: #000;
}

/* BOTTOM QUOTE SECTION (above footer) */
.bottom-quote-section {
  padding: 80px 48px;
  background: #111111;
  border-top: 1px solid var(--border);
}

.bottom-quote-section .bottom-quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.bottom-quote-copy h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.bottom-quote-copy p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.bottom-quote-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bottom-quote-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bottom-quote-phone-row a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  font-size: 22px;
  font-family: 'Manrope', sans-serif;
  transition: color 0.2s;
}

.bottom-quote-phone-row a:hover { color: var(--accent); }

.bottom-quote-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 600;
  min-width: 40px;
}

.bottom-quote-section .quote-form-wrap {
  max-width: 100%;
}

@media (max-width: 900px) {
  .hero-quote-section { padding: 0 24px 56px; }
  .bottom-quote-section { padding: 56px 24px; }
  .bottom-quote-section .bottom-quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-form-wrap { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .qf-row-2 { flex-direction: column; }
  .qf-row { flex-direction: column; }
}