/* Minimal fallback rules for every class in the shared contract.
 *
 * Always prepended to the model-generated stylesheet, which overrides it via the normal
 * later-wins cascade. This exists because the stylesheet and the pages are generated by
 * separate model calls, so the stylesheet can omit a contract class -- which used to fail
 * the whole build (a real business, find-dog, died on a missing `btn-primary`). With this
 * in place a missed rule degrades to plain-but-styled instead of destroying the build.
 *
 * Keep these deliberately neutral and low-specificity: they are a safety net, not a design.
 */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.6; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

/* Owner-uploaded pictures. Without explicit sizing an <img> renders at its natural size,
 * so a phone photo used as a logo would fill the whole header. */
.logo-mark { height: 2.5rem; width: auto; object-fit: contain; }
.hero-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: .5rem; }
.gallery-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: .5rem; }
.about-image { width: 100%; max-width: 420px; border-radius: .5rem; }

.site-header { padding: 1rem 0; }
.header-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; }
.logo-text { font-weight: 700; }
.main-nav { display: block; }
.nav-list { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; }
.nav-link:hover, .nav-link:focus { text-decoration: underline; }
.is-current { font-weight: 700; }

.hero, .page-hero { padding: 3rem 0; }

/* A photo sitting BEHIND the hero text instead of above it. The picture itself is set as
 * an inline `background-image` on the element, because it is per-business data the
 * stylesheet cannot know; these rules supply the darkening overlay and the stacking that
 * keep the heading readable over any photo, light or dark.
 *
 * Exists because an owner asked twice for exactly this and there was no way to express
 * it -- the only picture vocabulary was `.hero-image`, an <img> in the normal page flow. */
.hero-bg { position: relative; background-size: cover; background-position: center;
  padding: 5rem 0; overflow: hidden; }
.hero-bg::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.hero-bg > * { position: relative; z-index: 1; }
.hero-bg .hero-title, .hero-bg .hero-subtitle { color: #fff; }
.hero-inner { display: flex; flex-direction: column; gap: 1rem; }
.hero-title { margin: 0; font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.15; }
.hero-subtitle { margin: 0; font-size: 1.125rem; }

.section { padding: 3rem 0; }
.section-alt { padding: 3rem 0; }
.section-title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.section-intro { margin: 0 0 1.5rem; max-width: 60ch; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { padding: 1.25rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.card-title { margin: 0 0 .5rem; font-size: 1.125rem; }
.card-text { margin: 0; }

.steps { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-number { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid currentColor; font-weight: 700; }
.step-title { margin: 0 0 .25rem; font-size: 1.05rem; }
.step-text { margin: 0; }

/* FAQ items are <details>/<summary>: they expand on click with no JavaScript. */
html { scroll-behavior: smooth; }
.faq-list { display: grid; gap: 1rem; margin: 0; padding: 0; }
.faq-item { padding: 1rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.faq-question { margin: 0; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: "+"; font-weight: 700; flex: 0 0 auto; }
details[open] > .faq-question::after { content: "\2212"; }
.faq-answer { margin: .75rem 0 0; }

.cta-band { padding: 3rem 0; text-align: center; }
.cta-title { margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.9rem); }
.cta-text { margin: 0 0 1.25rem; }

.btn { display: inline-block; padding: .7rem 1.4rem; border-radius: .4rem; text-decoration: none;
  border: 1px solid currentColor; cursor: pointer; }
.btn:hover, .btn:focus { opacity: .85; }
.btn-primary { font-weight: 600; }
.btn-secondary { font-weight: 500; background: transparent; }

.contact-list { display: grid; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.contact-item { display: flex; flex-wrap: wrap; gap: .5rem; }
.contact-label { font-weight: 600; }
.contact-value { }

.site-footer { padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.footer-col { }
.footer-title { margin: 0 0 .5rem; font-size: 1rem; }
.footer-note { margin: 0; font-size: .9rem; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: column; }
}

/* ---- generated ---- */
:root {
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --color-bg: #0b0f10;
  --color-surface: #141a1c;
  --color-ink: #d6e0e0;
  --color-muted: #7b8282;
  --color-border: #292e2f;
  --color-accent: #4dff9e;
  --color-accent-ink: #111111;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-ink);
}

h1, h2, h3,
.hero-title, .section-title, .card-title, .cta-title, .step-title, .footer-title, .logo-text {
  font-family: var(--font-display);
}

/* ============================================================
   Xtravu — shared stylesheet
   Concept: dark control-room / bank of live monitors,
   one signal-green accent showing what's live.
   ============================================================ */

:root {
  /* palette */
  --bg: #0b0f10;
  --surface: #141a1c;
  --text: #d6e0e0;
  --text-secondary: #7b8282;
  --border: #292e2f;
  --accent: #4dff9e;
  --accent-ink: #111111;

  /* type */
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;

  --fs-hero: clamp(2.75rem, 4vw + 1.5rem, 5.75rem);
  --fs-h1: clamp(2.1rem, 2.6vw + 1.2rem, 3.4rem);
  --fs-h2: clamp(1.65rem, 1.6vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.15rem, 0.6vw + 1rem, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-mono-label: 0.75rem;

  /* spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.25rem;
  --space-5: 3.5rem;
  --space-6: 5.5rem;
  --space-7: 8rem;

  /* geometry */
  --radius: 3px;
  --radius-sm: 2px;
  --bracket-size: 20px;
  --bracket-width: 1px;

  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   Reset / base
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-2);
}

p {
  margin: 0 0 var(--space-2);
  max-width: 68ch;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 200ms var(--ease), opacity 200ms var(--ease);
}

a:hover {
  color: #85ffc0;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ============================================================
   Corner-bracket signature device
   Applied via ::after so it never fights an element's own
   background (e.g. hero-bg's inline photo).
   ============================================================ */

.card,
.cta-band,
.faq-item,
.step,
.hero-inner,
.contact-list,
.site-header .header-inner {
  position: relative;
}

.card::after,
.cta-band::after,
.faq-item::after,
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent)),
    linear-gradient(var(--accent), var(--accent));
  background-size:
    var(--bracket-width) var(--bracket-size),
    var(--bracket-size) var(--bracket-width),
    var(--bracket-width) var(--bracket-size),
    var(--bracket-size) var(--bracket-width),
    var(--bracket-width) var(--bracket-size),
    var(--bracket-size) var(--bracket-width),
    var(--bracket-width) var(--bracket-size),
    var(--bracket-size) var(--bracket-width);
  background-position:
    top left, top left,
    top right, top right,
    bottom left, bottom left,
    bottom right, bottom right;
  opacity: 0.55;
  transition: opacity 250ms var(--ease);
}

.card:hover::after {
  opacity: 1;
}

.cta-band::after {
  opacity: 0.35;
}

/* live pulse dot, top-right of framed panels */
.card::before,
.hero-inner::before,
.step::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(77, 255, 158, 0.6);
  animation: pulse-dot 2.4s ease-out infinite;
  pointer-events: none;
}

.step::before {
  top: 10px;
  right: 10px;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(77, 255, 158, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(77, 255, 158, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 255, 158, 0); }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  background: rgba(11, 15, 16, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  height: 32px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding-left: 0.9rem;
}

.logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 1px rgba(77, 255, 158, 0.7);
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.1rem;
  transition: color 200ms var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 220ms var(--ease);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  right: 0;
}

.nav-link.is-current {
  color: var(--accent);
}

.nav-link.is-current::after {
  right: 0;
}

/* ============================================================
   Hero (home)
   ============================================================ */

.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-6);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(77, 255, 158, 0.10), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(77, 255, 158, 0.06), transparent 50%);
  pointer-events: none;
}

