/* ==========================================================================
   Screen Squad — Orange County's Screen Specialists
   Brand system: deep navy field, cyan screen-mesh texture, golden-yellow CTAs.
   Sections are ordered top-to-bottom to match index.html.
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  --navy: #0b1b36;
  --navy-700: #12294c;
  --navy-600: #193563;
  --ink: #061224;
  --cyan: #19c8e6;
  --cyan-700: #0f93ad;
  --cyan-800: #0a6a80;
  --yellow: #ffc526;
  --yellow-700: #e0a505;
  --white: #ffffff;
  --charcoal: #232a34;
  --bone: #f2f5f9;
  --bone-2: #e6ebf2;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(4.25rem, 9vw, 8rem);
  --slant: clamp(30px, 4.4vw, 84px);
  --radius: 6px;

  --hard-shadow: 10px 10px 0 rgba(6, 18, 36, 0.9);
  --header-h: 76px;
}

/* --- 2. Reset ------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 0.44vw + 0.94rem, 1.14rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg, picture { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 0.8rem 1.2rem;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- 3. Layout primitives ------------------------------------------------ */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--navy { background: var(--navy); color: var(--white); }
.section--ink { background: var(--ink); color: var(--white); }
.section--light { background: var(--bone); color: var(--navy); }
.section--white { background: var(--white); color: var(--navy); }

/* Angled transitions between colour blocks */
.slant-top {
  clip-path: polygon(0 var(--slant), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--slant) * -1);
  padding-top: calc(var(--section-y) + var(--slant));
  z-index: 1;
}
.slant-top--flip { clip-path: polygon(0 0, 100% var(--slant), 100% 100%, 0 100%); }

/* Cyan "stitch" rule that reads like the edge of a screen frame */
.stitch {
  height: 6px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--yellow) 33% 66%, var(--cyan) 66% 100%);
}

/* --- 4. Type helpers ----------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.1rem;
  color: var(--cyan-800);
}
.section--navy .eyebrow, .section--ink .eyebrow { color: var(--cyan); }
.eyebrow::before {
  content: "";
  width: 26px; height: 4px;
  background: var(--yellow);
  flex: none;
}

.h-xl { font-size: clamp(2.4rem, 6.6vw, 5.1rem); }
.h-lg { font-size: clamp(2.05rem, 5.2vw, 3.9rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }

.lede {
  font-size: clamp(1.06rem, 0.7vw + 0.95rem, 1.28rem);
  max-width: 60ch;
  color: rgba(11, 27, 54, 0.78);
}
.section--navy .lede, .section--ink .lede { color: rgba(255, 255, 255, 0.82); }

.accent-cyan { color: var(--cyan); }
.accent-yellow { color: var(--yellow); }

/* Yellow marker under a word */
.mark-under {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.mark-under::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 0.06em;
  height: 0.22em;
  background: var(--yellow);
  z-index: -1;
  transform: skewX(-12deg);
}

.section-head { max-width: 58ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --- 5. Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--yellow);
  --btn-fg: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.16rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 rgba(6, 18, 36, 0.92);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 rgba(6, 18, 36, 0.92); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(6, 18, 36, 0.92); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: var(--cyan);
  box-shadow: 5px 5px 0 rgba(25, 200, 230, 0.32);
}
.btn--ghost:hover { --btn-bg: rgba(25, 200, 230, 0.14); box-shadow: 8px 8px 0 rgba(25, 200, 230, 0.32); }

.btn--navy { --btn-bg: var(--navy); --btn-fg: var(--white); border-color: var(--ink); }
.btn--navy:hover { --btn-bg: var(--navy-600); }

.btn--wide { width: 100%; }
.btn svg { width: 21px; height: 21px; flex: none; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  align-items: center;
}

