/* A-Z Speedcare — shared styles for all sub-pages */

:root {
  --ink: #07070a;
  --pitch: #0e0e12;
  --panel: #15151c;
  --line: #2a2a35;
  --orange: #ff5a13;
  --orange-bright: #ff8a42;
  --orange-deep: #c44210;
  --steel: #8a8a96;
  --cream: #f3efe8;
  --bone: rgba(243,239,232,0.65);
  --whisper: rgba(243,239,232,0.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
.display { font-family: 'Bebas Neue', 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0.005em; line-height: 0.92; text-transform: uppercase; }
.micro { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--orange); font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 6vw;
  background: linear-gradient(180deg, rgba(7,7,10,0.92), rgba(7,7,10,0));
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 34px; height: 34px;
  background: var(--orange);
  clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
  transition: transform .3s ease;
}
.brand:hover .brand-mark { transform: rotate(45deg); }
.brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; }
.brand-name span { color: var(--orange); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--orange); color: var(--ink);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }

/* generic page layout */
.page-hero {
  position: relative; min-height: 75vh; padding: 22vh 6vw 12vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0d 0%, #1a1a22 100%);
  background-size: cover; background-position: center;
  filter: brightness(0.5) contrast(1.1);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,10,0.45) 0%, rgba(7,7,10,0.1) 40%, rgba(7,7,10,0.95) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; width: 100%; }
.page-hero h1 {
  font-size: clamp(42px, 8vw, 110px);
  margin: 18px 0 14px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.6);
  font-family: 'Bebas Neue', sans-serif; text-transform: uppercase; line-height: 0.94;
}
.page-hero h1 .accent { color: var(--orange); }
.page-hero .lede { font-size: clamp(17px, 1.8vw, 22px); max-width: 720px; color: var(--cream); margin-top: 12px; line-height: 1.55; }
.crumbs { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone); margin-bottom: 12px; font-family: 'Oswald', sans-serif; }
.crumbs a { color: var(--orange); }

/* content sections */
.section { padding: 12vh 6vw; max-width: 1180px; margin: 0 auto; width: 100%; }
.section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4.5vw, 56px); line-height: 0.98; text-transform: uppercase; margin-bottom: 28px; }
.section h2 .accent { color: var(--orange); }
.section p { font-size: 16px; color: var(--bone); margin-bottom: 16px; max-width: 760px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--line); margin-top: 36px;
}
.feature {
  background: var(--ink); padding: 28px 22px;
}
.feature .num { font-family: 'Bebas Neue', sans-serif; color: var(--orange); font-size: 14px; letter-spacing: 0.3em; margin-bottom: 12px; }
.feature h4 { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--bone); line-height: 1.55; max-width: none; margin-bottom: 0; }

.what-to-expect { background: var(--panel); border: 1px solid var(--line); padding: 32px; margin-top: 12px; }
.what-to-expect h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; text-transform: uppercase; margin-bottom: 18px; letter-spacing: 0.005em; }
.what-to-expect ol { list-style: none; counter-reset: step; padding-left: 0; }
.what-to-expect ol li { counter-increment: step; padding: 14px 0 14px 56px; position: relative; border-top: 1px solid var(--line); font-size: 15px; color: var(--cream); }
.what-to-expect ol li:first-child { border-top: none; }
.what-to-expect ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--orange); letter-spacing: 0.05em;
}
.what-to-expect ol li strong { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--cream); }

/* CTA band */
.cta-band {
  padding: 14vh 6vw; background: var(--orange); color: var(--ink);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(7,7,10,0.05) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.cta-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 6vw, 84px); line-height: 0.96; text-transform: uppercase; margin-bottom: 28px; color: var(--ink); }
.cta-inner h2 .knock { display: block; color: rgba(7,7,10,0.5); }
.cta-inner .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.cta-inner .btn-primary {
  background: var(--ink); color: var(--cream);
  padding: 16px 26px;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta-inner .btn-primary:hover { background: var(--pitch); }
.cta-inner .btn-ghost {
  background: transparent; color: var(--ink); border: 2px solid var(--ink);
  padding: 14px 24px;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 10px;
}

/* other-doors footer */
.other-doors { padding: 10vh 6vw; background: var(--pitch); border-top: 1px solid var(--line); }
.other-doors-inner { max-width: 1180px; margin: 0 auto; }
.other-doors h3 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 3vw, 36px); text-transform: uppercase; margin-bottom: 24px; }
.other-doors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .other-doors-grid { grid-template-columns: 1fr; } }
.other-door {
  background: var(--panel); border: 1px solid var(--line);
  padding: 24px; transition: border-color .25s, transform .25s;
  display: flex; flex-direction: column; gap: 8px;
}
.other-door:hover { border-color: var(--orange); transform: translateY(-3px); }
.other-door .micro { margin-bottom: 4px; }
.other-door h4 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; text-transform: uppercase; }
.other-door p { font-size: 14px; color: var(--bone); }
.other-door .arrow { color: var(--orange); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 12px; }

/* footer */
footer {
  padding: 50px 6vw 30px; background: var(--ink);
  border-top: 1px solid var(--line);
}
.foot-grid { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; align-items: flex-end; }
.foot-credit { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--whisper); }
.foot-credit a { color: var(--orange); }
.foot-tag { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); }

/* floating whatsapp */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  background: #25D366; color: #fff;
  padding: 14px 22px;
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 32px rgba(37,211,102,0.35), 0 4px 12px rgba(0,0,0,0.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 18px; height: 18px; fill: currentColor; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
