/* =========================================================================
   Get A Quote landing page
   Self-contained, scoped under .gq-page so it never collides with main.css.
   Themed in the Thrifty Engines brand palette: red #d31129 + navy #0b1126.
   ========================================================================= */

.gq-page {
  /* ---- brand palette ---- */
  --gq-bg: #ffffff;
  --gq-fg: #1a1a1a;
  --gq-card: #ffffff;
  --gq-primary: #d31129;            /* brand red */
  --gq-primary-hover: #b00e22;
  --gq-primary-glow: #ff3b52;       /* brighter red accent on dark backgrounds */
  --gq-primary-fg: #ffffff;
  --gq-secondary: #f6f7f9;
  --gq-muted: #f4f4f4;
  --gq-muted-fg: #666666;
  --gq-border: #e6e7ea;
  --gq-input: #d6d8dd;
  --gq-success: #1f9d57;
  --gq-warning: #f5a623;
  --gq-destructive: #e23b2e;

  --gq-navy: #141a33;
  --gq-navy-deep: #0b1126;          /* brand nav background */
  --gq-navy-soft: #1e2745;
  --gq-navy-fg: #ffffff;

  /* translucent helpers */
  --gq-red-10: rgba(211, 17, 41, 0.10);
  --gq-red-15: rgba(211, 17, 41, 0.15);
  --gq-red-20: rgba(211, 17, 41, 0.20);
  --gq-red-30: rgba(211, 17, 41, 0.30);
  --gq-navy-soft-40: rgba(30, 39, 69, 0.40);
  --gq-navy-soft-60: rgba(30, 39, 69, 0.60);
  --gq-navy-deep-80: rgba(11, 17, 38, 0.80);
  --gq-white-10: rgba(255, 255, 255, 0.10);
  --gq-white-15: rgba(255, 255, 255, 0.15);
  --gq-white-25: rgba(255, 255, 255, 0.25);
  --gq-white-65: rgba(255, 255, 255, 0.65);
  --gq-white-75: rgba(255, 255, 255, 0.75);
  --gq-white-85: rgba(255, 255, 255, 0.85);

  --gq-gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(211, 17, 41, 0.38), transparent 60%),
    linear-gradient(135deg, var(--gq-navy-deep), var(--gq-navy));
  --gq-gradient-primary: linear-gradient(135deg, var(--gq-primary), var(--gq-primary-glow));
  --gq-gradient-dark: linear-gradient(180deg, var(--gq-navy-deep), var(--gq-navy));

  --gq-shadow-elegant: 0 20px 50px -20px rgba(11, 17, 38, 0.38);
  --gq-shadow-glow: 0 0 60px -10px rgba(211, 17, 41, 0.5);
  --gq-shadow-card: 0 4px 16px -4px rgba(11, 17, 38, 0.12);

  --gq-radius: 0.75rem;

  font-family: 'Archivo', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--gq-fg);
  background: var(--gq-bg);
  -webkit-font-smoothing: antialiased;
}

.gq-page *,
.gq-page *::before,
.gq-page *::after {
  box-sizing: border-box;
}

.gq-page h1,
.gq-page h2,
.gq-page h3,
.gq-page h4 {
  font-family: 'Archivo', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

.gq-page p { margin: 0; }
.gq-page a { text-decoration: none; color: inherit; }

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

/* ---- buttons ---- */
.gq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--gq-radius);
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
  line-height: 1;
}
.gq-btn svg { width: 1rem; height: 1rem; flex: none; }
.gq-btn-primary {
  background: var(--gq-primary);
  color: var(--gq-primary-fg);
  box-shadow: var(--gq-shadow-glow);
}
.gq-btn-primary:hover { background: var(--gq-primary-hover); }
.gq-btn-outline-light {
  border-color: var(--gq-white-25);
  color: var(--gq-navy-fg);
  background: transparent;
}
.gq-btn-outline-light:hover { background: rgba(255, 255, 255, 0.06); }
.gq-btn-block { width: 100%; }

.gq-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gq-primary);
}

/* =========================================================================
   HERO
   ========================================================================= */