/* --- 6. Header ----------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 18, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(25, 200, 230, 0.22);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}
.header.is-stuck { box-shadow: 0 14px 40px rgba(6, 18, 36, 0.45); }

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  flex: none;
}
.brand picture { display: block; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-top: 3px;
}
.header .brand img { width: 56px; height: 56px; }

.header__actions { display: flex; align-items: center; margin-left: auto; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px; height: 48px;
  padding: 0 12px;
  background: rgba(25, 200, 230, 0.1);
  border: 2px solid rgba(25, 200, 230, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  background: var(--white);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--navy);
  padding: 1.6rem var(--gutter) 7rem;
  overflow-y: auto;
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.drawer.is-open { opacity: 1; transform: none; visibility: visible; }
.drawer__list { display: grid; gap: 0.25rem; margin-bottom: 1.6rem; }
.drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}
.drawer__list a::after { content: ""; width: 10px; height: 10px; background: var(--cyan); transform: rotate(45deg); }
.drawer .btn { width: 100%; margin-bottom: 0.8rem; }
.drawer__meta { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; margin-top: 1.2rem; }
body.nav-open { overflow: hidden; }

/* --- 7. Hero ------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 22% 8%, var(--navy-600) 0%, var(--navy) 46%, var(--ink) 100%);
  color: var(--white);
  padding-block: clamp(2.6rem, 5vw, 5rem) calc(var(--section-y) + var(--slant));
  overflow: hidden;
}
.hero__grid {
  max-width: 850px;
}

.hero__kicker {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.1vw, 2.15rem);
  text-transform: uppercase;
  color: var(--yellow);
  transform: skewX(-7deg);
  transform-origin: left;
  margin: 0 0 0.55rem;
  line-height: 1;
}

.hero__title {
  font-size: clamp(1.7rem, 8vw, 5.6rem);
  margin-bottom: 1.15rem;
  letter-spacing: -0.005em;
}
.hero__title span { display: block; }
.hero__title .t-1 { font-size: 0.52em; color: var(--cyan); letter-spacing: 0.02em; }
.hero__title .t-main {
  white-space: nowrap;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--cyan-700), 8px 8px 0 rgba(6, 18, 36, 0.55);
}
.hero__title .t-main::after {
  content: "";
  display: block;
  width: min(280px, 62%);
  height: 8px;
  margin-top: 0.35rem;
  background: var(--yellow);
  transform: skewX(-24deg);
}

.hero__copy { max-width: 46ch; color: rgba(255, 255, 255, 0.86); margin-bottom: 1.7rem; }
.hero__highlights {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
  margin-top: 1.5rem;
}
.hero__highlights li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.hero__highlights svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }

@media (min-width: 700px) {
  .hero__highlights { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero__highlights li { align-items: flex-start; }
}

/* --- 8. Trust marquee --------------------------------------------------- */
.strip {
  position: relative;
  z-index: 3;
  background: var(--yellow);
  border-block: 4px solid var(--navy);
  padding-block: 0.9rem;
  overflow: hidden;
}
.strip__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__group {
  display: flex;
  align-items: center;
  flex: none;
  padding-right: 0;
}
.strip__group span {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.strip__group span::after {
  content: "";
  width: 12px; height: 12px;
  background: var(--navy);
  transform: rotate(45deg);
  flex: none;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* --- 9. Problem section -------------------------------------------------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 0.9rem;
}
.chip {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border: 2px solid rgba(11, 27, 54, 0.14);
  border-left: 6px solid var(--cyan);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.chip:hover {
  transform: translateY(-3px);
  border-left-color: var(--yellow);
  box-shadow: 0 14px 26px rgba(11, 27, 54, 0.1);
}
.chip svg { width: 32px; height: 32px; color: var(--navy); flex: none; }

.problem__close {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: var(--hard-shadow);
}
.problem__close p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.85rem);
  text-transform: uppercase;
  line-height: 1.06;
  margin: 0;
}
.problem__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.problem__close .btn { width: 100%; }

