/* dnd-gear.css — styles for /dnd-gear SEO landing page only */

/* Breadcrumb */
.dg-breadcrumb {
  padding: 12px 40px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.dg-breadcrumb-inner { max-width: 1100px; margin: 0 auto; }
.dg-breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.dg-breadcrumb a:hover { color: var(--accent); }

/* Hero */
.dg-hero {
  padding: 80px 40px 64px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255,87,34,0.1) 0%, transparent 70%);
}
.dg-hero-inner { max-width: 760px; margin: 0 auto; }
.dg-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 16px 0 20px;
  color: var(--fg);
}
.dg-hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.dg-hero-sub strong { color: var(--fg); }
.dg-hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.dg-hero-keywords span {
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid rgba(255,87,34,0.3);
  background: rgba(255,87,34,0.06);
  padding: 4px 12px;
  border-radius: 100px;
}
.dg-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-ghost {
  display: inline-block;
  padding: 12px 24px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--fg); border-color: rgba(245,240,232,0.2); }

/* Promo strip */
.dg-promo-strip {
  background: rgba(255,87,34,0.08);
  border-top: 1px solid rgba(255,87,34,0.2);
  border-bottom: 1px solid rgba(255,87,34,0.2);
  padding: 12px 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  align-items: center;
}
.dg-promo-strip strong { color: var(--accent); }
.dg-strip-sep { color: var(--border); }

/* Section layout */
.dg-section { padding: 72px 40px; }
.dg-section-alt { background: var(--bg-2); }
.dg-section-inner { max-width: 1100px; margin: 0 auto; }
.dg-h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--fg);
}
.dg-section-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.65;
}
.dg-section-sub strong { color: var(--fg); }

/* Product grid */
.dg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.dg-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.dg-section-alt .dg-card { background: var(--bg); }
.dg-card:hover { border-color: rgba(255,87,34,0.3); transform: translateY(-2px); }
.dg-card-link { display: block; text-decoration: none; color: inherit; }
.dg-card-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: #1a1a1a; }
.dg-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.dg-card:hover .dg-card-img { transform: scale(1.04); }
.dg-card-placeholder { width: 100%; height: 100%; background: #1a1a1a; }
.dg-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(13,13,13,0.85);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255,87,34,0.3);
}
.dg-card-body { padding: 16px; }
.dg-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--fg);
}
.dg-card-footer { display: flex; justify-content: space-between; align-items: center; }
.dg-card-price { font-weight: 600; font-size: 1rem; color: var(--fg); }
.dg-card-cta { font-size: 0.82rem; color: var(--accent); }

/* Social proof strip */
.dg-social-proof {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dg-sp-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.dg-sp-stat { display: flex; flex-direction: column; gap: 4px; }
.dg-sp-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.dg-sp-label { font-size: 0.82rem; color: var(--fg-muted); }

/* FAQ */
.dg-faq { padding: 72px 40px; background: var(--bg-2); }
.dg-faq-inner { max-width: 760px; margin: 0 auto; }
.dg-faq .dg-h2 { margin-bottom: 40px; }
.dg-faq-list { display: flex; flex-direction: column; gap: 4px; }
.dg-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.dg-faq-item[open] { border-color: rgba(255,87,34,0.25); }
.dg-faq-q {
  padding: 18px 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg);
  user-select: none;
}
.dg-faq-q::-webkit-details-marker { display: none; }
.dg-faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.2s;
}
.dg-faq-item[open] .dg-faq-q::after { content: '−'; }
.dg-faq-a {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.dg-faq-a strong { color: var(--fg); }
.dg-faq-a a { color: var(--accent); text-decoration: none; }
.dg-faq-a a:hover { text-decoration: underline; }

/* CTA footer section */
.dg-cta-footer { padding: 80px 40px; text-align: center; }
.dg-cta-inner { max-width: 640px; margin: 0 auto; }
.dg-cta-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.dg-cta-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 32px; line-height: 1.6; }
.dg-cta-sub strong { color: var(--accent); }
.dg-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.dg-cta-internal { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.8; }
.dg-cta-internal a { color: var(--accent); text-decoration: none; }
.dg-cta-internal a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 640px) {
  .dg-hero { padding: 48px 20px 40px; }
  .dg-section { padding: 48px 20px; }
  .dg-faq { padding: 48px 20px; }
  .dg-cta-footer { padding: 48px 20px; }
  .dg-breadcrumb { padding: 10px 20px; }
  .dg-promo-strip { padding: 10px 20px; }
  .dg-social-proof { padding: 36px 20px; }
  .dg-strip-sep { display: none; }
  .dg-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
}
