/* =========================================================
   YASIN & YASIR AUTOMOTIVES — Demo site by PixelWeave
   Design language: "Inspection Bay / Diagnostic Terminal"
   ========================================================= */

:root {
  /* --- Color tokens --- */
  --ink: #10141a;
  --ink-2: #0b0e12;
  --panel: #1a2029;
  --panel-2: #212a34;
  --line: rgba(237, 239, 243, 0.09);
  --line-2: rgba(237, 239, 243, 0.16);
  --text: #edeff3;
  --text-muted: #8d97a5;
  --text-dim: #626c79;
  --amber: #ffb020;
  --amber-dim: #c97f14;
  --cyan: #2dd4bf;
  --red: #e5646a;
  --ink-on-amber: #1a1305;

  /* --- Type tokens --- */
  --f-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  /* --- Layout tokens --- */
  --container: 1180px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Faint blueprint grid texture across the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(237, 239, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237, 239, 243, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 90% 60% at 50% 0%,
    black 40%,
    transparent 85%
  );
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: 108px 0;
  position: relative;
}
@media (max-width: 720px) {
  section {
    padding: 76px 0;
  }
}

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--amber);
}
.section-head.center .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
.display {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.02;
  color: var(--text);
}
h2 {
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
}
h3 {
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
}

.lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.mono {
  font-family: var(--f-mono);
}

/* Hazard strip motif */
.hazard-strip {
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    var(--amber) 0 12px,
    var(--ink-2) 12px 24px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  font-family: var(--f-mono);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.btn-primary {
  background: var(--amber);
  color: var(--ink-on-amber);
  box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(255, 176, 32, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.76rem;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: linear-gradient(
    to bottom,
    rgba(16, 20, 26, 0.92),
    rgba(16, 20, 26, 0.7)
  );
  backdrop-filter: blur(10px);
  transition:
    height 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}
.nav.scrolled {
  height: 64px;
  background: rgba(11, 14, 18, 0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
}
.logo span {
  color: var(--amber);
}
.logo small {
  font-family: var(--f-mono);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-transform: uppercase;
  align-self: center;
  padding-left: 8px;
  border-left: 1px solid var(--line-2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mobile {
  display: none;
}
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle span::before {
  position: absolute;
  top: -7px;
}
.nav-toggle span::after {
  position: absolute;
  top: 7px;
}
.nav-toggle.open span {
  background: transparent;
}
.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }
  .nav-actions .btn-ghost {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 8px 24px 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s var(--ease),
      transform 0.25s var(--ease);
    z-index: 99;
  }
  .nav-mobile.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-mobile a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: var(--text);
  }
  .nav-mobile .btn {
    margin-top: 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg .img-ph {
  height: 100%;
  border-radius: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(16, 20, 26, 0.97) 20%,
      rgba(16, 20, 26, 0.78) 48%,
      rgba(16, 20, 26, 0.5) 75%
    ),
    linear-gradient(
      to top,
      rgba(16, 20, 26, 1) 0%,
      rgba(16, 20, 26, 0.2) 30%,
      transparent 55%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 1.7rem + 4.2vw, 4.6rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero .lede {
  margin-bottom: 34px;
  font-size: 1.12rem;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-item .num {
  font-family: var(--f-mono);
  font-size: 1.5rem;
  color: var(--cyan);
  display: block;
}
.trust-item .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Inspection card (signature element) ---------- */
.inspection-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: 26px 26px 22px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  position: relative;
}
.ic-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.15);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.ic-title {
  flex: 1;
  color: var(--text);
}
.ic-badge {
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 3px 8px;
  color: var(--text-dim);
  font-size: 0.62rem;
}
.ic-vin {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.ic-vin-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.ic-vin-value {
  font-family: var(--f-mono);
  font-size: 1.05rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}
.ic-cursor {
  font-family: var(--f-mono);
  color: var(--cyan);
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.ic-checklist {
  position: relative;
}
.ic-checklist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.ic-checklist li:last-child {
  border-bottom: none;
}
.ic-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.ic-item-name::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.ic-item-status {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
}
li[data-status="ok"] .ic-item-name::before {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.5);
}
li[data-status="ok"] .ic-item-status {
  color: var(--cyan);
}
li[data-status="flag"] .ic-item-name::before {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(255, 176, 32, 0.5);
}
li[data-status="flag"] .ic-item-status {
  color: var(--amber);
}

.ic-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono);
  font-size: 0.76rem;
  color: var(--text-dim);
}
.ic-verdict {
  color: var(--text);
  text-align: right;
}

@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .inspection-card {
    max-width: 460px;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: scroll-left 30s linear infinite;
}
.marquee span {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee span em {
  color: var(--text-muted);
  font-style: normal;
  padding: 0 20px;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Image placeholder component ---------- */
.img-ph {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ar, 4/3);
  border-radius: var(--radius-m);
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
}
.img-ph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    45deg,
    var(--amber) 0 10px,
    var(--ink-2) 10px 20px
  );
  opacity: 0.9;
}
.img-ph svg {
  width: 34px;
  height: 34px;
  color: var(--text-dim);
  opacity: 0.8;
}
.img-ph-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  max-width: 30ch;
}
.img-ph-label b {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}

/* ---------- Cards / panels base ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.service-card {
  background: var(--panel);
  padding: 34px 30px;
  transition: background-color 0.25s var(--ease);
}
.service-card:hover {
  background: var(--panel-2);
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}
.service-icon svg {
  width: 22px;
  height: 22px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.service-num {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 14px;
}

@media (max-width: 940px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Sample report ---------- */
.report-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.report-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.report-list li {
  display: flex;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-muted);
}
.report-list li b {
  color: var(--text);
  font-weight: 600;
}
.report-list svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.report-card {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: 30px;
}
.report-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed var(--line-2);
}
.report-card-head h4 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--text);
}
.report-card-head .mono {
  color: var(--text-dim);
  font-size: 0.78rem;
}
.report-tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  text-transform: uppercase;
}
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}
.report-row:last-of-type {
  border-bottom: none;
}
.report-row .rlabel {
  color: var(--text-muted);
}
.report-row .rval {
  font-family: var(--f-mono);
}
.rval.ok {
  color: var(--cyan);
}
.rval.flag {
  color: var(--amber);
}
.report-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.report-thumbs .img-ph {
  --ar: 1/1;
  padding: 10px;
}
.report-thumbs .img-ph svg {
  width: 18px;
  height: 18px;
}
.report-thumbs .img-ph-label {
  font-size: 0.58rem;
}

