:root {
  color-scheme: dark;
  --bg: #020404;
  --bg-soft: #080b0d;
  --panel: rgba(19, 22, 25, 0.86);
  --panel-strong: rgba(14, 17, 20, 0.95);
  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c2c5c8;
  --dim: #8f969c;
  --orange: #ff6f00;
  --orange-light: #ff8a16;
  --orange-deep: #d95200;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --hero-bg-image: url("assets/charte-graphique-background-entrepot-dark.png");
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f7f8;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(12, 19, 24, 0.14);
  --border-soft: rgba(12, 19, 24, 0.1);
  --text: #101417;
  --muted: #4e5963;
  --dim: #68737d;
  --shadow: 0 22px 60px rgba(12, 19, 24, 0.11);
  --hero-bg-image: url("assets/charte-graphique-background-entrepot-light.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 111, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, #020303 0%, #050708 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
}

body.privacy-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg path,
svg use,
svg circle,
svg rect,
svg polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  min-height: 100vh;
}

.mobile-home {
  display: none;
}

.desktop-home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.035), transparent 23rem),
    linear-gradient(180deg, #020303 0%, #050708 54%, #030505 100%);
}

.desktop-hero {
  position: relative;
  min-height: 540px;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.98) 0%, rgba(2, 3, 3, 0.84) 30%, rgba(2, 3, 3, 0.34) 58%, rgba(2, 3, 3, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 3, 3, 0.16) 0%, rgba(2, 3, 3, 0.1) 52%, rgba(2, 3, 3, 0.88) 100%),
    var(--hero-bg-image) right center / cover no-repeat;
  background-position: center center, center center, right center;
}

.desktop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 42%, transparent 0 20rem, rgba(0, 0, 0, 0.2) 34rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.desktop-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
}

.brand {
  display: block;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 285px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 34px);
  min-width: 0;
  flex: 1 1 auto;
  color: #f0f2f4;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a {
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--orange);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn svg {
  width: 22px;
  height: 22px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-light), var(--orange) 58%, var(--orange-deep));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 111, 0, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(5, 7, 9, 0.56);
  color: #fff;
}

.header-cta {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 23px;
  font-size: 14px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 6px;
}

.language-control {
  position: relative;
  flex: 0 0 auto;
}

.language-picker {
  width: 58px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 12, 14, 0.62);
  color: #f2f4f5;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.language-picker:hover,
.language-picker:focus-visible {
  border-color: rgba(255, 111, 0, 0.7);
  color: var(--orange);
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 12, 14, 0.62);
  color: #f2f4f5;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(255, 111, 0, 0.7);
  color: var(--orange);
  transform: translateY(-1px);
}

.theme-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: scale(0.65);
}

:root[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: scale(0.65);
}

:root[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 176px 0 42px;
}

.hero-content h1 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(37px, 3.1vw, 45px);
  font-weight: 850;
  line-height: 1.05;
}

.hero-content p {
  max-width: 548px;
  margin: 20px 0 0;
  color: #d6d8db;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.62;
}

.hero-content > strong {
  position: relative;
  display: block;
  margin-top: 22px;
  padding-left: 18px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.hero-content > strong::before {
  content: "";
  position: absolute;
  top: 0.15em;
  bottom: 0.15em;
  left: 0;
  width: 3px;
  border-radius: 99px;
  background: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.hero-actions .btn {
  min-width: 220px;
  min-height: 48px;
  padding: 0 26px;
  font-size: 15px;
}

.desktop-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 26px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 88px;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 27, 31, 0.94), rgba(10, 13, 15, 0.94)),
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.04), transparent 14rem);
  box-shadow: var(--shadow);
}

.proof-band article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 28px;
}

.proof-band article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-band svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.proof-band h2,
.proof-band p {
  margin: 0;
}

.proof-band h2 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.proof-band p {
  margin-top: 8px;
  color: #c4c7ca;
  font-size: 14px;
  line-height: 1.35;
}

.expertise-section {
  padding: 0 0 28px;
}

