/*
Theme Name: GPS Child
Template: generatepress
Version: 1.0.0
*/

:root {
  --gps-navy: #1F3A68;
  --gps-navy-dark: #152849;
  --gps-navy-light: #2B4D85;
  --gps-blue: #2E7CD6;
  --gps-amber: #E8B33B;
  --gps-amber-dark: #C99624;
  --gps-gray: #7A8A9A;
  --gps-gray-light: #B8C2CC;
  --gps-gray-lighter: #E5E9EE;
  --gps-gray-dark: #4A5563;
  --gps-charcoal: #1A1D24;
  --gps-off-white: #F7F8FA;
  --gps-white: #FFFFFF;
  --gps-green: #25D366;
  --gps-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --gps-radius-sm: 4px;
  --gps-radius-md: 8px;
  --gps-radius-lg: 16px;
  --gps-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --gps-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --gps-shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
}

/* GP overrides */
.site-content,
#content.site-content,
.inside-article {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.entry-content { display: block !important; margin: 0 !important; padding: 0 !important; }
#main { display: block !important; }
.home .widget-area, .home #right-sidebar, .home #left-sidebar { display: none !important; }
.home .content-area { width: 100% !important; max-width: 100% !important; }
.site-header { display: none !important; }
#page { max-width: none !important; }

* { box-sizing: border-box; }

body {
  font-family: var(--gps-font);
  color: var(--gps-charcoal);
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background: var(--gps-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gps-font);
  color: var(--gps-navy);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }

p { margin: 0 0 1rem; }
a { color: var(--gps-navy); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gps-blue); }
img { max-width: 100%; height: auto; display: block; }

.gps-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gps-white { color: var(--gps-white) !important; }
.gps-amber { color: var(--gps-amber); }
.gps-center { text-align: center; }

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

/* BUTTONS */
.gps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--gps-font);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--gps-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  line-height: 1.2;
  white-space: nowrap;
}
.gps-btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.gps-btn-amber {
  background: var(--gps-amber);
  color: var(--gps-navy) !important;
  border-color: var(--gps-amber);
}
.gps-btn-amber:hover {
  background: var(--gps-amber-dark);
  border-color: var(--gps-amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--gps-shadow-md);
}
.gps-btn-navy {
  background: var(--gps-navy);
  color: var(--gps-white) !important;
  border-color: var(--gps-navy);
}
.gps-btn-navy:hover {
  background: var(--gps-navy-dark);
  border-color: var(--gps-navy-dark);
}
.gps-btn-outline-white {
  background: transparent;
  color: var(--gps-white) !important;
  border-color: var(--gps-white);
}
.gps-btn-outline-white:hover {
  background: var(--gps-white);
  color: var(--gps-navy) !important;
}

/* TOPBAR */
.gps-topbar {
  background: var(--gps-navy-dark);
  color: var(--gps-white);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}
.gps-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gps-topbar-left, .gps-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gps-topbar-divider { opacity: 0.4; }
.gps-lang {
  color: var(--gps-white);
  font-weight: 600;
}
.gps-lang:hover { color: var(--gps-amber); }
@media (max-width: 768px) {
  .gps-topbar-left { display: none; }
  .gps-topbar-inner { justify-content: flex-end; }
}

/* HEADER */
.gps-header {
  background: var(--gps-white);
  border-bottom: 1px solid var(--gps-gray-lighter);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--gps-shadow-sm);
}
.gps-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.gps-logo img {
  height: 56px;
  width: auto;
}
.gps-nav { flex: 1; }
.gps-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gps-nav-list li {
  list-style: none !important;
  margin: 0 !important;
}
.gps-nav-list a {
  color: var(--gps-navy);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
}
.gps-nav-list a:hover { color: var(--gps-blue); }
.gps-nav-gc {
  background: var(--gps-navy) !important;
  color: var(--gps-white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--gps-radius-md);
}
.gps-nav-gc:hover {
  background: var(--gps-navy-dark) !important;
}
.gps-btn-call-header {
  flex-direction: column;
  gap: 0 !important;
  padding: 0.5rem 1.25rem !important;
  line-height: 1.1 !important;
}
.gps-btn-call-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.gps-btn-call-num {
  font-size: 1rem;
  font-weight: 800;
}