/* --- 10. Services -------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: var(--navy-700);
  border: 3px solid rgba(25, 200, 230, 0.34);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--yellow); background: var(--navy-600); }
.card__icon {
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  background: rgba(25, 200, 230, 0.14);
  border: 2px solid rgba(25, 200, 230, 0.45);
  border-radius: var(--radius);
  color: var(--cyan);
  margin-bottom: 0.35rem;
}
.card__icon svg { width: 34px; height: 34px; }
.card h3 { font-size: clamp(1.24rem, 1.7vw, 1.6rem); margin: 0; color: var(--white); }
.card p { color: rgba(255, 255, 255, 0.78); font-size: 0.99rem; margin: 0; }
.card--feature { grid-column: span 2; }
.card--feature .card__icon { width: 76px; height: 76px; }
.card--feature .card__icon svg { width: 42px; height: 42px; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.5rem;
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.card__link svg { width: 16px; height: 16px; transition: transform 0.18s ease; }
.card__link:hover svg { transform: translateX(4px); }

.services__foot {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.6rem;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
}
.services__foot p { margin: 0; color: rgba(255, 255, 255, 0.8); }

/* --- 11. How it works ---------------------------------------------------- */
.steps { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); }
.step {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(25, 200, 230, 0.35);
}
.step h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
.step p { color: rgba(11, 27, 54, 0.76); margin: 0; }
.how__cta {
  margin-top: clamp(2rem, 3.4vw, 2.8rem);
  text-align: center;
}
.how__cta .btn-row { justify-content: center; }
.how__note { margin-top: 1rem; font-weight: 700; color: rgba(11, 27, 54, 0.7); }

/* --- 12. About ----------------------------------------------------------- */
.about__grid { max-width: 900px; }
.about__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.about__facts div {
  padding: 1rem;
  background: var(--bone);
  border-top: 5px solid var(--navy);
  border-radius: 4px;
}
.about__facts dt {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-800);
}
.about__facts dd { margin: 0.3rem 0 0; font-family: var(--font-display); font-size: 1.16rem; text-transform: uppercase; }

/* --- 13. Service area ---------------------------------------------------- */
.area { position: relative; overflow: hidden; }
.area__grid { display: grid; gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 1.6rem;
}
.area__cities li {
  padding: 0.45rem 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.area__cities li:first-child { background: var(--cyan); border-color: var(--cyan); color: var(--navy); }
.instagram-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 72px;
  padding: 0.9rem 1rem;
  background: var(--ink);
  color: var(--white);
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 rgba(25, 200, 230, 0.25);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.instagram-cta:hover {
  transform: translate(-2px, -2px);
  border-color: var(--yellow);
  box-shadow: 9px 9px 0 rgba(255, 197, 38, 0.25);
}
.instagram-cta__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
}
.instagram-cta__icon svg { width: 25px; height: 25px; }
.instagram-cta__copy { display: grid; gap: 0.15rem; }
.instagram-cta__copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.05;
  text-transform: uppercase;
}
.instagram-cta__copy small { color: var(--cyan); font-weight: 800; }
.instagram-cta__arrow { width: 20px; height: 20px; color: var(--yellow); }
.area__card {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}
.area__card h3 { font-size: 1.35rem; }
.area__card address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.area__card address a { text-decoration: none; color: var(--white); }
.area__card address a:hover { color: var(--yellow); }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 2px solid rgba(25, 200, 230, 0.45);
  padding-bottom: 2px;
}
.map-link:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.map-link svg { width: 16px; height: 16px; }

/* --- 14. Contact --------------------------------------------------------- */
.contact { background: var(--yellow); color: var(--navy); }
.contact__grid {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.8rem);
  align-items: start;
}
.contact__intro .h-lg { color: var(--navy); }
.contact__intro .lede { color: rgba(11, 27, 54, 0.82); }
.contact__intro .eyebrow { color: var(--navy); }
.contact__intro .eyebrow::before { background: var(--navy); }

