/* ==========================================================================
   goodlabel INDEX REDESIGN — Premium UI/UX Pass
   Scoped exclusively to index.html. Does not modify studio.html, quote.html,
   or any other page. Load after styles.css and responsive_overhaul.css.
   ========================================================================== */

/* ── DESIGN TOKENS (Index-specific refinements) ───────────────────────────── */
:root {
  --idx-hero-min-h: min(100svh, 960px);
  --idx-section-gap: clamp(80px, 10vw, 140px);
  --idx-card-radius: 18px;
  --idx-glass-border: rgba(18, 58, 111, 0.12);
  --idx-shadow-card: 0 4px 24px rgba(18, 58, 111, 0.06), 0 1px 4px rgba(0,0,0,0.04);
  --idx-shadow-hover: 0 16px 48px rgba(18, 58, 111, 0.12), 0 0 0 1px rgba(245, 166, 35, 0.12);
  --idx-orange: #F5A623;
  --idx-blue: #123A6F;
  --idx-blue-mid: #1E4E8C;
}
body.dark-theme {
  --idx-glass-border: rgba(255,255,255,0.09);
  --idx-shadow-card: 0 4px 28px rgba(0,0,0,0.38);
  --idx-shadow-hover: 0 20px 52px rgba(0,0,0,0.5), 0 0 0 1px rgba(245, 166, 35, 0.15);
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 1 — HERO SECTION
   ══════════════════════════════════════════════════════════════════════════ */

/* 1a. Hero section base — taller, more breathing room */
.hero {
  position: relative !important;
  overflow: hidden !important;
  min-height: var(--idx-hero-min-h) !important;
  padding-top: clamp(100px, 14vh, 160px) !important;
  padding-bottom: clamp(60px, 8vh, 100px) !important;
  display: flex !important;
  align-items: center !important;
}

/* 1b. Hero background video — fix orientation, keep it as a dramatic wash
   but properly framed. Correct object-position so subject is never cropped. */
.hero-bg-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important; /* Bypass global .hero > * max-width: 100% */
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.22 !important;
  filter: saturate(1.2) brightness(1.05) !important;
  transition: opacity 0.6s ease !important;
}
body.dark-theme .hero-bg-video {
  opacity: 0.32 !important;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto !important; /* Let height flow naturally to avoid extreme cropping of landscape video on tall mobile screens */
    position: relative !important;
    overflow: hidden !important;
    padding-top: clamp(70px, 12vw, 90px) !important;
    padding-bottom: clamp(35px, 8vw, 50px) !important;
  }
  .hero-bg-video {
    /* The source clip is a wide 640x330 (~1.94:1) landscape logo animation.
       Forcing it to cover a tall, portrait hero box (old width:100%/height:100%
       object-fit:cover rule) made the scale factor balloon to fill the extra
       height, blowing the logo wordmark up into a giant, cropped watermark.
       Instead, size the video to its own aspect ratio at full width and let it
       sit centered as a horizontal band — no oversized zoom, no crop. */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 640 / 330 !important;
    max-width: none !important;
    min-width: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* 1c. Hero grid — single centered column so the content stays in the middle */
.hero-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  text-align: center !important;
}

/* 1d. Hero content typography — stronger hierarchy, centered */
.hero-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;   /* center the badge + CTAs */
  text-align: center !important;
  max-width: 820px !important;
  gap: 0 !important;
}

.hero-motto {
  font-family: var(--font-mono, 'Syncopate', sans-serif) !important;
  font-size: clamp(0.8rem, 1.1vw, 1.0rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--idx-orange) !important;
  padding: 10px 22px !important;
  border: 1.5px solid rgba(239, 159, 39, 0.35) !important;
  border-radius: 999px !important;
  background: rgba(239, 159, 39, 0.07) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 24px !important;
}

.hero-motto i {
  font-size: 1.15em !important;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  color: var(--text-primary) !important;
  margin-bottom: 22px !important;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, var(--idx-orange) 0%, #f5c26b 60%, var(--idx-orange) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline !important;
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem) !important;
  line-height: 1.7 !important;
  color: var(--text-secondary) !important;
  max-width: 560px !important;
  margin: 0 auto 36px auto !important;  /* center under the title */
  text-align: center !important;
}

