/* Diamond Step — Service Landing Page Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1B2E; --navy2: #0A1522; --silver: #9EAAB5;
  --slt: #C4D0D9; --white: #FFFFFF; --off: #F3F5F7;
  --muted: #586472; --border: rgba(13,27,46,0.1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; color: var(--navy); background: var(--white); }
/* Ensure minimum 16px for all body text */
p, li, label, input, select, textarea, .s-content p, .s-form-sub { font-size: 16px; }

/* NAV */
.snav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,21,34,0.98); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.snav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.snav-logo img { height: 38px; }
.snav-logo-text .name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--white); letter-spacing: 3px; text-transform: uppercase; line-height: 1;
}
.snav-logo-text .tag { font-size: 8.5px; color: var(--silver); letter-spacing: 2px; margin-top: 3px; text-transform: uppercase; }
.snav-actions { display: flex; align-items: center; gap: 12px; }
.snav-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  padding: 12px 20px; min-height: 48px; transition: background .25s;
}
.snav-call:hover { background: var(--slt); }
.snav-call svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.snav-home {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .25s; display: none;
}
.snav-home:hover { color: var(--white); }

/* HERO */
.s-hero {
  background: var(--navy);
  padding: 64px 5% 56px;
  position: relative; overflow: hidden;
}
.s-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,21,34,0.97) 50%, rgba(10,21,34,0.8) 100%);
  z-index: 0;
}
.s-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .12;
  z-index: 0;
}
.s-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--silver); margin-bottom: 18px;
}
.s-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--silver); }
.s-hero h1 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(30px, 5vw, 56px);
  font-weight: 700; letter-spacing: -1.5px; color: var(--white);
  line-height: 1.08; margin-bottom: 18px;
}
.s-hero-sub {
  font-size: 16px; font-weight: 300; color: var(--slt);
  line-height: 1.7; margin-bottom: 36px; max-width: 540px;
}
.s-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; transition: background .25s, transform .2s;
}
.btn-hero-primary:hover { background: var(--slt); transform: translateY(-2px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  padding: 14px 30px; transition: border-color .25s, background .25s;
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }
.btn-hero-outline svg, .btn-hero-primary svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* TRUST BAR */
.s-trust {
  background: var(--navy2); border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: center; gap: 0;
  padding: 0; overflow: hidden;
}
.s-trust-item {
  flex: 1; text-align: center; padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.s-trust-item:last-child { border-right: none; }
.s-trust-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 5px;
}
.s-trust-lbl { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }

/* MAIN CONTENT */
.s-main {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; max-width: 1200px; margin: 0 auto;
  padding: 64px 5%;
}

/* LEFT CONTENT */
.s-content h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; letter-spacing: -.5px; color: var(--navy);
  margin-bottom: 16px; line-height: 1.2;
}
.s-content p { font-size: 15.5px; color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.s-content h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--navy);
  margin: 32px 0 14px; display: flex; align-items: center; gap: 10px;
}
.s-content h3::before { content: ''; width: 20px; height: 2px; background: var(--navy); }
.s-why { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.s-why li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: var(--muted); line-height: 1.6;
}
.s-why li::before {
  content: '';
  display: block; width: 18px; height: 18px; flex-shrink: 0;
  background: var(--navy); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
  margin-top: 2px;
}
.s-areas {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.s-area-tag {
  background: var(--off); border: 1px solid var(--border);
  font-size: 12px; font-weight: 500; color: var(--muted);
  padding: 5px 12px;
}

/* FORM SIDEBAR */
.s-form-wrap {
  position: sticky; top: 80px; align-self: start;
}
.s-form-box {
  background: var(--navy); padding: 36px 32px;
}
.s-form-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); padding: 6px 12px;
  margin-bottom: 20px;
}
.s-form-badge-dot { width: 7px; height: 7px; background: #2ECC71; border-radius: 50%; }
.s-form-badge span { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--slt); }
.s-form-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--white); letter-spacing: -.5px; margin-bottom: 6px;
}
.s-form-sub { font-size: 13px; color: var(--silver); margin-bottom: 24px; line-height: 1.6; }
.s-form { display: flex; flex-direction: column; gap: 12px; }
.s-input-group { display: flex; flex-direction: column; gap: 6px; }
.s-input-group label { font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); }
.s-input-group input,
.s-input-group select,
.s-input-group textarea {
  border: 1.5px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06);
  padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--white); outline: none; transition: border-color .25s;
  -webkit-appearance: none; appearance: none;
}
.s-input-group input::placeholder, .s-input-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.s-input-group input:focus,
.s-input-group select:focus,
.s-input-group textarea:focus { border-color: rgba(255,255,255,0.4); }
.s-input-group select option { background: var(--navy); color: var(--white); }
.s-input-group textarea { resize: vertical; min-height: 80px; }
.s-submit {
  background: var(--white); color: var(--navy); border: none;
  padding: 16px; min-height: 48px; font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; cursor: pointer; transition: background .25s; margin-top: 4px;
}
.s-submit:hover { background: var(--slt); }
.s-form-or {
  text-align: center; font-size: 11px; color: var(--silver);
  margin: 16px 0 8px; letter-spacing: 1px;
}
.s-form-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--white); text-decoration: none; transition: color .25s;
}
.s-form-phone:hover { color: var(--slt); }
.s-form-phone svg { stroke: var(--slt); fill: none; stroke-width: 2; width: 16px; height: 16px; }