.gq-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 3rem;
  background: var(--gq-gradient-hero);
  color: var(--gq-navy-fg);
}
.gq-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.40;
}
.gq-hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gq-navy-deep) 0%, transparent 45%, transparent 55%, var(--gq-navy-deep) 100%);
}
.gq-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--gq-navy-deep) 100%);
}
.gq-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.gq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--gq-red-30);
  background: var(--gq-red-15);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gq-primary-glow);
}
.gq-badge svg { width: 0.9rem; height: 0.9rem; }
.gq-hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
}
.gq-hero h1 .accent,
.gq-hero .gq-hero-sub .accent { color: var(--gq-primary-glow); }
.gq-hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gq-white-75);
  max-width: 32rem;
}
.gq-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.gq-hero-phone {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gq-white-85);
  font-size: 0.9rem;
}
.gq-hero-phone svg { width: 1.25rem; height: 1.25rem; color: var(--gq-primary-glow); }
.gq-hero-phone a { color: var(--gq-primary-glow); font-weight: 700; }

.gq-trust-chips {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.gq-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  border-radius: var(--gq-radius);
  border: 1px solid var(--gq-white-15);
  background: var(--gq-navy-soft-60);
  backdrop-filter: blur(6px);
  padding: 0.6rem 1rem;
}
.gq-chip-ic {
  height: 2rem; width: 2rem;
  border-radius: 0.4rem;
  background: var(--gq-red-20);
  color: var(--gq-primary-glow);
  display: flex; align-items: center; justify-content: center;
}

.gq-trust-chips.hide-on-web { display: none; }
@media (max-width: 768px) {
  .gq-trust-chips.hide-on-mobile { display: none; }
  .gq-trust-chips.hide-on-web { display: grid; }
}
.gq-chip-ic svg { width: 1rem; height: 1rem; }
.gq-chip-t { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }
.gq-chip-s { font-size: 0.7rem; color: var(--gq-white-65); }

/* search / quote card */
.gq-search-card {
  border-radius: 1rem;
  background: var(--gq-card);
  color: var(--gq-fg);
  box-shadow: var(--gq-shadow-elegant);
  padding: 1.75rem;
  border: 1px solid var(--gq-border);
}
.gq-search-card h2 { font-size: 1.5rem; font-weight: 700; }
.gq-search-card .gq-card-sub { font-size: 0.875rem; color: var(--gq-muted-fg); margin-top: 0.25rem; }
.gq-tabs {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: var(--gq-radius);
  background: var(--gq-muted);
}
.gq-tab {
  border: none;
  border-radius: calc(var(--gq-radius) - 2px);
  background: transparent;
  color: var(--gq-fg);
  padding: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.gq-tab.active {
  background: var(--gq-primary);
  color: var(--gq-primary-fg);
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.gq-fields { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.gq-field > span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gq-muted-fg);
  margin-bottom: 0.3rem;
}
.gq-page .gq-field select,
.gq-page .gq-field input {
  width: 100%;
  border-radius: var(--gq-radius);
  border: 1px solid var(--gq-input);
  background: var(--gq-bg);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--gq-fg);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s ease;
}
.gq-page .gq-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.gq-page .gq-field select:focus,
.gq-page .gq-field input:focus {
  outline: none;
  border-color: var(--gq-primary);
}
.gq-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.gq-card-foot { margin-top: 1rem; text-align: center; font-size: 0.85rem; color: var(--gq-muted-fg); }

/* hero highlight strip */
.gq-highlights {
  position: relative;
  margin-top: 3rem;
}
.gq-highlights-inner {
  border-radius: 1rem;
  border: 1px solid var(--gq-white-10);
  background: var(--gq-navy-soft-40);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .gq-highlights-inner { display: none; }
}
.gq-hl { display: flex; align-items: center; gap: 0.75rem; }
.gq-hl-ic {
  height: 2.5rem; width: 2.5rem; flex: none;
  border-radius: var(--gq-radius);
  background: var(--gq-red-15);
  border: 1px solid var(--gq-red-30);
  color: var(--gq-primary-glow);
  display: flex; align-items: center; justify-content: center;
}
.gq-hl-ic svg { width: 1.25rem; height: 1.25rem; }
.gq-hl-v { font-weight: 700; }
.gq-hl-l { font-size: 0.75rem; color: var(--gq-white-65); }

/* =========================================================================
   GENERIC SECTION
   ========================================================================= */
.gq-section { padding: 5rem 0; }
.gq-section.gq-bg-secondary { background: var(--gq-secondary); }
.gq-section.gq-bg-dark { background: var(--gq-gradient-dark); color: var(--gq-navy-fg); }
.gq-section h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
.gq-section-head { max-width: 42rem; }
.gq-section-head.center { margin: 0 auto; text-align: center; }
.gq-section-head h2 { margin-top: 0.75rem; }
.gq-section-head p { margin-top: 1rem; color: var(--gq-muted-fg); }
.gq-bg-dark .gq-section-head p { color: var(--gq-white-75); }

