/* ============================================================================
   Pure Standard — UK Nationwide Cleaning
   Design: dark navy primary, gold accents, premium / trustworthy.
   Type: Fraunces (display) + Inter (body) + JetBrains Mono (data fields).
   Mobile-first, SEO-optimised, accessible.
   ============================================================================ */

:root {
  /* Brand palette */
  --navy: #0f1c33;
  --navy-deep: #08111f;
  --navy-soft: #1a2840;
  --navy-tint: #20304f;
  --gold: #57B60C;          /* brand green (replaces gold) */
  --gold-light: #7BC93B;    /* lighter green for hover */
  --gold-deep: #3F8208;     /* deeper green for borders */
  --gold-wash: #E8F5DC;     /* very light tint for backgrounds */

  /* Neutrals */
  --white: #ffffff;
  --paper: #fafaf7;
  --cream: #f5f1e9;
  --ink: #0f1c33;
  --ink-soft: #2c3a52;
  --ink-faint: #6b7a8f;
  --rule: rgba(15, 28, 51, 0.12);
  --rule-strong: rgba(15, 28, 51, 0.25);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", "Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", "Menlo", "Monaco", "Courier New", monospace;

  /* Layout */
  --max-w: 1240px;
  --shadow-sm: 0 1px 2px rgba(15, 28, 51, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(15, 28, 51, 0.15);
  --shadow-lg: 0 24px 60px -20px rgba(15, 28, 51, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.center { text-align: center; }

/* ============================================================================
   HEADER
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  border: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--navy);
  font-variation-settings: "opsz" 32;
}

.brand-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border: 0;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--navy); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  letter-spacing: 0.01em;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.header-phone:hover { background: var(--gold); color: var(--navy); }

.phone-icon { font-size: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(176, 138, 79, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(15, 28, 51, 0.04), transparent 60%),
    var(--paper);
  padding: clamp(64px, 9vw, 128px) clamp(20px, 5vw, 48px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 138, 79, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}

.eyebrow-center { text-align: center; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--navy);
  max-width: 900px;
  font-variation-settings: "opsz" 144;
}

.display .gold {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 0 36px;
  letter-spacing: -0.005em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-bullets {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-large {
  padding: 18px 32px;
  font-size: 16px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--ink-faint);
  border-color: var(--ink-faint);
}

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

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================================
   SECTIONS — generic
   ============================================================================ */

.services,
.form-section,
.contact {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--white);
}

.coverage,
.why {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  color: var(--navy);
  font-variation-settings: "opsz" 96;
}

.section-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0 0 56px;
  max-width: 680px;
  letter-spacing: -0.005em;
}

.section-lede.center { margin-left: auto; margin-right: auto; }

/* ============================================================================
   SERVICES GRID
   ============================================================================ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.service {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  transition: background 0.2s ease;
}

.service:hover { background: var(--paper); }

.service:nth-child(4n) { border-right: 0; }
.service:nth-last-child(-n+4) { border-bottom: 0; }

.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 48;
}

.service-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--navy);
  font-variation-settings: "opsz" 48;
}

.service p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================================
   COVERAGE
   ============================================================================ */

.coverage-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.coverage-copy .h2 { margin-bottom: 24px; }

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  background: var(--white);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}

.coverage-list li:nth-child(2n) { border-right: 0; }
.coverage-list li:nth-last-child(-n+2) { border-bottom: 0; }

.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

/* ============================================================================
   FORM CARD — the new section
   ============================================================================ */

.form-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--navy);
  box-shadow: var(--shadow-lg);
}

.form-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--navy);
  background: var(--paper);
}

.form-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: transparent;
  color: var(--ink-soft);
  border: 0;
  border-right: 1px solid var(--navy);
  text-align: left;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.form-tab:last-child { border-right: 0; }

.form-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.form-tab.is-active {
  background: var(--white);
  color: var(--navy);
}

.form-tab.is-active::after {
  transform: scaleX(1);
}

.form-tab:not(.is-active):hover {
  background: var(--white);
  color: var(--navy);
}

.tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--rule-strong);
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.form-tab.is-active .tab-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tab-label {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: inherit;
}

.tab-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

.form-tab.is-active .tab-meta { color: var(--gold); }

/* Form body — grouped sections */

.form {
  display: none;
  padding: 48px clamp(24px, 4vw, 40px) 40px;
}