/* 1e. Hero CTA buttons — centered row, refined spacing & micro-interaction */
.hero-ctas {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-ctas .btn-accent {
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 24px rgba(239, 159, 39, 0.35) !important;
}
.hero-ctas .btn-secondary {
  padding: 14px 28px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
}

/* 1f. Hero visual — the 3D bottle / floating cards area */
.hero-visual {
  position: relative !important;
  width: 100% !important;
  min-height: clamp(380px, 55vh, 600px) !important;
}

/* 1g. Floating cards — curated arrangement with better depth */
.floating-card {
  box-shadow: 0 8px 32px rgba(12, 68, 124, 0.18), 0 1px 4px rgba(0,0,0,0.1) !important;
  border-radius: 16px !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.floating-card:hover {
  transform: var(--float-pos, translateY(-4px)) scale(1.03) !important;
  box-shadow: 0 18px 48px rgba(12, 68, 124, 0.25), 0 0 0 1px rgba(239,159,39,0.22) !important;
  z-index: 20 !important;
}

/* Mobile — hero grid already single column, just adjust padding */
@media (max-width: 900px) {
  .hero-grid {
    gap: 0 !important;
  }
  .hero-visual {
    display: none !important;  /* the floating cards panel hides on mobile to avoid overlap */
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 2 — PRODUCTS TEASER
   ══════════════════════════════════════════════════════════════════════════ */

/* 2a. Section vertical rhythm */
.products {
  padding: var(--idx-section-gap) 0 !important;
}

/* 2b. Showcase banner image — ensure correct aspect and no stretch */
.showcase-banner-wrap {
  position: relative;
  max-width: 960px;
  margin: 32px auto 40px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--idx-shadow-card);
  border: 1.5px solid var(--idx-glass-border);
  background: #ffffff;
}
body.dark-theme .showcase-banner-wrap {
  background: var(--bg-secondary) !important;
}
.showcase-banner-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  aspect-ratio: 1575 / 999 !important; /* locked to source dimensions so it never squashes */
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 14px !important;
}

/* 2c. Section headings — stronger rhythm */
.products .section-header .section-title:first-of-type {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}
.products .section-header .section-title:last-of-type {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
}

/* 2d. Product grid cards — premium elevation + intentional accent glow */
.product-card {
  border-radius: var(--idx-card-radius) !important;
  box-shadow: var(--idx-shadow-card) !important;
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.38s ease !important;
  will-change: transform !important;
}
.product-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--idx-shadow-hover) !important;
  border-color: var(--card-color, var(--idx-orange)) !important;
}
/* Top accent line becomes a gradient glow on hover */
.product-card::before {
  background: linear-gradient(90deg, var(--card-color, var(--idx-orange)), color-mix(in srgb, var(--card-color, var(--idx-orange)) 60%, white)) !important;
  height: 3px !important;
  transition: opacity 0.3s ease !important;
  opacity: 0 !important;
}
.product-card:hover::before {
  opacity: 1 !important;
}
/* Smooth image zoom on hover */
.product-image-container {
  overflow: hidden !important;
  border-radius: 12px !important;
}
.product-image {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-card:hover .product-image {
  transform: scale(1.06) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 3 — BRANDS & PORTFOLIO MARQUEES
   ══════════════════════════════════════════════════════════════════════════ */

/* 3a. Section layout & rhythm */
.about-showcase {
  padding: var(--idx-section-gap) 0 !important;
}

/* 3b. Subsection headings — match quality standard */
.subsection-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
  letter-spacing: -0.01em !important;
}
.subsection-title i {
  color: var(--idx-orange) !important;
  font-size: 1.2em !important;
}

/* 3c. Marquee fade masks — premium edge vignette */
.marquee-container {
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  ) !important;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  ) !important;
  padding: 24px 0 !important;
  user-select: none;
  -webkit-user-select: none;
}

/* 3d. Customer marquee cards — clean premium pill */
.customer-card {
  width: auto !important;
  min-width: 200px !important;
  padding: 16px 24px !important;
  border-radius: 12px !important;
  border: 1.5px solid var(--idx-glass-border) !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: var(--idx-shadow-card) !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  white-space: nowrap !important;
}
.customer-card:hover {
  border-color: rgba(239, 159, 39, 0.5) !important;
  box-shadow: 0 8px 24px rgba(12, 68, 124, 0.15) !important;
}
.customer-card i {
  font-size: 1.35rem !important;
  color: var(--idx-orange) !important;
  flex-shrink: 0 !important;
}
.customer-card span {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--text-primary) !important;
  letter-spacing: 0.01em !important;
}

.label-card.label-photo-card {
  width: 400px !important;
  min-width: 400px !important;
  height: 200px !important;
  padding: 10px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}
