/* =============================================
   APLOS AI — HOMEPAGE STYLES
   Extracted from inline <style> for cacheability.
   ============================================= */

/* =====================
   HERO
===================== */
.hero {
  padding: 2rem 0 4rem;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.32;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.05em; margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(.75); } }

.hero-headline { margin-bottom: 1rem; }
.hero-headline .red { color: var(--accent); font-style: italic; }

.hero-sub {
  font-size: 0.9375rem; color: var(--ink-2); line-height: 1.55;
  max-width: 400px; margin-bottom: 1.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  color: var(--ink); line-height: 1; margin-bottom: 0.2rem;
}
.stat-lbl { font-size: 0.75rem; color: var(--muted); }

/* Process flow card */
.hero-visual { position: relative; padding-top: 2rem; padding-bottom: 4rem; margin-top: 5rem; }
.process-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 1.25rem;
  box-shadow: var(--shadow-lg);
}
.process-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.process-card-head-title {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em;
}
.live-badge {
  display: flex; align-items: center; gap: 0.375rem;
  font-family: var(--font-mono); font-size: 0.75rem; color: #16A34A;
}
.live-dot { width: 7px; height: 7px; background: #16A34A; border-radius: 50%; animation: blink 2s ease infinite; }

.flow-steps { display: flex; flex-direction: column; gap: 0.75rem; min-height: 0; }
.flow-step {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.875rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: all 0.4s ease;
  min-height: 4rem;
}
.flow-step.done   { border-color: #D4EAD8; background: #F0FBF2; }
.flow-step.active { border-color: var(--accent); background: rgba(232,74,28,0.04); }
.flow-step.pend   { border-color: var(--border); background: transparent; }

.step-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; font-family: var(--font-mono); font-weight: 500;
  transition: all 0.4s ease;
}
.flow-step.done   .step-icon { background: #D4EAD8; color: #16A34A; }
.flow-step.active .step-icon { background: var(--accent); color: #fff; }
.flow-step.pend   .step-icon { background: var(--bg-2); color: var(--muted); }

.step-info { flex: 1; }
.step-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 0.125rem; }
.step-detail { font-size: 0.75rem; color: var(--muted); font-family: var(--font-mono); }

.step-badge {
  font-family: var(--font-mono); font-size: 0.6875rem; font-weight: 500;
  padding: 0.2rem 0.5rem; border-radius: 100px; transition: all 0.4s ease;
  min-width: 4.5rem; text-align: center; flex-shrink: 0;
}
.flow-step.done   .step-badge { background: #D4EAD8; color: #16A34A; }
.flow-step.active .step-badge { background: rgba(232,74,28,0.12); color: var(--accent); }
.flow-step.pend   .step-badge { background: var(--bg-2); color: var(--muted); }

/* Float cards */
.float-card {
  position: absolute;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 12px;
  padding: 0.875rem 1.125rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 0.75rem; white-space: nowrap;
}
.float-card-1 { top: 1rem; right: -1.5rem; animation: floatA 4s ease-in-out infinite; }
.float-card-2 { bottom: -1.0625rem; left: -1.5rem; animation: floatB 5s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform:translateY(0) rotate(-1deg); } 50% { transform:translateY(-8px) rotate(0deg); } }
@keyframes floatB { 0%,100% { transform:translateY(0) rotate(1deg);  } 50% { transform:translateY(-6px) rotate(0deg); } }
.float-lbl { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.float-sub { font-family: var(--font-mono); font-size: 0.6875rem; color: var(--muted); }

/* =====================
   LOGOS BAND
===================== */
.logos-band {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.logos-inner { display: flex; align-items: center; gap: 2rem; }
.logos-label { white-space: nowrap; flex-shrink: 0; }
.logos-track { display: flex; align-items: center; overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%); }
.logos-scroll {
  display: flex; align-items: center; gap: 3.5rem; flex-shrink: 0;
  animation: marque 22s linear infinite;
}
@keyframes marque { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap; flex-shrink: 0;
}
.logo-item img {
  width: 22px; height: 22px; object-fit: contain; flex-shrink: 0;
  opacity: 0.7; transition: opacity .2s;
}
.logo-item:hover img { opacity: 1; }
.logo-item span {
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 700;
  color: var(--ink-2); letter-spacing: -0.02em;
}

/* =====================
   HOW IT WORKS
===================== */
.how-section { background: var(--ink); color: var(--bg); }
.how-section .label { color: rgba(247,244,238,0.35); }
.how-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 5rem; gap: 2rem;
}
.how-header-left .label { margin-bottom: 1rem; }
.how-header-right {
  max-width: 360px; font-size: 1.0625rem;
  color: rgba(247,244,238,0.55); line-height: 1.7; padding-bottom: 0.5rem;
}
.how-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.how-step {
  padding: 2.5rem 2rem;
  border-top: 1px solid rgba(247,244,238,0.1);
  border-right: 1px solid rgba(247,244,238,0.1);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step::after {
  content: '\2192';
  position: absolute; right: -0.8rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem; color: rgba(247,244,238,0.2); z-index: 1;
}
.how-step:last-child::after { display: none; }
.how-step-num {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.how-step-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.how-step-title {
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 700;
  color: var(--bg); line-height: 1.2; margin-bottom: 0.875rem;
}
.how-step-desc { font-size: 0.9375rem; color: rgba(247,244,238,0.5); line-height: 1.65; }

/* =====================
   AUTOMATIONS
===================== */
.auto-header { margin-bottom: 3.5rem; }
.auto-header-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 0;
}
.auto-header .label { margin-bottom: 1rem; }
.auto-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.auto-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--trans); position: relative; overflow: hidden;
}
.auto-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.auto-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.auto-card:hover::before { transform: scaleX(1); }
.auto-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.auto-icon { font-size: 1.75rem; line-height: 1; }
.auto-hrs {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--accent); background: rgba(232,74,28,0.08);
  padding: 0.25rem 0.625rem; border-radius: 100px; border: 1px solid rgba(232,74,28,0.15);
}
.auto-name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.5rem; line-height: 1.2;
}
.auto-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* =====================
   PRICING