/* BOTTOM CTA */
.s-cta {
  background: var(--navy2); padding: 52px 5%; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.s-cta h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 3vw, 36px);
  font-weight: 700; color: var(--white); letter-spacing: -1px; margin-bottom: 12px;
}
.s-cta p { font-size: 15px; color: var(--silver); margin-bottom: 28px; }
.s-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* MOBILE STICKY BAR */
.s-mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy); padding: 12px 5%;
  border-top: 2px solid rgba(255,255,255,0.1);
  gap: 12px;
}
.s-mobile-bar a {
  flex: 1; text-align: center; padding: 12px 8px;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: background .25s;
}
.smb-call { background: var(--white); color: var(--navy); }
.smb-quote { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }

/* FOOTER */
.s-footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 5%; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.s-footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.s-footer-logo img { height: 34px; }
.s-footer-logo span {
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; color: var(--white); text-transform: uppercase;
}
.s-footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.s-footer-links a { font-size: 12px; color: rgba(158,170,181,.5); text-decoration: none; transition: color .25s; }
.s-footer-links a:hover { color: var(--silver); }
.s-footer p { font-size: 12px; color: rgba(158,170,181,.4); }

/* ── TESTIMONIALS ── */
.s-testimonials { background: var(--navy2); padding: 52px 5%; border-top: 1px solid rgba(255,255,255,0.06); }
.s-testimonials-inner { max-width: 1200px; margin: 0 auto; }
.s-testimonials h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px,2.5vw,30px); font-weight: 700; color: var(--white); letter-spacing: -.5px; margin-bottom: 32px; text-align: center; }
.s-test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.s-test-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 28px; transition: background .3s; }
.s-test-card:hover { background: rgba(255,255,255,0.07); }
.s-test-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.s-test-stars span { color: #C8A84B; font-size: 14px; }
.s-test-text { font-size: 14px; color: var(--slt); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.s-test-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.s-test-av { width: 38px; height: 38px; background: var(--silver); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk',sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.s-test-name { font-family: 'Space Grotesk',sans-serif; font-size: 13px; font-weight: 700; color: var(--white); }
.s-test-loc { font-size: 11px; color: var(--silver); margin-top: 2px; }

/* ── HOURS & ADDRESS ── */
.s-info-bar { background: var(--off); padding: 36px 5%; border-top: 1px solid var(--border); }
.s-info-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.s-info-item { display: flex; gap: 14px; align-items: flex-start; }
.s-info-icon { width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s-info-icon svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }
.s-info-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 4px; }
.s-info-val { font-size: 15px; color: var(--navy); font-weight: 500; }
.s-info-val a { color: var(--navy); text-decoration: none; }

/* ── SERVICE PAGE FAQ ── */
.s-faq { background: var(--white); padding: 56px 5%; border-top: 1px solid var(--off); }
.s-faq-inner { max-width: 860px; margin: 0 auto; }
.s-faq h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(20px,2.5vw,30px); font-weight: 700; color: var(--navy); letter-spacing: -.5px; margin-bottom: 32px; }
.s-faq-item { border-top: 1px solid var(--border); padding: 20px 0; }
.s-faq-q { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.s-faq-q svg { width: 18px; height: 18px; stroke: var(--silver); fill: none; stroke-width: 2; flex-shrink: 0; transition: transform .3s; }
.s-faq-a { font-size: 15px; color: var(--muted); line-height: 1.85; display: none; padding-top: 4px; }
.s-faq-item.open .s-faq-a { display: block; }
.s-faq-item.open .s-faq-q svg { transform: rotate(180deg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .s-main { grid-template-columns: 1fr; }
  .s-form-wrap { position: static; }
  .s-trust { flex-wrap: wrap; }
  .s-trust-item { flex: 1 1 45%; min-width: 140px; }
  .s-mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
  .snav-home { display: block; }
  .s-test-grid { grid-template-columns: 1fr; }
  .s-info-bar-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 640px) {
  .s-test-grid { grid-template-columns: 1fr; }
  p, li, label { font-size: 15px; }
}
@media (max-width: 480px) {
  .s-hero h1 { font-size: 28px; }
  .s-hero-btns { flex-direction: column; }
  .s-form-box { padding: 28px 20px; }
}