body.dark-theme .label-card.label-photo-card {
  background: transparent !important;
}
.label-card.label-photo-card img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;       /* no distortion, no crop */
  image-orientation: from-image !important; /* correct EXIF orientation */
  border-radius: 8px !important;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15)) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.35s ease !important;
}
.label-card.label-photo-card:hover img {
  transform: scale(1.06) !important;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25)) !important;
}
.label-card.label-photo-card:hover {
  border: none !important;
  box-shadow: none !important;
  transform: translateY(-8px) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 4 — 3D DESIGN STUDIO TEASER (split layout — already restructured)
   ══════════════════════════════════════════════════════════════════════════ */

/* 4a. Studio section — bigger, more dramatic */
.studio {
  padding: var(--idx-section-gap) 0 !important;
}
.studio .glass-card {
  padding: clamp(32px, 5vw, 64px) !important;
  border-radius: 24px !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  box-shadow: var(--idx-shadow-card) !important;
  border: 1.5px solid var(--idx-glass-border) !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Faint diagonal grid pattern inside card for premium texture */
.studio .glass-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(12, 68, 124, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 68, 124, 0.04) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border-radius: inherit !important;
}
body.dark-theme .studio .glass-card::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) !important;
}

/* 4b. Grid children must be above the pattern */
.studio-teaser-grid > * {
  position: relative !important;
  z-index: 1 !important;
}

/* 4c. Content left — stronger type scale */
.studio-teaser-content .section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
}
.studio-teaser-content .section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem) !important;
  line-height: 1.72 !important;
  max-width: 400px !important;
}

/* 4d. 3D preview panel — already styled with white bg; refine sizing */
.studio-teaser-visual {
  height: clamp(300px, 40vw, 420px) !important;
  border-radius: 20px !important;
  box-shadow:
    var(--idx-shadow-card),
    inset 0 0 60px rgba(12, 68, 124, 0.04) !important;
  border: 1.5px solid var(--idx-glass-border) !important;
}
/* Subtle ring glow on the preview panel */
.studio-teaser-visual::after {
  content: '' !important;
  position: absolute !important;
  inset: -1px !important;
  border-radius: inherit !important;
  border: 2px solid transparent !important;
  background:
    linear-gradient(135deg, rgba(239,159,39,0.35), transparent 60%) border-box !important;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: destination-out !important;
  mask-composite: exclude !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 5 — QUOTE / SAMPLE KIT CTA
   ══════════════════════════════════════════════════════════════════════════ */

.contact-calculator {
  padding: var(--idx-section-gap) 0 !important;
}
.contact-calculator .glass-card {
  border-radius: 24px !important;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px) !important;
  box-shadow: var(--idx-shadow-card) !important;
  border: 1.5px solid var(--idx-glass-border) !important;
  overflow: hidden !important;
  position: relative !important;
  max-width: 760px !important;
}
/* Warm background wash behind the CTA card */
.contact-calculator .glass-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at 70% 30%, rgba(239,159,39,0.08), transparent 65%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
.contact-calculator .glass-card > * {
  position: relative !important;
  z-index: 1 !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 6 — LIVE PILL INDICATOR (polish)
   ══════════════════════════════════════════════════════════════════════════ */
.live-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: clamp(0.62rem, 0.85vw, 0.72rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 999px !important;
  background: rgba(16, 185, 129, 0.12) !important;
  color: #10b981 !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  vertical-align: middle !important;
  margin-left: 12px !important;
}
.live-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  display: inline-block !important;
  animation: live-pulse 2s ease-in-out infinite !important;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.75); }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 7 — SECTION BADGES (consistent across all sections)
   ══════════════════════════════════════════════════════════════════════════ */
