/* ═══════════════════════════════════════
   GRIP GUARD PROS — GLOBAL STYLES
   shared.css — light theme, teal + safety orange
═══════════════════════════════════════ */

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

:root {
  /* Brand color system: teal accent on light theme, safety orange secondary */
  --accent: #0E8F8A;        /* primary accent — teal (readable on white) */
  --accent-hot: #13ABA5;    /* hover */
  --accent-deep: #0A6E6A;   /* deep teal for gradients */
  --accent-bright: #00C9B7; /* bright teal — fills & dark bands */
  --safety: #FF8A00;        /* safety orange — hazard stripe, grip highlights */

  /* Light surface system */
  --bg: #FFFFFF;            /* primary background */
  --bg-soft: #F3F8F8;       /* alternating section bg — cool teal-tinted off-white */
  --panel: #FFFFFF;         /* card background */
  --border: #E1EAEA;        /* subtle border for cards / sections */
  --text: #10222B;          /* primary text color — near-ink */
  --grey: #56676F;          /* secondary text */

  /* Dedicated dark surfaces for contrast bands (guarantee, footer) */
  --ink: #06202A;           /* brand ink for contrast bands */
  --ink-soft: #0C3140;      /* contrast cards */

  --font-head: 'Bebas Neue', sans-serif;
  --font-sub: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HAZARD STRIPE ── slip-safety accent divider */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--safety) 0 14px, var(--ink) 14px 28px);
}

/* ── GLASS PACK ── light frosted glass */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(16, 34, 43, 0.06);
  box-shadow: 0 4px 24px rgba(6, 32, 42, 0.06);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(16, 34, 43, 0.08);
  box-shadow: 0 8px 32px rgba(6, 32, 42, 0.07);
}
.glass-accent {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(14, 143, 138, 0.3);
  box-shadow: 0 4px 24px rgba(14, 143, 138, 0.07);
}

/* ── NAV ── light glass */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 20px 56px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 13px 56px;
  border-bottom: 1px solid rgba(16, 34, 43, 0.07);
  box-shadow: 0 2px 12px rgba(6, 32, 42, 0.06);
}
.logo-link { display: flex; align-items: center; text-decoration: none; color: var(--text); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-sub); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: rgba(16, 34, 43, 0.65);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.nav-cta {
  color: var(--ink) !important;
  background: var(--accent-bright) !important;
  padding: 10px 28px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--accent-hot) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 9px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--text); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(255, 255, 255, 0.98); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head); font-size: 2.4rem;
  letter-spacing: 0.04em; text-decoration: none;
  color: var(--text); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── NAV DROPDOWN ── */
.nav-drop { position: relative; }
.nav-drop > a::after { content: ' \25BE'; font-size: 0.75em; }
.nav-drop::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.drop-menu {
  position: absolute; top: calc(100% + 16px); left: -20px; min-width: 250px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  box-shadow: 0 16px 40px rgba(6, 32, 42, 0.14);
  list-style: none; padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-drop:hover .drop-menu,
.nav-drop:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu li { display: block; }
.drop-menu a {
  display: block; padding: 10px 22px;
  border-bottom: none !important;
  font-size: 0.8rem;
}
.drop-menu a:hover { background: rgba(14, 143, 138, 0.08); color: var(--accent-deep) !important; }
.drop-all { border-top: 1px solid var(--border); margin-top: 8px; }
.drop-all a { color: var(--accent-deep) !important; padding-top: 14px; }
@media (max-width: 768px) { .drop-menu { display: none; } }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 160px 56px 80px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(14, 143, 138, 0.06), transparent);
}
.page-tag {
  font-family: var(--font-sub); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.page-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent-deep); }
.page-h1 {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9; letter-spacing: 0.02em;
  max-width: 900px;
}
.page-h1 span { color: var(--accent); }
.page-sub {
  font-size: 1.05rem; color: var(--grey);
  max-width: 560px; line-height: 1.75; margin-top: 24px;
}