.expertise-section > h2 {
  margin: 0 0 14px;
  text-align: center;
  color: #fff;
  font-size: clamp(31px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.1;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

.service-card,
.competency-card,
.quote-card,
.about-card,
.experience-card,
.references-card,
.trust-card,
.mobile-experience,
.mobile-legal,
.mobile-proof article,
.mobile-competency-list article,
.quick-card,
.service-list a,
.why-grid article,
.mobile-promise {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(28, 32, 36, 0.9), rgba(10, 13, 15, 0.92)),
    radial-gradient(circle at 45% 92%, rgba(255, 255, 255, 0.055), transparent 11rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.service-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  align-content: start;
  min-height: 166px;
  padding: 21px 24px 20px;
}

.service-card > svg {
  grid-row: 1 / span 3;
  width: 46px;
  height: 46px;
  margin-top: 1px;
  margin-bottom: 0;
  color: var(--orange);
}

.service-card h3 {
  max-width: 210px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.service-card p {
  margin: 12px 0 0;
  color: #c2c5c8;
  font-size: 13px;
  line-height: 1.5;
}

.service-card a,
.about-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 850;
}

.service-card a svg,
.about-card a svg {
  width: 18px;
  height: 18px;
}

.competency-section {
  padding: 0 0 32px;
}

.competency-heading p {
  max-width: 820px;
  margin: 12px auto 0;
  color: #c7cacf;
  font-size: 15px;
  line-height: 1.55;
}

.competency-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.competency-card {
  min-height: 174px;
  padding: 24px;
}

.competency-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 17px;
  color: var(--orange);
}

.competency-card h3,
.competency-card p {
  margin: 0;
}

.competency-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.competency-card p {
  margin-top: 11px;
  color: #c4c8cc;
  font-size: 14px;
  line-height: 1.5;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-bottom: 28px;
}

.quote-card {
  display: grid;
  gap: 8px;
  width: 100%;
  --quote-indent: 34px;
  min-height: auto;
  padding: 27px 34px;
}

.quote-mark {
  display: block;
  height: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 64px;
  font-weight: 900;
  line-height: 0.76;
}

.quote-open {
  justify-self: start;
}

.quote-close {
  justify-self: end;
  margin-top: 6px;
}

.quote-line {
  display: grid;
  gap: 2px;
  width: calc(100% - var(--quote-indent));
  max-width: 100%;
  margin-left: var(--quote-indent);
  margin-right: auto;
}

.quote-card p {
  max-width: none;
  margin: 0;
  color: #d5d7da;
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.26;
  text-align: center;
}

.about-card {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  min-height: 224px;
  padding: 36px 52px;
}

.about-card > div {
  flex: 1 1 auto;
  min-width: 0;
}

.about-card img {
  flex: 0 0 auto;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: var(--orange);
}

.about-card h2,
.about-card p {
  margin: 0;
}

.about-card h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 850;
}

.about-card p {
  max-width: 1040px;
  margin-top: 16px;
  color: #c9ccd0;
  font-size: 16px;
  line-height: 1.66;
}

.about-card a {
  margin-top: 19px;
  font-size: 15px;
}

.legal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-tags li {
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 111, 0, 0.36);
  border-radius: 6px;
  background: rgba(255, 111, 0, 0.08);
  color: #f2f4f5;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.trust-section {
  padding: 0 0 30px;
}

.section-heading {
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.section-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 850;
  line-height: 1.1;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.experience-card,
.references-card,
.trust-card {
  min-height: 190px;
  padding: 26px;
}

.experience-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  border-color: rgba(255, 111, 0, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 111, 0, 0.13), rgba(16, 19, 22, 0.92) 48%, rgba(9, 12, 14, 0.94)),
    radial-gradient(circle at 10% 52%, rgba(255, 111, 0, 0.16), transparent 10rem);
}

.experience-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 111, 0, 0.48);
  border-radius: 50%;
  color: var(--orange);
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  margin-top: 6px;
}

