:root {
  --bg: #050505;
  --bg-2: #080812;
  --card: rgba(255, 255, 255, 0.065);
  --card-2: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b7b7c9;
  --muted-2: #85859a;
  --cyan: #69f8ff;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --radius: 28px;
  --max: 1220px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 36px), var(--max));
  min-height: 70px;
  padding: 12px 16px;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 8, 16, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
  transition: 0.3s ease;
}

.site-header.scrolled {
  top: 10px;
  background: rgba(8, 8, 16, 0.9);
}

.brand,
.footer-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 48%, var(--purple) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #d8d8e8;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav a:hover {
  color: #fff;
}

.header-socials,
.mobile-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-socials a,
.mobile-socials a,
.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.25s ease;
}

.header-socials a:hover,
.mobile-socials a:hover,
.footer-socials a:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #020202;
}

.mobile-socials {
  display: none;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  place-items: center;
  gap: 5px;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: 0.25s ease;
}

.burger.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.burger.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 165px 7% 95px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(105, 248, 255, 0.16), transparent 34%),
    radial-gradient(circle at 22% 75%, rgba(139, 92, 246, 0.19), transparent 35%),
    linear-gradient(180deg, #050505 0%, #070711 70%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  right: 12%;
  top: 20%;
  background: var(--cyan);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: 9%;
  bottom: 8%;
  background: var(--purple);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 0.92;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero-text {
  max-width: 710px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  min-height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: 0.28s ease;
  cursor: pointer;
}

.btn-primary {
  color: #020202;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
  box-shadow: 0 18px 70px rgba(105, 248, 255, 0.22);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn.small {
  min-height: 48px;
  padding: 0 20px;
  font-size: 14px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.hero-metrics div {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  display: block;
  font-size: 27px;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
}

.hero-visual {
  min-height: 560px;
}

.dashboard-card {
  position: absolute;
  inset: 55px 20px 50px 20px;
  padding: 30px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 80% 20%, rgba(105, 248, 255, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(26px);
  box-shadow: 0 32px 130px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.1) 42%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 5s infinite;
}

@keyframes shine {
  0%, 35% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.dashboard-title {
  width: 76%;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(90deg, #fff, var(--cyan));
  margin-bottom: 24px;
}

.dashboard-line {
  width: 58%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  margin-bottom: 12px;
}

.dashboard-line.big {
  width: 86%;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.dashboard-grid div {
  height: 112px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-bottom {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.dashboard-bottom span:first-child {
  width: 170px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
}

.dashboard-bottom span:last-child {
  width: 120px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}

.mini-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(7, 7, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.mini-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #020202;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.mini-card strong {
  display: block;
  font-size: 15px;
}

.mini-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 13px;
}

.mini-card-one {
  top: 18px;
  left: 0;
}

.mini-card-two {
  right: 0;
  bottom: 16px;
}

.section {
  padding: 118px 7%;
  position: relative;
}

.section-head {
  max-width: 880px;
  margin-bottom: 56px;
}

.section-head h2,
.consultation-box h2 {
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -3px;
  font-weight: 900;
}

.section-head p,
.consultation-box p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.features-grid,
.services-grid,
.pricing-grid,
.portfolio-grid,
.steps-grid,
.contacts-grid {
  display: grid;
  gap: 22px;
}

.features-grid {
  grid-template-columns: repeat(4, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid,
.portfolio-grid,
.steps-grid,
.contacts-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.service-card,
.price-card,
.step-card,
.contact-card {
  min-width: 0;
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.price-card:hover,
.step-card:hover,
.contact-card:hover,
.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(105, 248, 255, 0.42);
}

.feature-card i,
.contact-card i {
  font-size: 30px;
  color: var(--cyan);
  margin-bottom: 24px;
}

.feature-card h3,
.service-card h3,
.step-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.feature-card p,
.service-card p,
.step-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.65;
}

.service-card span,
.step-card span {
  display: block;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 34px;
}

.price-card {
  position: relative;
  min-height: 395px;
  display: flex;
  flex-direction: column;
}

.price-card.active {
  background:
    radial-gradient(circle at top right, rgba(105, 248, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04));
  border-color: rgba(105, 248, 255, 0.42);
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(105, 248, 255, 0.13);
  font-size: 12px;
  font-weight: 900;
}

.price-card p {
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 18px;
}

.price-card h3 {
  font-size: 31px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.price-card span {
  color: #d9d9e7;
  margin-bottom: 28px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.price-card li::before {
  content: "✦";
  color: var(--cyan);
  margin-right: 8px;
}

.price-card .btn {
  margin-top: auto;
}

.work-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
  transition: 0.3s ease;
}

.work-preview {
  height: 245px;
  background: #101010;
}

.work-preview.barber {
  background:
    linear-gradient(135deg, rgba(0,0,0,.15), rgba(0,0,0,.85)),
    radial-gradient(circle at 30% 30%, rgba(105,248,255,.8), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(139,92,246,.7), transparent 34%),
    #111;
}

.work-preview.dental {
  background:
    radial-gradient(circle at 70% 28%, rgba(105,248,255,.8), transparent 34%),
    linear-gradient(135deg, #10202a, #050505);
}

.work-preview.auto {
  background:
    radial-gradient(circle at 25% 78%, rgba(139,92,246,.8), transparent 34%),
    linear-gradient(135deg, #171717, #050505);
}

.work-preview.local {
  background:
    radial-gradient(circle at 80% 75%, rgba(105,248,255,.75), transparent 34%),
    linear-gradient(135deg, #121212, #050505);
}

.work-info {
  padding: 24px;
}

.work-info span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.work-info h3 {
  font-size: 24px;
  margin: 12px 0 20px;
}

.work-info a {
  font-weight: 900;
  color: #fff;
}

.consultation-box {
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 82% 22%, rgba(105, 248, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
  border: 1px solid var(--border);
}

.consultation-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: block;
}

.contact-card span {
  display: block;
  color: var(--muted-2);
  margin-bottom: 8px;
}

.contact-card strong {
  font-size: 18px;
  word-break: break-word;
}

.location {
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.location span {
  font-size: 22px;
  font-weight: 900;
}

.footer {
  padding: 52px 7%;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: center;
  background: #030303;
  border-top: 1px solid var(--border);
}

.footer p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--muted-2);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .features-grid,
  .pricing-grid,
  .portfolio-grid,
  .steps-grid,
  .contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consultation-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 64px;
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .brand {
    font-size: 24px;
  }

  .header-socials {
    display: none;
  }

  .burger {
    display: grid;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 26px;
    background: rgba(8, 8, 16, 0.94);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 17px;
  }

  .mobile-socials {
    display: flex;
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
    padding: 140px 22px 74px;
    gap: 44px;
  }

  .hero h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }

  .hero-text {
    font-size: 18px;
    margin-top: 24px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .dashboard-card {
    inset: 20px 0 34px;
    border-radius: 30px;
  }

  .mini-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
  }

  .section {
    padding: 84px 22px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .consultation-box h2 {
    font-size: 38px;
    letter-spacing: -2px;
  }

  .section-head p,
  .consultation-box p {
    font-size: 17px;
  }

  .features-grid,
  .services-grid,
  .pricing-grid,
  .portfolio-grid,
  .steps-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .price-card,
  .step-card,
  .contact-card {
    padding: 25px;
  }

  .price-card {
    min-height: auto;
  }

  .consultation-box {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .location {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 46px 22px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 39px;
  }

  .label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .section-head h2,
  .consultation-box h2 {
    font-size: 34px;
  }

  .dashboard-grid {
    gap: 10px;
  }

  .dashboard-grid div {
    height: 88px;
  }

  .dashboard-title {
    height: 44px;
  }
}
/* ===== NORMAL RESPONSIVE HERO CONTROL ===== */
/* Задача: на великих ПК лишити преміум, на ноутбуках стискати як нормальний layout */

@media (min-width: 769px) and (max-width: 1800px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr) !important;
    align-items: center !important;
    gap: clamp(28px, 3.2vw, 56px) !important;
    padding: clamp(115px, 8vw, 150px) clamp(42px, 6vw, 7%) clamp(60px, 5vw, 90px) !important;
    overflow: hidden !important;
  }

  .hero-content {
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 780px !important;
  }

  .label {
    font-size: clamp(11px, 0.9vw, 13px) !important;
    letter-spacing: clamp(3px, 0.35vw, 4px) !important;
    margin-bottom: 18px !important;
  }

  .hero h1 {
    font-size: clamp(48px, 4.85vw, 82px) !important;
    line-height: 0.93 !important;
    letter-spacing: -0.045em !important;
    max-width: 790px !important;
  }

  .hero-text {
    max-width: 640px !important;
    font-size: clamp(17px, 1.2vw, 20px) !important;
    line-height: 1.55 !important;
    margin-top: 22px !important;
  }

  .hero-buttons {
    margin-top: 30px !important;
    gap: 14px !important;
  }

  .btn {
    min-height: 52px !important;
    padding: 0 26px !important;
    font-size: 15px !important;
  }

  .hero-visual {
    display: block !important;
    position: relative !important;
    z-index: 2 !important;
    opacity: 1 !important;
    transform: none !important;
    justify-self: end !important;
    width: 100% !important;
    max-width: clamp(460px, 38vw, 640px) !important;
    min-height: clamp(390px, 34vw, 560px) !important;
    pointer-events: auto !important;
  }

  .dashboard-card {
    position: absolute !important;
    inset: clamp(34px, 4vw, 55px) 0 clamp(34px, 4vw, 50px) 0 !important;
    width: auto !important;
    height: auto !important;
  }

  .mini-card {
    display: flex !important;
  }
}

/* Нормальні ноутбуки 1366/1440/1536 — стискаємо сильніше */
@media (min-width: 769px) and (max-width: 1536px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr) !important;
    gap: 30px !important;
    padding-top: 115px !important;
    padding-bottom: 60px !important;
  }

  .hero h1 {
    font-size: clamp(44px, 4.55vw, 66px) !important;
    max-width: 700px !important;
  }

  .hero-text {
    font-size: 16.5px !important;
    max-width: 560px !important;
  }

  .hero-visual {
    max-width: 500px !important;
    min-height: 390px !important;
  }

  .dashboard-grid div {
    height: 72px !important;
  }

  .dashboard-title {
    height: 42px !important;
  }
}

/* Низькі ноутбуки, де не вистачає висоти */
@media (min-width: 769px) and (max-height: 820px) {
  .hero {
    padding-top: 105px !important;
    padding-bottom: 45px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 4.2vw, 60px) !important;
  }

  .hero-text {
    margin-top: 18px !important;
    font-size: 16px !important;
  }

  .hero-buttons {
    margin-top: 24px !important;
  }

  .hero-metrics {
    display: none !important;
  }

  .hero-visual {
    max-width: 460px !important;
    min-height: 340px !important;
  }

  .dashboard-grid div {
    height: 58px !important;
  }

  .dashboard-bottom span:first-child,
  .dashboard-bottom span:last-child {
    height: 38px !important;
  }
}
/* ===== TABLET / WIDE PHONE FIX: 650px–768px ===== */
/* 532px не чіпаємо. Це тільки для ширших телефонів / планшетного режиму */

@media (min-width: 650px) and (max-width: 768px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 230px !important;
    align-items: center !important;
    gap: 22px !important;
    padding: 135px 32px 70px !important;
    min-height: 100svh !important;
  }

  .hero-content {
    grid-column: 1 / 2 !important;
    max-width: 100% !important;
    width: 100% !important;
    z-index: 4 !important;
  }

  .label {
    font-size: 12px !important;
    letter-spacing: 3.5px !important;
    margin-bottom: 18px !important;
  }

  .hero h1 {
    font-size: clamp(38px, 5.6vw, 48px) !important;
    line-height: 0.94 !important;
    letter-spacing: -2px !important;
    max-width: 520px !important;
  }

  .hero-text {
    max-width: 520px !important;
    font-size: 17px !important;
    line-height: 1.55 !important;
    margin-top: 22px !important;
  }

  .hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-top: 28px !important;
  }

  .hero-buttons .btn,
  .btn {
    width: auto !important;
    min-height: 50px !important;
    padding: 0 22px !important;
    font-size: 14px !important;
  }

  .hero-visual {
    grid-column: 2 / 3 !important;
    display: block !important;
    position: relative !important;
    min-height: 300px !important;
    width: 230px !important;
    max-width: 230px !important;
    z-index: 2 !important;
    transform: none !important;
    opacity: 0.9 !important;
  }

  .dashboard-card {
    position: absolute !important;
    inset: 20px 0 20px 0 !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .dashboard-top {
    margin-bottom: 22px !important;
  }

  .dashboard-title {
    height: 30px !important;
    margin-bottom: 14px !important;
  }

  .dashboard-line {
    height: 8px !important;
    margin-bottom: 8px !important;
  }

  .dashboard-grid {
    margin-top: 22px !important;
    gap: 8px !important;
  }

  .dashboard-grid div {
    height: 48px !important;
    border-radius: 14px !important;
  }

  .dashboard-bottom {
    margin-top: 18px !important;
    gap: 8px !important;
  }

  .dashboard-bottom span:first-child,
  .dashboard-bottom span:last-child {
    height: 32px !important;
  }

  .mini-card {
    display: none !important;
  }

  .hero-metrics {
    display: none !important;
  }
}
/* ===== SMALL PHONE FIX: менше 650px ===== */
/* На малих телефонах прибираємо праву панельку повністю */

@media (max-width: 649px) {
  .hero {
    display: block !important;
  }

  .hero-visual {
    display: none !important;
  }

  .dashboard-card,
  .mini-card {
    display: none !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/* ===== COMPACT WHY SECTION ON PHONES ===== */

@media (max-width: 649px) {
  .why.section {
    padding-top: 64px !important;
    padding-bottom: 58px !important;
  }

  .why .section-head {
    margin-bottom: 26px !important;
  }

  .why .label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }

  .why .section-head h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
  }

  .why .section-head p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-top: 16px !important;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .feature-card {
    padding: 16px !important;
    border-radius: 20px !important;
    min-height: 145px !important;
  }

  .feature-card i {
    font-size: 21px !important;
    margin-bottom: 12px !important;
  }

  .feature-card h3 {
    font-size: 17px !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
  }

  .feature-card p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}
/* ===== COMPACT SERVICES SECTION ON PHONES ===== */

@media (max-width: 649px) {
  .services.section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .services .section-head {
    margin-bottom: 26px !important;
  }

  .services .label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }

  .services .section-head h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
  }

  .services .section-head p {
    display: none !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .service-card {
    padding: 16px !important;
    border-radius: 20px !important;
    min-height: 150px !important;
  }

  .service-card span {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    margin-bottom: 18px !important;
  }

  .service-card h3 {
    font-size: 17px !important;
    line-height: 1.15 !important;
    margin-bottom: 9px !important;
  }

  .service-card p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}
/* ===== COMPACT PREMIUM PRICING ON PHONES ===== */

@media (max-width: 649px) {
  .pricing.section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .pricing .section-head {
    margin-bottom: 26px !important;
  }

  .pricing .label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }

  .pricing .section-head h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
    max-width: 420px !important;
  }

  .pricing .section-head p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 14px !important;
    max-width: 420px !important;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .price-card {
    min-height: 0 !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background:
      radial-gradient(circle at top right, rgba(105, 248, 255, 0.1), transparent 40%),
      linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03)) !important;
  }

  .price-card.active {
    border-color: rgba(105, 248, 255, 0.55) !important;
    box-shadow: 0 0 36px rgba(105, 248, 255, 0.12) !important;
  }

  .price-card p {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .price-card h3 {
    font-size: 21px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.6px !important;
    margin-bottom: 8px !important;
  }

  .price-card span {
    display: block !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    color: #cfcfe0 !important;
    margin-bottom: 14px !important;
  }

  .price-card ul {
    gap: 7px !important;
    margin-bottom: 16px !important;
  }

  .price-card li {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
  }

  .price-card li::before {
    margin-right: 5px !important;
  }

  .price-card .btn {
    min-height: 40px !important;
    width: 100% !important;
    padding: 0 10px !important;
    font-size: 12.5px !important;
    margin-top: auto !important;
  }

  .tag {
    top: 12px !important;
    right: 12px !important;
    padding: 6px 9px !important;
    font-size: 10px !important;
  }
}
/* ===== COMPACT PROCESS SECTION ON PHONES ===== */

@media (max-width: 649px) {
  .process.section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .process .section-head {
    margin-bottom: 26px !important;
  }

  .process .label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }

  .process .section-head h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .step-card {
    padding: 16px !important;
    border-radius: 20px !important;
    min-height: 145px !important;
  }

  .step-card span {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    margin-bottom: 18px !important;
  }

  .step-card h3 {
    font-size: 17px !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
  }

  .step-card p {
    font-size: 12.5px !important;
    line-height: 1.35 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}
/* ===== STYLISH COMPACT CONTACTS ON PHONES ===== */

@media (max-width: 649px) {
  .contacts.section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .contacts .section-head {
    margin-bottom: 24px !important;
  }

  .contacts .label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    margin-bottom: 14px !important;
  }

  .contacts .section-head h2 {
    font-size: 32px !important;
    line-height: 0.98 !important;
    letter-spacing: -1.6px !important;
    max-width: 420px !important;
  }

  .contacts .section-head p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-top: 14px !important;
    max-width: 420px !important;
  }

  .contacts-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .contact-card {
    padding: 16px !important;
    min-height: 112px !important;
    border-radius: 22px !important;

    background:
      radial-gradient(circle at top right, rgba(105, 248, 255, 0.13), transparent 45%),
      rgba(255, 255, 255, 0.045) !important;

    border: 1px solid rgba(255, 255, 255, 0.11) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .contact-card i {
    font-size: 23px !important;
    margin-bottom: 0 !important;
    color: var(--cyan) !important;
  }

  .contact-card span {
    font-size: 12px !important;
    color: var(--muted-2) !important;
    margin-bottom: 3px !important;
  }

  .contact-card strong {
    font-size: 14px !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .contact-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(105, 248, 255, 0.45) !important;
    box-shadow: 0 0 28px rgba(105, 248, 255, 0.12) !important;
  }

  .location {
    margin-top: 16px !important;
    padding: 16px !important;
    border-radius: 22px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    background: rgba(255,255,255,.045) !important;
  }

  .location span {
    font-size: 16px !important;
  }

  .location .btn {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 14px !important;
  }
}
/* ===== COMPACT HERO METRICS ON PHONES ===== */

@media (max-width: 649px) {
  .hero-metrics {
    margin-top: 22px !important;
    gap: 10px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero-metrics div {
    min-width: 0 !important;
    min-height: 66px !important;
    padding: 12px 18px !important;
    border-radius: 20px !important;

    background:
      radial-gradient(circle at left, rgba(105, 248, 255, 0.08), transparent 45%),
      rgba(255, 255, 255, 0.045) !important;
  }

  .hero-metrics strong {
    font-size: 24px !important;
    line-height: 1 !important;
  }

  .hero-metrics span {
    font-size: 13px !important;
    margin-top: 4px !important;
  }
}
/* ===== LAPTOP SECTION TITLES FIX ===== */

@media (min-width: 769px) and (max-width: 1536px) {
  .section-head h2,
  .consultation-box h2 {
    font-size: clamp(42px, 4.2vw, 48px) !important;
    line-height: 1 !important;
    letter-spacing: -2.4px !important;
    max-width: 820px !important;
  }

  .section-head {
    margin-bottom: 44px !important;
  }

  .section-head p {
    font-size: 17px !important;
    line-height: 1.55 !important;
    max-width: 760px !important;
  }
}
/* ===== PREMIUM REQUEST MODAL ===== */

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.request-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.request-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(105, 248, 255, 0.18), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(126, 87, 255, 0.18), transparent 35%),
    rgba(3, 4, 10, 0.78);
  backdrop-filter: blur(18px);
}

