/* ─── GOOGLE MAPS SEO PAGE ──────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
.gm-section { padding: 96px 0; }

h1, h2, h3 { text-transform: uppercase !important; }
.footer__logo img { height: 48px; width: auto; }

/* ─── HERO ──────────────────────────────────────────────────── */
.gm-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  padding-top: 80px;
}
.gm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.gm-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.gm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,18,0.96) 50%, rgba(10,10,18,0.3) 100%);
  z-index: 1;
}
.gm-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 60px;
  max-width: 660px;
}
.gm-hero__breadcrumb {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 18px;
}
.gm-hero__quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(206,15,15,0.12);
  border-left: 3px solid var(--red);
  padding: 10px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 28px;
}
.gm-hero__quote svg { flex-shrink: 0; color: var(--red); }
.gm-hero__headline {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.gm-hero__headline span { color: var(--red); }
.gm-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gm-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}
.gm-hero__bullets svg { flex-shrink: 0; color: var(--red); }
.gm-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.gm-hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(10,10,18,0.85);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.gm-hero__stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.gm-stat { text-align: center; }
.gm-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.gm-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 120px;
  display: block;
  margin: 4px auto 0;
}
.gm-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ─── TWO-COL EXPERTISE ─────────────────────────────────────── */
.gm-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.gm-two-col__text .label-tag { margin-bottom: 14px; display: block; }
.gm-two-col__text h2 { font-size: clamp(1.9rem,3vw,2.6rem); margin: 0 0 20px; line-height: 1.15; }
.gm-two-col__text p { color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.gm-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gm-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.gm-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.gm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gm-card {
  background: var(--gray-lt);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.gm-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.gm-card__icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.gm-card__icon svg { color: var(--red); }
.gm-card h3 {
  font-size: 0.9rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.25;
}
.gm-card p {
  font-size: 0.83rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.gm-how { background: var(--dark); color: #fff; }
.gm-how .section__header span,
.gm-how .section__header h2 { color: #fff; }
.gm-how .section__header p { color: rgba(255,255,255,0.65); }
.gm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.gm-step {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.gm-step__num {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
}
.gm-step h3 { font-size: 1rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.gm-step p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }

/* ─── 3-PACK IMPACT ─────────────────────────────────────────── */
.gm-impact {
  background: #0f0f18;
  color: #fff;
}
.gm-impact .section__header h2 { color: #fff; }
.gm-impact .section__header p { color: rgba(255,255,255,0.65); }
.gm-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.gm-impact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}
.gm-impact-card__num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.gm-impact-card h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin: 0 0 10px; }
.gm-impact-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* ─── SHINGLE BOX (WHAT YOU GET) ────────────────────────────── */
.gm-get { background: var(--gray-lt); }
.gm-shingle-wrap {
  position: relative;
  width: 56vw;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}
.gm-shingle-wrap__bg {
  position: absolute;
  inset: 0;
  background-image: url('brand assests/AdobeStock_360383413.jpeg');
  background-size: cover;
  background-position: center;
}
.gm-shingle-wrap__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.82);
}
.gm-shingle-content {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
}
.gm-shingle-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.gm-shingle-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 0 0 40px;
  line-height: 1.6;
}
.gm-shingle-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.gm-shingle-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.gm-shingle-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(206,15,15,0.15);
  border: 1px solid rgba(206,15,15,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gm-shingle-icon svg { color: var(--red); }
.gm-shingle-item h3 { font-size: 0.92rem; font-weight: 800; color: #fff; margin: 0 0 4px; }
.gm-shingle-item p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.55; }

/* ─── COMPARISON TABLE ──────────────────────────────────────── */
.gm-compare { background: var(--dark); color: #fff; }
.gm-compare .section__header h2 { color: #fff; }
.gm-compare .section__header p { color: rgba(255,255,255,0.65); }
.gm-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}
.gm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.gm-table thead th {
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.gm-table thead th:first-child { text-align: left; }
.gm-table thead th.th--vlex { color: var(--red); }
.gm-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.gm-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.gm-table tbody td {
  padding: 14px 20px;
  color: rgba(255,255,255,0.75);
  text-align: center;
}
.gm-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #fff;
}
.gm-check { color: #22c55e; font-size: 1.1rem; font-weight: 700; }
.gm-cross { color: rgba(255,255,255,0.25); font-size: 1.1rem; }
.gm-table thead th.th--vlex-col,
.gm-table tbody td.td--vlex {
  background: rgba(206,15,15,0.08);
  border-left: 1px solid rgba(206,15,15,0.2);
  border-right: 1px solid rgba(206,15,15,0.2);
}

/* ─── WARNING / WHY TRUST ───────────────────────────────────── */
.gm-warning { background: var(--red); color: #fff; }
.gm-warning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gm-warning h2 { font-size: clamp(1.8rem,3vw,2.5rem); color: #fff; margin: 0 0 20px; line-height: 1.15; }
.gm-warning p { color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 16px; }
.gm-warning .btn--primary { background: #fff; color: var(--red); border-color: #fff; }
.gm-warning .btn--primary:hover { background: rgba(255,255,255,0.9); }
.gm-warning-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gm-warning-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
}
.gm-warning-point__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gm-warning-point h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin: 0 0 6px; }
.gm-warning-point p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0; line-height: 1.55; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.gm-faq { background: #fff; }
.gm-faq__list { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.gm-faq__item {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.gm-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.gm-faq__q:hover { background: var(--gray-lt); }
.gm-faq__icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  display: inline-block !important;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.gm-faq__item.open .gm-faq__icon { transform: rotate(45deg); }
.gm-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}
.gm-faq__item.open .gm-faq__a { max-height: 500px; padding: 0 24px 22px; }
.gm-faq__a p { margin: 0; color: var(--gray); line-height: 1.75; font-size: 0.95rem; }

/* ─── CTA FORM ──────────────────────────────────────────────── */
.gm-cta-form { background: var(--gray-lt); }
.gm-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.gm-form-text h2 { font-size: clamp(1.9rem,3vw,2.6rem); margin: 0 0 16px; line-height: 1.15; }
.gm-form-text p { color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.gm-form-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gm-form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.93rem;
}
.gm-form-perks li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.gm-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.gm-form-card h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 6px; }
.gm-form-card > p { font-size: 0.88rem; color: var(--gray); margin: 0 0 28px; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .gm-two-col,
  .gm-steps,
  .gm-impact-grid,
  .gm-warning-inner,
  .gm-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gm-cards { grid-template-columns: 1fr; }
  .gm-shingle-wrap { width: 94vw; }
  .gm-shingle-list { grid-template-columns: 1fr; }
  .gm-hero__stats-inner { flex-direction: column; gap: 16px; }
  .gm-stat-div { display: none; }
}

/* ─── MOBILE IMPROVEMENTS ──────────────────────────────────── */
@media (max-width: 768px) {
  .gm-section { padding: 60px 0; }
  .gm-hero { padding-top: 60px; min-height: auto; }
  .gm-hero__inner { padding-top: 40px; padding-bottom: 36px; max-width: 100%; }
  .gm-hero__headline { font-size: clamp(1.75rem, 7.5vw, 2.6rem); }
  .gm-hero__quote { font-size: 0.78rem; }
  .gm-hero__stats-inner { flex-direction: column; align-items: flex-start; padding: 20px 0; gap: 12px; }
  .gm-stat { display: flex; align-items: center; gap: 12px; text-align: left; }
  .gm-stat strong { font-size: 1.5rem; }
  .gm-stat span { max-width: 100%; margin: 0; font-size: 0.75rem; }
  .gm-stat-div { display: none; }
  .gm-steps { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .gm-impact-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .gm-form-card { padding: 28px 24px; }
  .gm-shingle-content { padding: 36px 24px; }
  .gm-faq__list { margin-top: 32px; }
  .gm-faq__q { font-size: 0.9rem; padding: 18px 20px; }
  .gm-cards { grid-template-columns: 1fr; }
  .gm-table-wrap { margin-top: 32px; }
}

@media (max-width: 480px) {
  .gm-section { padding: 48px 0; }
  .gm-hero { padding-top: 60px; }
  .gm-hero__inner { padding-top: 28px; padding-bottom: 28px; }
  .gm-hero__headline { font-size: clamp(1.55rem, 7vw, 2rem); }
  .gm-hero__bullets li { font-size: 0.88rem; }
  .gm-hero__actions .btn { width: 100%; justify-content: center; }
  .gm-shingle-wrap { width: 92vw; border-radius: 10px; left: 50%; transform: translateX(-50%); }
  .gm-shingle-wrap__bg { background-size: 120% auto; background-position: center top; }
  .gm-shingle-content { padding: 32px 20px; }
  .gm-form-card { padding: 24px 16px; }
  .gm-warning-inner { gap: 28px; }
  .gm-warning-points { gap: 14px; }
  .gm-warning-point { padding: 16px; }
  .gm-impact-card { padding: 28px 20px; }
}
