/* Effex — navy, signal yellow, white. Contractor, high contrast. */
:root {
  --navy: #0B1F3A;
  --yellow: #F5C400;
  --white: #FFFFFF;
  --page: #F4F6F8;
  --ink: #0B1F3A;
  --muted: #3A4A5C;
  --line: #D5DCE4;
  --card: #FFFFFF;
  --focus: #F5C400;
  --radius: 4px;
  --shadow: 0 8px 24px rgba(11, 31, 58, 0.08);
  --font: Barlow, system-ui, -apple-system, "Segoe UI", sans-serif;
  --measure: 36rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--page);
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 0.6em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35em;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  max-width: var(--measure);
}

a {
  color: var(--navy);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
  text-decoration-color: var(--yellow);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  z-index: 20;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
  color: var(--white);
}

.wrap {
  width: min(1080px, calc(100% - 2rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(640px, calc(100% - 2rem));
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.eyebrow-on-navy {
  color: var(--yellow);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  max-width: min(420px, 55vw);
  width: auto;
}

.header-phone {
  margin-left: auto;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header-phone:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 56px;
  max-width: min(420px, 55vw);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 4.7rem;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0.75rem;
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
}

.site-nav a:hover {
  background: var(--page);
  color: var(--navy);
  text-decoration: none;
}

.site-nav .btn:hover {
  background: #071527;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn:hover {
  background: #071527;
  border-color: #071527;
  color: var(--white);
  text-decoration: none;
}

.btn-secondary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

.btn-secondary:hover {
  background: #e0b200;
  border-color: #e0b200;
  color: var(--navy);
}

.btn-small {
  min-height: 42px;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 2.5rem 0 3.25rem;
  background: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.price-line {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 1.35rem;
}

.price {
  font-weight: 800;
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.phone-note {
  margin: 0.9rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.hero-beat {
  margin: 0;
}

.beat-svg {
  width: 100%;
  height: auto;
  max-width: 420px;
}

.beat-panel {
  fill: var(--page);
  stroke: var(--line);
  stroke-width: 2;
}

.beat-panel-bar {
  fill: var(--yellow);
}

.beat-device {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 2.5;
}

.beat-screen {
  fill: var(--page);
}

.beat-navy,
.beat-cal-head {
  fill: var(--navy);
}

.beat-miss,
.beat-booked {
  fill: var(--yellow);
}

.beat-miss-x {
  fill: var(--navy);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
}

.beat-cal-label {
  fill: var(--white);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.beat-dots {
  fill: var(--line);
}

.beat-arrow {
  stroke: var(--navy);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
}

.beat-arrow-head {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.beat-caption {
  fill: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
}

.hero-beat figcaption {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.section {
  padding: 3.25rem 0;
}

.sit {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
}

.steps p {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.7rem;
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}

.who-band {
  padding: 2.25rem 0;
  background: var(--navy);
  color: var(--white);
}

.who-band h2 {
  font-size: 1.35rem;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.who-band p {
  margin: 0;
  color: var(--white);
  max-width: 28rem;
}

.who-grid {
  display: grid;
  gap: 1.75rem;
}

.price-card {
  margin-top: 1.25rem;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}

.price-card-amount {
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.35rem;
  line-height: 1;
  color: var(--navy);
}

.price-card-amount span {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.price-card-detail {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.split {
  display: grid;
  gap: 1.75rem;
}

.sit-copy p {
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.field {
  margin-bottom: 0.95rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.optional {
  font-weight: 400;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--navy);
  background: var(--page);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  min-height: 48px;
}

.field textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px var(--yellow);
}

.form-status {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.9rem;
}

.form-status.is-error {
  background: var(--navy);
  color: var(--yellow);
}

.faq-section {
  padding-top: 2.75rem;
}

.faq {
  margin: 1.25rem 0 0;
}

.faq div {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.faq div:last-child {
  border-bottom: 1px solid var(--line);
}

.faq dt {
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.faq dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 2.25rem 0 2.5rem;
  background: var(--white);
  border-top: 4px solid var(--yellow);
  color: var(--navy);
  font-size: 0.98rem;
}

.footer-inner p {
  margin: 0 0 0.25rem;
  max-width: none;
}

.footer-phone {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.footer-phone:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    background: none;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.45rem 0.75rem;
  }

  .hero {
    padding: 3.5rem 0 4.25rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .split-form {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }

  .section {
    padding: 4rem 0;
  }
}

.shops-link {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
}

.shops-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
}

.form-legal,
.footer-legal,
.footer-docs {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 38rem;
}

.form-legal {
  margin: 0 0 0.85rem;
}

.footer-docs a,
.footer-legal a {
  font-weight: 700;
}

.doc-page {
  padding: 2rem 0 3rem;
}

.doc-page h1 {
  margin-bottom: 0.35em;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.5rem;
}

.doc-page .lede {
  max-width: 40rem;
}

.doc-list h2 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.35rem;
}

.doc-list p {
  margin: 0 0 0.65rem;
  max-width: 42rem;
}
