/* ==============================================
   NAZARI GRUPPE — Stylesheet
   ============================================== */

:root {
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --gold-dark:   #a07840;
  --bg:          #0d0f14;
  --bg-alt:      #111520;
  --bg-card:     rgba(255,255,255,0.025);
  --border:      rgba(201,169,110,0.14);
  --border-sub:  rgba(255,255,255,0.06);
  --text:        #dcd8d0;
  --text-muted:  #7a7885;
  --text-dim:    #454450;
  --white:       #f4f2ec;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --r:           4px;
  --r-lg:        8px;
  --ease:        0.3s ease;
  --max-w:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 100px 0; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0d0f14;
  box-shadow: 0 4px 20px rgba(201,169,110,.22);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 30px rgba(201,169,110,.38);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,169,110,.05);
}
.btn-lg   { padding: 17px 36px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
.nav.scrolled {
  background: rgba(8,10,16,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-sub);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0d0f14;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-size: 12px; font-weight: 700; letter-spacing: .2em; color: var(--white); }
.logo__sub  { font-size: 8px;  font-weight: 400; letter-spacing: .22em; color: var(--text-muted); margin-top: 2px; }

/* Desktop nav */
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav__link:hover { color: var(--gold-light); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all var(--ease);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 45%, rgba(35,20,75,.55) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201,169,110,.05) 0%, transparent 48%),
    linear-gradient(155deg, #08090f 0%, #0c1020 40%, #12182a 70%, #0d0f14 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 75%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  top: -10%; right: 5%;
  background: rgba(40,25,90,.45);
}
.hero__glow--2 {
  width: 350px; height: 350px;
  bottom: 5%; left: -5%;
  background: rgba(201,169,110,.05);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}
.eyebrow-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 580px;
  margin-bottom: 48px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__scroll .scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:.25} 50%{opacity:1} }

/* ================================================
   STATS STRIP
   ================================================ */
.stats-strip {
  background: linear-gradient(90deg, rgba(201,169,110,.03) 0%, rgba(201,169,110,.06) 50%, rgba(201,169,110,.03) 100%);
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
}
.stats-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 28px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 32px 56px;
  flex: 1;
  max-width: 200px;
}
.stat__num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat__lbl {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-div {
  width: 1px;
  background: var(--border-sub);
  margin: 16px 0;
  align-self: stretch;
}

/* ================================================
   SECTION HEADER
   ================================================ */
.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  padding: 0 24px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.section-tag::before { right: 0; }
.section-tag::after  { left: 0; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* ================================================
   PROFILES
   ================================================ */
.profiles { background: var(--bg); }

.profiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.profile-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  transition: all .4s ease;
  overflow: hidden;
}
.profile-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.profile-card:hover {
  border-color: var(--border);
  background: rgba(201,169,110,.025);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.3), 0 0 0 1px rgba(201,169,110,.1);
}
.profile-card:hover::before { opacity: 1; }

.profile-card__num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,.025);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.profile-card__icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 22px;
}
.profile-card__icon svg { width: 100%; height: 100%; }

.profile-card__tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,.09);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.profile-card__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.profile-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.profile-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.profile-card__list li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
  opacity: .7;
}

.profile-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap var(--ease), color var(--ease);
}
.profile-card__cta svg { width: 16px; height: 16px; transition: transform var(--ease); }
.profile-card__cta:hover { color: var(--gold-light); gap: 13px; }
.profile-card__cta:hover svg { transform: translateX(3px); }

/* ================================================
   FEATURES
   ================================================ */
.features { background: var(--bg-alt); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feature {
  background: var(--bg-alt);
  padding: 40px 32px;
  transition: background var(--ease);
}
.feature:hover { background: rgba(201,169,110,.02); }

.feature__icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature__icon svg { width: 100%; height: 100%; }

.feature h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--bg); }

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section-title { text-align: left; }
.contact__info .section-tag { padding-left: 0; }
.contact__info .section-tag::before { display: none; }
.contact__info .section-tag::after  { left: calc(100% + 10px); }

.contact__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 44px;
}

