/* ============================================================
   ЦОГ-ЗОРИГ ХХК — Premium single-page site
   Brand: purple/violet + green (sustainable energy)
   ============================================================ */

:root {
  /* Brand */
  --purple-900: #2d0a52;
  --purple-800: #3d1370;
  --purple-700: #4a148c;
  --purple-600: #6a1fb0;
  --purple-500: #8a2be2;
  --purple-300: #c08bf5;
  --green-600: #1f9e5b;
  --green-500: #2eb872;
  --green-400: #56d68c;
  --gold: #f2b705;

  /* Neutrals */
  --ink: #1a1228;
  --ink-soft: #4a4458;
  --muted: #7a7488;
  --line: #ece8f2;
  --bg: #ffffff;
  --bg-soft: #f8f6fc;
  --bg-tint: #f3effa;

  /* Effects */
  --grad: linear-gradient(120deg, var(--purple-600), var(--purple-500) 55%, var(--green-500));
  --grad-deep: linear-gradient(160deg, var(--purple-900), var(--purple-700) 60%, var(--purple-600));
  --shadow-sm: 0 2px 8px rgba(45, 10, 82, .06);
  --shadow-md: 0 12px 32px rgba(45, 10, 82, .10);
  --shadow-lg: 0 28px 60px rgba(45, 10, 82, .16);
  --radius: 18px;
  --radius-sm: 12px;

  --container: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: 'Inter', 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; line-height: 1.12; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- Helpers ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 14px;
}
.kicker::before { content: "— "; color: var(--green-500); }

