/* KingFluids — production stylesheet
   Modeled on NovaGlycol section rhythm; original brand system. */

:root {
  --navy: #0D2340;
  --navy-deep: #09203f;
  --navy-mid: #142d52;
  --navy-light: #1a3a6e;
  --teal: #00A5A7;
  --teal-dark: #004a59;
  --teal-bright: #00d4d9;
  --teal-soft: rgba(0, 165, 167, 0.14);
  --ink: #3A4F66;
  --ink-muted: #6b7c90;
  --heading: #0D2340;
  --bg: #F4F7F9;
  --bg-alt: #FAFBFC;
  --white: #ffffff;
  --border: #e1e8ed;
  --danger: #9b2c2c;
  --shadow: 0 12px 18px -6px rgba(13, 35, 64, 0.06);
  --shadow-lg: 0 22px 48px -16px rgba(13, 35, 64, 0.16);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 96px;
  --util-h: 38px;
  --max: 1180px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 800;
}
p { margin: 0 0 1em; }
ul { margin: 0 0 1em; }
button, input, select, textarea { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--teal);
  color: #fff;
  padding: 8px 14px;
  z-index: 10000;
  border-radius: 6px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.container-narrow { width: min(760px, calc(100% - 40px)); margin-inline: auto; }

/* Utility bar */
.util-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  min-height: var(--util-h);
  display: flex;
  align-items: center;
}
.util-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 0;
}
.util-bar strong { color: #fff; font-weight: 600; }
.util-bar a { color: var(--teal-bright); }
.util-bar a:hover { color: #fff; }
.util-left, .util-right { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.util-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); display: inline-block; }
.industry-card:nth-child(2) .industry-thumb { background: linear-gradient(145deg, #004a59 0%, #0D2340 100%); }
.industry-card:nth-child(3) .industry-thumb { background: linear-gradient(145deg, #09203f 0%, #00A5A7 100%); }


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand:hover { opacity: 0.88; }
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}
.footer-logo-link {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px 8px;
  margin-bottom: 16px;
  line-height: 0;
}
.footer-logo {
  height: 112px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a, .nav .has-sub > button {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  background: none;
  border: 0;
  padding: 10px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav a:hover, .nav .has-sub > button:hover,
.nav a[aria-current="page"] { color: var(--teal); }
.has-sub { position: relative; }
.has-sub > button::after {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
}
.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
}
.has-sub:hover .dropdown,
.has-sub:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
}
.dropdown a:hover { background: var(--bg); color: var(--teal-dark); }
.dropdown small { display: block; font-weight: 400; color: var(--ink-muted); font-size: 12px; margin-top: 2px; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.header-phone:hover { color: var(--teal); }
.header-phone span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--navy); border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border-radius: 10px;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #00b3b6 0%, var(--teal) 100%);
  color: #fff !important;
  box-shadow: 0 8px 20px -8px rgba(0, 165, 167, 0.7);
}
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.45);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-ghost {
  background: #fff;
  color: var(--navy) !important;
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark) !important; }
.btn-lg { padding: 16px 34px; font-size: 16px; }


.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;
}
.photo-hero { position: relative; background: #07182c; line-height: 0; }
.photo-hero img { width: 100%; height: auto; display: block; }
.photo-hero-bar {
  background: var(--navy-deep);
  padding: 16px 0;
  line-height: 1.5;
}
.photo-hero-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.photo-hero-bar p { margin: 0; color: rgba(255,255,255,0.82); font-size: 14.5px; }
.photo-hero-bar .btn-secondary { color: #fff !important; }
.industry-thumb { height: 160px; overflow: hidden; padding: 0; }
.industry-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(13,35,64,0.94) 0%, rgba(9,32,63,0.88) 42%, rgba(0,74,89,0.82) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(0,165,167,0.35), transparent 50%),
    var(--navy-deep);
  color: #fff;
}
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  filter: blur(2px);
  animation: float 9s ease-in-out infinite;
}
.blob-1 { right: -6%; top: 8%; width: 520px; height: 520px; background: radial-gradient(ellipse at 30% 40%, rgba(0,165,167,0.22), transparent); }
.blob-2 { right: 18%; top: 28%; width: 260px; height: 260px; background: radial-gradient(ellipse at 60% 60%, rgba(0,212,217,0.16), transparent); animation-delay: 1s; }
.blob-3 { right: 8%; bottom: 12%; width: 180px; height: 180px; background: radial-gradient(circle, rgba(0,74,89,0.4), transparent); animation-delay: 2s; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}
.hero-inner { position: relative; z-index: 2; padding: 88px 0 72px; max-width: 740px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,217,0.14);
  border: 1px solid rgba(0,212,217,0.38);
  border-radius: 100px;
  padding: 6px 16px;
  color: var(--teal-bright);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 22px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 6px rgba(0,212,217,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,212,217,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(0,212,217,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,217,0); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 18px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #7fe8ea, #00d4d9 40%, #5ad0c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  font-size: 18.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

/* Page hero (inner) */
.page-hero {
  background:
    linear-gradient(165deg, rgba(13,35,64,0.96), rgba(0,74,89,0.88)),
    var(--navy);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 640px; font-size: 18px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--teal-bright); }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg); }