.experience-card h3,
.references-card h3,
.trust-card h3 {
  margin: 0;
  color: #fff;
  font-weight: 850;
  line-height: 1.18;
}

.experience-card h3 {
  font-size: 24px;
}

.experience-card p,
.references-card p,
.trust-card p {
  margin: 12px 0 0;
  color: #c7cacf;
  font-size: 14px;
  line-height: 1.52;
}

.references-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.references-card li {
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.trust-card svg {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--orange);
}

.trust-card h3 {
  font-size: 18px;
}

.creator-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: auto;
  padding: 34px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #8f969c;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.creator-credit p {
  margin: 0;
}

.creator-credit strong {
  color: #dfe2e4;
  font-weight: 850;
}

.creator-credit a {
  color: #c9ccd0;
  font-weight: 800;
  transition: color 160ms ease;
}

.creator-credit a:hover,
.creator-credit a:focus-visible {
  color: var(--orange);
}

.privacy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 55px;
  padding: 0 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(28, 32, 36, 0.72), rgba(10, 13, 15, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.1), transparent 9rem);
  color: #d5d9dd;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.privacy-link span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 111, 0, 0.48);
  color: var(--orange);
  background:
    linear-gradient(145deg, rgba(34, 37, 40, 0.82), rgba(12, 15, 17, 0.84)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.17), transparent 9rem);
  outline: none;
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 111, 0, 0.15), transparent 25rem),
    rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
}

.privacy-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 31px;
  border: 1px solid rgba(255, 111, 0, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 22, 25, 0.98), rgba(9, 12, 14, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(255, 111, 0, 0.18), transparent 17rem);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.privacy-panel:focus {
  outline: none;
}

.privacy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.privacy-close svg {
  width: 20px;
  height: 20px;
}

.privacy-close:hover,
.privacy-close:focus-visible {
  border-color: rgba(255, 111, 0, 0.7);
  background: rgba(255, 111, 0, 0.12);
  color: var(--orange);
  outline: none;
}

.privacy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-eyebrow svg {
  width: 18px;
  height: 18px;
}

.privacy-panel h2,
.privacy-panel p {
  margin: 0;
}

.privacy-panel h2 {
  padding-right: 46px;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 950;
  line-height: 1.05;
}

.privacy-panel > p {
  max-width: 560px;
  margin-top: 12px;
  color: #d5d8dc;
  font-size: 16px;
  line-height: 1.55;
}

.privacy-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.privacy-grid article {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.12), transparent 11rem);
}

.privacy-grid strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.privacy-grid p {
  margin-top: 8px;
  color: #c5cad0;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-confirm {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .desktop-hero {
    min-height: 530px;
    background-position: center center, center center, right center;
  }

  .desktop-header,
  .hero-content,
  .desktop-content {
    width: calc(100% - 36px);
  }

  .desktop-header {
    gap: 10px;
  }

  .brand img {
    width: clamp(168px, 18vw, 218px);
  }

  .main-nav {
    gap: clamp(8px, 1.15vw, 13px);
    font-size: 12px;
  }

  .header-cta {
    min-height: 46px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-content {
    padding-top: 168px;
  }

  .hero-content h1 {
    max-width: 590px;
    font-size: clamp(37px, 4vw, 44px);
  }

  .proof-band article {
    gap: 14px;
    padding: 20px 20px;
  }

  .proof-band svg {
    width: 34px;
    height: 34px;
  }

  .expertise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin: 0 auto;
  }

  .competency-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mission-card {
    display: none;
  }

  .story-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .trust-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card {
    padding: 34px;
  }

  .about-card {
    gap: 36px;
    min-height: 206px;
    padding: 34px 38px;
  }

  .about-card img {
    width: 150px;
    height: 150px;
  }

  .about-card h2 {
    font-size: 22px;
  }
}