/* MOBILE MENU TOGGLE */
.gps-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.gps-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--gps-navy);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.gps-menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.gps-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.gps-menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 1024px) {
  .gps-nav { display: none; }
  .gps-menu-toggle { display: flex; }
  .gps-nav.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gps-white);
    box-shadow: var(--gps-shadow-lg);
    padding: 1rem 0;
  }
  .gps-nav.is-open .gps-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.5rem !important;
  }
  .gps-nav.is-open li {
    border-bottom: 1px solid var(--gps-gray-lighter);
  }
  .gps-nav.is-open a {
    padding: 0.875rem 0 !important;
    display: block;
  }
  .gps-nav.is-open .gps-nav-gc {
    margin-top: 0.5rem;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .gps-btn-call-header { padding: 0.5rem 0.75rem !important; }
  .gps-btn-call-label { font-size: 0.625rem; }
  .gps-btn-call-num { font-size: 0.875rem; }
  .gps-logo img { height: 48px; }
}

/* MOBILE STICKY CTA */
.gps-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.12);
}
.gps-mobile-call, .gps-mobile-whatsapp {
  flex: 1;
  text-align: center;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none !important;
}
.gps-mobile-call { background: var(--gps-amber); color: var(--gps-navy) !important; }
.gps-mobile-whatsapp { background: var(--gps-green); color: var(--gps-white) !important; }
@media (max-width: 1024px) {
  .gps-mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
}

/* HERO */
.gps-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--gps-white);
  padding: 6rem 0 5rem;
}
.gps-hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.gps-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gps-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(100deg,
    rgba(21, 40, 73, 0.92) 0%,
    rgba(31, 58, 104, 0.78) 45%,
    rgba(31, 58, 104, 0.35) 75%,
    rgba(31, 58, 104, 0.15) 100%);
}
.gps-hero .gps-container { position: relative; z-index: 3; }
.gps-hero-content { max-width: 720px; }
.gps-hero-headline {
  color: var(--gps-white);
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.gps-hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin: 0 0 2rem;
  opacity: 0.95;
  max-width: 600px;
  line-height: 1.5;
}
.gps-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.gps-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  list-style: none !important;
}
@media (max-width: 640px) {
  .gps-hero { min-height: 540px; padding: 4rem 0; }
  .gps-hero-overlay {
    background: linear-gradient(180deg,
      rgba(21, 40, 73, 0.88) 0%,
      rgba(21, 40, 73, 0.75) 100%);
  }
  .gps-hero-ctas .gps-btn { width: 100%; }
}

/* SECTIONS */
.gps-section { padding: 5rem 0; }
.gps-section-alt { background: var(--gps-off-white); }
.gps-section-navy { background: var(--gps-navy); color: var(--gps-white); }
.gps-section-navy h2, .gps-section-navy h3 { color: var(--gps-white); }
.gps-section-navy p { color: rgba(255,255,255,0.85); }
.gps-section-title { text-align: center; margin-bottom: 0.5rem; }
.gps-section-sub {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gps-gray-dark);
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .gps-section { padding: 3.5rem 0; }
  .gps-section-sub { margin-bottom: 2rem; }
}

/* SEGMENTER */
.gps-segmenter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gps-segmenter-card {
  background: var(--gps-white);
  border: 2px solid var(--gps-gray-lighter);
  border-radius: var(--gps-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.2s ease;
  color: var(--gps-charcoal);
}
.gps-segmenter-card:hover {
  border-color: var(--gps-amber);
  transform: translateY(-4px);
  box-shadow: var(--gps-shadow-lg);
}
.gps-segmenter-card-alt:hover { border-color: var(--gps-navy); }
.gps-segmenter-icon { font-size: 3rem; margin-bottom: 1rem; }
.gps-segmenter-card h3 { margin-bottom: 0.5rem; }
.gps-segmenter-card p { color: var(--gps-gray-dark); margin-bottom: 1rem; }
.gps-segmenter-cta {
  display: inline-block;
  color: var(--gps-navy);
  font-weight: 700;
}
@media (max-width: 768px) {
  .gps-segmenter-grid { grid-template-columns: 1fr; }
}

/* SERVICES */
.gps-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.gps-service-card {
  background: var(--gps-white);
  border-radius: var(--gps-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--gps-shadow-md);
  border-top: 6px solid var(--gps-blue);
}
.gps-service-electrical { border-top-color: var(--gps-amber); }
.gps-service-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.gps-service-icon { font-size: 2.5rem; }
.gps-service-header h3 { margin: 0; }
.gps-service-card > p {
  color: var(--gps-gray-dark);
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}
.gps-service-pricing {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 2rem !important;
  border-top: 1px solid var(--gps-gray-lighter);
}
.gps-service-pricing li {
  display: flex;
  justify-content: space-between;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gps-gray-lighter);
  font-weight: 500;
  list-style: none !important;
}
.gps-price { color: var(--gps-navy); font-weight: 700; }
@media (max-width: 768px) {
  .gps-services-grid { grid-template-columns: 1fr; }
  .gps-service-card { padding: 1.75rem; }
}

