/* ═══════════════════════════════════════════════════════════════
   Arnold Studio Design: shared stylesheet for trade service pages
   ───────────────────────────────────────────────────────────────
   Used by the /…-website-design/ landing pages. Tokens, nav, footer
   and buttons mirror index.html so the pages read as one site; the
   service-page components below are additive and live only here.
   Edit this file once instead of every service page.
   ═══════════════════════════════════════════════════════════════ */

/* ───────────── Tokens ───────────── */
:root {
  --bg: #0e0e0f;
  --bg-2: #161617;
  --bg-3: #1c1c1e;
  --bg-card: #18181a;
  --green: #7ec23f;
  --green-2: #8ace44;
  --green-dark: #6aab33;
  --white: #f3f3f1;
  --muted: #8c8c8e;
  --muted-2: #6a6a6c;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  --display: "Righteous", "Arial Narrow", "Haettenschweiler", sans-serif;
  --body: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-pop: cubic-bezier(0.76, 0, 0.24, 1);
  --dur: 240ms;
}

/* ───────────── Reset ───────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--green);
  color: #0e0e0f;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  transition: top var(--dur) var(--ease);
}
.skip-link:focus {
  top: 16px;
}
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.eyebrow,
.section-title,
.svc-h1,
.faq-num,
.faq-q,
.foot-brand {
  font-weight: 700 !important;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
::selection {
  background: var(--green);
  color: #0e0e0f;
}

/* ───────────── Utilities ───────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-size: clamp(28px, 4.4vw, 46px);
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 460px;
  margin-top: 14px;
}
.center-head {
  max-width: 640px;
  margin: 0 auto 8px;
  text-align: center;
}
.center-head .section-sub {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Left-aligned section entry, so not every section opens the same way. */
.section-head { max-width: 620px; }
.section-head .section-title { max-width: 22ch; }
.section-head .section-sub { max-width: 480px; }

/* Display face is reserved for H1, H2, labels and numerals; everything below
   that sits in the body face so the levels read as a hierarchy. */
.sub-head {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur),
    color var(--dur),
    border-color var(--dur);
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: #0e0e0f;
}
.btn-green:hover {
  background: var(--green-2);
  color: #0e0e0f;
}
.btn-outline {
  border: 1.5px solid var(--line-2);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(126, 194, 63, 0.08);
}
.btn:active {
  transform: translateY(1px);
}

/* ───────────── Scroll reveal ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.1s; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ───────────── Nav ───────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
header.scrolled {
  background: rgba(14, 14, 15, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--dur);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-contact {
  background: var(--green);
  color: #0e0e0f;
  font-weight: 600;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--dur), transform var(--dur);
}
.nav-links a.nav-contact:hover {
  background: var(--green-2);
  color: #0e0e0f;
}
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  width: 16px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ───────────── Service hero ─────────────
   Typography-led: these pages earn attention with the headline and
   the first paragraph, not a stock photo. Asymmetric two-column
   split keeps it from reading as a centered template hero. */
.svc-hero {
  padding-top: 148px;
  padding-bottom: clamp(56px, 7vw, 92px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.svc-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 78%;
  transform: translateX(-50%);
  width: 720px;
  height: 720px;
  max-width: 120vw;
  background: radial-gradient(
    circle,
    rgba(126, 194, 63, 0.13),
    rgba(126, 194, 63, 0.04) 46%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.svc-hero .container { position: relative; z-index: 1; }

.crumbs {
  font-size: 12.5px;
  color: var(--muted-2);
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.crumbs a { color: var(--muted); transition: color var(--dur); }
.crumbs a:hover { color: var(--green); }
.crumbs span[aria-current] { color: var(--muted-2); }
.crumbs .sep { color: var(--muted-2); }

.svc-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.svc-h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
}
.svc-h1 .hl { color: var(--green); }
.svc-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 17.5px);
  max-width: 560px;
  margin-top: 22px;
}
.svc-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.svc-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted);
}
.svc-trust span { display: inline-flex; align-items: center; gap: 8px; }
.svc-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

/* Service-area note: carries the local signal without keyword stuffing */
.svc-local {
  border-left: 2px solid var(--green);
  padding: 4px 0 4px 20px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 340px;
}
.svc-local strong {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ───────────── Feature cards ───────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(44px, 5vw, 64px);
}
.feature-card {
  border-top: 1px solid var(--line-2);
  padding-top: 22px;
}
.feature-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 34ch;
}

/* ───────────── What's included ───────────── */
#included { background: var(--bg-2); border-block: 1px solid var(--line); }
.incl-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.incl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 40px;
}
.incl-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: #d4d4d6;
}
.incl-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
}

/* ───────────── Demo band ───────────── */
.demo-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  margin-top: 44px;
}
.demo-band h3 {
  font-family: var(--body);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 10px;
}
.demo-band p { color: var(--muted); font-size: 14.5px; max-width: 560px; }
.demo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ───────────── Pricing pointer ───────────── */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.price-mini {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color var(--dur);
}
.price-mini:hover { border-color: var(--line-2); }
.price-mini.featured { border-color: rgba(126, 194, 63, 0.45); }
.price-mini h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}
.price-mini .amt {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1;
}
.price-mini .terms {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 10px;
}
.price-mini .fits {
  color: #d4d4d6;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ───────────── FAQ ───────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.faq-list { width: 100%; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  text-align: left;
}
.faq-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  min-width: 26px;
}
.faq-q {
  font-family: var(--display);
  font-size: clamp(15px, 1.9vw, 19px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
  transition: color var(--dur);
}
.faq-head:hover .faq-q { color: var(--green); }
.faq-chevron {
  color: var(--muted);
  transition: transform var(--dur) var(--ease), color var(--dur);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body p {
  color: var(--muted);
  font-size: 14.5px;
  padding: 0 4px 22px 44px;
}

/* ───────────── Final CTA ───────────── */
.endcta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  text-align: center;
}
.endcta .section-sub { margin-inline: auto; }
.endcta .svc-cta-row { justify-content: center; }

/* ───────────── Footer ───────────── */
footer { border-top: 1px solid var(--line); padding: 48px 0 28px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.foot-motto {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
}
.foot-motto span { color: var(--green); }
.foot-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-size: 14px;
  color: #ffffff;
}
.foot-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--dur);
}
.foot-phone img { width: 13px; height: auto; }
.foot-phone:hover { color: var(--green); }
.foot-base {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}
.foot-social { display: inline-flex; gap: 14px; }
.foot-social a {
  display: inline-flex;
  color: var(--muted);
  transition: color var(--dur), transform var(--dur) var(--ease);
}
.foot-social a:hover { color: var(--green); }
.foot-social svg { width: 18px; height: 18px; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: #ffffff;
}
.foot-legal { display: inline-flex; gap: 18px; }
.foot-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur);
}
.foot-legal a:hover { color: var(--green); }

/* Sibling service pages: internal linking between trades */
.foot-trades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.foot-trades a { color: var(--muted); transition: color var(--dur); }
.foot-trades a:hover { color: var(--green); }
.foot-trades a[aria-current] { color: var(--white); }

/* ───────────── Responsive ───────────── */
@media (max-width: 980px) {
  .svc-split { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .svc-local { max-width: none; }
  .incl-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    background: rgba(22, 22, 24, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 26px;
    min-width: 200px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open a { font-size: 15px; }
  .faq-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; max-width: 440px; }
  .demo-band { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .incl-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .foot-contact { align-items: center; }
  .foot-base { text-align: center; }
}