.request-card {
  position: relative;
  width: min(1080px, 100%);
  max-height: 92vh;
  overflow: auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;

  padding: 28px;
  border-radius: 34px;

  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)),
    radial-gradient(circle at top right, rgba(105, 248, 255, 0.16), transparent 42%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 40px 120px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.12);

  transform: translateY(28px) scale(0.96);
  transition: 0.35s ease;
}

.request-modal.active .request-card {
  transform: translateY(0) scale(1);
}

.request-close {
  position: absolute;
  top: 22px;
  right: 22px;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  font-size: 18px;

  transition: 0.25s ease;
}

.request-close:hover {
  transform: rotate(90deg);
  background: rgba(105, 248, 255, 0.14);
  border-color: rgba(105, 248, 255, 0.5);
}

.request-left {
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(105, 248, 255, 0.12), transparent 45%),
    rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
}

.request-label {
  display: inline-block;
  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--cyan);
}

.request-left h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.95;
  letter-spacing: -2.6px;
  margin-bottom: 22px;
}

.request-left p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 430px;
}

.request-benefits {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.request-benefits div {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 16px;
  border-radius: 18px;

  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.request-benefits i {
  color: var(--cyan);
  font-size: 18px;
}

.request-benefits span {
  font-weight: 800;
  color: #fff;
}

.request-packages {
  margin-top: 28px;
  width: 100%;
  min-height: 54px;

  border-radius: 999px;
  border: 1px solid rgba(105, 248, 255, 0.35);

  background: rgba(105, 248, 255, 0.08);
  color: #fff;

  font-weight: 900;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.25s ease;
}

.request-packages:hover {
  background: rgba(105, 248, 255, 0.16);
  box-shadow: 0 0 30px rgba(105, 248, 255, 0.13);
}

.request-form {
  padding: 26px;
  border-radius: 28px;

  background: rgba(8, 9, 18, 0.62);
  border: 1px solid rgba(255,255,255,.11);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 13px;
  font-weight: 900;
  color: #d9dcff;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;

  background: rgba(255,255,255,.06);
  color: #fff;

  border-radius: 18px;
  padding: 16px 17px;

  font: inherit;
  font-weight: 700;

  transition: 0.25s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(220, 222, 255, 0.45);
}

.form-row select {
  cursor: pointer;
}

.form-row select option {
  background: #0b0d16;
  color: #fff;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.45;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(105, 248, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(105, 248, 255, 0.08);
  background: rgba(255,255,255,.085);
}

.request-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.request-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.45;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

/* ===== MODAL MOBILE ===== */

@media (max-width: 820px) {
  .request-modal {
    padding: 14px;
    align-items: flex-end;
  }

  .request-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 28px;
    max-height: 94vh;
  }

  .request-left {
    padding: 20px;
    border-radius: 24px;
  }

  .request-left h2 {
    font-size: 34px;
    letter-spacing: -1.6px;
  }

  .request-left p {
    font-size: 15px;
  }

  .request-benefits {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
  }

  .request-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}
.request-success {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;

  background: rgba(105, 248, 255, 0.1);
  border: 1px solid rgba(105, 248, 255, 0.28);
  color: #ffffff;

  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.request-success.active {
  display: block;
}
html {
  scroll-behavior: smooth;
}

#home {
  scroll-margin-top: 0;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  justify-self: center;
  width: 100%;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-nav a:hover {
  color: #62f7ff;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 13px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #62f7ff;
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  justify-self: start;
}

.footer-menu {
  justify-self: center;
  text-align: center;
}

.footer-socials {
  justify-self: end;
}
@media (max-width: 650px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo,
  .footer-menu,
  .footer-socials {
    justify-self: start;
    text-align: left;
  }
}
.hidden {
  display: none !important;
}

.locked {
  display: none !important;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login.hidden {
  display: none !important;
}

.admin-shell.locked {
  display: none !important;
}
.hidden {
  display: none !important;
}

.locked {
  display: none !important;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login.hidden {
  display: none !important;
}

.admin-shell.locked {
  display: none !important;
}
/* ================================
   FIZIX ADMIN / CRM
================================ */

.hidden {
  display: none !important;
}

.locked,
.admin-shell.locked {
  display: none !important;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(98,247,255,0.10), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(120,80,255,0.12), transparent 34%),
    #03060c;
}

.admin-login.hidden {
  display: none !important;
}

.login-card {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(98,247,255,0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.88);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
}

.login-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.login-card p {
  color: rgba(255,255,255,0.68);
}

.login-card input {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
  font: inherit;
}

.login-card input:focus {
  border-color: rgba(98,247,255,0.55);
  box-shadow: 0 0 28px rgba(98,247,255,0.10);
}

.login-error {
  margin-top: 14px;
  color: #ff4d6d !important;
  font-weight: 800;
}

.admin-shell {
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(98,247,255,0.10), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(116,86,255,0.12), transparent 36%),
    #03060c;
  color: #fff;
}

.admin-topbar {
  max-width: 1320px;
  margin: 0 auto 22px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.72);
  backdrop-filter: blur(18px);
}

.admin-topbar h1 {
  margin: 8px 0 4px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.admin-topbar p {
  color: rgba(255,255,255,0.68);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-btn,
.admin-menu-btn,
.crm-toolbar button,
.order-controls button {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.secondary-btn:hover,
.admin-menu-btn:hover {
  border-color: rgba(98,247,255,0.42);
  box-shadow: 0 0 28px rgba(98,247,255,0.10);
}

.admin-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
}

.admin-sidebar {
  height: fit-content;
  position: sticky;
  top: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.72);
  backdrop-filter: blur(18px);
}

.admin-menu-btn {
  width: 100%;
  text-align: left;
}

.admin-menu-btn.active {
  color: #03060c;
  background: linear-gradient(135deg, #ffffff, #62f7ff);
  border-color: transparent;
}

.admin-content {
  min-width: 0;
}

.admin-panel {
  display: none;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.70);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.admin-panel.active {
  display: block;
}

.panel-head {
  margin-bottom: 22px;
}

.panel-head-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.panel-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.panel-head p {
  color: rgba(255,255,255,0.68);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
}

.stat-card span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  color: #62f7ff;
}

.crm-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 12px;
  margin: 18px 0 22px;
}

.crm-toolbar input,
.crm-toolbar select,
.order-controls input,
.order-controls select,
.role-select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
  font: inherit;
}

