/* =========================================================
   Malachi Builds — style.css
   Navy #0A1738 · Gold #EAB308 · sleek / minimal / professional
   ========================================================= */

/* --------- design tokens --------- */
:root {
  --navy: #0A1738;
  --navy-2: #152246;
  --navy-deep: #060E23;
  --gold: #EAB308;
  --gold-soft: #FCD34D;
  --ink: #0F172A;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-2: #F9FAFB;
  --bg-3: #F3F4F6;
  --accent: var(--gold);

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, .12);

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --maxw: 1200px;
  --maxw-narrow: 780px;

  --ease: cubic-bezier(.25, .8, .25, 1);
}

/* --------- dark mode --------- */
html[data-theme="dark"] {
  --bg: #060E23;
  --bg-2: #0A1738;
  --bg-3: #152246;
  --ink: #F3F4F6;
  --muted: #94A3B8;
  --line: #1E293B;
  --navy: #FCD34D;  /* flip: navy-on-light becomes gold-on-dark for accents */
}

/* --------- base --------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .3s var(--ease), color .3s var(--ease);
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
.accent { color: var(--gold); }

/* --------- layout --------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--maxw-narrow); }
.section { padding: 96px 0; }
.section-dark {
  background: var(--navy-deep);
  color: #F3F4F6;
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: #FFF; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-muted { background: var(--bg-2); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { font-size: 1.1rem; }
.section-sub { margin-top: 16px; }
.section-footer { text-align: center; margin-top: 48px; color: var(--muted); }
.section-footer a { color: var(--gold); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(234, 179, 8, .12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

/* --------- buttons --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-sm { padding: 10px 18px; font-size: 0.92rem; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--navy-2);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--bg-3);
  border-color: var(--ink);
}
.section-dark .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.section-dark .btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--bg-3); }

/* =========== NAV =========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
html[data-theme="dark"] .nav { background: rgba(6,14,35,.92); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 32px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 8px; }

.theme-icon-light { display: inline; }
.theme-icon-dark { display: none; }
html[data-theme="dark"] .theme-icon-light { display: none; }
html[data-theme="dark"] .theme-icon-dark { display: inline; }

/* =========== HERO =========== */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(234,179,8,.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(10,23,56,.05), transparent 50%);
}
html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(234,179,8,.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(10,23,56,.3), transparent 50%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-title { margin-bottom: 24px; }
.hero-terminal {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 1rem;
  background: var(--navy-deep);
  color: #FCD34D;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 20px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.hero-terminal .prompt { color: var(--gold); }
.cursor {
  display: inline-block;
  animation: blink 1s steps(1, end) infinite;
  color: var(--gold);
  font-weight: bold;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub { font-size: 1.1rem; margin-bottom: 32px; max-width: 540px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}
.meta-dot { display: inline-flex; align-items: center; gap: 6px; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* browser mock */
.hero-visual { position: relative; }
.browser-frame {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease);
}
.browser-frame:hover { transform: rotate(0) translateY(-4px); }
.browser-lg { transform: none; }
.browser-bar {
  background: var(--bg-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}
.browser-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #facc15; }
.dot-g { background: #22c55e; }
.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 12px;
  border-radius: 8px;
  margin-left: 12px;
}
.browser-body { padding: 32px 28px; background: var(--bg); }
.mock-hero { margin-bottom: 24px; }
.mock-logo {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mock-logo span { color: var(--gold); }
.mock-h1 {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.mock-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.mock-stats > div { text-align: center; }
.mock-stats strong { display: block; font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.mock-stats span { font-size: 0.78rem; color: var(--muted); }

.hero-badge {
  position: absolute;
  top: -16px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(6deg);
  z-index: 2;
}

/* =========== TRUST BAR =========== */
.trust-bar {
  background: var(--navy);
  color: #fff;
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* =========== INDUSTRY GRID =========== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.industry-icon { font-size: 2.2rem; margin-bottom: 16px; }
.industry-card h3 { margin-bottom: 8px; }
.industry-card p { font-size: 0.95rem; }

/* =========== CASE STUDY =========== */
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.case-visual a { display: block; cursor: zoom-in; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.metric strong { display: block; font-size: 1.1rem; color: var(--gold); font-weight: 800; }
.metric span { font-size: 0.82rem; color: rgba(255,255,255,.6); }
.case-list { list-style: none; margin: 16px 0 28px; }
.case-list li { padding: 8px 0; color: rgba(255,255,255,.88); }
.case-details h3 { color: #fff; margin-bottom: 8px; }

.testimonial {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  padding: 40px;
  background: rgba(234,179,8,.1);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}
.testimonial blockquote {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.5;
}
.testimonial figcaption { color: rgba(255,255,255,.75); font-size: 0.95rem; }
.testimonial strong { color: var(--gold); }

/* =========== FEATURES =========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.feature .check {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 12px;
}
.feature strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 1.05rem; }
.feature p { font-size: 0.92rem; }

/* =========== PRICING =========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.price-featured {
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-head { margin-bottom: 24px; }
.price-head h3 { margin-bottom: 12px; }
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.price-amount { font-size: 2.6rem; font-weight: 900; color: var(--navy); letter-spacing: -0.02em; }
.price-unit { color: var(--muted); font-size: 0.95rem; }
.price-tag { font-size: 0.95rem; color: var(--muted); }
.price-list {
  list-style: none;
  margin: 24px 0 32px;
  flex: 1;
}
.price-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* =========== ESTIMATOR =========== */
.estimator {
  margin-top: 64px;
  background: var(--bg);
  border: 2px solid var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.estimator-head { text-align: center; margin-bottom: 32px; }
.estimator-head h3 { font-size: 1.6rem; margin-bottom: 8px; }
.estimator-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}
.estimator-controls { display: flex; flex-direction: column; gap: 24px; }
.est-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.est-row select,
.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .2s;
}
.est-row select:focus,
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,23,56,.1);
}
.est-addons {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.est-addons legend {
  padding: 0 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}
.est-addons label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}
.est-addons input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--navy);
}

.estimator-summary {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,.8);
}
.summary-row strong { color: #fff; font-size: 1.2rem; font-weight: 800; }
.summary-row small { font-size: 0.8rem; color: rgba(255,255,255,.6); }
.summary-total {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 8px;
  padding-top: 16px;
}
.summary-total strong { font-size: 2rem; color: var(--gold); }
.summary-total span { font-weight: 700; color: #fff; font-size: 1rem; }
.summary-note { font-size: 0.8rem; color: rgba(255,255,255,.6); text-align: center; margin-top: 12px; }
.estimator-summary .btn-primary {
  background: var(--gold);
  color: var(--navy);
  margin-top: 16px;
}
.estimator-summary .btn-primary:hover { background: var(--gold-soft); }

/* =========== PROCESS =========== */
.process-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  z-index: 0;
}
.process-timeline li {
  position: relative;
  text-align: center;
  counter-increment: step;
  padding: 16px 8px;
  background: var(--bg);
  border-radius: var(--radius);
  z-index: 1;
}
.process-timeline li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 4px var(--bg);
}
.proc-day {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(234,179,8,.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.process-timeline h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-timeline p { font-size: 0.88rem; }

/* =========== COMPARE =========== */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.compare-col {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: var(--bg);
}
.compare-col h3 { font-size: 1.05rem; margin-bottom: 16px; }
.compare-col ul { list-style: none; }
.compare-col li { padding: 8px 0; font-size: 0.92rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.compare-col li:last-child { border-bottom: none; }
.compare-bad { opacity: 0.7; }
.compare-good {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(234,179,8,.05), transparent);
}
.compare-good li { color: var(--ink); font-weight: 500; }

/* =========== FAQ =========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all .2s;
}
.faq-item[open] { border-color: var(--navy); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
  outline: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 800;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--muted); }

/* =========== CTA / CONTACT =========== */
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cta-copy h2 { margin-bottom: 20px; }
.cta-copy p { font-size: 1.05rem; margin-bottom: 24px; }
.cta-bullets { list-style: none; color: rgba(255,255,255,.85); }
.cta-bullets li { padding: 8px 0; }
.cta-form {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--ink);
}
.cta-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  font-family: inherit;
}
.cta-form textarea { resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); text-align: center; }
.form-success {
  padding: 16px;
  background: #DCFCE7;
  color: #166534;
  border-radius: 10px;
  text-align: center;
  font-size: 0.95rem;
}

/* =========== FOOTER =========== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 0.92rem; line-height: 1.6; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,.7);
  font-size: 0.92rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* =========== FLOATING CTA =========== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(234,179,8,.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 40;
  transition: all .3s var(--ease);
  transform: translateY(0);
}
.floating-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(234,179,8,.55);
}
.fc-icon { font-size: 1.1rem; }

/* =========== SCROLL ANIMATIONS =========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .case-study { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .estimator-body { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 20px; }
  .process-timeline::before { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .cta-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-inner { justify-content: center; text-align: center; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .fc-text { display: none; }
  .floating-cta { padding: 14px; width: 56px; height: 56px; justify-content: center; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { justify-content: center; }
}

/* =========== PRINT =========== */
@media print {
  .nav, .floating-cta, .cta-form, .footer { display: none !important; }
}

/* =========== DARK MODE OVERRIDES FOR INDUSTRY CARDS + BROWSER MOCKS =========== */
html[data-theme="dark"] .industry-card,
html[data-theme="dark"] .feature,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .compare-col {
  background: var(--bg-2);
  border-color: var(--line);
}
html[data-theme="dark"] .browser-frame { background: var(--bg-2); border-color: var(--line); }
html[data-theme="dark"] .browser-bar { background: var(--bg-3); border-color: var(--line); }
html[data-theme="dark"] .browser-url { background: var(--bg-2); }
html[data-theme="dark"] .browser-body { background: var(--bg-2); }
html[data-theme="dark"] .mock-logo { color: #fff; }
html[data-theme="dark"] .cta-form { background: var(--bg-2); }
html[data-theme="dark"] .mock-stats strong { color: var(--gold); }
html[data-theme="dark"] .price-amount { color: #fff; }