.hero-bg {
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 16, 0.75), rgba(11, 15, 16, 0.94));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.hero-title {
  font-size: var(--fs-hero);
  max-width: 16ch;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.3rem);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-bottom: var(--space-4);
}

.hero .btn {
  margin-right: var(--space-2);
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding: var(--space-6) 0 var(--space-5);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(77, 255, 158, 0.07), transparent 60%);
  pointer-events: none;
}

.page-hero.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 16, 0.8), rgba(11, 15, 16, 0.95));
  pointer-events: none;
}

.page-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.page-hero .hero-title {
  font-size: var(--fs-h1);
  max-width: 20ch;
}

.page-hero .hero-subtitle {
  color: var(--text-secondary);
  max-width: 56ch;
  font-size: 1.1rem;
}

/* ============================================================
   Sections
   ============================================================ */

.section {
  padding: var(--space-6) 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-2);
  max-width: 20ch;
}

.section-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-bottom: var(--space-5);
}

/* ============================================================
   Cards
   ============================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3) var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 255, 158, 0.4);
  box-shadow: 0 26px 50px -18px rgba(0, 0, 0, 0.8);
}

.card-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-1);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.96rem;
}

/* ============================================================
   Pricing
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3) var(--space-3);
  text-align: center;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.pricing-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   Process steps
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  counter-reset: step;
  position: relative;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3) var(--space-3);
}

.step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  margin-bottom: var(--space-2);
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.step-text {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 760px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
}

.faq-item + .faq-item {
  margin-top: 0;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-1) 0;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 220ms var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--text-secondary);
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
  max-width: 65ch;
}

/* ============================================================
   CTA band
   ============================================================ */

.cta-band {
  background: var(--accent);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  margin: 0 auto;
  max-width: 1180px;
}

.cta-band::after {
  --bracket-color-override: var(--accent-ink);
  background-image:
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink));
}

.cta-title {
  color: var(--accent-ink);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-1);
}

.cta-text {
  color: rgba(17, 17, 17, 0.75);
  max-width: 52ch;
  margin: 0 auto var(--space-3);
}

.cta-band .btn-primary {
  background: var(--accent-ink);
  color: var(--accent);
  border-color: var(--accent-ink);
}

.cta-band .btn-primary:hover {
  background: #000;
}

.cta-band .btn-secondary {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

.cta-band .btn-secondary:hover {
  background: rgba(17, 17, 17, 0.08);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary:hover {
  background: #85ffc0;
  color: var(--accent-ink);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   Contact
   ============================================================ */

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  max-width: 480px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-family: var(--font-display);
  font-size: var(--fs-mono-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.contact-value {
  font-size: 1.1rem;
  color: var(--text);
}

.contact-value a {
  color: var(--text);
}

.contact-value a:hover {
  color: var(--accent);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-3);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
  padding-top: var(--space-2);
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

/* ============================================================
   Scroll-reveal / interactive state hooks
   ============================================================ */

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: reveal-up 600ms var(--ease) both;
}

@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-nav.is-open .nav-list {
  display: flex;
}

.card.is-active,
.step.is-active {
  border-color: var(--accent);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    max-width: 20ch;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .nav-list {
    width: 100%;
    justify-content: flex-start;
    gap: var(--space-2);
  }

  .hero {
    padding: var(--space-5) 0 var(--space-4);
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: var(--space-4) var(--space-2);
  }

  .contact-list {
    max-width: 100%;
  }
}

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

  .nav-list {
    gap: var(--space-1) var(--space-2);
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .hero-title,
  .page-hero .hero-title {
    max-width: none;
  }

  .btn {
    width: 100%;
  }

  .hero .btn {
    margin-right: 0;
    margin-bottom: var(--space-1);
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .card:hover {
    transform: none;
  }
}