/* Garage door landing — scoped to #gdm to avoid clashes with site header/footer */
#gdm {
  --color-text: #1a1a1a;
  --color-bg: #ffffff;
  --accent: #e8530a;
  --accent-dark: #c44308;
  --accent-light: #ff6b1a;
  --black: #111111;
  --off-black: #1c1c1c;
  --mid: #555555;
  --muted: #888888;
  --surface: #f7f6f4;
  --surface2: #eeecea;
  --white: #ffffff;
  --border: #e2e0da;
  --green: #2a8a4e;
  --page-max: 1140px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  font-family: var(--font);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#gdm *,
#gdm *::before,
#gdm *::after {
  box-sizing: border-box;
}

#gdm .pg {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 32px;
}

#gdm p {
  max-width: 65ch;
  margin-bottom: 1.1em;
}

#gdm .section {
  padding: 80px 0;
}

#gdm .section + .section {
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  #gdm .pg {
    padding: 0 20px;
  }
  #gdm .section {
    padding: 56px 0;
  }
}

#gdm .breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

#gdm .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}

#gdm .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

#gdm .breadcrumb a:hover {
  color: var(--accent);
}

#gdm .breadcrumb-sep {
  color: var(--border);
}

#gdm .breadcrumb-current {
  color: var(--color-text);
  font-weight: 500;
}

#gdm .hero {
  background: var(--off-black);
  background-image: linear-gradient(
      110deg,
      rgba(17, 17, 17, 0.97) 40%,
      rgba(17, 17, 17, 0.75) 70%,
      rgba(232, 83, 10, 0.12) 100%
    ),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 96px 0 80px;
}

#gdm .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 83, 10, 0.15);
  border: 1px solid rgba(232, 83, 10, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

#gdm .hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
}

#gdm .hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 780px;
  margin-bottom: 22px;
}

#gdm .hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 62ch;
  margin-bottom: 32px;
  line-height: 1.7;
}

#gdm .quick-answer {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 28px 0;
  max-width: 62ch;
}

#gdm .quick-answer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
  max-width: none;
}

#gdm .hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  max-width: 540px;
  flex-wrap: wrap;
}

#gdm .hero-stat {
  display: flex;
  flex-direction: column;
}

#gdm .hero-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

#gdm .hero-stat-num span {
  color: var(--accent-light);
}

#gdm .hero-stat-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 500;
}

#gdm .author-line {
  margin-top: 28px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

#gdm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.15s,
    box-shadow 0.15s,
    border-color 0.15s,
    color 0.15s;
  min-height: 48px;
}

#gdm .btn-lg {
  font-size: 1rem;
  padding: 15px 32px;
}

#gdm .btn-md {
  font-size: 0.9rem;
  padding: 12px 24px;
}

#gdm .btn-primary {
  background: var(--accent);
  color: var(--white);
}

#gdm .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 83, 10, 0.35);
}

#gdm .btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

#gdm .btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
}

#gdm .btn-white {
  background: var(--white);
  color: var(--accent);
}

#gdm .btn-white:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

#gdm .cta-note,
#gdm .cta-note-band {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  display: block;
}

#gdm .cta-note-band {
  color: rgba(255, 255, 255, 0.6);
}

#gdm .partners-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

#gdm .partners-section-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

#gdm .partners-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
  max-width: none;
}

#gdm .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 767px) {
  #gdm .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  #gdm .partner-grid {
    grid-template-columns: 1fr;
  }
}

#gdm .partner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}

#gdm .partner-card:hover {
  border-color: #d0cdc7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#gdm .partner-card-logo {
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 56px;
}

#gdm .partner-card-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

#gdm .partner-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#gdm .partner-card-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gdm .partner-card-desc {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#gdm .photo-banner {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gdm .photo-banner.short {
  height: 300px;
}

#gdm .photo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#gdm .photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

#gdm .photo-banner-overlay.left {
  background: linear-gradient(
    to right,
    rgba(17, 17, 17, 0.92) 45%,
    rgba(17, 17, 17, 0.35) 100%
  );
  align-items: center;
  justify-content: flex-start;
}

#gdm .photo-banner-caption {
  background: rgba(17, 17, 17, 0.84);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 28px 36px;
  max-width: 580px;
  text-align: center;
}

#gdm .photo-banner-caption p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
  max-width: none;
  line-height: 1.6;
}

#gdm .photo-banner-caption cite {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  font-style: normal;
}

#gdm .photo-banner-left-content {
  max-width: var(--page-max);
  width: 100%;
  padding: 0 32px;
}

#gdm .photo-banner-left-content h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  max-width: 520px;
}

#gdm .photo-banner-left-content p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin-bottom: 20px;
}

#gdm .section-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

#gdm h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}

#gdm h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

#gdm .surface-section {
  background: var(--surface);
}

#gdm .buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 767px) {
  #gdm .buyer-grid {
    grid-template-columns: 1fr;
  }
}

#gdm .buyer-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
}

#gdm .buyer-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

