:root {
  --primary: #1B5E89;
  --primary-dark: #134A6B;
  --primary-light: #E8F4FD;
  --accent: #E8710A;
  --accent-dark: #C45F08;
  --accent-light: #FFF3E6;
  --dark: #1A1F2E;
  --text: #2D3748;
  --text-light: #718096;
  --bg: #FFFFFF;
  --bg-alt: #F7FAFC;
  --border: #E2E8F0;
  --success: #38A169;
  --star: #F6AD55;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --max-width: 1200px;
  --nav-height: 72px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark a { color: var(--accent-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.section-header p { color: var(--text-light); font-size: 1.125rem; }
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1.5rem;
}
.nav-logo {
  font-size: 1.25rem;
  color: var(--dark);
  white-space: nowrap;
  font-weight: 700;
}
.nav-logo span { font-weight: 400; color: var(--text-light); }
.nav-logo:hover { color: var(--primary); }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links > li > a,
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-links > li > a:hover,
.dropdown-toggle:hover { background: var(--bg-alt); color: var(--primary); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  color: var(--text);
  transition: background 0.15s;
}
.dropdown-menu li a:hover { background: var(--bg-alt); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9375rem;
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }
.nav-cta { white-space: nowrap; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
}
.btn-phone:hover { color: var(--primary-dark); }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero .btn-group { margin-top: 0.5rem; }

.hero-service {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
  padding: 4rem 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { flex-shrink: 0; opacity: 0.85; }

/* ===== CARD GRID ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.card-grid-5 { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.card-title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card-text { color: var(--text-light); font-size: 0.9375rem; margin-bottom: 1rem; }
.card-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.card-link:hover { color: var(--accent-dark); }
.card-link::after { content: " \2192"; }

.card-image {
  background: var(--bg-alt);
  border-radius: var(--radius);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
  border: 1px dashed var(--border);
}

/* ===== PROCESS / STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step-title { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.step-text { color: var(--text-light); font-size: 0.9375rem; }
.process-step + .process-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -1rem;
  right: calc(100% + 1rem - 28px);
  height: 2px;
  background: var(--border);
}

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-block h2 { color: #fff; }
.cta-block p { color: rgba(255,255,255,0.85); font-size: 1.125rem; max-width: 600px; margin: 0 auto 1.5rem; }
.cta-block .btn-group { justify-content: center; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
  text-align: center;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.8125rem;
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  color: var(--text);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== REVIEWS ===== */
.review-badge {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.review-badge .rating-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.review-badge .stars {
  font-size: 1.75rem;
  color: var(--star);
  margin: 0.5rem 0;
  letter-spacing: 0.125rem;
}
.review-badge .review-count {
  font-size: 1.125rem;
  color: var(--text-light);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review-stars { color: var(--star); margin-bottom: 0.75rem; font-size: 1rem; letter-spacing: 0.05rem; }
.review-text {
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ===== LOGO WALL ===== */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.logo-wall-item {
  height: 40px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  font-weight: 600;
  border: 1px dashed var(--border);
  white-space: nowrap;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
  color: var(--text);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 137, 0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23718096' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-submit { width: 100%; }

/* ===== ABOUT / TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.team-member {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-photo {
  height: 280px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
}
.team-info { padding: 1.5rem; }
.team-name { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-role { color: var(--text-light); font-size: 0.875rem; margin-bottom: 0.75rem; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.cat-card h4 { color: var(--accent-dark); }

/* ===== CONTACT INFO BLOCK ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-info-item svg { flex-shrink: 0; color: var(--primary); margin-top: 0.125rem; }
.contact-info-item:last-child { margin-bottom: 0; }

/* ===== CONTENT SECTIONS ===== */
.content-block { max-width: 800px; }
.content-block p { font-size: 1.0625rem; line-height: 1.8; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

/* ===== PLACEHOLDERS ===== */
.confirm-placeholder {
  background: #FFFBEB;
  border: 1px dashed #F59E0B;
  color: #92400E;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  display: inline;
}
.pending-rights {
  background: #FEF2F2;
  border: 1px dashed #EF4444;
  color: #991B1B;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
}

.draft-warning {
  background: #FEF2F2;
  border: 2px solid #EF4444;
  border-left: 6px solid #EF4444;
  color: #7F1D1D;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.draft-warning strong { color: #991B1B; }
.placeholder-tag {
  display: inline-block;
  background: #FEF2F2;
  border: 1px dashed #EF4444;
  color: #991B1B;
  padding: 0.125rem 0.375rem;
  border-radius: 3px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-right: 0.375rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
}
.footer-logo {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
  display: block;
}
.footer-logo strong { font-weight: 700; }
.site-footer h4 {
  color: #fff;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-info p {
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}
.footer-contact-info a { color: rgba(255,255,255,0.75); }
.footer-contact-info a:hover { color: #fff; }
.footer-business-name { font-weight: 700; color: #fff; }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.spacer { height: 2rem; }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-step + .process-step::before { display: none; }
}

@media (max-width: 768px) {
  .section {padding: 3rem 0;}
  .hero {padding: 3.5rem 0;}
  .card-grid {grid-template-columns: 1fr;}
  .card-grid-4, .card-grid-5 {grid-template-columns: 1fr 1fr;}
  .gallery-grid {grid-template-columns: 1fr 1fr;}
  .review-grid {grid-template-columns: 1fr;}
  .footer-grid {grid-template-columns: 1fr;}
  .form-grid {grid-template-columns: 1fr;}
  .feature-list {grid-template-columns: 1fr;}
  .cta-block {padding: 3rem 0;}
  .trust-items {gap: 1rem 2rem;}
  .btn-group {flex-direction: column;}
  .btn-group .btn {width: 100%;}
}

/* Nav collapses to the hamburger at 1200px, not 768px.
   The full desktop nav needs ~1165px of width; below that it used to overflow the
   container and make the whole page scroll sideways on tablets and small laptops.
   Fixed 2026-08-19. */
@media (max-width: 1200px) {
  .nav-toggle {display: flex;}
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  .nav-menu.active {display: flex;}
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links > li > a, .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 1rem;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
    background: var(--bg-alt);
    border-radius: var(--radius);
  }
  .nav-dropdown.open .dropdown-menu {display: block;}
  .nav-actions {
    flex-direction: column;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .nav-cta {width: 100%; text-align: center;}
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .card-grid-4, .card-grid-5 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: center; }
  .logo-wall { gap: 1rem 1.5rem; }
}

/* ============================================================
   CREDIBILITY / REVIEW BLOCKS  (added 2026-08-14, launch pass)
   Replaces the removed logo wall and the removed placeholder
   testimonial grids. See _launch-blockers/LAUNCH-READINESS.md
   ============================================================ */

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.credibility-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.credibility-card h3 {
  font-size: 1.375rem;
  margin: 0.25rem 0 0.75rem;
  color: var(--dark);
}

.credibility-card p { color: var(--text-light); font-size: 0.9375rem; }

.credibility-card-stat {
  background: var(--primary-light);
  border-color: rgba(27, 94, 137, 0.25);
}

.credibility-card-stat h3 { color: var(--primary); font-size: 1.75rem; }

.credibility-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.credibility-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9375rem;
}

.review-cta-panel {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.review-cta-panel h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.75rem; }
.review-cta-panel p { color: var(--text-light); }
.review-cta-actions { margin-top: 1.5rem; }

.card-muted { background: var(--bg-alt); border-style: dashed; }
.card-muted .card-title { color: var(--text-light); }

@media (max-width: 600px) {
  .credibility-grid { grid-template-columns: 1fr; }
  .review-cta-panel { padding: 1.75rem 1.25rem; }
}

/* Related-services list (light sections) + secondary footer nav */
.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.related-links li { list-style: none; }

.related-links a {
  display: inline-block;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.related-links a:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.footer-nav-secondary { margin-top: 0.5rem; font-size: 0.875rem; }
.footer-nav-secondary a { color: rgba(255,255,255,0.65); }
.footer-nav-secondary a:hover { color: #fff; }

/* Mobile nav now carries 2 dropdowns / 22 links — the sticky header means an
   un-scrollable menu hides the lower items and the quote CTA. Cap and scroll. */
@media (max-width: 1200px) {
  .nav-menu {
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}

/* --- verified review meta (added 2026-08-14 with the real Google review harvest) --- */
.review-meta { display: block; font-weight: 400; font-size: 0.8125rem; color: var(--text-light); margin-top: 0.15rem; }
.review-grid-single { grid-template-columns: minmax(0, 720px); justify-content: center; }
.review-card .review-text + .review-text { margin-top: 0.75rem; }

/* ===== QUOTE FORM: honeypot + fallback note (added 2026-08-19) ===== */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}
.form-note a { color: var(--primary); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }
.form-status {
  padding: 1rem 1.15rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.form-status-ok  { background: var(--primary-light); border-left: 4px solid var(--primary); }
.form-status-err { background: var(--accent-light);  border-left: 4px solid var(--accent); }


/* Desktop nav sizing.
   The nav used to need ~1240px of a ~1152px container, so it overflowed at EVERY
   desktop width — it just didn't force a page scrollbar until the viewport got small
   enough that the spill escaped the container's side margins. That is the ~200px
   overflow noted in BUILD-BRIEF-framer-rebuild.md §2. Tightened here to ~1100px so it
   genuinely fits, with the phone number kept visible (it is the primary CTA). */
@media (min-width: 1201px) {
  .nav-links { gap: 0.75rem; }
  .nav-links > li > a, .dropdown-toggle { font-size: 0.875rem; }
  .nav-actions { gap: 0.7rem; }
  .nav-phone { font-size: 0.875rem; gap: 0.35rem; }
  .nav-phone svg { width: 16px; height: 16px; }
  .nav-cta { padding: 0.55rem 0.95rem; font-size: 0.875rem; }
  .nav-logo { font-size: 1.15rem; }
}