.contact__list { display: grid; gap: 0.75rem; margin-top: 1.7rem; }
.contact__list a, .contact__list > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  border: 3px solid var(--ink);
  transition: transform 0.16s ease, background-color 0.16s ease;
}
.contact__list a:hover { transform: translateX(4px); background: var(--navy-600); }
.contact__list svg { width: 26px; height: 26px; color: var(--cyan); flex: none; }
.contact__list span { display: block; font-family: var(--font-display); font-size: 1.16rem; line-height: 1.1; text-transform: uppercase; }
.contact__list small {
  display: block;
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}

.form-card {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: var(--navy);
  color: var(--white);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 rgba(6, 18, 36, 0.28);
}
.form-card h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.form-card > p { color: rgba(255, 255, 255, 0.76); font-size: 0.96rem; }

.form-grid { display: grid; gap: 1rem; margin-top: 1.4rem; }
.field { display: grid; gap: 0.4rem; }
.field--half { grid-column: span 1; }
.field label {
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cyan);
}
.field .opt { color: rgba(255, 255, 255, 0.45); letter-spacing: 0.06em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1b36' stroke-width='3'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 20px;
  padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 197, 38, 0.35);
  outline: none;
}
.field input[type="file"] {
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}
.field input[type="file"]::file-selector-button {
  margin-right: 0.8rem;
  padding: 0.55rem 0.9rem;
  background: var(--cyan);
  color: var(--navy);
  border: 0;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
}
.field .hint { font-size: 0.78rem; color: rgba(255, 255, 255, 0.55); }
.field .error {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--yellow);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--yellow); }
.field.has-error .error { display: block; }