#gdm .buyer-card p {
  font-size: 0.84rem;
  color: var(--mid);
  margin: 0;
  max-width: none;
}

#gdm .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1023px) {
  #gdm .two-col {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

#gdm .two-col-img {
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
}

#gdm .two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#gdm .process-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
}

#gdm .process-list li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.91rem;
  color: var(--color-text);
}

#gdm .process-list li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

#gdm .audit-checklist {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  margin-top: 20px;
}

#gdm .audit-checklist h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}

#gdm .audit-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#gdm .audit-checklist li {
  font-size: 0.84rem;
  color: var(--color-text);
  padding-left: 22px;
  position: relative;
}

#gdm .audit-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

#gdm .service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

@media (max-width: 1023px) {
  #gdm .service-grid {
    grid-template-columns: 1fr;
  }
}

#gdm .service-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 26px;
  background: var(--white);
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
}

#gdm .service-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-color: #d0cdc7;
}

#gdm .service-card-num {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

#gdm .service-card p {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 10px;
}

#gdm .service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#gdm .service-card ul li {
  font-size: 0.82rem;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}

#gdm .service-card ul li::before {
  content: "\2022";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 900;
}

#gdm .cta-band {
  background: var(--accent);
  padding: 56px 0;
}

#gdm .cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

#gdm .cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: 24px;
}

#gdm .comparison-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
}

#gdm .comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

#gdm .comparison-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--border);
  background: var(--surface2);
}

#gdm .comparison-table th.hl {
  background: rgba(232, 83, 10, 0.08);
  color: var(--accent);
}

#gdm .comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  vertical-align: top;
}

#gdm .comparison-table td.hl {
  background: rgba(232, 83, 10, 0.04);
  font-weight: 600;
  color: var(--color-text);
}

#gdm .comparison-table tr:last-child td {
  border-bottom: none;
}

#gdm .table-cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

#gdm .report-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

#gdm .report-list li {
  font-size: 0.9rem;
  color: var(--mid);
  padding-left: 24px;
  position: relative;
}

#gdm .report-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

#gdm .dark-section {
  background: var(--off-black);
  padding: 80px 0;
}

#gdm .dark-section h2 {
  color: var(--white);
}

#gdm .dark-section .section-label {
  color: var(--accent-light);
}

#gdm .closing-cta {
  background: var(--off-black);
  background-image: linear-gradient(
      rgba(28, 28, 28, 0.93),
      rgba(28, 28, 28, 0.93)
    ),
    url("https://images.unsplash.com/photo-1553484771-371a605b060b?w=1600&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  padding: 96px 0;
}

#gdm .closing-cta h2 {
  color: var(--white);
  max-width: 640px;
  margin-bottom: 16px;
}

#gdm .qualifying-para {
  color: rgba(255, 255, 255, 0.7);
  max-width: 58ch;
  margin-bottom: 28px;
}

#gdm .no-risk {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}

#gdm .contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  #gdm .contact-options {
    grid-template-columns: 1fr;
  }
}

#gdm .contact-method {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#gdm .contact-method strong {
  color: var(--white);
  font-size: 0.88rem;
}

#gdm .contact-method a {
  color: var(--accent-light);
  font-size: 0.92rem;
  text-decoration: none;
  font-weight: 600;
}

#gdm .contact-method a:hover {
  text-decoration: underline;
}

#gdm .contact-method span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}

#gdm .privacy-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 20px;
}

#gdm .faq-section {
  background: var(--surface);
}

#gdm .faq-stack details {
  border-bottom: 1px solid var(--border);
}

#gdm .faq-stack details:first-child {
  border-top: 1px solid var(--border);
}

#gdm summary {
  padding: 18px 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

#gdm summary::-webkit-details-marker {
  display: none;
}

#gdm summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}

#gdm details[open] summary::after {
  content: "\2212";
}

#gdm .faq-answer {
  padding: 0 4px 18px;
  color: var(--mid);
  font-size: 0.91rem;
  max-width: none;
  line-height: 1.65;
}

#gdm .faq-answer p {
  max-width: none;
}

#gdm .compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 767px) {
  #gdm .compliance-grid {
    grid-template-columns: 1fr;
  }
}

#gdm .compliance-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 24px 26px;
}

#gdm .compliance-card h3 {
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

#gdm .compliance-card h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

#gdm .compliance-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

#gdm .related-section {
  background: var(--surface);
  padding: 48px 0;
}

#gdm .related-section h3 {
  margin-bottom: 20px;
  font-size: 1rem;
}

#gdm .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#gdm .related-link {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  background: var(--white);
  transition:
    border-color 0.15s,
    color 0.15s;
}

#gdm .related-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#gdm .sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--off-black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  z-index: 200;
  gap: 10px;
}

@media (max-width: 767px) {
  #gdm .sticky-mobile-bar {
    display: flex;
  }

  #gdm {
    padding-bottom: 72px;
  }
}

#gdm .sticky-mobile-bar a {
  flex: 1;
  text-align: center;
  font-size: 0.84rem;
  min-height: 48px;
}
