/* =====================================================
   DIGIBAZARS — SECTIONS
   Hero, Categories, Products, Value Props, etc.
   ===================================================== */

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--db-white);
  padding-top: 80px; /* navbar height */
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero-bg-blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--db-orange);
  top: -150px;
  right: -100px;
}

.hero-bg-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--db-blue);
  bottom: -100px;
  left: -80px;
}

.hero-bg-blob-3 {
  width: 250px;
  height: 250px;
  background: var(--db-purple);
  top: 30%;
  right: 45%;
}

/* Pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(74,74,74,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, var(--db-orange-50), var(--db-blue-50));
  border: 1px solid var(--db-orange-100);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--db-orange);
  margin-bottom: var(--space-6);
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
  font-size: 0.65rem;
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--db-orange-100); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--db-text);
  margin-bottom: var(--space-5);
}

.hero-headline .line-orange { color: var(--db-orange); }
.hero-headline .line-blue   { color: var(--db-blue); }

/* Hero sub */
.hero-sub {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--db-muted);
  line-height: var(--lh-relaxed);
  max-width: 540px;
  margin-bottom: var(--space-8);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

/* Hero trust indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--db-muted);
}

.hero-trust-item i {
  color: var(--db-green-dark);
  font-size: 0.875rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Floating stat card on hero */
.hero-stat-card {
  position: absolute;
  background: var(--db-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--db-border);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-stat-card-1 {
  bottom: 15%;
  left: -30px;
  animation-delay: 0s;
}

.hero-stat-card-2 {
  top: 12%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

.hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: var(--fs-xs);
  color: var(--db-muted);
  line-height: 1.2;
}

/* ════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════ */
#stats-bar {
  background: var(--db-text);
  padding: var(--space-5) 0;
}

.stats-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.stats-bar-icon {
  font-size: 1.5rem;
}

.stats-bar-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--db-white);
  line-height: 1;
}

.stats-bar-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto;
}

/* ════════════════════════════════════════
   CATEGORIES SECTION
   ════════════════════════════════════════ */
#categories {
  background: var(--db-background);
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, var(--fs-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--db-text);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--db-muted);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* ════════════════════════════════════════
   PROMOTIONAL BANNER SECTION
   ════════════════════════════════════════ */
#promo-banner {
  padding: var(--space-12) 0;
  background: var(--db-background);
}

/* ════════════════════════════════════════
   FEATURED PRODUCTS SECTION
   ════════════════════════════════════════ */
#featured-products {
  background: var(--db-white);
  padding: var(--section-py) 0;
}

/* Filter tabs */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.filter-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--db-border);
  background: var(--db-surface);
  color: var(--db-muted);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--db-orange);
  border-color: var(--db-orange);
  color: var(--db-white);
}

/* ════════════════════════════════════════
   VALUE PROPOSITION SECTION
   ════════════════════════════════════════ */
#why-us {
  background: var(--db-background);
  padding: var(--section-py) 0;
}

/* ════════════════════════════════════════
   PROBLEM → SOLUTION SECTION
   ════════════════════════════════════════ */
#problem-solution {
  background: var(--db-text);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

#problem-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,107,0,0.12) 0%, transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(0,159,227,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.problem-solution-content {
  position: relative;
  z-index: 1;
}

.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: background var(--transition-base);
}

.problem-card:hover {
  background: rgba(255,255,255,0.08);
}

.problem-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.solution-item:last-child {
  border-bottom: none;
}

.solution-check {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--db-green-50);
  border: 1.5px solid var(--db-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--db-green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════
   PRODUCT SHOWCASE SECTION
   ════════════════════════════════════════ */
#product-showcase {
  background: var(--db-white);
  padding: var(--section-py) 0;
}

.showcase-image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.showcase-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--db-surface-2);
}

.showcase-image-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-orange);
}

.showcase-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.showcase-includes-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-base);
  color: var(--db-text);
}

.showcase-includes-list .include-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.showcase-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.showcase-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--db-muted);
}

.showcase-check-item i {
  color: var(--db-green-dark);
}

/* ════════════════════════════════════════
   WHAT'S INCLUDED SECTION
   ════════════════════════════════════════ */
#whats-included {
  background: var(--db-background);
  padding: var(--section-py) 0;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--db-surface);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.included-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.included-number {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--db-orange-100);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.included-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.included-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--db-text);
  margin-bottom: var(--space-2);
}

.included-desc {
  font-size: var(--fs-sm);
  color: var(--db-muted);
  margin: 0;
  line-height: var(--lh-relaxed);
}

/* ════════════════════════════════════════
   HOW IT WORKS SECTION
   ════════════════════════════════════════ */
#how-it-works {
  background: var(--db-white);
  padding: var(--section-py) 0;
}

/* ════════════════════════════════════════
   TRUST SECTION
   ════════════════════════════════════════ */