@media (max-width: 940px) {
  .report-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
  margin-top: 20px;
}
.process-item {
  position: relative;
  padding-top: 18px;
}
.process-item::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--amber);
  display: block;
  margin-bottom: 14px;
}
.process-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.process-item h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.process-item p {
  color: var(--text-muted);
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Team ---------- */
.team-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.team-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.team-stats {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}
.team-stats .num {
  font-family: var(--f-mono);
  font-size: 1.6rem;
  color: var(--amber);
  display: block;
}
.team-stats .lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .team-wrap {
    grid-template-columns: 1fr;
  }
  .team-wrap .img-ph {
    max-width: 420px;
  }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
}
.price-card.popular {
  border-color: var(--amber);
  background: linear-gradient(
    180deg,
    rgba(255, 176, 32, 0.08),
    var(--panel) 40%
  );
  position: relative;
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--amber);
  color: var(--ink-on-amber);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--f-mono);
}
.price-amount {
  font-family: var(--f-display);
  font-size: 2.6rem;
  color: var(--text);
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--f-mono);
}
.price-per {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.price-features svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.price-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 940px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ---------- Reviews ---------- */
.reviews-wrap {
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 min(360px, 84vw);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
}
.review-stars {
  color: var(--amber);
  font-family: var(--f-mono);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-quote {
  color: var(--text);
  font-size: 0.98rem;
  margin-bottom: 22px;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.92rem;
  font-weight: 600;
}
.review-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.rc-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition:
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.rc-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.rc-btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--text);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-muted);
  transition: background-color 0.3s var(--ease);
}
.faq-q .plus::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-q .plus::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-q .plus {
  transform: rotate(45deg);
  border-color: var(--amber);
}
.faq-item[open] .faq-q .plus::before,
.faq-item[open] .faq-q .plus::after {
  background: var(--amber);
}
.faq-a {
  padding: 0 4px 26px;
  color: var(--text-muted);
  max-width: 68ch;
  font-size: 0.98rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ---------- CTA / Contact ---------- */
.cta-banner {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.cta-copy h2 {
  margin-bottom: 18px;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.cta-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-contact .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.cta-contact .ic svg {
  width: 18px;
  height: 18px;
}
.cta-contact .txt .k {
  font-size: 0.76rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
}
.cta-contact .txt .v {
  font-size: 1rem;
  color: var(--text);
  font-family: var(--f-mono);
}

.quote-form {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  padding: 32px;
}
.quote-form h3 {
  margin-bottom: 6px;
}
.quote-form > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-s);
  padding: 12px 14px;
  color: var(--text);
  transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--cyan);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 78px;
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 14px;
  text-align: center;
}

@media (max-width: 940px) {
  .cta-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 76px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 34ch;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.footer-social a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.94rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-bottom .credit a {
  color: var(--amber);
}
.footer-bottom .credit a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 14, 18, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-l);
  max-width: 460px;
  width: 100%;
  padding: 40px 34px 34px;
  position: relative;
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s var(--ease);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--amber);
}
.modal-icon svg {
  width: 26px;
  height: 26px;
}
.modal h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.modal p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 8px;
}
.modal .modal-target {
  color: var(--cyan);
  font-family: var(--f-mono);
  font-size: 0.88rem;
}
.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  border: 1px solid var(--line);
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.modal-close:hover {
  color: var(--text);
  border-color: var(--line-2);
}
.modal-close svg {
  width: 16px;
  height: 16px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}
.reveal-d5 {
  transition-delay: 0.4s;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
