/* ==========================================================================
   TRADIE WEBSITES CO — Hi-Vis Industrial design system
   Anton (display) + Archivo (body)
   ========================================================================== */

:root {
  --ink: #14161B;
  --steel: #1E2128;
  --steel-line: #2C3038;
  --hivis: #FFD60A;
  --hivis-deep: #E8BE00;
  --orange: #FF5A1F;
  --paper: #F4F2EC;
  --paper-dark: #E9E5DA;
  --white: #FFFFFF;
  --text-on-ink: #E8E6DF;
  --text-mut-ink: #9BA0AA;
  --text-on-paper: #22242B;
  --text-mut-paper: #5D6068;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', sans-serif;

  --shadow-hard: 5px 5px 0 rgba(20, 22, 27, 1);
  --shadow-hard-hivis: 5px 5px 0 var(--hivis);
  --container: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background: var(--ink);
  color: var(--text-on-ink);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Blueprint grid texture for dark sections ---------- */
.hero,
.section-ink {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ---------- Caution stripe divider ---------- */
.stripe-divider {
  height: 14px;
  background: repeating-linear-gradient(
    -45deg,
    var(--hivis) 0 18px,
    var(--ink) 18px 36px
  );
}

/* ==========================================================================
   OFFER BAR + HEADER
   ========================================================================== */

.offer-bar {
  background: var(--hivis);
  color: var(--ink);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.offer-bar strong { font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(20, 22, 27, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text-on-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.wordmark-block {
  background: var(--hivis);
  color: var(--ink);
  padding: 0.05em 0.3em;
}
.wordmark:hover .wordmark-block { background: var(--orange); color: var(--white); }
.wordmark:focus-visible { outline: 2px solid var(--hivis); outline-offset: 3px; }

.site-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.site-nav a {
  color: var(--text-mut-ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.site-nav a:hover { color: var(--hivis); border-bottom-color: var(--hivis); }
.site-nav a:focus-visible { outline: 2px solid var(--hivis); outline-offset: 3px; }
.site-nav a:active { color: var(--hivis-deep); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--ink);
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn-primary {
  background: var(--hivis);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(20,22,27,1); background: var(--hivis); }
.section-ink .btn-primary, .hero .btn-primary { border-color: var(--hivis); box-shadow: 5px 5px 0 var(--orange); }
.section-ink .btn-primary:hover, .hero .btn-primary:hover { box-shadow: 7px 7px 0 var(--orange); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }

.btn-ghost {
  background: transparent;
  color: var(--text-on-ink);
  border-color: var(--steel-line);
}
.btn-ghost:hover { border-color: var(--hivis); color: var(--hivis); transform: translate(-2px, -2px); }
.btn-ghost:active { transform: translate(1px, 1px); }

.btn-dark {
  background: var(--ink);
  color: var(--hivis);
  border-color: var(--ink);
  box-shadow: 5px 5px 0 rgba(20, 22, 27, 0.25);
}
.btn-dark:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 rgba(20,22,27,0.3); }
.btn-dark:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(20,22,27,0.3); }

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn-block { width: 100%; text-align: center; }

/* ==========================================================================
   TYPE / SECTIONS
   ========================================================================== */

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.container.narrow { max-width: 820px; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }

.section-paper {
  background:
    radial-gradient(rgba(20, 22, 27, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  background-color: var(--paper);
  color: var(--text-on-paper);
}
.section-ink { color: var(--text-on-ink); }
.section-hivis {
  background: var(--hivis);
  color: var(--ink);
  background-image: radial-gradient(rgba(20, 22, 27, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.section-label.dark { color: var(--ink); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.section-intro {
  max-width: 34rem;
  color: var(--text-mut-paper);
  margin-bottom: 3rem;
}
.section-ink .section-intro { color: var(--text-mut-ink); }

.hl {
  font-style: normal;
  background: var(--hivis);
  color: var(--ink);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.text-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--hivis-deep); }
.text-link:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  padding: clamp(4.5rem, 10vw, 8rem) clamp(1.1rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}
.hero-inner { max-width: var(--container); margin: 0 auto; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 1.8rem;
}
.hero-title span { display: block; }

.hero-sub {
  max-width: 36rem;
  font-size: 1.15rem;
  color: var(--text-mut-ink);
  margin-bottom: 2.4rem;
}
.hero-sub, .hero-ctas { position: relative; }

.hero-ctas { display: flex; gap: 1.1rem; flex-wrap: wrap; }

.hero-stats {
  max-width: var(--container);
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--steel-line);
}
.stat {
  padding: 2rem 1.5rem 2.6rem;
  border-right: 1px solid var(--steel-line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--hivis);
  display: block;
}
.stat-num .prefix, .stat-num .suffix { font-size: 0.5em; color: var(--orange); }
.stat-label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mut-ink);
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */

.marquee {
  background: var(--orange);
  color: var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
  padding-right: 1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   CAROUSEL
   ========================================================================== */

.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.3, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: 0.5rem;
}

.slide-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.slide-info p { color: var(--text-mut-paper); margin-bottom: 1.2rem; }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.carousel-btn {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 800;
  width: 3rem;
  height: 3rem;
  background: var(--ink);
  color: var(--hivis);
  border: 2px solid var(--ink);
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(20, 22, 27, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.carousel-btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(20,22,27,0.3); }
.carousel-btn:active { transform: translate(1px, 1px); box-shadow: 1px 1px 0 rgba(20,22,27,0.3); }
.carousel-btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.carousel-dots { display: flex; gap: 0.55rem; }
.carousel-dots button {
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid var(--ink);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.carousel-dots button[aria-selected="true"] { background: var(--orange); transform: rotate(45deg); }
.carousel-dots button:hover { background: var(--hivis); }
.carousel-dots button:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ---------- Browser-frame mockups ---------- */
.browser-frame {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  background: var(--white);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  padding: 0.55rem 0.8rem;
}
.browser-chrome .dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--steel-line); }
.browser-chrome .dot:first-child { background: var(--orange); }
.browser-chrome .dot:nth-child(2) { background: var(--hivis); }
.browser-url {
  margin-left: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-mut-ink);
  background: var(--steel);
  padding: 0.15rem 0.7rem;
  border-radius: 99px;
}

.mock-site { padding: 0; min-height: 300px; }
.mock-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
}
.mock-logo { width: 2rem; height: 1rem; }
.mock-links { display: flex; gap: 0.45rem; margin-left: auto; }
.mock-links i { width: 1.6rem; height: 0.45rem; display: block; }
.mock-cta { width: 2.6rem; height: 1rem; }

.mock-hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1rem; padding: 1.4rem 1rem; align-items: center; }
.mock-hero-center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.mock-hero-text b { display: block; height: 1rem; margin-bottom: 0.5rem; width: 90%; }
.mock-hero-text b.short { width: 60%; }
.mock-hero-center .mock-hero-text b { margin-inline: auto; }
.mock-btn { display: inline-block; width: 4.2rem; height: 1.15rem; margin-top: 0.4rem; }
.mock-hero-form { padding: 0.7rem; }
.mock-hero-form i { display: block; height: 0.55rem; margin-bottom: 0.45rem; }
.mock-hero-form em { display: block; height: 0.8rem; }
.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; padding: 0 1rem 1.2rem; }
.mock-row i { height: 3.2rem; display: block; }

/* Wattle theme: forest green + gold */
.theme-wattle .mock-site { background: #F5F0E8; }
.theme-wattle .mock-nav { background: #1A3A1E; }
.theme-wattle .mock-logo { background: #C8961A; }
.theme-wattle .mock-links i { background: #3C5A40; }
.theme-wattle .mock-cta { background: #E8B820; }
.theme-wattle .mock-hero { background: #0F2211; }
.theme-wattle .mock-hero-text b { background: #F5F0E8; }
.theme-wattle .mock-hero-text b.short { background: #C8961A; }
.theme-wattle .mock-btn { background: #FFD000; }
.theme-wattle .mock-hero-form { background: #F5F0E8; border: 2px solid #C8961A; }
.theme-wattle .mock-hero-form i { background: #D8D2C4; }
.theme-wattle .mock-hero-form em { background: #C8961A; }
.theme-wattle .mock-row i { background: #E4DECE; border-top: 3px solid #1A3A1E; }

/* Pip theme: charcoal + gold + ivory */
.theme-pip .mock-site { background: #FFFDF7; }
.theme-pip .mock-nav { background: #23211E; }
.theme-pip .mock-logo { background: #C9A227; }
.theme-pip .mock-links i { background: #4A463F; }
.theme-pip .mock-cta { background: #C9A227; }
.theme-pip .mock-hero { background: linear-gradient(135deg, #23211E 0%, #3A362E 100%); }
.theme-pip .mock-hero-text b { background: #FFFDF7; }
.theme-pip .mock-hero-text b.short { background: #C9A227; }
.theme-pip .mock-btn { background: #C9A227; }
.theme-pip .mock-row i { background: #F1EBDD; border-top: 3px solid #C9A227; }

/* ==========================================================================
   FEATURE GRID
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.feature-card {
  position: relative;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  padding: 2rem 1.6rem 1.8rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 1.1rem; height: 1.1rem;
  border-top: 3px solid var(--hivis);
  border-left: 3px solid var(--hivis);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--hivis); }
.feature-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--orange);
  display: block;
  margin-bottom: 0.8rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
}
.feature-card p { font-size: 0.92rem; color: var(--text-mut-ink); }

/* ==========================================================================
   BEFORE / AFTER SLIDER
   ========================================================================== */

.ba-slider {
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard);
  height: clamp(320px, 48vw, 540px);
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: var(--ink);
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }

.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba-tag {
  position: absolute;
  top: 0.9rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  box-shadow: 3px 3px 0 rgba(20, 22, 27, 0.4);
}
.ba-tag-before { left: 0.9rem; background: var(--orange); color: var(--white); }
.ba-tag-after { right: 0.9rem; background: var(--hivis); color: var(--ink); }

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 4px;
  background: var(--orange);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}
.ba-handle:focus-visible { outline: 3px solid var(--hivis); outline-offset: 2px; }
.ba-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  box-shadow: 3px 3px 0 rgba(20, 22, 27, 0.4);
}

/* ==========================================================================
   SPLIT LAYOUT / SEO
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
#seo .split-text { order: 0; }
#seo .split-visual { order: 1; }

.check-list { list-style: none; margin-top: 1.4rem; }
.check-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--hivis);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 2%, 40% 70%);
}
.section-hivis .check-list li::before, .price-card .check-list li::before { background: var(--orange); }

/* SERP mockup */
.serp-card {
  background: var(--white);
  color: #202124;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-hivis);
  padding: 1.4rem;
}
.serp-searchbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #DADCE0;
  border-radius: 99px;
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.3rem;
  font-size: 0.9rem;
  box-shadow: 0 1px 5px rgba(32, 33, 36, 0.15);
}
.serp-glass { color: #4285F4; transform: rotate(-45deg); font-size: 1.1rem; }
.serp-result { display: flex; gap: 0.7rem; padding: 0.7rem 0.2rem; }
.serp-result.dim { opacity: 0.45; }
.serp-fav { flex: 0 0 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--hivis); border: 1px solid #DADCE0; }
.serp-result.dim .serp-fav { background: #E8EAED; }
.serp-site { display: block; font-size: 0.72rem; color: #4D5156; }
.serp-title { display: block; color: #1A0DAB; font-size: 1.02rem; font-weight: 500; line-height: 1.3; margin: 0.1rem 0; }
.serp-desc { display: block; font-size: 0.8rem; color: #4D5156; line-height: 1.5; }
.serp-caption {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 2px dashed var(--paper-dark);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
}

/* ==========================================================================
   WHY US / TRADE CRED CARD
   ========================================================================== */

#why-us .check-list li { padding-bottom: 0.65rem; }
#why-us .check-list strong { color: var(--hivis); font-weight: 700; }

.cred-card {
  position: relative;
  background: var(--steel);
  border: 2px solid var(--hivis);
  box-shadow: 8px 8px 0 var(--orange);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.cred-card::before,
.cred-card::after {
  content: "";
  position: absolute;
  width: 1.3rem;
  height: 1.3rem;
}
.cred-card::before { top: -2px; left: -2px; border-top: 4px solid var(--orange); border-left: 4px solid var(--orange); }
.cred-card::after { bottom: -2px; right: -2px; border-bottom: 4px solid var(--orange); border-right: 4px solid var(--orange); }

.cred-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.cred-big {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--hivis);
  margin-bottom: 1.1rem;
}
.cred-caption { color: var(--text-mut-ink); font-size: 0.95rem; }

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 3rem;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
  padding: 1.7rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.process-step:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }
.process-step:nth-child(even) { transform: translateY(1.4rem); }
.process-step:nth-child(even):hover { transform: translate(-3px, calc(1.4rem - 3px)); }
.process-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  display: block;
  margin-bottom: 0.7rem;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.9rem; color: var(--text-mut-paper); }

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-wrap { text-align: center; }
.pricing-wrap .section-title { margin-bottom: 2.5rem; }

.price-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: left;
}
.price-big {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  line-height: 1;
  text-align: center;
  color: var(--ink);
}
.price-cur { font-size: 0.45em; vertical-align: 0.9em; color: var(--orange); }
.price-note {
  text-align: center;
  font-weight: 600;
  color: var(--text-mut-paper);
  margin: 0.6rem 0 1.6rem;
}
.price-card .check-list { margin: 0 0 1.8rem; }

.guarantee-stamp {
  border: 3px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.8rem 1rem;
  transform: rotate(-2deg);
  margin-bottom: 2rem;
}
.price-card .btn { display: block; text-align: center; }

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

.accordion { margin-top: 2.5rem; }
.acc-item {
  background: var(--white);
  border: 2px solid var(--ink);
  margin-bottom: 0.9rem;
  box-shadow: 4px 4px 0 rgba(20, 22, 27, 0.15);
}
.acc-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.02rem;
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  position: relative;
  transition: background-color 0.2s ease;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.25s ease;
}
.acc-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.acc-item[open] summary { background: var(--hivis); }
.acc-item summary:hover { background: var(--paper-dark); }
.acc-item[open] summary:hover { background: var(--hivis-deep); }
.acc-item summary:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.acc-body { padding: 1.1rem 1.4rem 1.3rem; border-top: 2px solid var(--ink); }
.acc-body p { color: var(--text-mut-paper); }

/* ==========================================================================
   QUOTE FORM (floating labels)
   ========================================================================== */

#quote strong { color: var(--hivis); }
.quote-alt { margin-top: 1.4rem; color: var(--text-mut-ink); }

.quote-form {
  background: var(--steel);
  border: 2px solid var(--steel-line);
  border-top: 6px solid var(--hivis);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
}

.field { position: relative; margin-bottom: 1.35rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-on-ink);
  background: var(--ink);
  border: 2px solid var(--steel-line);
  padding: 1.25rem 1rem 0.55rem;
  transition: border-color 0.2s ease;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; cursor: pointer; }

.field label {
  position: absolute;
  left: 1rem;
  top: 0.95rem;
  font-size: 0.98rem;
  color: var(--text-mut-ink);
  pointer-events: none;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select:valid + label {
  top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hivis);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--hivis);
}
.field.invalid input, .field.invalid select { border-color: var(--orange); }
.field-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 0.3rem;
}
.field.invalid .field-error { display: block; }

.form-success {
  margin-top: 1.4rem;
  background: var(--hivis);
  color: var(--ink);
  padding: 1.2rem 1.4rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
}
.form-success strong { display: block; font-size: 1.1rem; margin-bottom: 0.2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0D0F13;
  border-top: 3px solid var(--hivis);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-mark { font-size: 1.2rem; margin-bottom: 1rem; }
.footer-tag { color: var(--text-mut-ink); font-size: 0.92rem; }
.footer-head {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.footer-link {
  display: block;
  color: var(--text-on-ink);
  text-decoration: none;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--hivis); }
.footer-link:focus-visible { outline: 2px solid var(--hivis); outline-offset: 2px; }
.footer-base {
  border-top: 1px solid var(--steel-line);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-mut-ink);
}

/* ==========================================================================
   MOBILE CALL BAR
   ========================================================================== */

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-top: 3px solid var(--ink);
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.mcb-call { background: var(--hivis); color: var(--ink); }
.mcb-call:active { background: var(--hivis-deep); }
.mcb-quote { background: var(--orange); color: var(--white); }
.mcb-quote:active { background: #E04A12; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal { opacity: 0; transition: opacity 0.7s ease var(--d, 0s), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) var(--d, 0s); }
.reveal[data-reveal="fade-up"] { transform: translateY(34px); }
.reveal[data-reveal="fade-left"] { transform: translateX(-34px); }
.reveal[data-reveal="fade-right"] { transform: translateX(34px); }
.reveal[data-reveal="scale-up"] { transform: scale(0.94); }
.reveal.in { opacity: 1; transform: none; }

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  #seo .split-visual { order: 1; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .site-header { gap: 1rem; }
  .site-header .btn { margin-left: auto; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--steel-line); padding: 1.4rem 0.5rem; }
  .stat:last-child { border-bottom: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .process-step:nth-child(even) { transform: none; }
  .process-step:nth-child(even):hover { transform: translate(-3px, -3px); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 3.4rem; }
  .offer-bar { font-size: 0.66rem; }
}