@media (min-width: 1390px) {
  .quote-line {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }

  .quote-open {
    width: min(100%, 1148px);
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .desktop-header,
  .hero-content,
  .desktop-content {
    width: calc(100% - 28px);
  }

  .desktop-header {
    gap: 8px;
  }

  .brand img {
    width: clamp(142px, 17vw, 170px);
  }

  .hero-content {
    padding-top: 154px;
  }

  .main-nav {
    gap: 8px;
    font-size: 11px;
  }

  .language-picker,
  .theme-toggle {
    width: 38px;
    height: 38px;
  }

  .language-picker {
    padding: 0 5px;
    font-size: 11px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }

  .proof-band h2 {
    font-size: 14px;
  }

  .proof-band p {
    font-size: 12px;
  }

  .competency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-hero {
    min-height: 590px;
    background-position: center center, center center, right center;
  }

  .hero-content h1 {
    max-width: 520px;
    font-size: 42px;
  }

  .hero-content p {
    max-width: 500px;
    font-size: 16px;
  }

  .hero-actions .btn {
    min-width: 218px;
    padding: 0 22px;
  }

  .proof-band article {
    padding: 18px 14px;
  }

  .proof-band svg {
    width: 30px;
    height: 30px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .experience-card > span {
    width: 92px;
    height: 92px;
    font-size: 23px;
  }

  .about-card {
    gap: 26px;
    min-height: 190px;
    padding: 28px;
  }

  .about-card img {
    width: 132px;
    height: 132px;
  }

  .about-card h2 {
    font-size: 20px;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.58;
  }
}

@media (max-width: 880px) {
  body {
    background: #020606;
  }

  .desktop-home {
    display: none;
  }

  .mobile-home {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    background:
      radial-gradient(circle at 68% 18%, rgba(255, 111, 0, 0.08), transparent 16rem),
      radial-gradient(circle at 46% 48%, rgba(255, 255, 255, 0.055), transparent 18rem),
      linear-gradient(160deg, #05090a 0%, #030606 52%, #07090a 100%);
  }

  .mobile-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.14;
    background: var(--hero-bg-image) center / cover no-repeat;
    filter: grayscale(0.15);
    pointer-events: none;
  }

  .mobile-home > * {
    position: relative;
    z-index: 1;
  }

  .mobile-header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: calc(18px + env(safe-area-inset-top)) 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .mobile-menu-spacer {
    width: 48px;
    height: 48px;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: max-content;
  }

  .mobile-language-control .language-picker {
    width: 44px;
    height: 40px;
    padding: 0 7px;
    background: transparent;
    color: #d8dcdf;
    font-size: 12px;
  }

  .mobile-brand {
    justify-self: start;
    min-width: 0;
  }

  .mobile-brand img {
    display: block;
    width: min(160px, 42vw);
    max-width: 100%;
    height: auto;
  }

  .icon-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #d8dcdf;
  }

  .icon-button svg {
    width: 34px;
    height: 34px;
  }

  .mobile-actions .icon-button {
    width: 40px;
    height: 40px;
  }

  .mobile-actions .icon-button svg {
    width: 28px;
    height: 28px;
  }

  .icon-button .theme-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-actions .icon-button .theme-icon {
    width: 20px;
    height: 20px;
  }

  .mobile-scroll {
    flex: 1;
    width: 100%;
    padding: 22px 24px calc(112px + env(safe-area-inset-bottom));
    overflow: visible;
  }

  .welcome {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
  }

  .welcome img {
    width: 118px;
    height: 118px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 22%;
    background: var(--orange);
  }

  .welcome p,
  .welcome h1 {
    margin: 0;
  }

  .welcome p {
    color: #e4e6e8;
    font-size: 23px;
    line-height: 1.15;
  }

  .welcome h1 {
    margin-top: 5px;
    color: #fff;
    font-size: clamp(41px, 11vw, 58px);
    font-weight: 900;
    line-height: 0.96;
  }

  .welcome strong {
    display: block;
    margin-top: 12px;
    color: var(--orange);
    font-size: clamp(20px, 5.6vw, 29px);
    font-weight: 900;
    line-height: 1.05;
  }

  .mobile-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .mobile-company-info {
    margin-top: 26px;
  }

  .mobile-proof article {
    min-height: 144px;
    padding: 18px 15px;
  }

  .mobile-proof svg {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    color: var(--orange);
  }

  .mobile-proof h2,
  .mobile-proof p {
    margin: 0;
  }

  .mobile-proof h2 {
    color: #fff;
    font-size: clamp(14px, 3.7vw, 18px);
    font-weight: 850;
    line-height: 1.18;
  }

  .mobile-proof p {
    margin-top: 10px;
    color: #c4c8cb;
    font-size: clamp(13px, 3.35vw, 16px);
    line-height: 1.3;
  }

  .quick-section,
  .mobile-services,
  .mobile-competencies,
  .why-section {
    margin-top: 28px;
  }

  .mobile-legal {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    margin-top: 12px;
    padding: 16px 17px;
    border-color: rgba(255, 111, 0, 0.3);
  }

  .mobile-legal svg {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    color: var(--orange);
  }

  .mobile-legal strong,
  .mobile-legal span {
    display: block;
  }

  .mobile-legal strong {
    color: #fff;
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 900;
    line-height: 1.12;
  }

  .mobile-legal span {
    margin-top: 5px;
    color: #c7cbce;
    font-size: clamp(12px, 3.25vw, 15px);
    line-height: 1.28;
  }

  .quick-section h2,
  .mobile-services h2,
  .mobile-competencies h2,
  .why-section h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(27px, 7.2vw, 33px);
    font-weight: 900;
    line-height: 1.08;
  }

  .quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 16px 10px;
    color: #fff;
    text-align: center;
  }

  .quick-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 13px;
    color: var(--orange);
  }

  .quick-card span {
    color: #fff;
    font-size: clamp(13px, 3.8vw, 17px);
    font-weight: 820;
    line-height: 1.18;
  }

  .service-list {
    display: grid;
    gap: 12px;
  }

  .service-list a {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 12px;
    min-height: 104px;
    padding: 16px 19px;
  }

  .service-list a > svg:first-child {
    width: 54px;
    height: 54px;
    color: var(--orange);
  }

  .service-list a > svg:last-child {
    width: 25px;
    height: 25px;
    color: var(--orange);
  }

  .service-list strong,
  .service-list small {
    display: block;
  }

  .service-list strong {
    color: #fff;
    font-size: clamp(18px, 4.8vw, 24px);
    font-weight: 900;
    line-height: 1.14;
  }

  .service-list small {
    margin-top: 6px;
    color: #c9ccd0;
    font-size: clamp(14px, 3.75vw, 18px);
    line-height: 1.35;
  }

  .mobile-competency-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mobile-competency-list article {
    min-height: 160px;
    padding: 17px;
  }

  .mobile-competency-list svg {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
    color: var(--orange);
  }

  .mobile-competency-list h3,
  .mobile-competency-list p {
    margin: 0;
  }

  .mobile-competency-list h3 {
    color: #fff;
    font-size: clamp(15px, 3.8vw, 18px);
    font-weight: 850;
    line-height: 1.15;
  }

  .mobile-competency-list p {
    margin-top: 9px;
    color: #c6c9cc;
    font-size: clamp(12px, 3.25vw, 15px);
    line-height: 1.32;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-experience {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px 16px;
    align-items: center;
    min-height: 102px;
    margin-bottom: 12px;
    padding: 18px;
    border-color: rgba(255, 111, 0, 0.42);
    background:
      linear-gradient(135deg, rgba(255, 111, 0, 0.13), rgba(17, 20, 23, 0.94)),
      radial-gradient(circle at 13% 50%, rgba(255, 111, 0, 0.18), transparent 8rem);
  }

  .mobile-experience span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 111, 0, 0.5);
    border-radius: 50%;
    color: var(--orange);
    font-size: 20px;
    font-weight: 950;
    line-height: 1;
  }

  .mobile-experience strong,
  .mobile-experience p {
    margin: 0;
  }

  .mobile-experience strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-experience p {
    grid-column: 2;
    color: #cbd0d4;
    font-size: 14px;
    line-height: 1.35;
  }

  .why-grid article {
    min-width: 0;
    min-height: 151px;
    padding: 15px 8px;
  }

  .why-grid svg {
    width: 33px;
    height: 33px;
    margin-bottom: 10px;
    color: var(--orange);
  }

  .why-grid h3,
  .why-grid p {
    margin: 0;
  }

  .why-grid h3 {
    color: #fff;
    font-size: clamp(11px, 2.85vw, 15px);
    font-weight: 850;
    line-height: 1.2;
  }

  .why-grid p {
    margin-top: 11px;
    color: #c6c9cc;
    font-size: clamp(11px, 2.75vw, 15px);
    line-height: 1.28;
  }

  .mobile-promise {
    display: flex;
    align-items: center;
    gap: 19px;
    min-height: 102px;
    margin-top: 20px;
    padding: 18px 22px;
    border-color: rgba(255, 111, 0, 0.58);
    background:
      linear-gradient(135deg, rgba(255, 111, 0, 0.12), rgba(18, 20, 23, 0.93) 40%, rgba(12, 14, 16, 0.96)),
      radial-gradient(circle at 9% 50%, rgba(255, 111, 0, 0.14), transparent 9rem);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 0 24px rgba(255, 111, 0, 0.16);
  }

  .mobile-promise svg {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    color: var(--orange);
  }

  .mobile-promise strong,
  .mobile-promise span {
    display: block;
  }

  .mobile-promise strong {
    color: #fff;
    font-size: clamp(22px, 6.1vw, 30px);
    font-weight: 900;
    line-height: 1.08;
  }

  .mobile-promise span {
    margin-top: 8px;
    color: #e0e2e4;
    font-size: clamp(16px, 4.5vw, 22px);
    line-height: 1.2;
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 66px;
    margin-top: 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange-light), var(--orange) 58%, var(--orange-deep));
    color: #fff;
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 18px 40px rgba(255, 111, 0, 0.26);
  }

  .mobile-cta svg {
    width: 29px;
    height: 29px;
  }

  .mobile-credit {
    display: flex;
    margin-top: 30px;
    padding: 22px 0 6px;
    text-align: center;
    font-size: 12px;
  }

  .bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    height: calc(88px + env(safe-area-inset-bottom));
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 12, 14, 0.96);
    backdrop-filter: blur(16px);
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    color: #b8bec4;
    font-size: 12px;
    font-weight: 750;
  }

  .bottom-nav svg {
    width: 25px;
    height: 25px;
  }

  .bottom-nav .active {
    color: var(--orange);
  }
}