/* ── SECTION SHARED ── */
section { padding: 96px 56px; }
.section-tag {
  font-family: var(--font-sub); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent-deep); }
h2 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.93; letter-spacing: 0.02em; margin-bottom: 20px;
}
h2 span { color: var(--accent); }
h3 {
  font-family: var(--font-sub); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-sub); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  background: var(--accent-bright);
  padding: 15px 44px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
  display: inline-block; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 201, 183, 0.25);
}
.btn-primary:hover { background: var(--accent-hot); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 201, 183, 0.32); }
.btn-ghost {
  font-family: var(--font-sub); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: rgba(16, 34, 43, 0.7);
  border: 1px solid rgba(16, 34, 43, 0.22);
  padding: 15px 44px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: color 0.2s, border-color 0.2s, transform 0.15s, background 0.2s;
  display: inline-block; background: transparent;
}
.btn-ghost:hover { color: var(--accent-deep); border-color: var(--accent); background: rgba(14, 143, 138, 0.05); transform: translateY(-2px); }

/* ── CTA BAND ── */
.cta-band { background: var(--accent-bright); padding: 80px 56px; text-align: center; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: rgba(6, 32, 42, 0.75); font-size: 1.05rem; margin: 14px 0 36px; }
.btn-dark {
  font-family: var(--font-sub); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--accent-bright);
  background: var(--ink);
  padding: 17px 52px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  display: inline-block; transition: background 0.2s;
}
.btn-dark:hover { background: var(--ink-soft); }

/* ── FOOTER ── brand ink */
footer {
  background: var(--ink);
  padding: 60px 56px 28px;
  border-top: 1px solid var(--ink-soft);
  color: #E7F1F1;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: 0.88rem; color: rgba(231,241,241,0.55); line-height: 1.7; margin: 14px 0 20px; max-width: 260px; }
.footer-email { font-family: var(--font-sub); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; color: var(--accent-bright); text-decoration: none; display: block; margin-bottom: 6px; }
.footer-col-title { font-family: var(--font-sub); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(231,241,241,0.6); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(231,241,241,0.65); font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-bright); }
.footer-bottom { border-top: 1px solid rgba(231,241,241,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: rgba(231,241,241,0.62); }
.footer-credit { color: inherit; text-decoration: none; }
.footer-credit:hover { color: var(--accent-bright); text-decoration: underline; }

/* ── MOBILE HEADER PHONE ── */
.nav-phone-m { display: none; }

/* ── BITE / AT A GLANCE ── */
.bite-wrap { padding: 56px 56px 0; max-width: 960px; }
.bite { font-size: 1.25rem; line-height: 1.6; color: var(--text); font-weight: 400; }
.bite b { color: var(--accent-deep); font-weight: 600; }
.glance { margin-top: 24px; border: 1px solid var(--border); border-left: 4px solid var(--accent-bright); background: var(--bg-soft); padding: 22px 26px; }
.glance-title { font-family: var(--font-sub); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 10px; }
.glance ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.glance li { font-size: 0.95rem; color: var(--text); padding-left: 20px; position: relative; }
.glance li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── FOCUS ── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--safety); outline-offset: 3px; }
.btn-primary:focus-visible, .btn-dark:focus-visible, .nav-cta:focus-visible, .cf-btn:focus-visible { outline: none; background: var(--safety) !important; color: var(--ink) !important; }