.form-hp { position: absolute; left: -9999px; }
.form-foot { display: grid; gap: 0.8rem; margin-top: 1.3rem; }
.form-foot .fine { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.form-foot .fine a { color: var(--cyan); }
.btn[aria-busy="true"] { opacity: 0.75; pointer-events: none; }

.form-status {
  display: none;
  gap: 0.9rem;
  align-items: flex-start;
  margin-top: 1.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.form-status.is-visible { display: flex; }
.form-status--ok { background: var(--cyan); color: var(--navy); }
.form-status--bad { background: #ffe9a8; color: #6b4c00; border: 2px solid var(--yellow-700); }
.form-status svg { width: 24px; height: 24px; flex: none; }
.form-status p { margin: 0; }

/* --- 15. Footer ---------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.78); padding-block: clamp(2.8rem, 5vw, 4.4rem) 2rem; }
.footer__grid {
  display: grid;
  gap: clamp(1.8rem, 3vw, 3rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer .brand { color: var(--white); margin: 0 0 1rem; }
.footer .brand img { width: 62px; height: 62px; }
.footer h4 {
  font-size: 1.06rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  letter-spacing: 0.05em;
}
.footer__links { display: grid; gap: 0.5rem; }
.footer__links a { text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: var(--yellow); }
.footer address { font-style: normal; }
.footer__tag {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer__contact { display: grid; gap: 0.6rem; }
.footer__contact a { text-decoration: none; font-weight: 700; color: var(--white); }
.footer__contact a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  font-size: 0.87rem;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--yellow); }

/* --- 16. Sticky mobile call bar ----------------------------------------- */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  display: flex;
  padding: 0.6rem clamp(0.7rem, 3vw, 1.2rem) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(6, 18, 36, 0.94);
  backdrop-filter: blur(8px);
  border-top: 3px solid var(--yellow);
}
.callbar .btn { width: 100%; min-height: 54px; box-shadow: none; }
@media (min-width: 860px) { .callbar { display: none; } }
@media (max-width: 859px) { body { padding-bottom: 84px; } }

/* Small phones: the sticky bottom bar carries the CTA, so slim the header down */
@media (max-width: 639px) {
  .header .brand { gap: 0.45rem; }
  .header .brand img { width: 48px; height: 48px; }
  .header .brand__name { font-size: 1.04rem; }
  .header .brand__tag { font-size: 0.5rem; letter-spacing: 0.12em; }
  .burger { width: 46px; height: 44px; }
  .hero { padding-top: 2.15rem; }
}

/* --- 17. Reveal animations ---------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.75, 0.28, 1), transform 0.6s cubic-bezier(0.22, 0.75, 0.28, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* --- 18. Responsive ----------------------------------------------------- */
@media (min-width: 620px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .field--full { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(2) { transform: translateY(clamp(14px, 2vw, 34px)); }
  .step:nth-child(3) { transform: translateY(clamp(28px, 4vw, 68px)); }
  .how__cta { margin-top: clamp(4rem, 7vw, 7rem); }
}

@media (min-width: 860px) {
  :root { --header-h: 88px; }
  .area__grid { grid-template-columns: 1.1fr 0.9fr; }
  .contact__grid { grid-template-columns: 0.92fr 1.08fr; }
  .footer__grid { grid-template-columns: 1.3fr 0.85fr 1fr; }
}

@media (min-width: 1000px) {
  .hero__grid { max-width: var(--shell); }
  .hero__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    grid-template-rows: auto auto auto;
    column-gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
  .hero__kicker { grid-column: 1; grid-row: 1; }
  .hero__title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(3.5rem, 5.6vw, 4.9rem);
  }
  .hero__copy { grid-column: 1; grid-row: 3; max-width: 56ch; margin-bottom: 0; }
  .hero__intro > .btn-row {
    grid-column: 2;
    grid-row: 2;
    display: grid;
    align-self: end;
  }
  .hero__intro > .btn-row .btn { width: 100%; }
  .hero__highlights {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: start;
    margin-top: 2rem;
  }
  .services__grid { grid-template-columns: repeat(6, 1fr); }
  .card { grid-column: span 2; }
  .card--feature { grid-column: span 3; }
  .card--wide { grid-column: span 3; }
}

@media (max-width: 619px) {
  .problem__actions { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .services__grid { grid-template-columns: 1fr; }
  .card--feature { grid-column: span 1; }
}

/* --- 19. Motion & contrast preferences ---------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .strip__track { animation: none !important; }
  .step:nth-child(2), .step:nth-child(3) { transform: none !important; }
}

@media print {
  .header, .callbar, .strip, .drawer { display: none !important; }
  body { background: #fff; color: #000; }
}

/* --- 20. Wide banner service card --------------------------------------- */
.card--banner { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 1.1rem; }
.card--banner .card__icon { margin-bottom: 0; }
.card--banner .card__body { flex: 1 1 auto; }
.card--banner .card__body h3 { margin-bottom: 0.4rem; }
@media (min-width: 700px) {
  .card--banner { flex-direction: row; align-items: center; gap: 1.6rem; }
  .card--banner .card__link { margin-top: 0; padding-top: 0; flex: none; }
}

/* --- 21. Simple sub-pages (privacy, thanks, 404) ------------------------ */
.page {
  min-height: 72vh;
  padding-block: clamp(3rem, 7vw, 6rem);
  background: var(--navy);
  color: var(--white);
}
.page__inner { max-width: 74ch; }
.page h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
.page h2 { font-size: clamp(1.25rem, 2.4vw, 1.7rem); margin-top: 2.2rem; color: var(--cyan); }
.page p, .page li { color: rgba(255, 255, 255, 0.82); }
.page ul.bullets { display: grid; gap: 0.5rem; margin: 0 0 1.2rem; }
.page ul.bullets li { display: flex; gap: 0.7rem; }
.page ul.bullets li::before { content: ""; width: 9px; height: 9px; margin-top: 0.55em; background: var(--yellow); transform: rotate(45deg); flex: none; }
.page a { color: var(--cyan); }
.page .btn { color: var(--navy); text-decoration: none; }
.page .btn--ghost { color: var(--white); }
.page__panel {
  padding: clamp(1.5rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.page__panel .btn-row { margin-top: 1.4rem; }