/* WHY GRID */
.gps-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.gps-why-card { text-align: center; padding: 1.5rem; }
.gps-why-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.gps-why-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.gps-why-card p { color: var(--gps-gray-dark); font-size: 0.9375rem; margin: 0; }
@media (max-width: 1024px) { .gps-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gps-why-grid { grid-template-columns: 1fr; } }

/* CITIES */
.gps-cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  margin: 2rem 0 1.5rem;
}
.gps-cities-grid a {
  background: var(--gps-white);
  border: 2px solid var(--gps-gray-lighter);
  padding: 1rem 1.25rem;
  text-align: center;
  border-radius: var(--gps-radius-md);
  font-weight: 600;
  color: var(--gps-navy);
  transition: all 0.2s ease;
}
.gps-cities-grid a:hover {
  border-color: var(--gps-amber);
  background: var(--gps-amber);
  color: var(--gps-navy);
}
@media (max-width: 768px) { .gps-cities-grid { grid-template-columns: repeat(2, 1fr); } }

/* TESTIMONIALS */
.gps-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
.gps-testimonial {
  background: var(--gps-white);
  border: 1px solid var(--gps-gray-lighter);
  border-radius: var(--gps-radius-lg);
  padding: 2rem;
  box-shadow: var(--gps-shadow-sm);
}
.gps-stars {
  color: var(--gps-amber);
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
  letter-spacing: 2px;
}
.gps-testimonial blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gps-charcoal);
  margin: 0 0 1rem;
  font-style: normal;
}
.gps-testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--gps-navy);
}
@media (max-width: 1024px) {
  .gps-testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 2rem auto 0; }
}

/* PROCESS */
.gps-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.gps-process-step { text-align: center; }
.gps-process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gps-amber);
  color: var(--gps-navy);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
@media (max-width: 768px) {
  .gps-process-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* CTA BAND */
.gps-cta-band {
  background: linear-gradient(135deg, var(--gps-navy) 0%, var(--gps-navy-dark) 100%);
  padding: 4rem 0;
  color: var(--gps-white);
}
.gps-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.gps-cta-band-text { flex: 1; }
.gps-cta-band h2 { color: var(--gps-white); margin: 0 0 0.5rem; }
.gps-cta-band p { margin: 0; opacity: 0.9; color: var(--gps-white); }
.gps-cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media (max-width: 768px) {
  .gps-cta-band-inner { flex-direction: column; text-align: center; }
}

/* FOOTER */
.gps-footer {
  background: var(--gps-charcoal);
  color: var(--gps-gray-light);
  padding: 4rem 0 1.5rem;
  font-size: 0.9375rem;
}
.gps-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.gps-footer-logo {
  max-height: 70px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.gps-footer-brand p {
  margin-bottom: 1rem;
  opacity: 0.85;
}
.gps-footer-brand a {
  color: var(--gps-white);
  font-weight: 600;
}
.gps-footer-brand a:hover { color: var(--gps-amber); }
.gps-footer-col h4 {
  color: var(--gps-white);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}
.gps-footer-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.gps-footer-col ul li {
  list-style: none !important;
  margin: 0 0 0.5rem !important;
}
.gps-footer-col ul a {
  color: var(--gps-gray-light);
  opacity: 0.85;
}
.gps-footer-col ul a:hover {
  color: var(--gps-amber);
  opacity: 1;
}
.gps-footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  opacity: 0.7;
  text-align: center;
}
.gps-footer-bottom p { margin: 0; }
@media (max-width: 1024px) {
  .gps-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gps-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .gps-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* PAGE HERO */
.gps-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  color: var(--gps-white);
  background: linear-gradient(135deg, var(--gps-navy) 0%, var(--gps-navy-dark) 100%);
  overflow: hidden;
}
.gps-page-hero-hvac {
  background: linear-gradient(135deg, var(--gps-navy) 0%, var(--gps-blue) 100%);
}
.gps-page-hero-electrical {
  background: linear-gradient(135deg, var(--gps-navy) 0%, var(--gps-amber-dark) 100%);
}
.gps-page-hero h1 {
  color: var(--gps-white);
  margin: 0.5rem 0 1rem;
}
.gps-page-hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin: 0 0 1.5rem;
  opacity: 0.95;
  max-width: 700px;
}
.gps-breadcrumb {
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.gps-breadcrumb a {
  color: var(--gps-white);
  font-weight: 500;
}
.gps-breadcrumb a:hover { color: var(--gps-amber); }
.gps-breadcrumb span:not(a) { opacity: 0.7; margin: 0 0.25rem; }
.gps-price-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.15);
  border-radius: var(--gps-radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
}