.form.is-active { display: block; }

.form-group {
  margin-bottom: 36px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48;
}

.form-group-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.18em;
  background: var(--gold-wash);
  padding: 4px 8px;
  letter-spacing: 0.12em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full { grid-column: 1 / -1; }

.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule-strong);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.field input.mono,
.field textarea.mono {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(176, 138, 79, 0.18);
  background: var(--paper);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
  font-weight: 400;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
}

.field-hint {
  margin: 0;
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 400;
  line-height: 1.4;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230f1c33' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
  cursor: pointer;
}

/* Footer (consent + submit) */

.form-foot {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  flex-shrink: 0;
  cursor: pointer;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-reassure {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
}

.form-reassure .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Honeypot field — hidden from humans, still visible to bots. Web3Forms uses it to filter spam. */
.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.form-status:empty { display: none; }

.form-status.success {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold-wash);
}

.form-status.error {
  color: #8a2828;
  border-color: #8a2828;
  background: #fff0f0;
}


/* ============================================================================
   HOW IT WORKS
   ============================================================================ */

.how-it-works {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}

.how-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.how-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 32px;
  background: var(--white);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background 0.2s ease;
}

.how-step:last-child { border-right: 0; }

.how-step:hover { background: var(--paper); }

.how-step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: var(--gold-wash);
  padding: 4px 10px;
  width: fit-content;
}

.how-step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  font-variation-settings: "opsz" 48;
}

.how-step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.how-step-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 8px;
}

.how-step-time::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.how-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

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

.faq {
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--navy);
  list-style: none;
  user-select: none;
  font-variation-settings: "opsz" 48;
}

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

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
  font-family: var(--sans);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy);
}

.faq-answer {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
  max-width: 560px;
}

/* ============================================================================
   WHY US
   ============================================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}

.why-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  background: var(--white);
  transition: background 0.2s ease;
}

.why-card:last-child { border-right: 0; }

.why-card:hover { background: var(--paper); }

.why-mark {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--navy);
  font-variation-settings: "opsz" 48;
}

.why-card p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================================
   CONTACT
   ============================================================================ */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 32px;
  border: 1px solid var(--navy);
  background: var(--white);
  text-decoration: none;
  transition: all 0.15s ease;
}

.contact-card:hover {
  background: var(--navy);
  color: var(--white);
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card:hover .contact-label { color: var(--gold-light); }

.contact-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}

.contact-card:hover .contact-value { color: var(--white); }

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

.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--white);
  padding: 4px;
}

.footer-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.footer-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  border: 0;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.syfer-credit a {
  color: var(--gold);
  font-weight: 600;
  border: 0;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}

.syfer-credit a:hover { color: var(--gold-light); }

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


@media (max-width: 860px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-step { border-right: 0; border-bottom: 1px solid var(--rule); }
  .how-step:last-child { border-bottom: 0; }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-head {
    position: static;
  }
  .faq-question {
    font-size: 17px;
    padding: 20px 0;
  }
}

@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(2n) { border-right: 0; }
  .service:nth-child(4n) { border-right: 1px solid var(--rule); }
  .service:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .service:nth-last-child(-n+2) { border-bottom: 0; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2n) { border-right: 0; }
  .why-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .why-card:last-child { border-bottom: 0; }
}

@media (max-width: 860px) {
  .nav,
  .header-phone { display: none; }

  .nav-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
  }

  .header-inner { position: relative; }

  .coverage-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-grid { grid-template-columns: 1fr; }

  .form-tabs {
    grid-template-columns: 1fr;
  }

  .form-tab {
    border-right: 0;
    border-bottom: 1px solid var(--navy);
    padding: 20px 24px;
  }

  .form-tab:last-child { border-bottom: 0; }

  .form { padding: 32px 24px 28px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .display { font-size: 44px; }

  .hero-bullets { gap: 16px; }

  .form-card { border: 0; box-shadow: none; }
  .form { padding: 24px 0 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service { border-right: 0; }
  .service:nth-child(4n) { border-right: 0; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; }

  .footer-cols { grid-template-columns: 1fr; }

  .contact-value { font-size: 22px; }

  .tab-icon { width: 38px; height: 38px; }
  .tab-label { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .form-reassure .dot { animation: none; }
}
