/* 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; }

/* No page requirement builds a pricing section, so a site only has one because an edit
   added it -- and that edit patches the pages, which the per-site stylesheet knows nothing
   about. These rules are what stop such a section rendering as naked text. They cost no
   model tokens: this file is static and prepended by _with_base_css. */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.pricing-card { display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.pricing-name { margin: 0; font-size: 1.125rem; font-weight: 700; }
.pricing-price { margin: 0; font-size: 1.75rem; font-weight: 700; line-height: 1.1; }
.pricing-period { margin: 0; font-size: .875rem; opacity: .75; }
.pricing-features { margin: .5rem 0 0; padding: 0 0 0 1.1rem; display: grid; gap: .35rem; }

.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 { }

/* Video and downloadable files. Guaranteed here for the same reason the pricing rules
   are: nothing builds them by default, so a video added by a later edit would otherwise
   land with no rules at all. A video without max-width overflows every phone. */
.video-wrap { margin: 1.5rem 0; }
.site-video { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 4px; background: #000; }
.video-caption { margin: .5rem 0 0; font-size: .9rem; }
.doc-list { display: grid; gap: .75rem; list-style: none; margin: 1.5rem 0; padding: 0; }
.doc-link { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.2rem;
  border: 1px solid currentColor; border-radius: 4px; text-decoration: none; font-weight: 600; }
.doc-link:hover, .doc-link:focus { opacity: .85; }
.doc-note { margin: .35rem 0 0; font-size: .85rem; }

.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: #0e1414;
  --color-surface: #161f1e;
  --color-ink: #dce6e3;
  --color-muted: #7f8886;
  --color-border: #2d3433;
  --color-accent: #3ddc84;
  --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);
}

/* ============================================
   botthatcode — shared stylesheet
   Concept: dark terminal / chat-window calm
   ============================================ */

:root {
  /* palette */
  --bg: #0e1414;
  --surface: #161f1e;
  --text: #dce6e3;
  --text-secondary: #7f8886;
  --border: #2d3433;
  --accent: #3ddc84;
  --accent-ink: #111111;

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

  /* spacing scale */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* radii */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  /* shadow */
  --shadow-card: 0 12px 30px -12px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(61, 220, 132, 0.15), 0 0 24px -4px rgba(61, 220, 132, 0.25);

  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-med: 280ms;
  --dur-slow: 400ms;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover,
a:focus-visible {
  color: #63e8a2;
}

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

p {
  margin: 0 0 var(--space-sm);
  max-width: 70ch;
  color: var(--text);
}

ul, ol {
  padding: 0;
  list-style: none;
  margin: 0;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================
   Layout
   ============================================ */

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

@media (min-width: 1920px) {
  .container {
    max-width: 1280px;
  }
}

/* ============================================
   Signature device: typing cursor bar
   ============================================ */

.section-title,
.hero-title,
.cta-title {
  position: relative;
  padding-left: 1.1em;
}

.section-title::before,
.hero-title::before,
.cta-title::before {
  content: "|";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  animation: blink-cursor 1.1s steps(1) infinite;
}

@keyframes blink-cursor {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .section-title::before,
  .hero-title::before,
  .cta-title::before {
    animation: none;
    opacity: 1;
  }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(14, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-med) var(--ease);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-text::after {
  content: "_";
  color: var(--accent);
  animation: blink-cursor 1.1s steps(1) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .logo-text::after {
    animation: none;
  }
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: var(--space-2xs) 0;
  transition: color var(--dur-fast) var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--dur-med) var(--ease);
}

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

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

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

.nav-link.is-current::after {
  width: 100%;
}

/* mobile nav toggle support (JS-added state) */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: var(--space-2xs) var(--space-xs);
  cursor: pointer;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-med) var(--ease);
  }

  .main-nav.is-open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-md);
    gap: var(--space-sm);
  }
}

/* ============================================
   Hero
   ============================================ */

.hero,
.page-hero {
  position: relative;
  width: 100%;
  padding: var(--space-3xl) 0 var(--space-2xl);
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle, rgba(61, 220, 132, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 20, 20, 0.85) 0%, rgba(14, 20, 20, 0.92) 100%);
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem);
  max-width: 18ch;
  margin-bottom: var(--space-md);
}

.page-hero .hero-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.35rem);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-bottom: var(--space-lg);
}

.hero-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

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

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

.section-alt {
  padding: var(--space-2xl) 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.5rem);
  margin-bottom: var(--space-sm);
}

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

/* centred intro variant handled by markup layout, keep intro readable at width */

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

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

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xs);
}

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

/* ============================================
   Pricing — chat bubble device
   ============================================ */

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

.pricing-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-price {
  position: relative;
  align-self: flex-start;
  background-color: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--space-3xs);
  margin: var(--space-2xs) 0;
}

.pricing-price::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 0;
  border-color: var(--accent) transparent transparent transparent;
}

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

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  margin-top: var(--space-2xs);
}

.pricing-features li {
  padding-left: 1.4em;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

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

.step {
  position: relative;
  padding-top: var(--space-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  background-color: var(--bg);
}

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

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

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 75ch;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--dur-fast) var(--ease);
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item[open] {
  border-color: var(--accent);
}

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

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

.faq-question::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}

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

.faq-answer {
  color: var(--text-secondary);
  padding-top: var(--space-2xs);
  font-size: 0.98rem;
}

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

.cta-band {
  width: 100%;
  background-color: var(--accent);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  color: var(--accent-ink);
  font-size: clamp(1.7rem, 2vw + 1rem, 2.4rem);
}

.cta-title::before {
  color: var(--accent-ink);
}

.cta-text {
  color: var(--accent-ink);
  opacity: 0.85;
  max-width: 55ch;
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}

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

.cta-band .btn-primary:hover,
.cta-band .btn-primary:focus-visible {
  background-color: transparent;
  color: var(--accent-ink);
}

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

.cta-band .btn-secondary:hover,
.cta-band .btn-secondary:focus-visible {
  background-color: var(--accent-ink);
  color: var(--accent);
}

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

.btn {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

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

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: transparent;
  color: var(--accent);
}

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

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

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

.contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}

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

.contact-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

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

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

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

.site-footer {
  width: 100%;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

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

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

.footer-note {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
}

/* ============================================
   Scroll reveal (JS-added state)
   ============================================ */

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

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

/* When JS is present and adds a "js-ready" class before hiding, allow a pre-reveal state.
   Without that class, content stays fully visible (no-JS safe). */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   Carousel / tab active states (JS-driven)
   ============================================ */

.is-active {
  color: var(--accent);
}

.dot.is-active,
.carousel-dot.is-active {
  background-color: var(--accent);
}

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

@media (max-width: 1024px) {
  .card-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero,
  .page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .section,
  .section-alt {
    padding: var(--space-xl) 0;
  }

  .footer-inner {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 480px) {
  .card-grid,
  .pricing-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: auto;
  }
}

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