.section-white { background: #fff; }
.section-navy {
  background: linear-gradient(165deg, #0D2340 0%, #142d52 40%, #1a3a6e 100%);
  color: #fff;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-navy .section-label { color: var(--teal-bright); }
.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 12px;
}
.section-navy .section-title { color: #fff; }
.section-sub {
  color: var(--ink-muted);
  max-width: 620px;
  font-size: 17px;
}
.section-navy .section-sub { color: rgba(255,255,255,0.7); }
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }
.mb-48 { margin-bottom: 48px; }

/* Trust bar */
.trust-bar {
  background: #fff;
  padding: 36px 0;
  border-bottom: 1px solid rgba(13,35,64,0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid; place-items: center;
}
.trust-item strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 14.5px; }
.trust-item small { color: var(--ink-muted); font-size: 13px; }

/* Cards */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.product-card, .industry-card, .info-card, .why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover, .industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,165,167,0.35);
}
.tier {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  width: fit-content;
  margin-bottom: 12px;
}
.product-card h3 { font-size: 20px; margin-bottom: 6px; }
.product-card .pack {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.product-card .desc { font-size: 14.5px; color: var(--ink); flex: 1; }
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal) !important;
  margin-top: 16px;
}
.card-link:hover { color: var(--teal-dark) !important; }

.industry-card { padding: 0; overflow: hidden; color: inherit; }
.industry-thumb {
  height: 140px;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,212,217,0.35), transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, var(--teal-dark) 100%);
  position: relative;
}
.industry-thumb svg {
  position: absolute; right: 18px; bottom: 14px;
  opacity: 0.55; width: 56px; height: 56px; color: #fff;
}
.industry-card .body { padding: 22px 24px 26px; }
.industry-card h3 { font-size: 20px; margin-bottom: 8px; }
.industry-card p { font-size: 14.5px; color: var(--ink-muted); margin: 0; }

.why-card h3 { font-size: 18px; }
.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

/* Advisor */
.advisor {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.advisor-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.advisor-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(0,212,217,0.16);
  color: var(--teal-bright);
  display: grid; place-items: center; flex-shrink: 0;
}
.advisor h3 { color: #fff; font-size: 22px; margin: 0 0 4px; }
.advisor-head p { color: rgba(255,255,255,0.65); margin: 0; font-size: 14.5px; }
.advisor-log {
  background: rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 16px;
  min-height: 88px;
  max-height: 260px;
  overflow: auto;
  margin-bottom: 14px;
}
.msg {
  font-size: 14.5px;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 8px;
  max-width: 92%;
}
.msg-bot { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); }
.msg-user { background: var(--teal); color: #fff; margin-left: auto; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}
.chip:hover { border-color: var(--teal-bright); color: #fff; }
.advisor-row { display: flex; gap: 8px; }
.advisor-row textarea {
  flex: 1;
  resize: none;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 12px 14px;
  min-height: 48px;
}
.advisor-row textarea::placeholder { color: rgba(255,255,255,0.4); }
.advisor-note { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* CTA band */
.cta-band {
  background: linear-gradient(165deg, #09203f, #004a59);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.5vw, 40px); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 28px; font-size: 17px; }
.cta-phones {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 14.5px;
}
.cta-phones a { color: var(--teal-bright); }

/* Footer */
.site-footer {
  background: #07182c;
  color: rgba(255,255,255,0.68);
  padding: 64px 0 0;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 12px; }
.footer-brand span { color: var(--teal); }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer a { color: rgba(255,255,255,0.68); display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--teal-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { display: inline; padding: 0; margin-right: 16px; }

.notice {
  background: #fff8e8;
  border: 1px solid #f0d9a0;
  color: #5c4813;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13.5px;
  margin: 20px 0 0;
}
.notice-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

/* Forms */
.form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
label .opt { font-weight: 500; color: var(--ink-muted); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(0,165,167,0.35);
  border-color: var(--teal);
}
textarea { min-height: 130px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card a { color: var(--teal-dark); font-weight: 700; }

.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }

/* Product detail */
.prose { font-size: 16.5px; }
.prose h2 { font-size: 26px; margin-top: 1.4em; }
.prose h3 { font-size: 18px; margin-top: 1.2em; }
.prose ul { padding-left: 1.15em; }
.prose li { margin-bottom: 0.4em; }
.meta-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.meta-box dt {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 14px;
}
.meta-box dt:first-child { margin-top: 0; }
.meta-box dd { margin: 4px 0 0; color: var(--navy); font-weight: 600; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--teal-soft);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--teal);
}

.legal { font-size: 15px; color: var(--ink); }
.legal h2 { font-size: 22px; margin-top: 1.6em; }

/* 404 */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state h1 { font-size: 48px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav.open .has-sub { display: block; }
  .nav.open .dropdown { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 8px; }
  .grid-3, .contact-cards, .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { padding: 56px 0 48px; }
}
@media (max-width: 560px) {
  .grid-4, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .container { width: calc(100% - 32px); }
  .form { padding: 22px; }
  .header-cta .btn { padding: 10px 14px; font-size: 13px; }
  .brand-logo { height: 64px; }
  :root { --header-h: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