@media (max-width: 420px) {
  .privacy-modal {
    align-items: end;
    padding: 14px;
  }

  .privacy-panel {
    max-height: calc(100vh - 28px);
    padding: 25px 20px 20px;
  }

  .privacy-close {
    top: 14px;
    right: 14px;
  }

  .mobile-header {
    padding-right: 21px;
    padding-left: 21px;
  }

  .mobile-scroll {
    padding-right: 21px;
    padding-left: 21px;
  }

  .welcome {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 18px;
  }

  .welcome img {
    width: 98px;
    height: 98px;
  }

  .mobile-proof article {
    min-height: 137px;
    padding: 16px 12px;
  }

  .quick-card {
    min-height: 112px;
  }

  .privacy-link {
    min-height: 52px;
    padding: 0 25px;
    border-radius: 17px;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .mobile-scroll {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mobile-proof,
  .quick-grid {
    gap: 9px;
  }

  .mobile-proof article {
    padding: 14px 9px;
  }

  .quick-card {
    padding-right: 7px;
    padding-left: 7px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-list a {
    grid-template-columns: 56px minmax(0, 1fr) 22px;
    padding: 14px;
  }

  .service-list a > svg:first-child {
    width: 45px;
    height: 45px;
  }
}

:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 111, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, #f7f8f9 0%, #eceff2 100%);
  color: var(--text);
}

:root[data-theme="light"] .desktop-home {
  background:
    radial-gradient(circle at 50% 58%, rgba(255, 111, 0, 0.05), transparent 24rem),
    linear-gradient(180deg, #f7f8f9 0%, #eef1f4 100%);
}

:root[data-theme="light"] .desktop-hero {
  border-bottom-color: rgba(12, 19, 24, 0.1);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.58) 31%, rgba(0, 0, 0, 0.18) 68%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.14) 64%, rgba(247, 248, 249, 0.96) 100%),
    var(--hero-bg-image) right center / cover no-repeat;
  background-position: center center, center center, right center;
}