/* ---- Inventory ---- */
.gq-inv-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 3rem;
}
.gq-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; color: var(--gq-primary);
}
.gq-link svg { width: 1rem; height: 1rem; }
.gq-link:hover { color: var(--gq-primary-hover); }
.gq-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.gq-card {
  border-radius: 1rem;
  border: 1px solid var(--gq-border);
  background: var(--gq-card);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.gq-card:hover { box-shadow: var(--gq-shadow-elegant); transform: translateY(-4px); }
.gq-card-img { aspect-ratio: 4/3; background: var(--gq-muted); overflow: hidden; }
.gq-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gq-card:hover .gq-card-img img { transform: scale(1.05); }
.gq-card-body { padding: 1.25rem; }
.gq-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.7rem; font-weight: 600; color: var(--gq-success);
}
.gq-tag svg { width: 0.9rem; height: 0.9rem; }
.gq-card-body h3 { margin-top: 0.5rem; font-size: 1rem; font-weight: 700; }
.gq-card-body .gq-spec { font-size: 0.875rem; color: var(--gq-muted-fg); margin-top: 0.15rem; }
.gq-card-foot-row {
  margin-top: 1rem; display: flex; align-items: center; justify-content: space-between;
}
.gq-card-foot-row .gq-link { font-size: 0.85rem; }
.gq-card-foot-row span { font-size: 0.75rem; color: var(--gq-muted-fg); }

/* ---- Stats ---- */
.gq-stats-head { text-align: center; }
.gq-stats-head .accent { color: var(--gq-primary-glow); }
.gq-stats-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
.gq-stat-v { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--gq-primary-glow); }
.gq-stat-l { margin-top: 0.5rem; font-size: 0.875rem; color: var(--gq-white-75); }

/* ---- Process ---- */
.gq-steps {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.gq-step {
  position: relative;
  border-radius: 1rem;
  background: var(--gq-card);
  border: 1px solid var(--gq-border);
  padding: 1.5rem;
  box-shadow: var(--gq-shadow-card);
}
.gq-step-n { font-size: 3rem; font-weight: 700; color: var(--gq-red-15); line-height: 1; }
.gq-step-ic {
  margin-top: -1.5rem;
  height: 3rem; width: 3rem;
  border-radius: var(--gq-radius);
  background: var(--gq-primary); color: var(--gq-primary-fg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--gq-shadow-glow);
}
.gq-step-ic svg { width: 1.25rem; height: 1.25rem; }
.gq-step h3 { margin-top: 1.25rem; font-size: 1.1rem; font-weight: 700; }
.gq-step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--gq-muted-fg); line-height: 1.6; }

/* ---- Reviews ---- */
.gq-reviews {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.gq-review {
  border-radius: 1rem;
  border: 1px solid var(--gq-border);
  background: var(--gq-card);
  padding: 1.5rem;
  box-shadow: var(--gq-shadow-card);
}
.gq-stars { display: flex; gap: 0.15rem; color: var(--gq-warning); }
.gq-stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.gq-review p { margin-top: 1rem; color: var(--gq-fg); line-height: 1.6; }
.gq-review-who { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--gq-border); }
.gq-review-who .nm { font-weight: 600; }
.gq-review-who .ro { font-size: 0.75rem; color: var(--gq-muted-fg); }
.gq-reviews-foot {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.5rem; font-size: 0.9rem; color: var(--gq-muted-fg);
}
.gq-reviews-foot .gq-stars { align-items: center; }
.gq-reviews-foot .gq-stars b { color: var(--gq-fg); margin-left: 0.25rem; }