===================== */
.pricing-section { background: var(--bg-2); }
.pricing-header { max-width: 640px; margin-bottom: 4rem; }
.pricing-header .label { margin-bottom: 1rem; }
.pricing-header .display-lg { margin-bottom: 1rem; }
.pricing-header p { font-size: 1.0625rem; color: var(--ink-2); line-height: 1.7; }

.pricing-how { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 4rem; }
.pricing-how-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.pricing-how-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}
.pricing-how-title { font-weight: 600; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.375rem; }
.pricing-how-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

.pricing-table { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pt-head {
  display: grid; grid-template-columns: 1fr auto auto auto;
  gap: 1rem; padding: 1rem 1.75rem;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pt-row {
  display: grid; grid-template-columns: 1fr auto auto auto;
  gap: 1rem; padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border);
  align-items: center; transition: background var(--trans);
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: rgba(232,74,28,0.025); }
.pt-row-name { display: flex; align-items: center; gap: 0.875rem; }
.pt-icon { font-size: 1.25rem; flex-shrink: 0; }
.pt-title { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.pt-sub { font-size: 0.8125rem; color: var(--muted); margin-top: 0.125rem; }
.pt-hrs { font-family: var(--font-mono); font-weight: 500; font-size: 1.0625rem; color: var(--ink); text-align: right; }
.pt-cmx { text-align: center; }
.cmx-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.6875rem;
  font-weight: 500; padding: 0.2rem 0.625rem; border-radius: 100px;
}
.cmx-low  { background: #D4EAD8; color: #16A34A; }
.cmx-mid  { background: #FEF3C7; color: #D97706; }
.cmx-high { background: rgba(232,74,28,0.1); color: var(--accent); }
.pt-cta { text-align: right; }
.link-cta {
  font-size: 0.875rem; font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: gap var(--trans);
}
.link-cta:hover { gap: 0.5rem; }

.pricing-note {
  margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--muted);
}
.pricing-note strong { color: var(--ink); }

/* =====================
   WHY US
===================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-content .label { margin-bottom: 1rem; }
.why-content .display-lg { margin-bottom: 1.5rem; }
.why-content > p { font-size: 1.0625rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 2.5rem; }
.why-points { display: flex; flex-direction: column; gap: 1.25rem; }
.why-point { display: flex; gap: 1rem; align-items: flex-start; }
.why-point-icon {
  width: 40px; height: 40px;
  background: rgba(232,74,28,0.08); border: 1.5px solid rgba(232,74,28,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; flex-shrink: 0; margin-top: 0.125rem;
}
.why-point-title { font-weight: 600; font-size: 0.9375rem; color: var(--ink); margin-bottom: 0.25rem; }
.why-point-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Comparison table */
.comparison {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cmp-head { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.cmp-col {
  padding: 1rem 1.25rem;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cmp-col.feat { background: var(--bg-2); color: var(--muted); }
.cmp-col.them { background: var(--bg-2); color: var(--muted); border-left: 1px solid var(--border); }
.cmp-col.us   { background: var(--ink); color: var(--bg); border-left: 1px solid rgba(255,255,255,.1); text-align: center; }
.cmp-col.us span { color: var(--accent); }
.cmp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--border); }
.cmp-cell { padding: 0.875rem 1.25rem; font-size: 0.875rem; }
.cmp-cell.feat { color: var(--ink); font-weight: 500; }
.cmp-cell.them { color: var(--muted); border-left: 1px solid var(--border); }
.cmp-cell.us-val {
  background: rgba(232,74,28,0.03); border-left: 1px solid rgba(232,74,28,0.15);
  text-align: center;
}
.chk { color: #16A34A; } .crs { color: #DC2626; font-size: 0.8rem; }

/* =====================
   ROI CALCULATOR
===================== */
.roi-section { background: var(--ink); color: var(--bg); }
.roi-section .label { color: rgba(247,244,238,0.35); }
.roi-header { text-align: center; margin-bottom: 3.5rem; }
.roi-header .label { margin-bottom: 1rem; }
.roi-header .display-lg { color: var(--bg); }
.roi-header p { color: rgba(247,244,238,0.5); max-width: 480px; margin: 1rem auto 0; font-size: 0.9375rem; }

.roi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.roi-inputs { background: rgba(247,244,238,0.04); border: 1px solid rgba(247,244,238,0.1); border-radius: var(--radius-lg); padding: 2rem; }
.roi-inputs-title { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(247,244,238,0.35); margin-bottom: 1.75rem; }

.roi-field { margin-bottom: 1.5rem; }
.roi-field:last-child { margin-bottom: 0; }
.roi-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.625rem; }
.roi-label-text { font-size: 0.875rem; font-weight: 500; color: rgba(247,244,238,0.8); }
.roi-label-val { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--accent); font-weight: 500; }
.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 50%, rgba(247,244,238,0.15) 50%, rgba(247,244,238,0.15) 100%);
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 2px solid var(--ink); box-shadow: 0 0 0 3px rgba(232,74,28,0.25);
  transition: box-shadow 0.2s ease;
}
.roi-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(232,74,28,0.3); }