:root[data-theme="light"] .main-nav,
:root[data-theme="light"] .hero-content h1,
:root[data-theme="light"] .hero-content > strong,
:root[data-theme="light"] .hero-content p {
  color: #fff;
}

:root[data-theme="light"] .theme-toggle {
  border-color: rgba(12, 19, 24, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: #101417;
}

:root[data-theme="light"] .language-picker {
  border-color: rgba(12, 19, 24, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: #101417;
}

:root[data-theme="light"] .proof-band,
:root[data-theme="light"] .service-card,
:root[data-theme="light"] .competency-card,
:root[data-theme="light"] .quote-card,
:root[data-theme="light"] .about-card,
:root[data-theme="light"] .experience-card,
:root[data-theme="light"] .references-card,
:root[data-theme="light"] .trust-card,
:root[data-theme="light"] .mobile-legal,
:root[data-theme="light"] .mobile-proof article,
:root[data-theme="light"] .mobile-competency-list article,
:root[data-theme="light"] .quick-card,
:root[data-theme="light"] .service-list a,
:root[data-theme="light"] .why-grid article,
:root[data-theme="light"] .mobile-promise,
:root[data-theme="light"] .mobile-experience {
  border-color: var(--border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 241, 245, 0.92)),
    radial-gradient(circle at 45% 92%, rgba(255, 111, 0, 0.055), transparent 11rem);
  box-shadow: var(--shadow);
}

:root[data-theme="light"] .proof-band h2,
:root[data-theme="light"] .expertise-section > h2,
:root[data-theme="light"] .competency-section h2,
:root[data-theme="light"] .service-card h3,
:root[data-theme="light"] .competency-card h3,
:root[data-theme="light"] .about-card h2,
:root[data-theme="light"] .section-heading h2,
:root[data-theme="light"] .experience-card h3,
:root[data-theme="light"] .references-card h3,
:root[data-theme="light"] .trust-card h3,
:root[data-theme="light"] .welcome h1,
:root[data-theme="light"] .mobile-proof h2,
:root[data-theme="light"] .quick-section h2,
:root[data-theme="light"] .mobile-services h2,
:root[data-theme="light"] .mobile-competencies h2,
:root[data-theme="light"] .why-section h2,
:root[data-theme="light"] .quick-card span,
:root[data-theme="light"] .service-list strong,
:root[data-theme="light"] .mobile-competency-list h3,
:root[data-theme="light"] .why-grid h3,
:root[data-theme="light"] .mobile-legal strong,
:root[data-theme="light"] .mobile-experience strong,
:root[data-theme="light"] .mobile-promise strong {
  color: var(--text);
}

:root[data-theme="light"] .proof-band p,
:root[data-theme="light"] .service-card p,
:root[data-theme="light"] .competency-heading p,
:root[data-theme="light"] .competency-card p,
:root[data-theme="light"] .about-card p,
:root[data-theme="light"] .experience-card p,
:root[data-theme="light"] .references-card p,
:root[data-theme="light"] .trust-card p,
:root[data-theme="light"] .welcome p,
:root[data-theme="light"] .mobile-proof p,
:root[data-theme="light"] .service-list small,
:root[data-theme="light"] .mobile-competency-list p,
:root[data-theme="light"] .why-grid p,
:root[data-theme="light"] .mobile-experience p,
:root[data-theme="light"] .mobile-promise span,
:root[data-theme="light"] .mobile-legal span {
  color: var(--muted);
}

:root[data-theme="light"] .quote-card p {
  color: #2f3740;
}

:root[data-theme="light"] .quote-mark {
  color: rgba(16, 20, 23, 0.36);
}

:root[data-theme="light"] .legal-tags li,
:root[data-theme="light"] .references-card li {
  border-color: rgba(255, 111, 0, 0.22);
  background: rgba(255, 111, 0, 0.08);
  color: #172027;
}

:root[data-theme="light"] .mobile-home {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 111, 0, 0.1), transparent 16rem),
    radial-gradient(circle at 46% 48%, rgba(12, 19, 24, 0.045), transparent 18rem),
    linear-gradient(160deg, #f8f9fa 0%, #eef1f4 52%, #f7f8f9 100%);
}

