/* ═══════════════════════════════════════════
   Cascade Clarity — Shared Site Styles
   Nav, footer, neural canvas, utilities
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand palette (stable across themes) ── */
  --navy:      #0B223A;
  --navy-mid:  #0d2a48;
  --navy-light:#0f3259;
  --purple:    #625FED;
  --sky:       #5DB9DB;
  --mint:      #5BF7CF;
  --deep-pur:  #5B49BA;
  --white:     #FFFFFF;
  --gray-100:  #F0F4F8;
  --gray-400:  #8FA3B1;
  --grad-main: linear-gradient(135deg, #625FED 0%, #5DB9DB 100%);
  --grad-alt:  linear-gradient(135deg, #5BF7CF 0%, #5B49BA 100%);

  /* ── DARK THEME (default) ── */
  --bg-page:        var(--navy);
  --bg-section:     rgba(11,34,58,0.45);
  --bg-nav:         rgba(11,34,58,0.92);
  --bg-dropdown:    rgba(9,27,48,0.97);
  --bg-footer:      rgba(11,34,58,0.55);
  --bg-card:        rgba(255,255,255,0.03);
  --text-primary:   #FFFFFF;
  --text-secondary: rgba(255,255,255,0.85);
  --text-muted:     rgba(255,255,255,0.6);
  --text-subtle:    rgba(255,255,255,0.4);
  --border-line:    rgba(93,185,219,0.15);
  --border-card:    rgba(93,185,219,0.12);
  --accent:         var(--mint);
  --neural-opacity: 0.5;
  --grad-hero:      linear-gradient(110deg, var(--mint) 0%, var(--sky) 60%, var(--purple) 100%);
}

/* ── LIGHT THEME ── */
html[data-theme="light"] {
  --bg-page:        #F5F7FA;
  --bg-section:     rgba(255,255,255,0.55);
  --bg-nav:         rgba(255,255,255,0.92);
  --bg-dropdown:    rgba(255,255,255,0.98);
  --bg-footer:      rgba(240,244,248,0.9);
  --bg-card:        rgba(255,255,255,0.82);
  --text-primary:   #0B223A;
  --text-secondary: rgba(11,34,58,0.85);
  --text-muted:     rgba(11,34,58,0.6);
  --text-subtle:    rgba(11,34,58,0.45);
  --border-line:    rgba(11,34,58,0.12);
  --border-card:    rgba(11,34,58,0.1);
  --accent:         var(--purple);
  --neural-opacity: 0.75;
  /* Darker → lighter for light mode */
  --grad-hero:      linear-gradient(110deg, #0B223A 0%, #5B49BA 35%, #625FED 65%, #5DB9DB 100%);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-page);
  transition: background-color 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--text-primary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* ─── NEURAL CANVAS ─── */
#neural-bg {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: var(--neural-opacity);
  transition: opacity 0.3s ease;
}

/* ─── NAV wrapper: sticky context lives on the placeholder div ─── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ─── NAV ─── */
nav {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 80px;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-line);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* ─── Hamburger button (hidden on desktop) ─── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; min-height: 44px; min-width: 44px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background-color 0.3s;
}

.nav-logo a {
  display: inline-block;
  line-height: 0;
}
.nav-logo img { height: 72px; width: auto; }

.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; color: var(--text-muted);
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--accent); }

/* ─── Dropdown chevron ─── */
.has-dropdown > a::after {
  content: '▾';
  font-size: 10px; margin-left: 4px;
  opacity: 0.5; vertical-align: middle;
  transition: opacity 0.2s;
}
.has-dropdown:hover > a::after { opacity: 1; color: var(--accent); }

/* ─── Dropdown panel ─── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 176px;
  background: var(--bg-dropdown);
  border: 1px solid var(--border-line);
  border-radius: 12px;
  padding: 20px 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: 11px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--bg-dropdown);
  border-left: 1px solid var(--border-line);
  border-top: 1px solid var(--border-line);
}
.has-dropdown:hover > .dropdown {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.dropdown a:hover,
.dropdown a.nav-active {
  color: var(--accent);
  background: rgba(91,247,207,0.07);
}
.dropdown-divider {
  height: 1px;
  background: var(--border-line);
  margin: 6px 0;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--grad-main);
  border-radius: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ─── SHARED BUTTONS ─── */