.crm-toolbar option,
.order-controls option {
  color: #111;
}

.orders-grid,
.visitors-table,
.users-table,
.roles-table {
  display: grid;
  gap: 14px;
}

.order-card,
.visit-row,
.user-row,
.role-row {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.020)),
    rgba(255,255,255,0.025);
}

.order-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.order-head h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.order-info {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.order-controls {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.badge,
.role-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(98,247,255,0.12);
  color: #62f7ff;
  font-size: 13px;
  font-weight: 1000;
}

.empty,
.empty-panel {
  color: rgba(255,255,255,0.62);
  padding: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 20px;
}

.label {
  color: #62f7ff;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crm-toolbar,
  .order-controls {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .panel-head-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .admin-shell {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FIZIX ADMIN / CRM
================================ */

.hidden {
  display: none !important;
}

.locked,
.admin-shell.locked {
  display: none !important;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(98,247,255,0.10), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(120,80,255,0.12), transparent 34%),
    #03060c;
}

.admin-login.hidden {
  display: none !important;
}

.login-card {
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid rgba(98,247,255,0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.88);
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px);
}

.login-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
}

.login-card p {
  color: rgba(255,255,255,0.68);
}

.login-card input {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
  font: inherit;
}

.login-card input:focus {
  border-color: rgba(98,247,255,0.55);
  box-shadow: 0 0 28px rgba(98,247,255,0.10);
}

.login-error {
  margin-top: 14px;
  color: #ff4d6d !important;
  font-weight: 800;
}

.admin-shell {
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(98,247,255,0.10), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(116,86,255,0.12), transparent 36%),
    #03060c;
  color: #fff;
}