.contact__details { display: flex; flex-direction: column; gap: 22px; }

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__detail-icon {
  width: 42px; height: 42px;
  background: rgba(201,169,110,.07);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__detail-icon svg { width: 18px; height: 18px; }
.contact__detail > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__detail strong {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.contact__detail span,
.contact__detail a {
  font-size: 15px;
  color: var(--text);
}
.contact__detail a:hover { color: var(--gold-light); }

/* Form */
.contact__form-wrap {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 44px;
}

.form-row { margin-bottom: 18px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  border-color: rgba(201,169,110,.4);
  background: rgba(201,169,110,.03);
}
.form-input.error { border-color: rgba(220,70,70,.5); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a7885' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #151820; color: var(--text); }

.form-textarea { resize: vertical; min-height: 120px; }

/* Upload */
.upload-zone {
  position: relative;
  border: 1px dashed rgba(201,169,110,.25);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--ease);
  cursor: pointer;
}
.upload-zone:hover,
.upload-zone.dragover {
  border-color: var(--gold);
  background: rgba(201,169,110,.03);
}
.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-zone__body svg {
  width: 30px; height: 30px;
  color: var(--gold);
  margin: 0 auto 12px;
}
.upload-zone__body p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.upload-zone__body p button {
  color: var(--gold);
  font-size: 14px;
  text-decoration: underline;
  position: relative;
  z-index: 2;
}
.upload-zone__body span {
  font-size: 12px;
  color: var(--text-dim);
}

.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border-sub);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-muted);
}
.file-item__rm {
  font-size: 20px;
  line-height: 1;
  color: var(--text-dim);
  transition: color var(--ease);
  padding: 0 4px;
}
.file-item__rm:hover { color: #e05050; }

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input { display: none; }
.form-checkbox__box {
  width: 18px; height: 18px;
  border: 1px solid var(--border-sub);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #0d0f14;
}
.form-checkbox input:checked ~ .form-checkbox__box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-checkbox input:checked ~ .form-checkbox__box::after { content: '✓'; }
.form-checkbox__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-checkbox__text a { color: var(--gold); text-decoration: underline; }

.btn-submit {
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.btn-submit svg { width: 18px; height: 18px; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #07090e;
  border-top: 1px solid var(--border-sub);
}
.footer__inner { }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer__brand p {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 280px;
}
.footer__col h4,
.footer__contact-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--ease);
}
.footer__col a:hover { color: var(--gold-light); }

.footer__contact-col address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 14px;
}
.footer__contact-col a {
  font-size: 14px;
  color: var(--gold);
  transition: color var(--ease);
}
.footer__contact-col a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid var(--border-sub);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 12px; color: var(--text-dim); letter-spacing: .04em; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color var(--ease);
}
.footer__legal a:hover { color: var(--gold-light); }

/* ================================================
   TOAST
   ================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: #1a1d2a;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  font-size: 14px;
  color: var(--text);
  opacity: 0;
  transition: all .45s cubic-bezier(.16,1,.3,1);
  z-index: 9999;
  white-space: nowrap;
}
.toast svg { width: 18px; height: 18px; color: #4ade80; flex-shrink: 0; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-hero {
  background: linear-gradient(155deg, #08090f 0%, #0c1020 60%, #0d0f14 100%);
  padding: 140px 0 80px;
  border-bottom: 1px solid var(--border-sub);
}
.legal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px,4vw,48px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-hero p { font-size: 15px; color: var(--text-muted); }

.legal-body { padding: 80px 0 100px; }
.legal-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 40px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.legal-body a { color: var(--gold); transition: color var(--ease); }
.legal-body a:hover { color: var(--gold-light); }
.legal-body ul { margin: 8px 0 14px 20px; }
.legal-body ul li { font-size: 15px; color: var(--text-muted); line-height: 1.85; list-style: disc; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .contact__layout { grid-template-columns: 1fr; gap: 52px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stat { padding: 28px 36px; }
}

@media (max-width: 900px) {
  .profiles__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(8,10,16,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px;
    gap: 22px;
    border-bottom: 1px solid var(--border-sub);
  }
  .nav__links.open .nav__link { font-size: 15px; }
  .nav__links.open .btn { width: 100%; justify-content: center; }

  .hero__content { padding: 40px 0; }
  .hero__scroll { display: none; }

  .stats-strip__inner { flex-wrap: wrap; }
  .stat { flex: 1 1 40%; padding: 24px 16px; }
  .stat-div:nth-child(4) { display: none; }

  .contact__form-wrap { padding: 28px 24px; }
  .form-row--2 { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand p { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .features__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stat { flex: 1 1 100%; }
  .stat-div { display: none; }
  .profile-card { padding: 28px 24px; }
}