.btn-primary {
  padding: 16px 36px;
  background: var(--grad-main);
  border: none; border-radius: 8px;
  font-size: 16px; font-weight: 600; color: var(--white);
  text-decoration: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(98,95,237,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(98,95,237,0.45); }

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  border: 1.5px solid var(--border-line);
  border-radius: 8px;
  font-size: 16px; font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--sky); color: var(--text-primary); }

/* ─── SHARED SUBPAGE HERO ─── */
.page-hero {
  background: var(--bg-section);
  padding: 56px 80px 40px;
  border-bottom: 1px solid var(--border-line);
}

.page-hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mint);
  background: rgba(91,247,207,0.08);
  border: 1px solid rgba(91,247,207,0.2);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: 0.02em;
  background: var(--grad-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
}

/* ─── REUSABLE 2-COLUMN HERO ─── */
/* Use: left column for headline/copy, right column for graphic/callout.
   Left and right are independent — left content flows naturally. */
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 80px 48px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border-line);
}
.hero-2col-left .page-hero-label { margin-bottom: 20px; }
.hero-2col-left h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: 0.02em;
  background: var(--grad-hero);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hero-2col-left > p {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 24px;
}
.hero-2col-left > p:last-child { margin-bottom: 0; }
.hero-2col-tagline {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─── UTILITIES ─── */
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--mint);
  background: rgba(91,247,207,0.08);
  border: 1px solid rgba(91,247,207,0.2);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 20px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-footer);
  padding: 40px 80px 28px;
  border-top: 1px solid var(--border-line);
}

.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-line);
  margin-bottom: 32px;
}

.footer-brand { max-width: 260px; flex: 1 1 220px; }
.footer-col { flex: 0 1 auto; min-width: 140px; }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-subtle); line-height: 1.7; }

.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-subtle);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  text-decoration: none; font-size: 14px;
  color: var(--text-muted); transition: color 0.2s;
}
.footer-col li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-subtle);
}

/* ════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   Tablet ≤ 1024px | Mobile ≤ 768px | Small ≤ 480px
════════════════════════════════════════════════ */

/* ─── TABLET (≤ 1024px) ─── */
@media (max-width: 1024px) {
  nav { padding: 12px 40px; }
  .nav-links { gap: 20px; }
  .hero-2col { padding: 48px 40px 40px; gap: 40px; }
  footer { padding: 36px 40px 24px; }
  .footer-top { gap: 40px; }
  .page-hero { padding: 48px 40px 32px; }
}

/* ─── MOBILE (≤ 768px) ─── */
@media (max-width: 768px) {

  /* — Nav: show hamburger, hide links — */
  nav { padding: 12px 20px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  /* — Mobile menu open state (class toggled by JS) — */
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-dropdown);
    border-bottom: 1px solid var(--border-line);
    padding: 12px 0 20px;
    z-index: 99;
  }
  nav.nav-open .nav-links > li { width: 100%; }
  nav.nav-open .nav-links > li > a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
  }

  /* — Company dropdown: always expanded inline on mobile — */
  nav.nav-open .dropdown {
    position: static;
    opacity: 1; pointer-events: auto;
    transform: none;
    background: transparent;
    border: none; border-radius: 0;
    box-shadow: none;
    padding: 0 0 4px 0;
    min-width: 0;
  }
  nav.nav-open .dropdown::before { display: none; }
  nav.nav-open .dropdown a {
    padding: 10px 40px;
    font-size: 14px;
  }
  nav.nav-open .dropdown-divider { margin: 4px 24px; }

  /* — Schedule a Call button in mobile menu — */
  nav.nav-open .nav-cta {
    display: inline-block;
    margin: 12px 24px 0;
  }

  /* — Hamburger → X animation — */
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* — Footer — */
  footer { padding: 36px 20px 20px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* — Page hero — */
  .page-hero { padding: 36px 20px 24px; }
  .page-hero p { font-size: 16px; }

  /* — 2-col hero stacks — */
  .hero-2col { grid-template-columns: 1fr; padding: 36px 20px 28px; gap: 28px; }
  .hero-2col-left > p { font-size: 16px; }

  /* — Buttons — */
  .btn-primary,
  .btn-secondary { width: 100%; text-align: center; padding: 14px 24px; }
}

/* ─── SMALL MOBILE (≤ 480px) ─── */
@media (max-width: 480px) {
  .nav-logo img { height: 52px; }
  .footer-top { gap: 20px; }
  .footer-bottom { font-size: 12px; }
}