.roi-select {
  width: 100%; padding: 0.75rem 1rem; border-radius: 8px;
  border: 1px solid rgba(247,244,238,0.12); background: rgba(247,244,238,0.07);
  color: var(--bg); font-family: var(--font-body); font-size: 0.9375rem;
  outline: none; cursor: pointer; appearance: none;
  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='%238C8880' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.roi-select option { background: #1a1a16; color: #fff; }

.roi-results { display: flex; flex-direction: column; gap: 1rem; }

.roi-result-big {
  background: var(--accent); border-radius: var(--radius-lg); padding: 2rem;
  text-align: center;
}
.roi-result-big-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.roi-result-big-num { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1; margin-bottom: 0.375rem; }
.roi-result-big-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }

.roi-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.roi-stat {
  background: rgba(247,244,238,0.05); border: 1px solid rgba(247,244,238,0.08);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.roi-stat-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 900; letter-spacing: -0.03em; color: var(--bg); margin-bottom: 0.25rem; }
.roi-stat-label { font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,244,238,0.35); }

.roi-payback {
  background: rgba(247,244,238,0.04); border: 1px solid rgba(247,244,238,0.1);
  border-radius: 10px; padding: 1.25rem 1.5rem;
}
.roi-payback-text { font-size: 0.875rem; color: rgba(247,244,238,0.6); line-height: 1.5; }
.roi-payback-text strong { color: var(--bg); }