.section-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--font-mono, 'Syncopate', monospace) !important;
  font-size: clamp(0.58rem, 0.85vw, 0.72rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--idx-blue-mid) !important;
  background: rgba(12, 68, 124, 0.07) !important;
  border: 1.5px solid rgba(12, 68, 124, 0.18) !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  margin-bottom: 18px !important;
}
body.dark-theme .section-badge {
  color: #7ab8f5 !important;
  background: rgba(24, 95, 165, 0.15) !important;
  border-color: rgba(24, 95, 165, 0.28) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 8 — REVEAL-UP ANIMATION (tuned timing / stagger)
   ══════════════════════════════════════════════════════════════════════════ */
.reveal-up {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal-active.reveal-up,
.reveal-active .reveal-up {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 9 — FOOTER REFINEMENTS
   ══════════════════════════════════════════════════════════════════════════ */
.footer {
  position: relative !important;
  overflow: hidden !important;
}
/* Subtle top separator */
.footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(239,159,39,0.4), transparent) !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 10 — RESPONSIVE POLISH
   ══════════════════════════════════════════════════════════════════════════ */

/* ── 390px (iPhone 14 Pro) ─── */
@media (max-width: 430px) {
  .hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }
  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .showcase-banner-wrap {
    margin: 20px auto 28px auto !important;
    border-radius: 14px !important;
  }
  .label-card.label-photo-card {
    width: 280px !important;
    min-width: 280px !important;
    height: 140px !important;
    padding: 6px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .studio .glass-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
  .studio-teaser-visual {
    height: 240px !important;
  }
}

/* ── 768px (tablet) ─── */
@media (max-width: 768px) {
  .hero-grid {
    gap: 32px !important;
  }
  .products .section-header .section-title {
    font-size: clamp(1.7rem, 5vw, 2.2rem) !important;
  }
  .showcase-banner-wrap img {
    border-radius: 10px !important;
  }
  .label-card.label-photo-card {
    width: 320px !important;
    min-width: 320px !important;
    height: 160px !important;
    padding: 8px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .studio-teaser-visual {
    height: 280px !important;
  }
  .contact-calculator .glass-card {
    padding: 36px 24px !important;
  }
  .subsection-title {
    font-size: 1.5rem !important;
  }
}

/* ── 1024px (small desktop / iPad landscape) ─── */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem) !important;
  }
  .studio .glass-card {
    max-width: 95% !important;
  }
}

/* ── 1440px (standard desktop — no extra work needed, defaults handle it) ─── */

/* ── 1920px (wide) — prevent over-stretch on large monitors ─── */
@media (min-width: 1600px) {
  .hero-title {
    font-size: 4.2rem !important;
  }
  .hero-desc {
    font-size: 1.2rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 11 — ACCESSIBILITY: Visible focus states
   ══════════════════════════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--idx-orange) !important;
  outline-offset: 3px !important;
  border-radius: 6px !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 12 — SCROLL-PROGRESS BAR GLOW (micro-detail)
   ══════════════════════════════════════════════════════════════════════════ */
#scroll-progress-bar {
  box-shadow: 0 0 10px rgba(239, 159, 39, 0.6) !important;
  height: 3px !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 13 — STUDIO TEASER GRID responsive (supplement existing)
   ══════════════════════════════════════════════════════════════════════════ */
.studio-teaser-grid {
  gap: clamp(28px, 4vw, 56px) !important;
  align-items: center !important;
}
.studio-teaser-buttons .btn {
  border-radius: 12px !important;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 14 — FAQ SECTION STYLES
   ══════════════════════════════════════════════════════════════════════════ */
.faq-sec {
  padding: var(--idx-section-gap) 0 !important;
}

.faq-details {
  border-radius: 16px !important;
  margin-bottom: 16px;
  padding: 24px 30px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
  background: var(--glass-bg) !important;
  border: 1.5px solid var(--idx-glass-border) !important;
  box-shadow: var(--idx-shadow-card) !important;
  display: block;
}

.faq-details:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(239, 159, 39, 0.45) !important;
  box-shadow: var(--idx-shadow-hover) !important;
}

.faq-details[open] {
  border-color: var(--accent-orange) !important;
  box-shadow: var(--idx-shadow-hover) !important;
  transform: none !important;
}

.faq-summary {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  color: var(--text-primary) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  list-style: none !important;
  user-select: none !important;
  outline: none !important;
}

.faq-summary::-webkit-details-marker {
  display: none !important;
}

.faq-summary::after {
  content: '\f078' !important; /* FontAwesome chevron-down */
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  color: var(--idx-blue-mid) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-size: 0.95rem !important;
}

body.dark-theme .faq-summary::after {
  color: #7ab8f5 !important;
}

.faq-details[open] .faq-summary::after {
  transform: rotate(180deg) !important;
  color: var(--accent-orange) !important;
}

.faq-content {
  margin-top: 16px;
  color: var(--text-secondary) !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  cursor: default;
}

/* ══════════════════════════════════════════════════════════════════════════
   SECTION 15 — WATERMARK ICONS
   ══════════════════════════════════════════════════════════════════════════ */
.section-watermark {
  position: absolute;
  font-size: clamp(8rem, 15vw, 12rem);
  color: var(--primary);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
body.dark-theme .section-watermark {
  color: #ffffff !important;
  opacity: 0.08;
}
.watermark-left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
}
.watermark-right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
}
@media (max-width: 992px) {
  .section-watermark {
    display: none !important;
  }
}