/* ════════════════════════════════════════════════
   THEME TOGGLE BUTTON + LABEL
════════════════════════════════════════════════ */
.theme-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--border-line);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(15deg);
}
.theme-toggle .theme-icon-dark { display: none; }
.theme-toggle .theme-icon-light { display: inline; }
html[data-theme="light"] .theme-toggle .theme-icon-dark { display: inline; }
html[data-theme="light"] .theme-toggle .theme-icon-light { display: none; }

.theme-toggle-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 1100px) {
  .theme-toggle-label { display: none; }
}
@media (max-width: 768px) {
  .theme-toggle-wrap { margin-left: 0; margin-right: 8px; }
}

/* ════════════════════════════════════════════════
   LIGHT MODE — PAGE-SPECIFIC OVERRIDES
   Targets the shared structural classes used across
   pages so they render well on a light background.
════════════════════════════════════════════════ */
html[data-theme="light"] {
  /* Global section surfaces */
}

/* Sections that originally used navy overlay bands */
html[data-theme="light"] .lab-umbrella,
html[data-theme="light"] .reset-intro,
html[data-theme="light"] .lab-feature,
html[data-theme="light"] .outcomes-section,
html[data-theme="light"] .lab-cta,
html[data-theme="light"] .chro-umbrella,
html[data-theme="light"] .chro-circle,
html[data-theme="light"] .chro-cta,
html[data-theme="light"] .services-section,
html[data-theme="light"] .partners-section,
html[data-theme="light"] .why-us-section,
html[data-theme="light"] .cta-section,
html[data-theme="light"] .use-cases-section,
html[data-theme="light"] .qa-section,
html[data-theme="light"] .leadership-section,
html[data-theme="light"] .team-section,
html[data-theme="light"] .about-section,
html[data-theme="light"] .contact-section,
html[data-theme="light"] .product-section,
html[data-theme="light"] .products-hero-section,
html[data-theme="light"] .hero {
  background: var(--bg-section);
  border-bottom-color: var(--border-line);
  border-top-color: var(--border-line);
}

/* Generic: any text that was white in dark mode */
html[data-theme="light"] .lab-umbrella h2,
html[data-theme="light"] .lab-umbrella p,
html[data-theme="light"] .reset-intro h2,
html[data-theme="light"] .reset-intro p,
html[data-theme="light"] .outcomes-grid h2,
html[data-theme="light"] .outcomes-list li,
html[data-theme="light"] .chro-umbrella h2,
html[data-theme="light"] .chro-umbrella p {
  color: var(--text-primary);
}

html[data-theme="light"] .outcomes-list li { color: var(--text-secondary); }

/* Gradient headlines — use themed gradient variable */
html[data-theme="light"] .lab-header h2,
html[data-theme="light"] .lab-cta h2,
html[data-theme="light"] .circle-header h2,
html[data-theme="light"] .chro-cta h2,
html[data-theme="light"] .cta-section h2,
html[data-theme="light"] .hero h1,
html[data-theme="light"] .section-title,
html[data-theme="light"] .gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html[data-theme="light"] .lab-header p,
html[data-theme="light"] .lab-cta p,
html[data-theme="light"] .circle-header p,
html[data-theme="light"] .chro-cta p {
  color: var(--text-muted);
}

/* Cards: swap dark-on-dark to light-on-light
   NOTE: .partner-card is intentionally excluded — partner cards use their
   own co-branded palette (Atomicwork purple, JumpCloud teal) that stays
   consistent in both themes. */
html[data-theme="light"] .shift-card,
html[data-theme="light"] .principle-card,
html[data-theme="light"] .structure-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .use-case-card,
html[data-theme="light"] .team-card,
html[data-theme="light"] .qa-item,
html[data-theme="light"] .value-card,
html[data-theme="light"] .leader-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .feature-card {
  background: var(--bg-card);
  border-color: var(--border-card);
}

html[data-theme="light"] .shift-card p,
html[data-theme="light"] .principle-card p,
html[data-theme="light"] .structure-label,
html[data-theme="light"] .service-card p,
html[data-theme="light"] .use-case-card p,
html[data-theme="light"] .team-card p,
html[data-theme="light"] .qa-item p,
html[data-theme="light"] .value-card p {
  color: var(--text-muted);
}

html[data-theme="light"] .principle-card h4,
html[data-theme="light"] .structure-card h3,
html[data-theme="light"] .structure-value,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .service-card h4,
html[data-theme="light"] .use-case-card h3,
html[data-theme="light"] .team-card h3,
html[data-theme="light"] .qa-item h3,
html[data-theme="light"] .value-card h3,
html[data-theme="light"] .leader-card h3 {
  color: var(--text-primary);
}