.roi-badge-card {
  background: #1A7A4A; border-radius: var(--radius-lg); padding: 1.75rem 2rem;
  text-align: center; border: 1px solid rgba(76,195,138,0.25);
}
.roi-badge-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(76,195,138,0.75); margin-bottom: 0.5rem; }
.roi-badge-num { font-family: var(--font-display); font-size: clamp(2.75rem,5vw,4.5rem); font-weight: 900; letter-spacing: -0.03em; color: #fff; line-height: 1; margin-bottom: 0.375rem; }
.roi-badge-sub { font-size: 0.8125rem; color: rgba(255,255,255,0.55); }

.roi-cta-row { text-align: center; margin-top: 0.5rem; }
.roi-cta-row p { font-size: 0.8125rem; color: rgba(247,244,238,0.35); margin-bottom: 1rem; font-family: var(--font-mono); letter-spacing: 0.04em; }

/* =====================
   CTA
===================== */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,74,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .label { margin-bottom: 1.5rem; }
.cta-section .display-xl { margin-bottom: 1.5rem; }
.cta-section .display-xl .light-ital { font-style: italic; font-weight: 300; }
.cta-sub { font-size: 1.125rem; color: var(--ink-2); max-width: 480px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cta-form { max-width: 420px; margin: 0 auto; display: flex; gap: 0.75rem; }
.cta-input {
  flex: 1; padding: 0.875rem 1.25rem; border: 1.5px solid var(--border);
  border-radius: 100px; background: var(--white);
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--ink); outline: none;
  transition: border-color var(--trans);
}
.cta-input::placeholder { color: var(--muted); }
.cta-input:focus { border-color: var(--accent); }

/* =====================
   FOOTER
===================== */
.footer { padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.375rem; font-weight: 900; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 0.875rem; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 240px; margin-bottom: 1.5rem; }
.footer-col-title { font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  font-size: 0.8125rem; color: var(--muted);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .how-steps { grid-template-columns: repeat(2,1fr); }
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(2)::after, .how-step:nth-child(4)::after { display: none; }
  .auto-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .roi-wrap { grid-template-columns: 1fr; }
  .roi-result-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }

  /* Hero */
  .hero { padding: 6rem 0 3rem; }
  .hero-visual { margin-top: 2rem !important; padding-top: 0 !important; padding-bottom: 1.5rem !important; width: 100%; max-width: 100% !important; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 1.5rem; }

  /* Rest of page */
  .how-header { flex-direction: column; align-items: flex-start; margin-bottom: 3rem; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; padding: 2rem 0; }
  .how-step::after { display: none; }
  .auto-grid { grid-template-columns: 1fr; }
  .pricing-how { grid-template-columns: 1fr; }
  .pt-head, .pt-row { grid-template-columns: 1fr auto auto; }
  .pt-cmx, .pt-head .col-cmx { display: none; }
  .roi-result-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .auto-header-top { flex-direction: column; align-items: flex-start; }
  .float-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 1.25rem 2rem; }
  .process-card { padding: 1rem; }
  .flow-step { padding: 0.625rem 0.75rem; }
  .step-detail { font-size: 0.7rem; }
}

/* =====================
   FAQ
===================== */
.faq-section { background: var(--bg-2); }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq-left .label { margin-bottom: 1rem; }
.faq-left .display-lg { margin-bottom: 1rem; }
.faq-left p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.375rem 0; gap: 1.5rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 700;
  color: var(--ink); transition: color var(--trans);
}
.faq-btn:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.375rem; flex-shrink: 0; color: var(--accent);
  transition: transform 0.3s ease; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem; color: var(--ink-2); line-height: 1.75;
}
@media (max-width: 768px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =====================
   CONTACT SECTION
===================== */
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-header .label { margin-bottom: 1.5rem; }
.contact-header .display-xl { margin-bottom: 1.5rem; }
.cta-sub { font-size: 1.125rem; color: var(--ink-2); max-width: 560px; margin: 0 auto; line-height: 1.7; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 920px; margin: 0 auto;
}
.contact-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.25rem;
  box-shadow: var(--shadow);
}
.contact-call { border-color: var(--accent); background: rgba(232,74,28,0.025); }
.contact-card-label {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 0.875rem;
}
.contact-card-title {
  font-family: var(--font-display); font-size: 1.625rem; font-weight: 700;
  color: var(--ink); line-height: 1.15; margin-bottom: 0.875rem;
}
.contact-card-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.75rem; }
.call-perks { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.call-perks li { font-size: 0.9rem; color: var(--ink-2); }

/* =====================
   TRUST STRIP
===================== */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.75rem 2rem; }
.trust-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0.5rem 2.5rem; }
.trust-num { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.trust-label { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.trust-divider { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; }
@media (max-width: 640px) { .trust-divider { display: none; } .trust-item { padding: 0.5rem 1.25rem; } }

/* =====================
   TOOLS SECTION
===================== */
.tools-section { background: var(--bg-2); }
.tools-sub { text-align: center; max-width: 560px; margin: 0.75rem auto 0; color: var(--ink-2); }
.tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.tool-category { display: flex; flex-direction: column; gap: 0.75rem; }
.tool-cat-label { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.tool-pills { display: flex; flex-direction: column; gap: 0.4rem; }
.tool-p { font-family: 'Instrument Sans', sans-serif; font-size: 0.875rem; font-weight: 500; color: var(--ink-2); background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 0.4rem 0.75rem; display: flex; align-items: center; gap: 0.5rem; width: fit-content; }
.tool-p img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 768px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-p { width: 100%; }
}

/* =====================
   TESTIMONIALS
===================== */
.testimonials-section {}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-quote { font-family: 'Fraunces', serif; font-weight: 300; font-style: italic; font-size: 1.05rem; color: var(--ink); line-height: 1.65; }
.testimonial-quote::before { content: '\201C'; color: var(--accent); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.1rem; }
.testimonial-name { font-family: 'Instrument Sans', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testimonial-role { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); margin-top: 0.2rem; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