.section { padding: clamp(70px, 9vw, 120px) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__title { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 800; }
.section__sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px;
  cursor: pointer; border: 0;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap;
}
.btn span { transition: transform .3s var(--ease); }
.btn:hover span { transform: translateX(4px); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 26px rgba(106, 31, 176, .34); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(106, 31, 176, .42); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 200; transition: width .1s linear;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(74, 20, 140, .28); overflow: hidden; flex: none; }
.brand-mark img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; color: var(--ink); }
.brand-text small { font-size: .68rem; letter-spacing: .22em; color: var(--purple-600); font-weight: 700; }
.nav:not(.scrolled) .brand-text strong { color: #fff; }
.nav:not(.scrolled) .brand-text small { color: var(--green-400); }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 600; font-size: .94rem; padding: 8px 14px; border-radius: 999px;
  color: rgba(255, 255, 255, .9); transition: color .25s, background .25s;
}
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--purple-600); background: var(--bg-tint); }
.nav.scrolled .nav__links a:hover { color: var(--purple-700); }
.nav__cta { background: var(--grad); color: #fff !important; box-shadow: 0 8px 20px rgba(106, 31, 176, .3); }
.nav__cta:hover { background: var(--grad) !important; transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--grad-deep); color: #fff; overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .6; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; animation: float 18s ease-in-out infinite; }
.hero__orb--1 { width: 460px; height: 460px; background: radial-gradient(circle, #8a2be2, transparent 70%); top: -120px; right: -80px; }
.hero__orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, #2eb872, transparent 70%); bottom: -120px; left: -60px; animation-delay: -6s; }
.hero__orb--3 { width: 300px; height: 300px; background: radial-gradient(circle, #c08bf5, transparent 70%); top: 40%; left: 45%; animation-delay: -11s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 25px) scale(.95); }
}
.hero__turbine { position: absolute; right: 8%; bottom: 0; height: 46vh; max-height: 420px; opacity: .5; display: none; }
@media (min-width: 980px) { .hero__turbine { display: block; } }
.turbine-blades { animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; font-size: .9rem;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px); margin-bottom: 26px;
}
.hero__title { font-size: clamp(2.5rem, 7vw, 4.6rem); font-weight: 800; }
.hero__title .grad-text { background: linear-gradient(100deg, #c08bf5, #56d68c); -webkit-background-clip: text; background-clip: text; }
.hero__lead { margin: 26px 0 36px; font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255, 255, 255, .82); max-width: 600px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badges { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, .15); }
.hero__badge { display: flex; flex-direction: column; }
.hero__badge strong { font-family: 'Manrope', sans-serif; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; background: linear-gradient(100deg, #fff, #c08bf5); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__badge span { font-size: .88rem; color: rgba(255, 255, 255, .7); }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .4); border-radius: 14px; z-index: 2; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------- CLIENTS marquee ---------- */
.clients { padding: 40px 0; background: var(--bg-soft); border-bottom: 1px solid var(--line); overflow: hidden; }
.clients__label { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 22px; }
.clients__wall {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px;
}
.logo-tile {
  display: grid; place-items: center; padding: 18px; height: 96px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.logo-tile img {
  max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .68;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.logo-tile:hover img { filter: grayscale(0); opacity: 1; }
.clients__more { text-align: center; margin-top: 22px; color: var(--muted); font-size: .92rem; }

@media (max-width: 900px) { .clients__wall { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .clients__wall { grid-template-columns: repeat(2, 1fr); } .logo-tile { height: 84px; } }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.about__text p { color: var(--ink-soft); margin-top: 18px; font-size: 1.04rem; }
.pillars { display: grid; gap: 16px; margin-top: 36px; }
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar__icon { grid-row: span 2; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--bg-tint); color: var(--purple-600); font-size: 1.3rem; }
.pillar h3 { font-size: 1.08rem; align-self: center; }
.pillar p { color: var(--muted); font-size: .95rem; margin: 0; }

.about__stats { position: sticky; top: 100px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 28px; border-radius: var(--radius); background: var(--grad-deep); color: #fff; box-shadow: var(--shadow-lg); }
.stat { padding: 14px; }
.stat__num { font-family: 'Manrope', sans-serif; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; display: block; background: linear-gradient(100deg, #fff, #56d68c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .86rem; color: rgba(255, 255, 255, .72); }
.values { grid-column: span 2; margin-top: 8px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .15); display: grid; gap: 10px; }
.values li { position: relative; padding-left: 26px; font-size: .94rem; color: rgba(255, 255, 255, .9); }
.values li::before { content: "✓"; position: absolute; left: 0; color: var(--green-400); font-weight: 800; }

/* ---------- SERVICES ---------- */
.services { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card {
  position: relative; padding: 34px 28px; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__num { font-family: 'Manrope', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--bg-tint); line-height: 1; }
.card:hover .card__num { color: var(--purple-300); }
.card__title { font-size: 1.28rem; margin: 12px 0 10px; }
.card > p { color: var(--ink-soft); font-size: .96rem; }
.card__list { margin-top: 18px; display: grid; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--ink-soft); }
.card__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 12px; border-radius: 50%; background: var(--bg-tint); box-shadow: inset 0 0 0 3px var(--green-500); }
.card--featured { background: var(--grad-deep); color: #fff; border-color: transparent; }
.card--featured::before { transform: scaleX(1); }
.card--featured .card__num { color: rgba(255, 255, 255, .18); }
.card--featured > p { color: rgba(255, 255, 255, .8); }
.card--featured .card__list li { color: rgba(255, 255, 255, .88); }
.card--featured .card__list li::before { background: rgba(255, 255, 255, .12); box-shadow: inset 0 0 0 3px var(--green-400); }
.card__tag { position: absolute; top: 20px; right: 20px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: rgba(86, 214, 140, .2); color: var(--green-400); border: 1px solid rgba(86, 214, 140, .35); }

/* ---------- WHY ---------- */
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.why__item { padding: 32px 26px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.why__item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; font-size: 1.5rem; background: var(--bg-tint); margin-bottom: 18px; }
.why__item h3 { font-size: 1.14rem; margin-bottom: 10px; }
.why__item p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- TEAM ---------- */
.team { background: var(--bg-soft); }
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.member { padding: 30px 26px; text-align: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.member__photo {
  width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--grad-deep); display: grid; place-items: center;
  background-size: cover; background-position: center; position: relative;
  box-shadow: 0 8px 22px rgba(74, 20, 140, .28);
}
.member__photo::after { content: attr(data-initials); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.5rem; color: #fff; }
.member__photo[style*="url"]::after { content: ""; }
.member h3 { font-size: 1.16rem; }
.member__role { margin-top: 6px; color: var(--purple-600); font-weight: 600; font-size: .9rem; }
.member__meta { margin-top: 8px; color: var(--muted); font-size: .84rem; }

/* ---------- PROJECTS / TIMELINE ---------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.tl { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 26px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.tl:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.tl__year { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; background: var(--grad); padding: 10px 14px; border-radius: 12px; height: max-content; box-shadow: 0 6px 16px rgba(106, 31, 176, .3); }
.tl__body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.tl__body p { color: var(--ink-soft); font-size: .92rem; }

.sectors { margin-top: 48px; text-align: center; }
.sectors__title { font-size: 1.1rem; color: var(--muted); margin-bottom: 18px; font-weight: 700; }
.sectors__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.sectors__tags span { padding: 9px 20px; border-radius: 999px; background: var(--bg-tint); color: var(--purple-700); font-weight: 600; font-size: .9rem; transition: transform .25s, background .25s, color .25s; }
.sectors__tags span:hover { transform: translateY(-3px); background: var(--grad); color: #fff; }

/* ---------- CERTS ---------- */
.certs { background: var(--bg-soft); }
.certs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.cert { padding: 34px 28px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.cert:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cert__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; font-size: 1.6rem; background: linear-gradient(135deg, var(--bg-tint), #e7f7ee); margin-bottom: 18px; }
.cert h3 { font-size: 1.14rem; margin-bottom: 12px; }
.cert p { color: var(--ink-soft); font-size: .94rem; margin-top: 6px; }
.cert strong { color: var(--purple-700); }

/* ---------- CONTACT ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact__info > p { color: var(--ink-soft); margin-top: 8px; max-width: 460px; }
.contact__list { margin-top: 34px; display: grid; gap: 20px; }
.contact__list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
.contact__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-tint); color: var(--purple-600); font-size: 1.2rem; }
.contact__list small { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 2px; }
.contact__list a { font-weight: 600; color: var(--ink); transition: color .25s; }
.contact__list a:hover { color: var(--purple-600); }

.contact__form { padding: 36px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.contact__form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--bg-soft);
  transition: border-color .25s, box-shadow .25s, background .25s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(138, 43, 226, .1);
}
.form-note { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

/* ---------- FOOTER ---------- */
.footer { background: var(--purple-900); color: rgba(255, 255, 255, .85); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__brand strong { font-family: 'Manrope', sans-serif; font-size: 1.15rem; color: #fff; }
.footer__brand p { font-size: .86rem; color: var(--green-400); letter-spacing: .04em; }
.footer__nav { display: grid; gap: 12px; align-content: start; }
.footer__nav a { color: rgba(255, 255, 255, .75); font-size: .95rem; transition: color .25s; width: max-content; }
.footer__nav a:hover { color: #fff; }
.footer__contact { display: grid; gap: 10px; align-content: start; font-size: .94rem; }
.footer__contact a:hover { color: #fff; }
.footer__contact span { color: rgba(255, 255, 255, .6); font-size: .88rem; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); padding: 22px 0; }
.footer__bar .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer__bar p { font-size: .85rem; color: rgba(255, 255, 255, .55); }

/* ---------- REVEAL animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__stats { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 6px; padding: 90px 24px 40px; background: #fff;
    box-shadow: -20px 0 50px rgba(45, 10, 82, .2);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--ink-soft); padding: 14px 16px; border-radius: 12px; }
  .nav__links a:hover { background: var(--bg-tint); }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav:not(.scrolled) .nav__toggle span { background: #fff; }
  .nav__toggle[aria-expanded="true"] span { background: var(--ink) !important; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__badges { gap: 24px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
}