#trust {
  background: var(--db-text);
  padding: var(--section-py) 0;
  position: relative;
}

#trust .trust-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

#trust .trust-item:hover {
  background: rgba(255,255,255,0.08);
}

#trust .trust-title { color: var(--db-white); }
#trust .trust-desc  { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════
   TESTIMONIALS SECTION
   ════════════════════════════════════════ */
#testimonials {
  background: var(--db-background);
  padding: var(--section-py) 0;
}

/* ════════════════════════════════════════
   SPECIAL OFFER SECTION
   ════════════════════════════════════════ */
#special-offer {
  background: var(--db-white);
  padding: var(--section-py) 0;
}

.offer-visual-wrap {
  position: relative;
}

.offer-visual-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  background: var(--db-surface-2);
}

.offer-visual-badge {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-dark));
  color: var(--db-white);
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-orange);
  min-width: 90px;
}

.offer-visual-badge small {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.offer-include-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--db-text);
}

.offer-include-row i {
  color: var(--db-green-dark);
}

/* ════════════════════════════════════════
   FAQ SECTION
   ════════════════════════════════════════ */
#faq {
  background: var(--db-background);
  padding: var(--section-py) 0;
}

/* ════════════════════════════════════════
   FINAL CTA SECTION
   ════════════════════════════════════════ */
#final-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(255,107,0,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(0,159,227,0.15) 0%, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(142,36,170,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--db-white);
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}

.final-cta-sub {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

.final-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.final-cta-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}

.final-cta-trust-item i {
  color: var(--db-green-light);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
#site-footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: var(--space-20) 0 0;
}

.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  line-height: var(--lh-relaxed);
  max-width: 320px;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-2);
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-social-btn:hover {
  background: var(--db-orange);
  border-color: var(--db-orange);
  color: var(--db-white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--db-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: var(--db-orange);
}

.footer-links a i {
  font-size: 0.65rem;
}

.footer-support-email {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--db-orange);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  transition: color var(--transition-base);
}

.footer-support-email:hover {
  color: var(--db-orange-light);
}

/* Footer top container */
.footer-top {
  padding-bottom: var(--space-12);
}

/* Contact items in brand column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: all var(--transition-base);
}

.footer-contact-item i {
  color: var(--db-orange);
  font-size: 1rem;
}

.footer-contact-item:hover {
  color: var(--db-white);
  transform: translateX(3px);
}

/* Assurance box in legal column */
.footer-assurance-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Footer bottom bar layout */
.footer-bottom {
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  background: rgba(0,0,0,0.25);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.07);
}

.footer-trust-badge i {
  font-size: 0.85rem;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-4);
}

.footer-legal-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-legal-links a:hover {
  color: var(--db-orange);
}

/* Footer gradient divider */
.footer-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--db-orange), var(--db-blue), var(--db-purple), var(--db-green));
  margin-bottom: 0;
  border: none;
  opacity: 1;
}

/* ════════════════════════════════════════
   POLICY & LEGAL PAGES
   ════════════════════════════════════════ */
.db-policy-page {
  min-height: 80vh;
}

.db-policy-hero {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 120px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.db-policy-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, rgba(255,107,0,0) 70%);
  pointer-events: none;
}

.db-policy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.db-policy-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.db-policy-breadcrumb a:hover {
  color: var(--db-orange);
}

.db-policy-breadcrumb .separator {
  color: rgba(255,255,255,0.3);
}

.db-policy-breadcrumb .current {
  color: var(--db-orange-light);
  font-weight: 600;
}

.db-policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--db-orange-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.db-policy-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.db-policy-meta {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* Policy switcher pills */
.db-policy-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.db-policy-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all var(--transition-base);
}

.db-policy-nav-link:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: translateY(-1px);
}

.db-policy-nav-link.active {
  background: var(--db-orange);
  border-color: var(--db-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,0,0.35);
}

/* Policy Card and Content */
.db-policy-card {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--db-border);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.06);
  padding: clamp(24px, 5vw, 48px);
}

.db-policy-content {
  color: var(--db-text);
  font-size: 1rem;
  line-height: 1.8;
}

.db-policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--db-heading);
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--db-surface-2);
}

.db-policy-content p {
  margin-bottom: 1.25rem;
  color: var(--db-text);
}

.db-policy-content ul,
.db-policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.db-policy-content li {
  margin-bottom: 0.5rem;
  color: var(--db-text);
}

.db-policy-intro-box {
  background: #fff7ed;
  border-left: 4px solid var(--db-orange);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}

.db-policy-intro-box p {
  margin: 0;
  color: #9a3412;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Support Box inside Policy Page */
.db-policy-support-box {
  background: var(--db-surface-2);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.db-policy-support-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--db-orange-50);
  color: var(--db-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