.admin-topbar {
  max-width: 1320px;
  margin: 0 auto 22px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.72);
  backdrop-filter: blur(18px);
}

.admin-topbar h1 {
  margin: 8px 0 4px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.admin-topbar p {
  color: rgba(255,255,255,0.68);
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-btn,
.admin-menu-btn,
.crm-toolbar button,
.order-controls button {
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.secondary-btn:hover,
.admin-menu-btn:hover {
  border-color: rgba(98,247,255,0.42);
  box-shadow: 0 0 28px rgba(98,247,255,0.10);
}

.admin-layout {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 22px;
}

.admin-sidebar {
  height: fit-content;
  position: sticky;
  top: 20px;
  padding: 18px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.72);
  backdrop-filter: blur(18px);
}

.admin-menu-btn {
  width: 100%;
  text-align: left;
}

.admin-menu-btn.active {
  color: #03060c;
  background: linear-gradient(135deg, #ffffff, #62f7ff);
  border-color: transparent;
}

.admin-content {
  min-width: 0;
}

.admin-panel {
  display: none;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(10,16,25,0.70);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.admin-panel.active {
  display: block;
}

.panel-head {
  margin-bottom: 22px;
}

.panel-head-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.panel-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.panel-head p {
  color: rgba(255,255,255,0.68);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.stat-card {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
}

.stat-card span {
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  color: #62f7ff;
}

.crm-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 12px;
  margin: 18px 0 22px;
}

.crm-toolbar input,
.crm-toolbar select,
.order-controls input,
.order-controls select,
.role-select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255,255,255,0.055);
  color: #fff;
  outline: none;
  font: inherit;
}

.crm-toolbar option,
.order-controls option {
  color: #111;
}

.orders-grid,
.visitors-table,
.users-table,
.roles-table {
  display: grid;
  gap: 14px;
}

.order-card,
.visit-row,
.user-row,
.role-row {
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.020)),
    rgba(255,255,255,0.025);
}