/* ---- Comparison ---- */
.gq-compare {
  margin-top: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--gq-border);
  background: var(--gq-card);
  overflow: hidden;
  box-shadow: var(--gq-shadow-card);
}
.gq-compare-row {
  display: grid;
  grid-template-columns: 1fr 5rem 5rem;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
}
.gq-compare-head {
  background: var(--gq-muted);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gq-muted-fg);
}
.gq-compare-head .us { text-align: center; color: var(--gq-primary); }
.gq-compare-head .them { text-align: center; }
.gq-compare-row.alt { background: #fafafa; }
.gq-mark { margin: 0 auto; height: 1.75rem; width: 1.75rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.gq-mark svg { width: 1rem; height: 1rem; }
.gq-mark.yes { background: rgba(31, 157, 87, 0.15); color: var(--gq-success); }
.gq-mark.no { background: rgba(226, 59, 46, 0.12); color: var(--gq-destructive); }

/* ---- Shipping ---- */
.gq-ship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.gq-ship-points { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gq-ship-point {
  border-radius: var(--gq-radius);
  border: 1px solid var(--gq-white-15);
  background: var(--gq-navy-soft-40);
  backdrop-filter: blur(6px);
  padding: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.gq-ship-point .ic {
  height: 2.5rem; width: 2.5rem; flex: none;
  border-radius: var(--gq-radius);
  background: var(--gq-red-20); color: var(--gq-primary-glow);
  display: flex; align-items: center; justify-content: center;
}
.gq-ship-point .ic svg { width: 1.25rem; height: 1.25rem; }
.gq-ship-point .v { font-weight: 700; }
.gq-ship-point .l { font-size: 0.75rem; color: var(--gq-white-65); }
.gq-ship-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--gq-white-15);
  box-shadow: var(--gq-shadow-elegant);
}
.gq-ship-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gq-ship-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--gq-navy-deep) 100%);
}
.gq-ship-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; z-index: 1;
  display: flex; align-items: center; gap: 0.75rem;
  border-radius: var(--gq-radius);
  background: var(--gq-navy-deep-80);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gq-white-15);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.gq-ship-badge .dot { height: 0.5rem; width: 0.5rem; border-radius: 999px; background: var(--gq-success); animation: gq-pulse 1.6s ease-in-out infinite; }
@keyframes gq-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---- FAQ ---- */
.gq-faq { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.gq-faq-item {
  border-radius: var(--gq-radius);
  border: 1px solid var(--gq-border);
  background: var(--gq-card);
  overflow: hidden;
}
.gq-faq-item[open] { box-shadow: var(--gq-shadow-card); }
.gq-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.gq-faq-item summary::-webkit-details-marker { display: none; }
.gq-faq-item summary .chev { transition: transform .2s ease; flex: none; }
.gq-faq-item summary .chev svg { width: 1.1rem; height: 1.1rem; }
.gq-faq-item[open] summary .chev { transform: rotate(180deg); }
.gq-faq-item .gq-faq-a { padding: 0 1.25rem 1.2rem; color: var(--gq-muted-fg); line-height: 1.6; }

/* ---- Quote CTA ---- */
.gq-cta {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 3rem;
  color: var(--gq-navy-fg);
  background: var(--gq-gradient-primary);
  max-width: 64rem;
  margin: 0 auto;
}
.gq-cta::before {
  content: ""; position: absolute; top: -5rem; right: -5rem;
  height: 18rem; width: 18rem; border-radius: 999px;
  background: rgba(255, 59, 82, 0.35); filter: blur(60px);
}
.gq-cta-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.gq-cta .gq-eyebrow { color: var(--gq-white-85); }
.gq-cta h2 { margin-top: 0.75rem; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; }
.gq-cta p { margin-top: 0.75rem; color: var(--gq-white-85); }
.gq-cta-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.gq-btn-navy { background: var(--gq-navy-deep); color: var(--gq-navy-fg); box-shadow: none; }
.gq-btn-navy:hover { background: var(--gq-navy); }
.gq-btn-glass { background: var(--gq-white-10); border: 1px solid var(--gq-white-25); color: var(--gq-navy-fg); backdrop-filter: blur(6px); box-shadow: none; }
.gq-btn-glass:hover { background: var(--gq-white-15); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-width: 640px) {
  .gq-cards { grid-template-columns: 1fr 1fr; }
  .gq-highlights-inner { gap: 1.5rem; }
}
@media (min-width: 768px) {
  .gq-hero { padding: 2.75rem 0 4rem; }
  .gq-section { padding: 7rem 0; }
  .gq-section#faq { padding: 0; }
  .gq-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .gq-steps { grid-template-columns: 1fr 1fr; }
  .gq-reviews { grid-template-columns: 1fr 1fr 1fr; }
  .gq-ship-points { grid-template-columns: 1fr 1fr; }
  .gq-cta { padding: 3.5rem; }
  .gq-cta-grid { grid-template-columns: 1.4fr 1fr; }
}
@media (min-width: 1024px) {
  .gq-hero-grid { grid-template-columns: 1fr 1fr; }
  .gq-highlights-inner { grid-template-columns: repeat(4, 1fr); }
  .gq-cards { grid-template-columns: repeat(4, 1fr); }
  .gq-steps { grid-template-columns: repeat(4, 1fr); }
  .gq-ship-grid { grid-template-columns: 1fr 1fr; }
}