:root[data-theme="light"] .mobile-home::before {
  opacity: 0.08;
}

:root[data-theme="light"] .icon-button,
:root[data-theme="light"] .bottom-nav a {
  color: #151b21;
}

:root[data-theme="light"] .mobile-header {
  border-bottom-color: rgba(12, 19, 24, 0.1);
}

:root[data-theme="light"] .mobile-experience,
:root[data-theme="light"] .mobile-promise,
:root[data-theme="light"] .experience-card {
  border-color: rgba(255, 111, 0, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 111, 0, 0.11), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 13% 50%, rgba(255, 111, 0, 0.13), transparent 8rem);
}

:root[data-theme="light"] .creator-credit {
  border-top-color: rgba(12, 19, 24, 0.1);
  color: var(--dim);
}

:root[data-theme="light"] .creator-credit a,
:root[data-theme="light"] .creator-credit strong {
  color: #2f3740;
}

:root[data-theme="light"] .creator-credit a:hover,
:root[data-theme="light"] .creator-credit a:focus-visible {
  color: var(--orange);
}

:root[data-theme="light"] .privacy-link {
  border-color: rgba(12, 19, 24, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(239, 243, 246, 0.86)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.1), transparent 9rem);
  color: #4e5963;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 15px 36px rgba(12, 19, 24, 0.08);
}