/* ── FADE UP ── retired: content renders visible with or without JS (no fade-and-slide on every section) */
.fade-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ── CONTACT FORM ── light theme */
.cf { display: flex; flex-direction: column; gap: 14px; }
.cf input, .cf textarea, .cf select {
  background: #FFFFFF; border: 1px solid var(--border);
  color: var(--text); padding: 13px 18px;
  font-family: var(--font-body); font-size: 0.92rem;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.cf input:focus, .cf textarea:focus, .cf select:focus { border-color: var(--accent); }
.cf input::placeholder, .cf textarea::placeholder { color: rgba(16, 34, 43, 0.35); }
.cf select { color: rgba(16, 34, 43, 0.7); appearance: none; }
.cf textarea { resize: vertical; min-height: 130px; }
.cf-btn {
  background: var(--accent-bright); color: var(--ink);
  font-family: var(--font-sub); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 40px; border: none; cursor: pointer;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s; align-self: flex-start;
  box-shadow: 0 4px 16px rgba(0, 201, 183, 0.25);
}
.cf-btn:hover { background: var(--accent-hot); transform: translateY(-2px); }

/* ── PRICING CARDS + INCLUDES LISTS ── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.price-card {
  background: var(--panel); border: 1px solid var(--border);
  padding: 40px 32px; position: relative; overflow: hidden;
  box-shadow: 0 2px 12px rgba(6, 32, 42, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.price-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.4s; }
.price-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14, 143, 138, 0.12); }
.price-card:hover::after { width: 100%; }
.price-card.featured { border-color: rgba(14, 143, 138, 0.5); }
.price-label { font-family: var(--font-sub); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.price-n { font-family: var(--font-head); font-size: 3.4rem; line-height: 1; color: var(--accent); margin-bottom: 6px; }
.price-unit { font-family: var(--font-sub); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 22px; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.price-includes li { font-size: 0.9rem; color: rgba(16, 34, 43, 0.75); padding-left: 22px; position: relative; }
.price-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── SERVICE / LOCATION CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.svc-card {
  background: var(--panel); border: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  overflow: hidden; position: relative;
  box-shadow: 0 2px 12px rgba(6, 32, 42, 0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: block;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(14, 143, 138, 0.12); }
.svc-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.svc-card-body { padding: 28px 30px 32px; }
.svc-card-body h3 { margin-bottom: 8px; }
.svc-card-body p { font-size: 0.92rem; color: var(--grey); line-height: 1.7; }
.svc-more { font-family: var(--font-sub); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); display: inline-block; margin-top: 14px; }

/* ── STAT / GEO FACT CARDS ── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.stat-card { background: var(--panel); border: 1px solid var(--border); padding: 30px 26px; box-shadow: 0 2px 12px rgba(6, 32, 42, 0.04); }
.stat-n { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: var(--accent); margin-bottom: 8px; }
.stat-l { font-family: var(--font-sub); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); }
.stat-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.65; margin-top: 10px; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq-q { font-family: var(--font-sub); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-bottom: 10px; }
.faq-a { font-size: 0.95rem; color: var(--grey); line-height: 1.75; max-width: 680px; }

/* ── CHECKLIST (detail pages) ── */
.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.detail-list li { padding-left: 34px; position: relative; font-size: 1rem; color: rgba(16, 34, 43, 0.8); }
.detail-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.detail-list strong { color: var(--text); font-weight: 600; }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--border); padding: 34px 28px; position: relative; box-shadow: 0 2px 12px rgba(6, 32, 42, 0.04); }
.step::before { counter-increment: step; content: '0' counter(step); font-family: var(--font-head); font-size: 2.4rem; color: rgba(14, 143, 138, 0.25); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; gap: 10px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-phone-m { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; min-height: 44px; padding: 0 6px; font-family: var(--font-sub); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; color: var(--accent-deep); text-decoration: none; white-space: nowrap; }
  nav.over-hero:not(.scrolled) .nav-phone-m { color: #fff; }
  nav.over-hero:not(.scrolled) .hamburger span { background: #fff; }
  .bite-wrap { padding: 48px 24px 0; }
  .glance ul { grid-template-columns: 1fr; }
  section { padding: 72px 24px; }
  .page-header { padding: 120px 24px 60px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .stat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .logo-link svg { width: 172px; height: auto; }
}