.order-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.order-head h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.order-info {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}

.order-controls {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 12px;
  margin-top: 16px;
}

.badge,
.role-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(98,247,255,0.12);
  color: #62f7ff;
  font-size: 13px;
  font-weight: 1000;
}

.empty,
.empty-panel {
  color: rgba(255,255,255,0.62);
  padding: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
  border-radius: 20px;
}

.label {
  color: #62f7ff;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 1000;
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crm-toolbar,
  .order-controls {
    grid-template-columns: 1fr;
  }

  .admin-topbar,
  .panel-head-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .admin-shell {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
.language-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 6, 12, 0.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.language-gate.hidden {
  display: none !important;
}

.language-card {
  width: min(470px, 100%);
  padding: 34px;
  border: 1px solid rgba(98, 247, 255, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
    rgba(10, 16, 25, 0.94);
  box-shadow: 0 30px 100px rgba(0,0,0,0.62);
  text-align: center;
}

.language-logo {
  display: inline-flex;
  margin-bottom: 18px;
  color: #62f7ff;
  font-size: 30px;
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.language-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
}

.language-card p {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.language-actions {
  display: grid;
  gap: 12px;
}

.language-btn {
  width: 100%;
  border-radius: 999px;
  padding: 17px 20px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 1000;
}

.language-btn.primary {
  background: linear-gradient(135deg, #ffffff, #62f7ff);
  color: #020611;
}

.language-btn.secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
}

.language-btn:hover {
  transform: translateY(-1px);
}

.language-note {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  line-height: 1.5;
}

body.language-locked {
  overflow: hidden;
}
/* ===== MOBILE HERO PREMIUM SOFT BACKGROUND ===== */
@media (max-width: 768px) {
  .hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(
        ellipse at 50% 22%,
        rgba(70, 210, 230, 0.16) 0%,
        rgba(70, 210, 230, 0.08) 32%,
        transparent 62%
      ),
      radial-gradient(
        ellipse at 50% 78%,
        rgba(130, 85, 255, 0.34) 0%,
        rgba(95, 75, 210, 0.20) 34%,
        transparent 72%
      ),
      linear-gradient(
        180deg,
        #07111d 0%,
        #07101a 45%,
        #080914 100%
      ) !important;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.18;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.035) 0%,
        transparent 28%,
        rgba(98,247,255,0.045) 54%,
        rgba(130,85,255,0.10) 100%
      );
    opacity: 0.8;
  }

  .hero > * {
    position: relative;
    z-index: 1;
  }

  .hero .glow,
  .hero .hero-glow,
  .hero .hero-light,
  .hero .orb,
  .hero .blur-light,
  .hero .background-blur {
    display: none !important;
  }
}
/* ===== FIZIX CONTACT EMAIL FIX ===== */
@media (max-width: 480px) {
  a.contact-card[href*="fizix.agency@gmail.com"] {
    grid-column: 1 / -1 !important;
  }

  a.contact-card[href*="fizix.agency@gmail.com"] strong {
    display: block !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  a.contact-card[href*="fizix.agency@gmail.com"] span {
    margin-bottom: 6px !important;
  }
}

@media (max-width: 360px) {
  a.contact-card[href*="fizix.agency@gmail.com"] strong {
    font-size: 13px !important;
  }
}
/* ===== CONTACT CARDS MOBILE FIX 2x2 ===== */
@media (max-width: 480px) {
  .contact-grid,
  .contacts-grid,
  .socials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .contact-card {
    min-width: 0 !important;
    padding: 16px 14px !important;
  }

  .contact-card span {
    font-size: 13px !important;
  }

  .contact-card strong {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  a.contact-card[href*="fizix.agency@gmail.com"] {
    grid-column: auto !important;
  }

  a.contact-card[href*="fizix.agency@gmail.com"] strong {
    font-size: 11.8px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.04em !important;
  }
}

@media (max-width: 360px) {
  .contact-card {
    padding: 14px 12px !important;
  }

  .contact-card strong {
    font-size: 12px !important;
  }

  a.contact-card[href*="fizix.agency@gmail.com"] strong {
    font-size: 10.8px !important;
  }
}