html[data-theme="light"] .focus-tag {
  background: rgba(11,34,58,0.04);
  color: var(--text-muted);
  border-color: var(--border-line);
}

html[data-theme="light"] .structure-item {
  border-bottom-color: var(--border-line);
}

/* Page hero paragraph text variations */
html[data-theme="light"] .chro-tagline,
html[data-theme="light"] .lab-tagline,
html[data-theme="light"] .hero-tagline {
  color: var(--text-muted);
}

/* Eyebrow badges / pills — dark background chip in light mode for contrast */
html[data-theme="light"] .page-hero-label,
html[data-theme="light"] .section-label,
html[data-theme="light"] .lab-badge,
html[data-theme="light"] .circle-badge,
html[data-theme="light"] .dev-badge {
  background: var(--navy);
  color: var(--mint);
  border-color: var(--navy);
}

/* btn-primary stays as-is (uses brand gradient) but shadow tweaks */
html[data-theme="light"] .btn-primary {
  box-shadow: 0 8px 28px rgba(98,95,237,0.22);
}
html[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 12px 34px rgba(98,95,237,0.32);
}

/* ── Additional page-level surfaces used across index, services, etc. ── */
html[data-theme="light"] .hero,
html[data-theme="light"] .services-intro,
html[data-theme="light"] .service-detail,
html[data-theme="light"] .partners,
html[data-theme="light"] .cta,
html[data-theme="light"] .target-section,
html[data-theme="light"] .about-highlight,
html[data-theme="light"] .ai-callout,
html[data-theme="light"] .cascade-callout,
html[data-theme="light"] .services-cta,
html[data-theme="light"] .product-cta,
html[data-theme="light"] .about-cta {
  background: var(--bg-section);
  border-color: var(--border-line);
}

/* Cards and tiles across pages (partner cards excluded — branded) */
html[data-theme="light"] .pillar-card,
html[data-theme="light"] .role-card,
html[data-theme="light"] .audience-card,
html[data-theme="light"] .included-card,
html[data-theme="light"] .team-card {
  background: var(--bg-card);
  border-color: var(--border-card);
}

/* Headings that inherit white */
html[data-theme="light"] .hero-left h1,
html[data-theme="light"] .hero-services-heading,
html[data-theme="light"] .service-detail h2,
html[data-theme="light"] .service-detail h3,
html[data-theme="light"] .pillar-card h3,
html[data-theme="light"] .role-card h3,
html[data-theme="light"] .audience-card h3,
html[data-theme="light"] .included-card h3,
html[data-theme="light"] .team-card-name,
html[data-theme="light"] .leadership-section h2,
html[data-theme="light"] .contact-section h2,
html[data-theme="light"] .about-highlight h2,
html[data-theme="light"] .about-highlight h3,
html[data-theme="light"] .target-section h2 {
  color: var(--text-primary);
}

html[data-theme="light"] .gradient-heading,
html[data-theme="light"] .hero-eyebrow {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraphs and muted text */
html[data-theme="light"] .hero-sub,
html[data-theme="light"] .pillar-card p,
html[data-theme="light"] .role-card p,
html[data-theme="light"] .audience-card p,
html[data-theme="light"] .included-card p,
html[data-theme="light"] .team-bio,
html[data-theme="light"] .role-subtitle,
html[data-theme="light"] .product-tagline,
html[data-theme="light"] .services-intro p,
html[data-theme="light"] .service-purpose,
html[data-theme="light"] .about-cta p,
html[data-theme="light"] .product-cta p,
html[data-theme="light"] .services-cta p,
html[data-theme="light"] .audience-size,
html[data-theme="light"] .feature-tag,
html[data-theme="light"] .contact-info,
html[data-theme="light"] .contact-email {
  color: var(--text-muted);
}

/* Feature tags / chips */
html[data-theme="light"] .feature-tag,
html[data-theme="light"] .pillar-features li,
html[data-theme="light"] .partner-features li,
html[data-theme="light"] .product-value li {
  color: var(--text-muted);
}

/* Form fields in contact page */
html[data-theme="light"] .form-field input,
html[data-theme="light"] .form-field textarea,
html[data-theme="light"] .form-field select {
  background: rgba(255,255,255,0.9);
  border-color: var(--border-line);
  color: var(--text-primary);
}
html[data-theme="light"] .form-field label {
  color: var(--text-muted);
}