.gps-narrow { max-width: 800px; }

/* 6-COLUMN SERVICE TILES */
.gps-service-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.gps-service-tile {
  background: var(--gps-white);
  border: 1px solid var(--gps-gray-lighter);
  border-radius: var(--gps-radius-lg);
  padding: 2rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.gps-service-tile:hover {
  border-color: var(--gps-amber);
  transform: translateY(-4px);
  box-shadow: var(--gps-shadow-lg);
}
.gps-service-tile-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.gps-service-tile h3 { margin-bottom: 0.5rem; }
.gps-service-tile p {
  color: var(--gps-gray-dark);
  font-size: 0.9375rem;
  flex: 1;
}
.gps-service-tile-price {
  color: var(--gps-navy);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.gps-tile-link {
  color: var(--gps-navy);
  font-weight: 700;
}
.gps-tile-link:hover { color: var(--gps-blue); }
@media (max-width: 1024px) { .gps-service-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gps-service-grid-6 { grid-template-columns: 1fr; } }

/* FEATURE LIST */
.gps-feature-list {
  max-width: 700px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gps-feature {
  background: var(--gps-white);
  padding: 1rem 1.25rem;
  border-radius: var(--gps-radius-md);
  font-weight: 500;
  box-shadow: var(--gps-shadow-sm);
}

/* PROBLEM GRID */
.gps-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-top: 2rem;
}
.gps-problem {
  background: var(--gps-off-white);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gps-amber);
  border-radius: var(--gps-radius-sm);
  font-weight: 500;
}
@media (max-width: 768px) { .gps-problem-grid { grid-template-columns: 1fr; } }

/* CHECKLIST */
.gps-checklist {
  list-style: none !important;
  padding: 0 !important;
  margin: 2rem 0 !important;
  max-width: 600px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.gps-checklist li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--gps-gray-lighter);
  font-size: 1.0625rem;
}
.gps-checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gps-amber);
  font-weight: 800;
  font-size: 1.25rem;
}

/* INCLUDES GRID */
.gps-includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gps-include {
  background: var(--gps-white);
  padding: 1rem 1.25rem;
  border-radius: var(--gps-radius-md);
  font-weight: 500;
  box-shadow: var(--gps-shadow-sm);
}
@media (max-width: 600px) { .gps-includes-grid { grid-template-columns: 1fr; } }

/* PRICING TABLE */
.gps-pricing-table {
  max-width: 700px;
  margin: 2rem auto 0;
  background: var(--gps-white);
  border-radius: var(--gps-radius-lg);
  overflow: hidden;
  box-shadow: var(--gps-shadow-md);
  border: 1px solid var(--gps-gray-lighter);
}
.gps-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--gps-gray-lighter);
  font-weight: 500;
}
.gps-pricing-row:last-child { border-bottom: 0; }
.gps-pricing-row:hover { background: var(--gps-off-white); }

/* WHY LIST */
.gps-why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.gps-why-item {
  background: var(--gps-white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--gps-radius-lg);
  border-left: 4px solid var(--gps-amber);
  box-shadow: var(--gps-shadow-sm);
}
.gps-why-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}
.gps-why-item p {
  margin: 0;
  color: var(--gps-gray-dark);
}

/* FAQ */
.gps-faq {
  max-width: 800px;
  margin: 2rem auto 0;
}
.gps-faq details {
  background: var(--gps-white);
  border: 1px solid var(--gps-gray-lighter);
  border-radius: var(--gps-radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.2s ease;
}
.gps-faq details[open] {
  border-color: var(--gps-amber);
  box-shadow: var(--gps-shadow-sm);
}
.gps-faq summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  color: var(--gps-navy);
}
.gps-faq summary::-webkit-details-marker { display: none; }
.gps-faq summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gps-amber);
  font-weight: 400;
}
.gps-faq details[open] summary::after { content: "−"; }
.gps-faq details p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--gps-gray-dark);
}