:root[data-theme="light"] .privacy-link span[aria-hidden="true"] {
  color: rgba(16, 20, 23, 0.42);
}

:root[data-theme="light"] .privacy-link:hover,
:root[data-theme="light"] .privacy-link:focus-visible {
  border-color: rgba(255, 111, 0, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 243, 246, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.14), transparent 9rem);
  color: var(--orange);
}

:root[data-theme="light"] .privacy-backdrop {
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 111, 0, 0.13), transparent 25rem),
    rgba(16, 20, 23, 0.42);
}

:root[data-theme="light"] .privacy-panel {
  border-color: rgba(255, 111, 0, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 245, 0.98)),
    radial-gradient(circle at 8% 0%, rgba(255, 111, 0, 0.13), transparent 17rem);
  box-shadow:
    0 32px 90px rgba(12, 19, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

:root[data-theme="light"] .privacy-close {
  border-color: rgba(12, 19, 24, 0.13);
  background: rgba(255, 255, 255, 0.7);
  color: #101417;
}

:root[data-theme="light"] .privacy-close:hover,
:root[data-theme="light"] .privacy-close:focus-visible {
  border-color: rgba(255, 111, 0, 0.52);
  background: rgba(255, 111, 0, 0.1);
  color: var(--orange);
}

:root[data-theme="light"] .privacy-panel h2,
:root[data-theme="light"] .privacy-grid strong {
  color: var(--text);
}

:root[data-theme="light"] .privacy-panel > p,
:root[data-theme="light"] .privacy-grid p {
  color: var(--muted);
}

:root[data-theme="light"] .privacy-grid article {
  border-color: rgba(12, 19, 24, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 241, 245, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(255, 111, 0, 0.09), transparent 11rem);
}

:root[data-theme="light"] .bottom-nav {
  border-top-color: rgba(12, 19, 24, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

:root[data-theme="light"] .bottom-nav .active {
  color: var(--orange);
}
