﻿/* ===== SKIP LINK — accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: calc(var(--z-overlay) + 1);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  /* ── Brand accent (sky blue) ── */
  --accent: #0284C7;
  --accent-dark: #0369A1;
  --accent-light: #38bdf8;

  /* ── Base palette ── */
  --dark: #0F172A;
  --gray: #F8FAFC;
  --text: #334155;
  --text-light: #64748B;
  --white: #ffffff;

  /* ── Deep dark surfaces ── */
  --c-deep: #0d0d18;
  --c-deep2: #10101c;

  /* ── Warm light surfaces ── */
  --c-warm: #f8f7f4;
  --c-warm2: #f2f0ec;
  --c-warm3: #e8e4db;

  /* ── Shadows ── */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-tinted: 0 8px 28px rgba(2, 132, 199, 0.15);
  --shadow-strong: 0 12px 40px rgba(2, 132, 199, 0.20);

  /* ── Transitions ── */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;

  /* ── Spacing scale ── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;

  /* ── Border radius scale ── */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-full: 50%;

  /* ── Z-index scale ── */
  --z-base: 10;
  --z-dropdown: 100;
  --z-sticky: 1000;
  --z-modal: 2000;
  --z-overlay: 9999;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

/* ── Subtle noise grain overlay — breaks digital flatness ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: var(--z-overlay);
  mix-blend-mode: overlay;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-red {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-red:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-tinted);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 980px;
  background: rgba(13, 13, 24, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  z-index: var(--z-sticky);
  transition: background 300ms cubic-bezier(0.32,0.72,0,1),
              box-shadow 300ms cubic-bezier(0.32,0.72,0,1);
}

header.scrolled {
  background: rgba(10, 10, 20, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 20px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  line-height: 1;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  padding: 2px 4px;
}

.logo-icon img {
  height: 34px;
  width: auto;
  display: block;
}

.logo-main {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-main .logo-ad {
  color: var(--accent);
}

.logo-main .logo-instal {
  color: var(--dark);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ── Disabled social links placeholder ── */
.nav-social-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.nav-social {
  display: none;
  gap: 12px;
  align-items: center;
}

.nav-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 15px;
  transition: all 0.2s;
}

.nav-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f8f8f8 50%, #ececec 100%);
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-text {
  z-index: 1;
  max-width: 640px;
}

.hero-text h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 520px;
  height: 380px;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #bbb;
}

/* ===== STATS ===== */
.stats {
  background: var(--white);
  padding: 40px 0;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 20px 10px;
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.about-link:hover {
  gap: 10px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 340px;
}

.about-image-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #ccc;
}

/* ===== WHY US ===== */
.why-us {
  padding: 80px 0;
  background: var(--gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 8px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 80px 0;
  background: var(--white);
}

/* ── Legacy grid kept for compatibility ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

/* ── Asymmetric services layout ── */
.services-grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.service-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-cards-stack .service-card {
  flex: 1;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-tinted);
}

.service-card:active {
  transform: translateY(-2px);
}

.service-card-inner {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card-featured .service-card-inner {
  padding: 36px;
  min-height: 320px;
}

.service-card-icon {
  color: var(--accent);
  margin-bottom: 4px;
}

.service-card-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.service-card-featured .service-card-inner h3 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.service-card-inner p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}

@media (max-width: 768px) {
  .services-grid-asymmetric {
    grid-template-columns: 1fr;
  }
}

.service-card-img {
  height: 180px;
  background: linear-gradient(135deg, #2a2a2a, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: var(--white);
}

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
  background: var(--accent);
  color: var(--white);
}


.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--dark);
}

.form-checkbox label {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.5;
}


/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: var(--white);
  padding: 110px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--accent);
  color: var(--white);
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  display: flex;
  gap: 80px;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 80px 0;
  background: var(--gray);
}

.gallery-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid #ddd;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* BUG #3 FIX: missing keyframe used by the gallery filter JS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.gallery-card-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover .gallery-card-img-inner {
  transform: scale(1.05);
}

.gallery-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: linear-gradient(135deg, #3a3a3a, #555);
  color: #aaa;
}

.gallery-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-card-body {
  padding: 16px 18px;
}

.gallery-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.gallery-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 80px 0;
  background: var(--white);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-row.reverse {
  direction: rtl;
}

.service-row.reverse>* {
  direction: ltr;
}

.service-row-img {
  height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: #aaa;
}

.service-row-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-row-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-check-list {
  margin: 1rem 0;
}

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
}

.service-check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== JOB OFFERS ===== */
.jobs-section {
  padding: 80px 0;
  background: var(--gray);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.job-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  border-left: 4px solid var(--accent);
}

.job-card:hover {
  transform: translateY(-3px);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.job-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  white-space: nowrap;
}

.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.job-meta-item span {
  font-size: 14px;
}

.job-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-requirements {
  margin-bottom: 20px;
}

.job-requirements h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
}

.job-requirements li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 12px;
  position: relative;
  margin-bottom: 4px;
}

.job-requirements li::before {
  content: '•';
  color: var(--accent);
  position: absolute;
  left: 0;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent);
}

.modal h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.modal .job-badge {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.modal .form-group input,
.modal .form-group textarea,
.modal .form-group select {
  border: 1.5px solid #e0e0e0;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus,
.modal .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.modal .form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  background: var(--white);
  cursor: pointer;
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #27ae60;
  color: var(--white);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row.reverse {
    direction: ltr;
  }
}

@media (max-width: 640px) {

  .nav-links,
  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    gap: 16px;
    z-index: 999;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   MODERN UPGRADES 2025–2026
   ================================================================ */

/* ---- READING PROGRESS BAR ---- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #38bdf8, var(--accent));
  background-size: 200% 100%;
  animation: progressGlow 2s linear infinite;
  z-index: 10000;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

@keyframes progressGlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* ---- CUSTOM CURSOR (desktop only) ---- */
.custom-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
  will-change: transform;
}

.custom-cursor.hover {
  width: 14px;
  height: 14px;
  background: var(--accent-dark);
}

.custom-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(2, 132, 199, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s ease-out, height .3s ease-out, opacity .3s;
  will-change: transform;
}

.custom-cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: rgba(2, 132, 199, .15);
}

/* ---- DARK HERO ---- */
.hero-dark {
  background: var(--c-deep);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Grid overlay */
.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 1;
}

.hero-dark>.container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Blobs — upgraded opacity + desync timings */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.38;
  animation: blobFloat 8s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0369a1, #001f3f);
  top: -260px;
  right: -120px;
  animation-duration: 8s;
}

.blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #0ea5e9, #0284c7);
  bottom: -160px;
  left: -80px;
  animation-delay: -4.5s;
  animation-duration: 11s;
  opacity: 0.28;
}

.blob-3 {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #1d4ed8, #0c2a6e);
  top: 40%;
  left: 30%;
  animation-delay: -2s;
  animation-duration: 9.5s;
  opacity: 0.22;
}

/* 4th accent blob — bottom right, smaller */
.blob-4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #0ea5e9, #0369a1);
  bottom: 10%;
  right: 10%;
  animation-delay: -6s;
  animation-duration: 13s;
  opacity: 0.18;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(45px, -45px) scale(1.07);
  }

  66% {
    transform: translate(-28px, 28px) scale(.94);
  }
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 26px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: badgeFadeIn .7s ease both;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(39, 174, 96, .5);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(39, 174, 96, 0);
  }
}

/* Dark hero text */
.hero-dark .hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
  animation: heroH1In .8s ease .1s both;
}

@keyframes heroH1In {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-dark .hero-text p {
  color: rgba(255, 255, 255, .58);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.8;
  animation: heroH1In .8s ease .3s both;
}

.hero-dark .hero-buttons {
  animation: heroH1In .8s ease .5s both;
}

.hero-dark .btn-outline {
  color: rgba(255, 255, 255, .8);
  border-color: rgba(255, 255, 255, .25);
}

.hero-dark .btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #0284C7 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typewriter cursor */
.tw-cursor::after {
  content: '|';
  color: var(--accent);
  animation: twBlink .8s step-end infinite;
  margin-left: 2px;
}

@keyframes twBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Hero stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  animation: heroH1In .8s ease .7s both;
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.hero-stat span {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 3px;
}

.hero-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(2, 132, 199, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ringBreath 4s ease-in-out infinite;
}

.hero-visual-ring::before {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(2, 132, 199, .1);
}

.hero-visual-ring::after {
  content: '';
  position: absolute;
  inset: -44px;
  border-radius: 50%;
  border: 1px solid rgba(2, 132, 199, .05);
}

@keyframes ringBreath {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(2, 132, 199, .12);
  }

  50% {
    box-shadow: 0 0 50px 0 rgba(2, 132, 199, .08);
  }
}

.hero-visual-center {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, .18), rgba(2, 132, 199, .04));
  border: 1px solid rgba(2, 132, 199, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
/* Floating badges around the ring */
.hero-float-badge {
  position: absolute;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, .9);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
  line-height: 1.2;
}

.hero-float-badge .fbn {
  font-size: 1.2rem;
  color: var(--accent);
  display: block;
  font-weight: 900;
}

.hero-float-badge:nth-child(2) {
  top: 2%;
  right: -45px;
  animation-delay: -1s;
}

.hero-float-badge:nth-child(3) {
  bottom: 8%;
  left: -50px;
  animation-delay: -2.5s;
}

.hero-float-badge:nth-child(4) {
  top: 48%;
  right: -55px;
  animation-delay: -.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .28);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: scrollInd 2.5s ease-in-out infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
}

@keyframes scrollInd {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---- GLASS STATS ---- */
.stats-glass {
  background: var(--c-deep);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-glass {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s;
}

.stat-glass:last-child {
  border-right: none;
}

.stat-glass:hover {
  background: rgba(2, 132, 199, .05);
}

.stat-glass-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-glass-label {
  font-size: .76rem;
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-top: 8px;
  line-height: 1.5;
}

/* ---- PROCESS SECTION ---- */
.process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 34px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(2, 132, 199, .2) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--white);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 0 0 7px var(--white);
  transition: all .35s ease;
}

.process-step:hover .process-num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 7px var(--white), 0 8px 28px rgba(2, 132, 199, .3);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---- BENTO GRID ---- */
.bento-section {
  padding: 100px 0;
  background: var(--c-deep);
  border-top: 1px solid rgba(255, 255, 255, .04);
}

.bento-section .section-title {
  color: #fff;
}

.bento-section .section-subtitle {
  color: rgba(255, 255, 255, .38);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 3rem;
}

.bento-card {
  background: rgba(255, 255, 255, .032);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: border-color .4s, transform .4s, background .4s;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 132, 199, .09), transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  border-radius: 22px;
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(2, 132, 199, .28);
  transform: translateY(-3px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.bento-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.75;
}

.bento-big-num {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #38bdf8, #0284C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-top: 10px;
}

.bento-tag {
  display: inline-block;
  background: rgba(2, 132, 199, .14);
  border: 1px solid rgba(2, 132, 199, .3);
  color: #38bdf8;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3rem;
  align-items: start;
}

/* Offset middle card for masonry effect */
.testimonial-card-offset {
  margin-top: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-tinted);
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-left: auto;
  flex-shrink: 0;
}

.t-stars span {
  color: #f39c12;
  font-size: 14px;
}

.t-text {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
}

.t-role {
  font-size: .76rem;
  color: var(--text-light);
}

/* ---- FAQ — side-by-side grid ---- */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid #ebebeb;
}

.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 0;
  border-bottom: 1.5px solid #ebebeb;
  grid-column: 1 / -1;
}

.faq-row:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  letter-spacing: -0.01em;
  border-right: 1.5px solid #ebebeb;
  line-height: 1.5;
}

.faq-answer-inline {
  padding: 22px 28px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 0;
  }
  .faq-row {
    grid-template-columns: 1fr;
    border: 1.5px solid #ebebeb;
    border-radius: var(--r-md);
    margin-bottom: 8px;
    grid-column: auto;
  }
  .faq-question {
    border-right: none;
    border-bottom: 1.5px solid #ebebeb;
  }
}

/* Legacy accordion styles kept for JS safety */
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q-text {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  flex: 1;
  transition: color .2s;
}

.faq-item.open .faq-q-text {
  color: var(--accent);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: all .3s;
  line-height: 1;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* ---- WHATSAPP FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  z-index: 996;
  transition: transform .3s, box-shadow .3s;
  animation: waBounce 3.5s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 10px 32px rgba(37, 211, 102, .6);
  animation: none;
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.wa-tooltip {
  position: absolute;
  right: 64px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: #111;
}

.whatsapp-fab:hover .wa-tooltip {
  opacity: 1;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .34s; }
.reveal-d4 { transition-delay: .46s; }
.reveal-d5 { transition-delay: .58s; }
.reveal-d6 { transition-delay: .70s; }

/* ── Section-level entrance: whole section fades up on scroll ── */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero never section-reveals — it's first thing visible */
.hero-dark.section-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Staggered card entrance via CSS custom property --i */
.stagger-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.stagger-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section position — needed for child absolute elements */
.why-us-new {
  position: relative;
}
.contact-section {
  position: relative;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .section-reveal,
  .stagger-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---- RESPONSIVE (new sections) ---- */
@media (max-width: 960px) {
  .hero-visual {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .process-connector {
    display: none;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-glass {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .stat-glass:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.wide {
    grid-column: span 1;
  }

  .hero-dark {
    padding: 90px 0 55px;
    min-height: auto;
  }

  .hero-stats-row {
    display: none;
  }

  .stats-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   VISUAL POLISH v2 + MOBILE COMPREHENSIVE FIX
   ================================================================ */

/* ---- EYEBROW SECTION LABELS ---- */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: .5;
  border-radius: 2px;
}

.eyebrow-left {
  justify-content: flex-start;
}

.eyebrow-dark {
  color: rgba(255, 255, 255, .38);
}

/* ---- SCROLLED HEADER GLASS ---- */
header {
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s;
}

header.scrolled {
  background: rgba(255, 255, 255, .94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 28px rgba(0, 0, 0, .1) !important;
}

/* ---- BUTTON GLOW ---- */
.btn-red {
  transition: background .3s, box-shadow .3s, transform .2s;
}

.btn-red:hover {
  box-shadow: 0 0 26px rgba(2, 132, 199, .38), 0 4px 14px rgba(0, 0, 0, .18);
}

/* ---- HERO HEIGHT - iOS safe ---- */
@supports (min-height: 100dvh) {
  .hero-dark {
    min-height: 100dvh;
  }
}

.hero-dark .hero-text h1 {
  /* Override the conflicting rule from 900px breakpoint */
  font-size: clamp(1.55rem, 4.8vw, 3.1rem) !important;
  line-height: 1.15;
}

/* ---- HERO BOTTOM FADE ---- */
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--c-deep), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ---- ABOUT - dot pattern ---- */
.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(2, 132, 199, .05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

/* ---- ABOUT BADGE ---- */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(2, 132, 199, .06);
  border: 1px solid rgba(2, 132, 199, .16);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- PROCESS - subtle gradient bg ---- */
.process-section {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

/* ---- SERVICE CARDS - bottom accent + emoji zoom ---- */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width .4s ease;
}

.service-card:hover::after {
  width: 100%;
}

.service-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  transition: filter .3s;
}

.service-card:hover .service-card-img {
  filter: brightness(1.18);
}

.service-num {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 3px 9px;
}

/* ---- TESTIMONIALS - top accent on hover ---- */
.testimonial-card {
  border-top: 3px solid transparent;
  transition: border-top-color .3s, transform .35s, box-shadow .35s;
}

.testimonial-card:hover {
  border-top-color: var(--accent);
}

/* ---- BENTO - bigger contrast ---- */
.bento-card {
  background: rgba(255, 255, 255, .045) !important;
}

.bento-card:hover {
  background: rgba(255, 255, 255, .07) !important;
}

/* ---- FAQ - hover title colour ---- */
.faq-q:hover .faq-q-text {
  color: var(--accent);
}

/* ---- CONTACT - input lift on focus ---- */
.contact-section .form-group input,
.contact-section .form-group textarea {
  transition: box-shadow .25s ease, transform .25s ease;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .35) !important;
}

/* ---- STATS GLASS - scale num on hover ---- */
.stat-glass-num {
  transition: transform .3s;
}

.stat-glass:hover .stat-glass-num {
  transform: scale(1.06);
}

/* ---- SCROLL TOP - pill shape ---- */
#scrollTop {
  border-radius: 12px;
}

/* ---- NAV LINKS open - better spacing & touch targets ---- */
.nav-links.open {
  padding: 14px 20px 22px !important;
}

.nav-links.open li {
  width: 100%;
}

.nav-links.open a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.nav-links.open li:last-child a {
  border-bottom: none;
}

/* ---- FOOTER top accent line ---- */
footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, #38bdf8 50%, var(--accent) 70%, transparent);
}

/* ================================================================
   TABLET BREAKPOINT (768px - 960px) — was missing
   ================================================================ */
@media (min-width: 768px) and (max-width: 959px) {
  .stats-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-glass {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 30px 18px;
  }

  .stat-glass:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .05);
  }

  .stat-glass:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .process-connector {
    display: none;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.wide {
    grid-column: span 2;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   MOBILE BREAKPOINT ≤ 767px — comprehensive
   ================================================================ */
@media (max-width: 767px) {

  /* Base */
  .container {
    padding: 0 18px;
  }

  body {
    font-size: 14px;
  }

  /* Header */
  nav {
    height: 60px;
  }

  .logo-main {
    font-size: 1.35rem;
  }

  /* Hero */
  .hero-dark {
    min-height: auto !important;
    padding: 92px 0 60px;
  }

  .hero-dark .hero-text p {
    font-size: .93rem;
    max-width: 100%;
  }

  .trust-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .hero-buttons .btn {
    min-width: 160px;
    text-align: center;
  }

  .hero-stats-row {
    display: grid !important;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    margin-top: 1.8rem;
    padding-top: 1.4rem;
  }

  /* Show only first 2 stats + separator on very small screens */
  .hero-stat:nth-child(4),
  .hero-stat:nth-child(5),
  .hero-stat:nth-child(6) {
    display: none;
  }

  .hero-stat-sep:nth-child(4),
  .hero-stat-sep:nth-child(6) {
    display: none;
  }

  .hero-stat strong {
    font-size: 1.2rem;
  }

  .hero-stat span {
    font-size: .62rem;
  }

  /* Stats glass */
  .stats-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-glass {
    padding: 26px 14px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .stat-glass:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .05) !important;
  }

  .stat-glass:last-child,
  .stat-glass:nth-last-child(2) {
    border-bottom: none;
  }

  .stat-glass-num {
    font-size: 2rem;
  }

  .stat-glass-label {
    font-size: .68rem;
  }

  /* Sections */
  .about {
    padding: 56px 0;
  }

  .process-section {
    padding: 56px 0;
  }

  .bento-section {
    padding: 56px 0;
  }

  .services-preview {
    padding: 56px 0;
  }

  .testimonials-section {
    padding: 56px 0;
  }

  .faq-section {
    padding: 56px 0;
  }

  .contact-section {
    padding: 56px 0;
  }

  /* Section typography */
  .section-title {
    font-size: 1.5rem !important;
  }

  .section-subtitle {
    font-size: .875rem;
    margin-bottom: 1.8rem;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 18px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    display: none;
  }

  .about-text h2 {
    font-size: 1.65rem;
  }

  .about-text p {
    font-size: .88rem;
  }

  /* Process */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 14px;
  }

  .process-connector {
    display: none;
  }

  .process-num {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
    box-shadow: 0 0 0 5px #fafafa;
  }

  .process-step {
    padding: 0 8px;
  }

  .process-step h3 {
    font-size: .88rem;
  }

  .process-step p {
    font-size: .76rem;
  }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bento-card.wide {
    grid-column: span 1;
  }

  .bento-card {
    padding: 22px;
    border-radius: 16px;
  }

  .bento-big-num {
    font-size: 2.2rem;
  }

  .bento-section .section-title {
    font-size: 1.5rem !important;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-img {
    height: 130px;
    font-size: 42px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card-offset {
    margin-top: 0;
  }

  .testimonial-card {
    padding: 22px;
    border-radius: 16px;
  }

  .t-text {
    font-size: .84rem;
  }

  /* FAQ */
  .faq-section .section-title {
    font-size: 1.5rem !important;
  }

  .faq-q {
    padding: 16px 18px;
  }

  .faq-answer-inner {
    padding: 0 18px 18px;
    font-size: .84rem;
  }

  .faq-q-text {
    font-size: .86rem;
  }

  .faq-toggle {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  /* Floating */
  .whatsapp-fab {
    bottom: 70px;
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }

  .wa-tooltip {
    display: none !important;
  }

  #scrollTop {
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 17px;
    border-radius: 10px;
  }

  /* Buttons */
  .hero-buttons .btn {
    padding: 13px 26px;
  }

  .btn {
    touch-action: manipulation;
  }
}

/* ================================================================
   SMALL MOBILE ≤ 420px
   ================================================================ */
@media (max-width: 420px) {
  .hero-dark .hero-text h1 {
    font-size: 1.45rem !important;
  }

  .trust-badge {
    font-size: 10.5px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    padding: 0;
  }

  .hero-stat strong {
    font-size: 1.1rem;
  }

  .bento-big-num {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.38rem !important;
  }
}

/* ================================================================
   TOUCH DEVICE - disable heavy hover transforms
   ================================================================ */
@media (hover: none) {

  .bento-card:hover,
  .testimonial-card:hover,
  .service-card:hover,
  .feature-card:hover,
  .gallery-card:hover,
  .job-card:hover,
  .process-step:hover .process-num {
    transform: none !important;
  }

  .service-card::after {
    display: none;
  }

  .whatsapp-fab {
    animation: none;
    transform: none !important;
  }

  .whatsapp-fab {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  }
}

/* ================================================================
   COLOR HARMONY + MOTION UPGRADE 2025
   — Плавные цветовые переходы + крутые анимации
   ================================================================ */
/* ── 2. РЎРњРЇР“Р§Р•РќРР• ТЁМНЫХ РЎР•РљР¦РР™ ──────────────────────────────────── */
.hero-dark {
  background: var(--c-deep) !important;
}

.hero-bottom-fade {
  background: linear-gradient(to top, var(--c-deep), transparent) !important;
}

.stats-glass {
  background: var(--c-deep2) !important;
  position: relative;
  border-top-color: rgba(255, 255, 255, .04) !important;
  border-bottom-color: rgba(255, 255, 255, .04) !important;
}

.bento-section {
  background: var(--c-deep) !important;
  border-top-color: transparent !important;
  position: relative;
}

footer {
  background: var(--c-deep) !important;
}


/* ── 3. РЎРњРЇР“Р§Р•РќРР• СВЕТЛЫХ РЎР•РљР¦РР™ ─────────────────────────────────── */
.about,
.faq-section {
  background: var(--c-warm) !important;
}

.process-section {
  background: var(--c-warm2) !important;
}

.testimonials-section {
  background: var(--c-warm3) !important;
}

.testimonial-card {
  background: var(--c-warm) !important;
}

.faq-item {
  border-color: rgba(26, 24, 40, .1) !important;
}

/* Обновляем цвет фона кружков процесса */
.process-num {
  background: var(--c-warm2) !important;
  box-shadow: 0 0 0 7px var(--c-warm2) !important;
}

.process-step:hover .process-num {
  background: var(--accent) !important;
  box-shadow: 0 0 0 7px var(--c-warm2), 0 8px 28px rgba(2, 132, 199, .3) !important;
}

/* Мягкие цвета текста */
.t-name {
  color: #1a1828;
}

.t-text {
  color: #6a677c;
}

.process-step p {
  color: #6a677c;
}

.process-step h3 {
  color: #1a1828;
}

/* ── 4. Р“Р РђР”РР•РќРўРќР«Р• МОСТЫ МЕЖДУ РЎР•РљР¦РРЇРњР ────────────────────────── */
/*
   Принцип: тёмная секция оставляет цветовую «тень» в верхней части
   следующей светлой секции (и наоборот).
   РСЃРїРѕР»СЊР·СѓРµРј свободные ::before / ::after.
*/

/* Мост: тёмный stats → тёплый about  (.about::before занят точками) */
.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(16, 16, 28, .26), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Мост: тёплый process → тёмный bento */
.bento-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(242, 240, 236, .14), transparent);
  pointer-events: none;
  z-index: 1;
}

.bento-section>.container {
  position: relative;
  z-index: 2;
}

/* Мост: тёмный bento → тёплые services */
.services-preview {
  position: relative;
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(13, 13, 24, .24), transparent);
  pointer-events: none;
  z-index: 0;
}

.services-preview>.container {
  position: relative;
  z-index: 1;
}

/* Мост: тёмный bento → тёплые testimonials (через services) */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(232, 228, 219, .5), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Мост: тёплый FAQ → красный контакт */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(248, 247, 244, .14), transparent);
  pointer-events: none;
  z-index: 0;
}

.contact-section>.container {
  position: relative;
  z-index: 1;
}

/* Мягче scrolled-header */
header.scrolled {
  background: rgba(253, 252, 249, .96) !important;
}

/* ── 5. Р“Р•Р РћРРљРђ: РЈР›РЈР§РЁР•РќРРЇ ────────────────────────────────────────── */

/* Шум/зернистость поверх hero */
.hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* Анимация дрейфа сетки (уже есть ::after, просто добавляем анимацию) */
.hero-dark::after {
  animation: gridDrift 28s linear infinite !important;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 70px 70px;
  }
}

/* Синий акцентный блоб — разнообразие цветов */
.blob-accent {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(60, 80, 200, .1), transparent 65%);
  top: 30%;
  left: 15%;
  animation: blobFloat 21s ease-in-out infinite;
  animation-delay: -5s;
}

/* ── 6. РџР›РђР’РђР®Р©РР• РћР БЫ Р’ HERO (инжектируются JS) ─────────────────── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.hero-orb.sm {
  width: 5px;
  height: 5px;
  background: rgba(2, 132, 199, .55);
  box-shadow: 0 0 12px 4px rgba(2, 132, 199, .2);
  animation: orbA var(--d, 9s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-orb.xs {
  width: 3px;
  height: 3px;
  background: rgba(255, 120, 120, .4);
  box-shadow: 0 0 7px 2px rgba(255, 100, 100, .12);
  animation: orbB var(--d, 13s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes orbA {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(80px, -55px);
  }

  50% {
    transform: translate(-45px, -110px);
  }

  75% {
    transform: translate(100px, -35px);
  }
}

@keyframes orbB {

  0%,
  100% {
    transform: translate(0, 0);
  }

  33% {
    transform: translate(-75px, 45px);
  }

  66% {
    transform: translate(110px, -25px);
  }
}

/* ── 7. SPOTLIGHT НА РљРђР ТОЧКАХ BENTO ─────────────────────────────── */
.bento-card {
  --spot-x: 50%;
  --spot-y: 50%;
  --spot-o: 0;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--spot-x) var(--spot-y),
      rgba(2, 132, 199, .10), transparent 70%);
  opacity: var(--spot-o);
  transition: opacity .35s;
  pointer-events: none;
  z-index: 2;
}

/* ── 8. ГЛОБАЛЬНЫЙ SPOTLIGHT НА ТЁМНЫХ РЎР•РљР¦РРЇРҐ ──────────────────── */
.stats-glass {
  --gx: -999px;
  --gy: -999px;
}

.stats-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--gx) var(--gy),
      rgba(2, 132, 199, .05), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* ── 9. РђРќРРњРђР¦РР ─────────────────────────────────────────────────── */

/* Прыжок числа при появлении */
@keyframes numBounce {
  0% {
    transform: scale(.72) translateY(12px);
    opacity: 0;
  }

  65% {
    transform: scale(1.10) translateY(-3px);
    opacity: 1;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.stat-glass-num.counted {
  animation: numBounce .54s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* Пульсирующий glow на шаге процесса */
@keyframes stepGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0), 0 0 0 7px var(--c-warm2);
  }

  50% {
    box-shadow: 0 0 22px 6px rgba(2, 132, 199, .2), 0 0 0 7px var(--c-warm2);
  }
}

.process-step.glowing .process-num {
  animation: stepGlow 1.6s ease-in-out 2;
}

/* Улучшенные reveal-анимации (направленные) */
.reveal {
  transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1) !important;
}

.reveal-left {
  transform: translateX(-30px) !important;
  opacity: 0;
}

.reveal-right {
  transform: translateX(30px) !important;
  opacity: 0;
}

.reveal-zoom {
  transform: scale(.92) translateY(10px) !important;
  opacity: 0;
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0) !important;
}

.reveal-zoom.visible {
  transform: scale(1) translateY(0) !important;
}

/* Шиммер на gradient-text элементах */
@keyframes shimmerGrad {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #0284C7 0%, #bae6fd 30%, #0284C7 52%, #7dd3fc 77%, #0284C7 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGrad 6s linear infinite;
}

/* Слово-за-словом reveal (заголовки, инжект JS) */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: .22em;
}

.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform .58s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
}

.word-inner.in {
  transform: translateY(0);
  opacity: 1;
}

/* ── 10. CANVAS PARTICLES — z-index fix ──────────────────────────── */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ── 11. SERVICE CARD — мягче число + hover ──────────────────────── */
.services-preview .services-grid .service-card {
  overflow: hidden;
}

/* ── PREVENT z-index CLIPPING for bridges ────────────────────────── */
.about,
.testimonials-section,
.services-preview,
.contact-section {
  isolation: isolate;
}

/* ================================================================
   TYPOGRAPHY UPGRADE — Inter + Premium type scale
   ================================================================ */

/* ── BASE FONT — Inter variable ──────────────────────────────────── */
body,
input,
textarea,
button,
select {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
}

/* ── LOGO — более изысканное начертание ──────────────────────────── */
.logo-main {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
}

.logo-ad {
  font-weight: 900 !important;
  color: var(--accent) !important;
  font-feature-settings: 'kern' 1, 'liga' 1 !important;
}

.logo-instal {
  font-weight: 300 !important;
  letter-spacing: 0.05em !important;
  color: #1a1a2a !important;
}

.logo-sub {
  font-size: 0.56rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
  margin-top: 4px !important;
}

/* Логотип в футере */
footer .logo-instal {
  color: rgba(255, 255, 255, .45) !important;
}

footer .logo-sub {
  color: rgba(255, 255, 255, .2) !important;
}

/* ── NAV LINKS ────────────────────────────────────────────────────── */
.nav-links a {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* ── SECTION TITLES (все заголовки секций) ───────────────────────── */
.section-title {
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
}

.section-subtitle {
  font-size: 0.96rem !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
  letter-spacing: 0.005em !important;
}

/* ── EYEBROW ──────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 3.2px !important;
}

/* ── HERO TEXT ────────────────────────────────────────────────────── */
.hero-dark .hero-text h1 {
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
}

.hero-dark .hero-text p {
  font-size: 1.02rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
  line-height: 1.88 !important;
}

#heroSubtitle {
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, .52) !important;
}

/* ── HERO STATS ───────────────────────────────────────────────────── */
.hero-stat strong {
  letter-spacing: -0.02em !important;
  font-variant-numeric: tabular-nums;
}

.hero-stat span {
  letter-spacing: 0.08em !important;
  font-weight: 500 !important;
}

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em !important;
  font-size: 13.5px !important;
}

/* ── BENTO CARDS ─────────────────────────────────────────────────── */
.bento-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.3 !important;
}

.bento-card p {
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
}

/* ── TESTIMONIALS ─────────────────────────────────────────────────── */
.t-text {
  font-size: 0.88rem !important;
  font-style: italic !important;
  line-height: 1.82 !important;
  letter-spacing: 0.005em !important;
}

.t-name {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.t-role {
  font-size: 0.74rem !important;
  letter-spacing: 0.02em !important;
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.faq-q-text {
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.008em !important;
  line-height: 1.4 !important;
}

.faq-answer-inner {
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  line-height: 1.85 !important;
  letter-spacing: 0.005em !important;
}

/* ── PROCESS STEPS ────────────────────────────────────────────────── */
.process-step h3 {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.process-step p {
  font-size: 0.81rem !important;
  line-height: 1.72 !important;
}

.process-num {
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

/* ── GLASS STATS ──────────────────────────────────────────────────── */
.stat-glass-num {
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  font-variant-numeric: tabular-nums;
}

.stat-glass-label {
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
}

/* ================================================================
   FOOTER TYPOGRAPHY — PREMIUM REDESIGN
   ================================================================ */

footer {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Описание бренда */

/* Заголовки колонок (STRONA / USŁUGI / KONTAKT) */

/* Стрелочка при ховере (псевдо) */

/* РРєРѕРЅРєРё соцсетей */

/* Нижняя полоса */

/* ================================================================
   CONTACT SECTION TYPOGRAPHY
   ================================================================ */


/* ── Form inputs ──────────────────────────────────────────────────── */
.form-group input,
.form-group textarea {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  letter-spacing: 0.01em !important;
}

/* ── Consent checkbox text ────────────────────────────────────────── */
.consent-label span {
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  letter-spacing: 0.005em !important;
}

/* ── Notification toast ───────────────────────────────────────────── */
.notification {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}

/* ── Page hero (inner pages) ──────────────────────────────────────── */
.page-hero h1 {
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.12 !important;
}

.page-hero p {
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
  line-height: 1.72 !important;
}

/* ── Service cards (inner pages) ──────────────────────────────────── */
.service-card-body h3 {
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  font-size: 1.02rem !important;
}

/* ── Job cards (oferty-pracy) ─────────────────────────────────────── */
.job-title {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* ── MOBILE TYPOGRAPHY FIXES ──────────────────────────────────────── */
@media (max-width: 767px) {
  .logo-main {
    font-size: 1.35rem !important;
  }

  .logo-sub {
    letter-spacing: 0.26em !important;
  }

  .bento-card h3 {
    font-size: 1rem !important;
  }

  .section-title {
    letter-spacing: -0.02em !important;
  }
}

/* ================================================================
   FINAL TYPE NORMALIZATION
   ================================================================ */

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
button,
select {
  font-family: 'Plus Jakarta Sans', 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
  font-synthesis: none;
}

body {
  letter-spacing: 0.01em;
  line-height: 1.65;
  overflow-x: hidden;
}

h1,
h2,
h3,
.section-title,
.page-hero h1,
.hero-text h1,
.hero-dark h1 {
  overflow-wrap: anywhere;
}

p,
li,
.section-subtitle,
.page-hero p,
.t-text,
.job-desc {
  overflow-wrap: break-word;
}

.hero-buttons .btn,
.hero-dark .hero-buttons .btn {
  justify-content: center;
  text-align: center;
}

.logo,
.logo-main,
.logo-sub {
  text-rendering: geometricPrecision;
}

.hero-visual-center,
.service-card-img,
.service-row-img,
.feature-icon,
.about-image-placeholder,
.gallery-card-img-placeholder,
.t-stars,
.job-meta-item span {
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif !important;
}

.t-stars span {
  line-height: 1;
}

@media (max-width: 767px) {
  .hero-buttons,
  .hero-dark .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-dark .hero-buttons .btn {
    width: 100%;
    min-width: 0;
  }

  .nav-links.open {
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .logo-sub {
    letter-spacing: 0.2em !important;
  }
}

/* ================================================================
   NAV REBUILD
   ================================================================ */

/* ── Option 2: White pill, underline active ── */
header {
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.06);
  animation: headerReveal 0.5s cubic-bezier(0.32, 0.72, 0, 1) both;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.99) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14) !important;
}

nav {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 8px 0 26px;
  gap: 0;
}

.logo {
  flex-shrink: 0;
  min-width: max-content;
}

.logo-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.logo-main .logo-ad {
  color: var(--accent);
}

.logo-main .logo-instal {
  color: var(--dark);
}

.logo-sub {
  font-size: 0px; /* hidden in white pill — too busy */
  opacity: 0;
}

.nav-links {
  display: flex !important;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  height: 58px;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.nav-links li {
  display: flex;
  flex: 0 0 auto;
}

.nav-links a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 0 14px !important;
  white-space: nowrap;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  line-height: 1 !important;
  color: #64748b !important;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 11px;
  left: 14px !important;
  right: 14px !important;
  width: auto !important;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease;
}

.nav-links a:hover {
  color: #0f172a !important;
  background: none !important;
  transform: none !important;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 0.5;
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #0f172a !important;
  background: none !important;
  box-shadow: none !important;
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-social {
  display: none;
}

.nav-cta {
  min-height: 42px;
  padding: 0 22px !important;
  border-radius: 100px;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translate(-50%, -4px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1220px) {
  nav {
    gap: 18px;
  }

  .nav-links {
    gap: 4px !important;
    padding: 5px !important;
  }

  .nav-links a {
    padding: 0 11px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.08em !important;
  }

  .logo-sub {
    font-size: 0.52rem !important;
    letter-spacing: 0.24em !important;
  }

  .nav-cta {
    padding: 0 16px !important;
  }
}

@media (max-width: 1080px) {
  nav {
    gap: 14px;
    min-height: 72px;
  }

  .nav-social {
    display: none;
  }

  .nav-links a {
    padding: 0 10px !important;
    font-size: 10px !important;
    letter-spacing: 0.07em !important;
  }

  .nav-cta {
    min-height: 40px;
    font-size: 11px !important;
  }
}

@media (max-width: 960px) {
  nav {
    display: flex !important;
    min-height: 64px;
    padding: 10px 0;
  }

  .nav-links,
  .nav-social,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu — fixed fullscreen panel, above everything */
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    position: fixed !important;
    top: 80px;
    left: 12px;
    right: 12px;
    height: auto !important;
    min-height: 0 !important;
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
    flex: none !important;
    padding: 8px !important;
    border-radius: 20px;
    background: #0d0d18 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7) !important;
    z-index: 10010 !important;
  }

  .nav-links.open li {
    width: 100%;
    animation: none;
  }

  .nav-links.open a {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    min-height: 52px;
    padding: 0 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 12px !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.18s, color 0.18s;
  }

  .nav-links.open a:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #fff !important;
  }

  .nav-links.open a::after {
    display: none !important;
  }

  .nav-links.open a[aria-current="page"] {
    color: var(--accent) !important;
    background: rgba(2, 132, 199, 0.1) !important;
  }

  .nav-links.open li:last-child a {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  nav {
    min-height: 60px;
  }

  .nav-actions {
    gap: 8px;
  }

  .logo-main {
    font-size: 1.28rem !important;
  }

  .logo-sub {
    font-size: 0.5rem !important;
    letter-spacing: 0.18em !important;
  }
}

/* ================================================================
   BENTO BALANCE
   ================================================================ */

.bento-section > .container {
  max-width: 1020px;
}

.bento-section .eyebrow,
.bento-section .section-title,
.bento-section .section-subtitle {
  text-align: center;
}

.bento-section .section-subtitle {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 16px !important;
  max-width: 940px;
  margin: 3rem auto 0 !important;
  align-items: stretch;
}

.bento-card,
.bento-card.wide {
  grid-column: auto !important;
  min-height: 196px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bento-card.wide {
  min-height: 216px;
}

.bento-big-num {
  margin-top: auto;
  padding-top: 20px;
}

.bento-card::before {
  background: linear-gradient(180deg, rgba(2, 132, 199, 0.08), transparent 62%) !important;
}

.bento-card::after {
  background: radial-gradient(220px circle at var(--spot-x) var(--spot-y), rgba(2, 132, 199, 0.08), transparent 72%) !important;
}

@media (max-width: 960px) {
  .bento-section > .container {
    max-width: 100%;
  }

  .bento-grid {
    max-width: 100%;
  }
}

/* ================================================================
   BENTO EXPANSION
   ================================================================ */

.bento-section {
  position: relative;
  overflow: hidden;
}

.bento-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(56, 189, 248, 0.05), transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(2, 132, 199, 0.05), transparent 26%);
  pointer-events: none;
}

.bento-section > .container {
  position: relative;
  max-width: 1140px;
}

.bento-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 6px 0 2px;
}

.bento-intro::after {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.75), transparent);
}

.bento-intro .section-title {
  font-size: clamp(2.45rem, 4.8vw, 4.25rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.05em !important;
  margin-bottom: 14px !important;
}

.bento-intro .section-subtitle {
  max-width: 680px;
  font-size: 1rem !important;
  line-height: 1.82 !important;
  margin-bottom: 0 !important;
}

.bento-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 980px;
  margin: 3rem auto 0 !important;
  gap: 16px !important;
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top, rgba(56, 189, 248, 0.06), transparent 44%);
  border: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 80px rgba(3, 7, 18, 0.34);
}

.bento-grid::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(56, 189, 248, 0.08);
  pointer-events: none;
}

.bento-card,
.bento-card.wide {
  min-height: 210px;
}

.bento-card.wide {
  grid-column: span 2 !important;
  min-height: 234px;
}

.bento-card {
  padding: 28px 26px 22px;
  background: rgba(18, 20, 33, 0.9) !important;
  border-color: rgba(148, 163, 184, 0.1) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.bento-card p {
  max-width: 95%;
}

.bento-icon {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.bento-big-num {
  font-size: clamp(4rem, 7vw, 5.8rem);
  letter-spacing: -0.07em;
  margin-top: auto;
  padding-top: 18px;
  text-shadow: 0 12px 28px rgba(2, 132, 199, 0.14);
}

@media (max-width: 960px) {
  .bento-intro .section-title {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }

  .bento-intro .section-subtitle {
    font-size: 0.98rem !important;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 2.5rem !important;
    padding: 16px;
  }

  .bento-big-num {
    font-size: clamp(3.6rem, 10vw, 5.6rem);
  }
}

@media (max-width: 767px) {
  .bento-intro {
    max-width: 100%;
  }

  .bento-intro .section-title {
    font-size: clamp(1.85rem, 9vw, 2.4rem) !important;
    line-height: 1.02 !important;
  }

  .bento-intro .section-subtitle {
    font-size: 0.92rem !important;
    margin-bottom: 18px !important;
  }

  .bento-grid {
    grid-template-columns: 1fr !important;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .bento-card,
  .bento-card.wide {
    min-height: 0;
  }

  .bento-card.wide {
    grid-column: span 1 !important;
  }

  .bento-big-num {
    font-size: 3.5rem;
  }
}

/* ================================================================
   BENTO VISION REDESIGN
   ================================================================ */

.bento-section-vision {
  position: relative;
  overflow: hidden;
  padding: 118px 0 112px !important;
  background:
    radial-gradient(circle at 16% 24%, rgba(24, 78, 119, 0.24), transparent 24%),
    radial-gradient(circle at 84% 64%, rgba(18, 72, 112, 0.16), transparent 28%),
    linear-gradient(180deg, #090b16 0%, #080a13 100%) !important;
}

.bento-section-vision::before {
  content: none !important;
}

.bento-section-vision::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.03) 50%, transparent 100%),
    radial-gradient(circle at center, rgba(56, 189, 248, 0.07), transparent 40%);
  pointer-events: none;
}

.bento-section-vision > .container {
  position: relative;
  z-index: 2;
  max-width: 1760px !important;
  padding: 0 28px;
}

.vision-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.18;
}

.vision-glow-left {
  top: 46px;
  left: 4%;
  background: rgba(41, 121, 255, 0.36);
}

.vision-glow-right {
  right: 8%;
  bottom: 90px;
  background: rgba(56, 189, 248, 0.28);
}

.vision-star {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(186, 230, 253, 0.2) 56%, transparent 68%);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  opacity: 0.7;
}

.vision-star-a {
  right: 3%;
  bottom: 190px;
}

.vision-star-b {
  left: 7%;
  top: 108px;
  transform: scale(0.7);
  opacity: 0.4;
}

.bento-vision-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.bento-vision-intro .section-title {
  font-size: clamp(3.2rem, 5.1vw, 5.1rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.065em !important;
  margin-bottom: 14px !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28), 0 16px 36px rgba(0, 0, 0, 0.38);
}

.bento-vision-intro .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.04rem !important;
  line-height: 1.7 !important;
  color: rgba(226, 232, 240, 0.72) !important;
}

.bento-vision-stage {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(290px, 360px) minmax(360px, 470px) minmax(290px, 360px) 250px;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.bento-vision-stage::before,
.bento-vision-stage::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  pointer-events: none;
}

.bento-vision-stage::before {
  left: 17%;
  right: 17%;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.46) 14%, rgba(144, 226, 255, 0.16) 50%, rgba(56, 189, 248, 0.46) 86%, transparent 100%);
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.2);
}

.bento-vision-stage::after {
  left: 34%;
  right: 34%;
  top: calc(50% + 116px);
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.18) 25%, rgba(56, 189, 248, 0.42) 50%, rgba(56, 189, 248, 0.18) 75%, transparent 100%);
}

.vision-side-panel,
.vision-card,
.vision-kpi-bar {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.vision-side-panel {
  position: relative;
  padding: 24px 20px;
  border-radius: 24px;
  background: rgba(18, 22, 35, 0.74);
  border: 1px solid rgba(130, 146, 170, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.vision-side-panel h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.vision-status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vision-status-item {
  position: relative;
  padding: 12px 34px 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.vision-status-item:last-child {
  border-bottom: none;
}

.vision-status-item strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}

.vision-status-item span {
  font-size: 0.88rem;
  color: rgba(203, 213, 225, 0.52);
}

.vision-status-item i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 14px currentColor;
}

.vision-status-item .is-green {
  background: #4ade80;
  color: #4ade80;
}

.vision-status-item .is-amber {
  background: #fbbf24;
  color: #fbbf24;
}

.vision-side-panel-certs {
  text-align: center;
}

.vision-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.vision-cert-badge {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), rgba(14, 20, 33, 0.86));
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vision-cert-badge-gold {
  color: #ffd58a;
  border-color: rgba(245, 158, 11, 0.22);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vision-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #77c5ff;
  font-size: 0.92rem;
  font-weight: 600;
}

.vision-panel-link::after {
  content: '→';
}

.vision-card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.vision-card {
  position: relative;
  padding: 22px 24px;
  min-height: 150px;
  border-radius: 24px;
  background: rgba(18, 22, 35, 0.8);
  border: 1px solid rgba(130, 146, 170, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.26);
  box-shadow: 0 18px 42px rgba(3, 18, 35, 0.35), 0 0 26px rgba(56, 189, 248, 0.08);
}

.vision-card-glow {
  border-color: rgba(120, 208, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.06), 0 0 38px rgba(56, 189, 248, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vision-card-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.vision-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(16, 22, 34, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vision-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
  line-height: 1.24;
}

.vision-card p {
  color: rgba(203, 213, 225, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}

.vision-stat {
  margin-top: 14px;
  font-size: clamp(4.4rem, 6vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.09em;
  background: linear-gradient(180deg, #77d4ff 0%, #38bdf8 52%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 8px 22px rgba(14, 165, 233, 0.12);
}

.vision-core {
  position: relative;
  min-height: 620px;
  z-index: 1;
}

.vision-core::before {
  content: '';
  position: absolute;
  inset: 16% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), rgba(14, 18, 30, 0.02) 58%, transparent 68%);
  filter: blur(12px);
}

.vision-core::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 94px;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.16);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}

.vision-rings {
  position: absolute;
  inset: auto 50% 28px auto;
  width: 320px;
  height: 120px;
  transform: translateX(50%);
}

.vision-rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.08);
  animation: visionPulse 6s linear infinite;
}

.vision-rings .ring-2 {
  inset: 12px 26px;
  animation-delay: -2s;
}

.vision-rings .ring-3 {
  inset: 24px 52px;
  animation-delay: -4s;
}

.vision-hologram {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 320px;
  height: 380px;
  transform: translate(-50%, -50%);
}

.vision-hologram::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 300px;
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(186, 230, 253, 0.48) 0%, rgba(56, 189, 248, 0.08) 42%, transparent 64%);
  filter: blur(10px);
}

.base-grid {
  position: absolute;
  left: 50%;
  bottom: 62px;
  width: 250px;
  height: 140px;
  transform: translateX(-50%) perspective(800px) rotateX(68deg);
  border: 1px solid rgba(125, 211, 252, 0.26);
  background:
    linear-gradient(rgba(125, 211, 252, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.12);
}

.tower {
  position: absolute;
  bottom: 118px;
  border: 1px solid rgba(176, 240, 255, 0.5);
  background:
    linear-gradient(rgba(186, 230, 253, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(186, 230, 253, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.14);
}

.tower::before {
  content: '';
  position: absolute;
  inset: -10px 12px auto auto;
  width: calc(100% - 24px);
  height: 22px;
  transform: skewX(-34deg);
  border: 1px solid rgba(176, 240, 255, 0.38);
  background: rgba(56, 189, 248, 0.06);
}

.tower-left {
  left: 44px;
  width: 90px;
  height: 156px;
  transform: skewY(-8deg);
}

.tower-center {
  left: 116px;
  width: 118px;
  height: 214px;
  transform: skewY(-8deg);
}

.tower-right {
  right: 40px;
  width: 86px;
  height: 172px;
  transform: skewY(-8deg);
}

.vision-node {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.72);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vision-node span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 16px currentColor;
}

.node-a {
  top: 168px;
  left: 8px;
  color: #ffd166;
}

.node-b {
  top: 162px;
  right: -6px;
  color: #6cc1ff;
}

.node-c {
  top: 266px;
  right: 8px;
  color: #7ee081;
}

.node-d {
  top: 320px;
  left: 18px;
  color: #ef8ef2;
}

.vision-kpi-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 18px 24px;
  border-radius: 28px;
  background: rgba(18, 22, 35, 0.84);
  border: 1px solid rgba(130, 146, 170, 0.14);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.vision-kpi-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.vision-kpi-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.45rem;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(20, 26, 39, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.vision-kpi-item strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 4px;
}

.vision-kpi-item span {
  display: block;
  font-size: 0.94rem;
  color: rgba(203, 213, 225, 0.62);
}

@keyframes visionPulse {
  0% {
    opacity: 0.42;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.9;
    transform: scale(1);
  }

  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }
}

@media (max-width: 1540px) {
  .bento-vision-stage {
    grid-template-columns: 220px minmax(260px, 330px) minmax(330px, 420px) minmax(260px, 330px) 220px;
  }

  .vision-side-panel {
    padding: 20px 18px;
  }

  .vision-card {
    padding: 20px 22px;
  }
}

@media (max-width: 1340px) {
  .bento-vision-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .bento-vision-stage::before,
  .bento-vision-stage::after {
    display: none;
  }

  .vision-core {
    grid-column: 1 / -1;
    order: 3;
    min-height: 560px;
  }

  .vision-card-stack-left {
    order: 1;
  }

  .vision-card-stack-right {
    order: 2;
  }

  .vision-side-panel {
    order: 4;
  }

  .vision-side-panel-certs {
    order: 5;
  }
}

@media (max-width: 960px) {
  .bento-section-vision {
    padding: 88px 0 78px !important;
  }

  .bento-section-vision > .container {
    padding: 0 18px;
  }

  .bento-vision-intro .section-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem) !important;
  }

  .bento-vision-intro .section-subtitle {
    font-size: 0.96rem !important;
  }

  .bento-vision-stage {
    grid-template-columns: 1fr;
  }

  .vision-core,
  .vision-card-stack-left,
  .vision-card-stack-right,
  .vision-side-panel,
  .vision-side-panel-certs {
    order: initial;
    grid-column: auto;
  }

  .vision-core {
    min-height: 500px;
  }

  .vision-hologram {
    width: 280px;
    height: 330px;
  }

  .vision-kpi-bar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .vision-glow,
  .vision-star,
  .vision-node {
    display: none;
  }

  .vision-core {
    min-height: 420px;
  }

  .vision-hologram {
    width: 230px;
    height: 290px;
  }

  .tower-left {
    left: 34px;
    width: 70px;
    height: 132px;
  }

  .tower-center {
    left: 92px;
    width: 96px;
    height: 180px;
  }

  .tower-right {
    right: 30px;
    width: 68px;
    height: 148px;
  }

  .vision-rings {
    width: 250px;
    height: 92px;
    bottom: 36px;
  }

  .base-grid {
    width: 190px;
    height: 110px;
    bottom: 54px;
  }

  .vision-card-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .vision-icon {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .vision-card h3 {
    font-size: 1rem;
  }

  .vision-card p {
    font-size: 0.88rem;
  }

  .vision-stat {
    font-size: 3.8rem;
  }
}

/* ================================================================
   BENTO VISION REFINEMENT PASS 2
   ================================================================ */

.bento-vision-intro {
  max-width: 860px;
  margin: 0 auto 30px;
}

.bento-section-vision > .container {
  max-width: 1940px !important;
  padding: 0 26px;
}

.bento-vision-intro .section-title {
  font-size: clamp(3.4rem, 5.25vw, 5.4rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
  text-wrap: balance;
}

.bento-vision-intro .section-subtitle {
  max-width: 690px;
  color: rgba(226, 232, 240, 0.7) !important;
}

.bento-vision-stage {
  grid-template-columns: 280px minmax(370px, 430px) minmax(520px, 620px) minmax(370px, 430px) 280px;
  gap: 24px;
  align-items: center;
  margin-top: 40px;
}

.bento-vision-stage::before {
  left: 11%;
  right: 11%;
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.34) 8%, rgba(186, 230, 253, 0.18) 50%, rgba(56, 189, 248, 0.34) 92%, transparent 100%);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.18);
}

.bento-vision-stage::after {
  left: 24%;
  right: 24%;
  top: calc(50% + 178px);
  background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.08) 16%, rgba(125, 211, 252, 0.42) 50%, rgba(56, 189, 248, 0.08) 84%, transparent 100%);
}

.vision-side-panel,
.vision-card,
.vision-kpi-bar {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(31, 39, 58, 0.9) 0%, rgba(16, 21, 34, 0.92) 100%);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 60px rgba(3, 7, 18, 0.34);
}

.vision-side-panel::before,
.vision-card::before,
.vision-kpi-bar::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.vision-side-panel::after,
.vision-card::after {
  content: '';
  position: absolute;
  inset: -18% auto auto -10%;
  width: 68%;
  height: 42%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.12), transparent 72%);
  pointer-events: none;
}

.vision-side-panel {
  min-height: 286px;
  padding: 24px 20px;
  border-radius: 28px;
  align-self: center;
}

.vision-side-panel h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.82);
  margin-bottom: 18px;
}

.vision-status-item {
  padding: 13px 34px 13px 0;
}

.vision-status-item strong {
  font-size: 0.99rem;
}

.vision-status-item span {
  font-size: 0.84rem;
  color: rgba(203, 213, 225, 0.48);
}

.vision-side-panel-certs {
  text-align: center;
}

.vision-cert-grid {
  gap: 16px;
  margin-bottom: 18px;
}

.vision-cert-badge {
  min-height: 92px;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 26px rgba(59, 130, 246, 0.06);
}

.vision-cert-badge span {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.vision-cert-badge small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.56);
}

.vision-cert-badge-blue {
  color: #dff6ff;
  border-color: rgba(125, 211, 252, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(56, 189, 248, 0.12);
}

.vision-cert-badge-gold {
  color: #ffd58a;
}

.vision-panel-link {
  font-size: 0.94rem;
}

.vision-card-stack {
  gap: 20px;
  align-self: stretch;
}

.vision-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 178px;
  padding: 24px 26px;
  border-radius: 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vision-card:hover {
  transform: translateY(-5px);
}

.vision-card-glow {
  border-color: rgba(125, 211, 252, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(125, 211, 252, 0.08),
    0 0 42px rgba(56, 189, 248, 0.18),
    0 28px 62px rgba(3, 7, 18, 0.36);
}

.vision-card-glow::after {
  width: 76%;
  height: 54%;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.18), transparent 72%);
}

.vision-card-head {
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.vision-icon,
.vision-kpi-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.18), rgba(20, 26, 39, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 28px rgba(2, 6, 18, 0.2);
}

.vision-icon svg,
.vision-kpi-icon svg {
  width: 30px;
  height: 30px;
}

.vision-icon-gold {
  color: #f6c86f;
}

.vision-icon-silver {
  color: #d9deed;
}

.vision-icon-amber {
  color: #ffb347;
}

.vision-icon-cyan,
.vision-icon-blue,
.vision-icon-sky {
  color: #79d7ff;
}

.vision-card h3 {
  font-size: 1.16rem;
  margin-bottom: 7px;
}

.vision-card p {
  color: rgba(203, 213, 225, 0.62);
  font-size: 0.91rem;
  line-height: 1.62;
  max-width: 34ch;
}

.vision-card-stat .vision-card-head > div {
  max-width: 31ch;
}

.vision-stat {
  margin-top: 16px;
  font-size: clamp(5rem, 6vw, 6.6rem);
  text-shadow:
    0 0 18px rgba(56, 189, 248, 0.12),
    0 8px 24px rgba(14, 165, 233, 0.1);
}

.vision-card-bim {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 152px;
  gap: 18px;
  align-items: center;
  min-height: 192px;
  padding-right: 26px;
}

.vision-card-bim .vision-card-head > div {
  max-width: none;
}

.vision-card-bim .vision-card-head {
  align-items: center;
}

.vision-card-bim p {
  max-width: 30ch;
}

.vision-card-figure {
  position: relative;
  right: auto;
  bottom: auto;
  width: 148px;
  height: 108px;
  opacity: 0.96;
  pointer-events: none;
  justify-self: end;
}

.vision-card-figure svg {
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 18px rgba(125, 211, 252, 0.16))
    drop-shadow(0 10px 22px rgba(2, 6, 18, 0.24));
}

.vision-core {
  min-height: 738px;
  overflow: visible;
  margin: 0 -6px;
}

.vision-core::before {
  inset: 8% 1%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.28), rgba(14, 18, 30, 0.02) 56%, transparent 74%);
  filter: blur(24px);
}

.vision-core::after {
  width: 430px;
  height: 430px;
  bottom: 62px;
  border-color: rgba(125, 211, 252, 0.18);
  box-shadow: 0 0 54px rgba(56, 189, 248, 0.12);
}

.vision-core-beam {
  position: absolute;
  left: 50%;
  bottom: 108px;
  width: 360px;
  height: 286px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.22) 0%, rgba(56, 189, 248, 0.1) 36%, rgba(56, 189, 248, 0) 100%);
  clip-path: polygon(46% 0, 54% 0, 100% 100%, 0 100%);
  filter: blur(10px);
  opacity: 0.95;
}

.vision-rings {
  width: 432px;
  height: 164px;
  bottom: 12px;
}

.vision-rings .ring {
  border-color: rgba(125, 211, 252, 0.24);
  box-shadow:
    0 0 24px rgba(56, 189, 248, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.vision-hologram {
  top: 55%;
  width: 580px;
  height: 580px;
}

.vision-hologram-svg {
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 30px rgba(125, 211, 252, 0.28))
    drop-shadow(0 0 62px rgba(56, 189, 248, 0.16));
  animation: visionFloat 8s ease-in-out infinite;
}

.vision-label-cluster {
  position: absolute;
  top: 220px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 176px;
}

.vision-label-cluster-left {
  left: -10px;
}

.vision-label-cluster-right {
  right: -10px;
}

.vision-label-cluster-right .vision-node {
  margin-left: auto;
  flex-direction: row-reverse;
  text-align: right;
}

.vision-node {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0;
  white-space: normal;
  max-width: 176px;
  color: rgba(226, 232, 240, 0.8);
}

.vision-node::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.5;
}

.vision-label-cluster-left .vision-node::after {
  right: -32px;
}

.vision-label-cluster-right .vision-node::after {
  left: -32px;
  transform: translateY(-50%) scaleX(-1);
}

.vision-node strong,
.vision-node small {
  display: block;
}

.vision-node strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.9);
}

.vision-node small {
  margin-top: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.5);
}

.vision-node-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  flex-shrink: 0;
  margin-right: 0 !important;
}

.vision-node-gold {
  color: #f6c86f;
}

.vision-node-amber {
  color: #ffc261;
}

.vision-node-green {
  color: #5bdd88;
}

.vision-node-blue {
  color: #7dd3fc;
}

.vision-node-violet {
  color: #d198ff;
}

.vision-node-cyan {
  color: #79d7ff;
}

.vision-kpi-bar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin-top: 34px;
  padding: 22px 26px;
  border-radius: 30px;
}

.vision-kpi-item {
  padding: 8px 12px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
}

.vision-kpi-item + .vision-kpi-item {
  border-left: 1px solid rgba(148, 163, 184, 0.14);
  padding-left: 30px;
}

.vision-kpi-item strong {
  font-size: 1.28rem;
}

.vision-kpi-item strong span {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  color: #57ccff;
}

.vision-kpi-item span {
  font-size: 0.98rem;
}

@keyframes visionFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1540px) {
  .bento-vision-stage {
    grid-template-columns: 232px minmax(318px, 360px) minmax(430px, 500px) minmax(318px, 360px) 232px;
  }

  .vision-hologram {
    width: 500px;
    height: 500px;
  }

  .vision-label-cluster {
    width: 150px;
    top: 202px;
  }

  .vision-card-bim {
    grid-template-columns: minmax(0, 1fr) 138px;
  }

  .vision-card-figure {
    width: 136px;
    height: 98px;
  }
}

@media (max-width: 1340px) {
  .bento-vision-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-core {
    min-height: 650px;
  }

  .vision-label-cluster {
    top: 178px;
  }

  .vision-kpi-bar {
    max-width: 100%;
  }
}

@media (max-width: 960px) {
  .bento-vision-intro .section-title {
    font-size: clamp(2.3rem, 8vw, 3.6rem) !important;
  }

  .bento-vision-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vision-core,
  .vision-card-stack-left,
  .vision-card-stack-right,
  .vision-side-panel,
  .vision-side-panel-certs {
    order: initial;
    grid-column: auto;
  }

  .vision-core {
    min-height: 560px;
  }

  .vision-hologram {
    width: 430px;
    height: 430px;
  }

  .vision-label-cluster {
    top: 156px;
    width: 132px;
    gap: 24px;
  }

  .vision-card-bim {
    grid-template-columns: 1fr;
    padding-right: 24px;
  }

  .vision-card-figure {
    display: none;
  }

  .vision-kpi-bar {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .vision-kpi-item + .vision-kpi-item {
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    padding-left: 10px;
    padding-top: 18px;
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .vision-glow,
  .vision-star,
  .vision-label-cluster {
    display: none;
  }

  .vision-side-panel,
  .vision-card {
    min-height: 0;
  }

  .vision-icon,
  .vision-kpi-icon {
    width: 52px;
    height: 52px;
  }

  .vision-icon svg,
  .vision-kpi-icon svg {
    width: 24px;
    height: 24px;
  }

  .vision-card-head {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .vision-card p {
    max-width: none;
  }

  .vision-core {
    min-height: 430px;
  }

  .vision-hologram {
    width: 304px;
    height: 304px;
  }

  .vision-core-beam {
    width: 206px;
    height: 176px;
    bottom: 82px;
  }

  .vision-rings {
    width: 286px;
    height: 106px;
    bottom: 30px;
  }

  .vision-stat {
    font-size: 4rem;
  }
}

/* ================================================================
   BENTO VISION LAYERED DESKTOP PASS
   ================================================================ */

@media (min-width: 1500px) {
  .bento-section-vision {
    padding: 112px 0 164px !important;
    background:
      radial-gradient(circle at 18% 18%, rgba(18, 56, 90, 0.28), transparent 24%),
      radial-gradient(circle at 82% 68%, rgba(13, 48, 76, 0.22), transparent 26%),
      linear-gradient(180deg, #070b16 0%, #050913 100%) !important;
  }

  .bento-section-vision::after {
    background:
      radial-gradient(circle at center, rgba(56, 189, 248, 0.06), transparent 40%),
      repeating-linear-gradient(90deg, rgba(103, 135, 178, 0.06) 0 1px, transparent 1px 120px),
      repeating-linear-gradient(0deg, rgba(103, 135, 178, 0.05) 0 1px, transparent 1px 120px);
    opacity: 0.24;
    mask: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.4) 80px, rgba(0, 0, 0, 1) 160px, rgba(0, 0, 0, 1) calc(100% - 180px), transparent 100%);
  }

  .bento-section-vision > .container {
    max-width: 1940px !important;
    padding: 0 20px;
  }

  .bento-vision-intro {
    max-width: 820px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 6;
  }

  .bento-vision-intro .section-title {
    font-size: clamp(3.5rem, 4.7vw, 5.35rem) !important;
  }

  .bento-vision-intro .section-subtitle {
    max-width: 620px;
    font-size: 1rem !important;
  }

  .bento-vision-stage {
    display: block;
    position: relative;
    max-width: 1840px;
    min-height: 940px;
    margin: 28px auto 0;
  }

  .bento-vision-stage::before,
  .bento-vision-stage::after {
    display: none;
  }

  .bento-vision-stage > .vision-side-panel,
  .bento-vision-stage > .vision-card-stack,
  .bento-vision-stage > .vision-core {
    position: absolute;
  }

  .vision-core {
    left: 50%;
    top: 54px;
    width: min(1120px, 72vw);
    height: 760px;
    min-height: 0;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1;
    pointer-events: none;
  }

  .vision-core::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 59%, rgba(156, 230, 255, 0.14), transparent 18%),
      url('assets/vision/vision-core-base.png') center center / 100% auto no-repeat;
    filter: saturate(1.04);
    opacity: 0.98;
  }

  .vision-core::after {
    content: '';
    position: absolute;
    inset: 10% 18%;
    background:
      radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.16), transparent 40%),
      radial-gradient(circle at 50% 78%, rgba(125, 211, 252, 0.12), transparent 28%);
    filter: blur(20px);
  }

  .vision-core-beam,
  .vision-rings,
  .vision-hologram {
    display: none !important;
  }

  .vision-label-cluster {
    top: 204px;
    width: 164px;
    gap: 34px;
    z-index: 3;
  }

  .vision-label-cluster-left {
    left: 194px;
  }

  .vision-label-cluster-right {
    right: 194px;
  }

  .vision-node {
    max-width: 164px;
  }

  .vision-node::after {
    width: 44px;
  }

  .vision-label-cluster-left .vision-node::after {
    right: -42px;
  }

  .vision-label-cluster-right .vision-node::after {
    left: -42px;
  }

  .vision-side-panel {
    left: 48px;
    top: 252px;
    width: 252px;
    min-height: 296px;
    z-index: 4;
  }

  .vision-side-panel-certs {
    left: auto;
    right: 48px;
    top: 292px;
    width: 252px;
    min-height: 266px;
  }

  .vision-card-stack {
    width: 468px;
    gap: 24px;
    z-index: 4;
  }

  .vision-card-stack-left {
    left: 324px;
    top: 132px;
  }

  .vision-card-stack-right {
    right: 324px;
    top: 132px;
  }

  .vision-card {
    min-height: 162px;
    padding: 26px 28px;
    border-radius: 32px;
    border-color: rgba(122, 204, 255, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(125, 211, 252, 0.05),
      0 0 36px rgba(56, 189, 248, 0.16),
      0 24px 54px rgba(3, 7, 18, 0.34);
  }

  .vision-card::after {
    inset: 18px 18px auto auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(186, 230, 253, 0.16) 58%, transparent 70%);
    clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    opacity: 0.56;
  }

  .vision-card-glow {
    border-color: rgba(127, 216, 255, 0.34);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(125, 211, 252, 0.08),
      0 0 50px rgba(56, 189, 248, 0.2),
      0 28px 62px rgba(3, 7, 18, 0.38);
  }

  .vision-card-glow::after {
    inset: 18px 18px auto auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(186, 230, 253, 0.16) 58%, transparent 70%);
    clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    opacity: 0.56;
  }

  .vision-card-head {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .vision-icon,
  .vision-kpi-icon {
    width: 72px;
    height: 72px;
  }

  .vision-icon svg,
  .vision-kpi-icon svg {
    width: 34px;
    height: 34px;
  }

  .vision-card h3 {
    font-size: 1.14rem;
    line-height: 1.24;
  }

  .vision-card p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .vision-stat {
    font-size: clamp(4.9rem, 4vw, 5.9rem);
  }

  .vision-card-bim {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 152px;
    gap: 18px;
    align-items: center;
    min-height: 178px;
    padding-right: 28px;
  }

  .vision-card-bim .vision-card-head > div {
    max-width: none;
  }

  .vision-card-bim p {
    max-width: 28ch;
  }

  .vision-card-figure {
    width: 152px;
    height: 108px;
    justify-self: end;
  }

  .vision-status-item {
    padding: 13px 30px 13px 0;
  }

  .vision-status-item strong {
    font-size: 0.96rem;
  }

  .vision-status-item span {
    font-size: 0.82rem;
  }

  .vision-cert-badge {
    min-height: 86px;
  }

  .vision-panel-link {
    margin-top: 2px;
  }

  .vision-kpi-bar {
    position: relative;
    z-index: 6;
    max-width: 1110px;
    margin: -90px auto 0;
    padding: 22px 28px;
    border-radius: 30px;
    border-color: rgba(125, 211, 252, 0.2);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(125, 211, 252, 0.08),
      0 0 46px rgba(56, 189, 248, 0.16),
      0 24px 60px rgba(3, 7, 18, 0.34);
  }

  .vision-kpi-bar::after {
    content: '';
    position: absolute;
    left: 26px;
    right: 26px;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background:
      radial-gradient(circle, rgba(125, 211, 252, 0.95) 0 3px, transparent 4px) left center / 8px 8px no-repeat,
      radial-gradient(circle, rgba(125, 211, 252, 0.95) 0 3px, transparent 4px) right center / 8px 8px no-repeat,
      linear-gradient(90deg, rgba(125, 211, 252, 0.12), rgba(125, 211, 252, 0.5), rgba(125, 211, 252, 0.12));
    opacity: 0.42;
    pointer-events: none;
  }

  .vision-kpi-item {
    position: relative;
    z-index: 1;
    padding: 6px 16px;
    gap: 18px;
  }

  .vision-kpi-item + .vision-kpi-item {
    padding-left: 34px;
  }

  .vision-kpi-item strong {
    font-size: 1.34rem;
    line-height: 1.05;
  }

  .vision-kpi-item span {
    font-size: 0.96rem;
  }
}

@media (min-width: 1500px) and (max-width: 1720px) {
  .vision-core {
    width: min(980px, 70vw);
    height: 700px;
  }

  .vision-label-cluster {
    top: 190px;
    width: 148px;
  }

  .vision-label-cluster-left {
    left: 164px;
  }

  .vision-label-cluster-right {
    right: 164px;
  }

  .vision-card-stack {
    width: 430px;
  }

  .vision-card-stack-left {
    left: 290px;
  }

  .vision-card-stack-right {
    right: 290px;
  }

  .vision-card-bim {
    grid-template-columns: minmax(0, 1fr) 132px;
  }

  .vision-card-figure {
    width: 132px;
    height: 96px;
  }
}

/* ================================================================
   WHY US SECTION REBUILD
   ================================================================ */

.why-us-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: #020B18;
}

.why-us-section > .container {
  position: relative;
  max-width: 1880px !important;
  padding: 0 24px;
}

.why-us-intro {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.why-us-intro .section-title {
  font-size: clamp(3rem, 4.8vw, 5.1rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.06em !important;
  margin-bottom: 14px !important;
  color: #f8fafc !important;
}

.why-us-intro .section-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(226, 232, 240, 0.7) !important;
  font-size: 1rem !important;
}

.why-us-stage {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(320px, 430px) minmax(500px, 620px) minmax(320px, 430px) 260px;
  gap: 24px;
  align-items: center;
  min-height: 860px;
}

.why-us-stage-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s ease-out;
}

.why-us-stage-art::before {
  content: '';
  position: absolute;
  inset: 3% 0 16%;
  background:
    radial-gradient(circle at 50% 56%, rgba(56, 189, 248, 0.16), rgba(56, 189, 248, 0.03) 24%, transparent 44%),
    radial-gradient(circle at 50% 76%, rgba(14, 165, 233, 0.12), transparent 28%),
    repeating-linear-gradient(90deg, rgba(108, 137, 180, 0.1) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(108, 137, 180, 0.08) 0 1px, transparent 1px 120px);
  mask: radial-gradient(circle at center, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.86) 58%, transparent 92%);
  opacity: 0.78;
}

.why-us-stage-art::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 70px;
  width: min(1100px, 78vw);
  height: 300px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at center, rgba(90, 210, 255, 0.14) 0%, rgba(56, 189, 248, 0.08) 32%, rgba(56, 189, 248, 0) 70%),
    radial-gradient(circle at center, rgba(14, 165, 233, 0.08) 0%, transparent 56%);
  filter: blur(42px);
}

.why-us-stage-star {
  position: absolute;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88) 0%, rgba(186, 230, 253, 0.18) 58%, transparent 72%);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity: 0.72;
}

.why-us-stage-star-left {
  left: 18%;
  top: 88px;
}

.why-us-stage-star-right {
  right: 2.5%;
  bottom: 118px;
}

.why-us-sidebar,
.why-us-card,
.why-us-metrics {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: rgba(6, 20, 40, 0.75);
  border: 1px solid rgba(0, 162, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 162, 255, 0.06),
    0 20px 48px rgba(3, 8, 20, 0.48);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.why-us-sidebar::before,
.why-us-card::before,
.why-us-metrics::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.why-us-sidebar {
  padding: 24px 20px;
  border-radius: 16px;
}

.why-us-sidebar-left {
  grid-column: 1;
}

.why-us-sidebar-right {
  grid-column: 5;
}

.why-us-sidebar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.95);
  margin-bottom: 14px;
  padding-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 162, 255, 0.18);
}

.why-us-status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-us-status-item {
  position: relative;
  padding: 12px 32px 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.why-us-status-item:last-child {
  border-bottom: 0;
}

.why-us-status-item strong {
  display: block;
  font-size: 0.96rem;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 4px;
}

.why-us-status-item span {
  display: block;
  font-size: 0.83rem;
  color: rgba(203, 213, 225, 0.5);
}

.why-us-status-item i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 16px currentColor;
}

.why-us-status-item .is-green {
  color: #4ade80;
  background: currentColor;
  animation: statusPulse 2.4s ease-in-out infinite;
}

.why-us-status-item .is-amber {
  color: #fbbf24;
  background: currentColor;
  animation: statusPulse 2.4s ease-in-out infinite 0.6s;
}

.why-us-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.why-us-cert-badge {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 162, 255, 0.25);
  background: rgba(0, 162, 255, 0.08);
  color: #00A2FF;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-us-cert-badge:hover {
  transform: scale(1.06);
}

.why-us-cert-badge span {
  font-size: 0.9rem;
  font-weight: 800;
}

.why-us-cert-badge small {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.54);
}

.why-us-cert-badge.is-blue {
  color: #00A2FF;
  border-color: rgba(0, 162, 255, 0.35);
  box-shadow: 0 0 16px rgba(0, 162, 255, 0.15);
}

.why-us-cert-badge.is-gold {
  color: #ffd58a;
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

.why-us-sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00A2FF;
  font-size: 0.92rem;
  font-weight: 600;
}

.why-us-sidebar-link::after {
  content: '→';
}

.why-us-cards {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-us-cards-left {
  grid-column: 2;
}

.why-us-cards-right {
  grid-column: 4;
}

.why-us-card {
  padding: 20px 22px;
  border-radius: 16px;
  min-height: 164px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 162, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 162, 255, 0.1),
    0 0 48px rgba(0, 162, 255, 0.28),
    0 28px 64px rgba(3, 8, 20, 0.48);
}

.why-us-card-accent {
  border-color: rgba(0, 162, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 162, 255, 0.08),
    0 0 52px rgba(0, 162, 255, 0.26),
    0 24px 56px rgba(3, 8, 20, 0.44);
}

.why-us-card-spark {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.82) 0%, rgba(186, 230, 253, 0.14) 58%, transparent 70%);
  clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
  opacity: 0.64;
}

.why-us-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-us-card-icon,
.why-us-metric-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(0, 162, 255, 0.2);
  background: rgba(0, 162, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-us-card-icon svg,
.why-us-metric-icon svg {
  width: 20px;
  height: 20px;
}

.why-us-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.why-us-metric-icon svg {
  width: 22px;
  height: 22px;
}

.why-us-card-icon.is-gold {
  color: #f6c86f;
}

.why-us-card-icon.is-silver {
  color: #d9deed;
}

.why-us-card-icon.is-amber {
  color: #ffb347;
}

.why-us-card-icon.is-cyan,
.why-us-card-icon.is-sky,
.why-us-metric-icon.is-cyan,
.why-us-metric-icon.is-sky {
  color: #00A2FF;
}

.why-us-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 8px;
  line-height: 1.24;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.why-us-card p {
  color: rgba(203, 213, 225, 0.62);
  font-size: 0.78rem;
  line-height: 1.56;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.why-us-card-stat {
  margin-top: 10px;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #00A2FF;
  filter: drop-shadow(0 0 8px rgba(0, 162, 255, 0.4));
}

.why-us-card-bim {
  display: block;
}

.why-us-card-bim .why-us-card-head {
  align-items: center;
}

.why-us-card-visual {
  display: none;
}

.why-us-hub {
  grid-column: 3;
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hologram-center {
  --holo-scale: 1;
  position: relative;
  width: 420px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  transform: scale(var(--holo-scale));
  transform-origin: center center;
}

.holo-ambient {
  position: absolute;
  inset: 72px 44px 54px;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 62%, rgba(0, 162, 255, 0.18), rgba(0, 162, 255, 0.06) 28%, transparent 42%),
    radial-gradient(circle at 50% 46%, rgba(34, 211, 238, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(56, 189, 248, 0.05), transparent 60%);
  filter: blur(14px);
}

.iso-grid {
  position: absolute;
  bottom: 82px;
  left: 50%;
  width: 380px;
  height: 160px;
  transform: translateX(-50%);
  opacity: 0.3;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(0, 162, 255, 0.22));
}

.iso-grid g {
  opacity: 0.62;
}

.grid-glow {
  position: absolute;
  bottom: 58px;
  left: 50%;
  width: 320px;
  height: 60px;
  transform: translateX(-50%);
  z-index: 0;
  background: radial-gradient(ellipse, rgba(0, 162, 255, 0.22) 0%, rgba(0, 162, 255, 0.07) 44%, transparent 72%);
  filter: blur(18px);
}

.connectors-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.connectors-svg path {
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.18));
}

.connectors-svg circle {
  filter: drop-shadow(0 0 8px currentColor);
}

.hud-rings {
  position: absolute;
  bottom: 108px;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  z-index: 3;
}

.hring {
  position: absolute;
  border-radius: 50%;
  transform-origin: center center;
}

.hring-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.24));
}

.hring-1 {
  inset: 0;
  animation: holoRingCw 10s linear infinite;
}

.hring-2 {
  inset: 20px;
  animation: holoRingCcw 6.2s linear infinite;
}

.hring-3 {
  inset: 40px;
  animation: holoRingCw 3.8s linear infinite;
}

.hring-core {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.52) 0%, rgba(0, 162, 255, 0.26) 36%, transparent 72%);
  box-shadow:
    0 0 24px rgba(56, 189, 248, 0.26),
    inset 0 0 18px rgba(125, 211, 252, 0.18);
  animation: holoCorePulse 2.4s ease-in-out infinite;
}

.hring-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.84);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.34);
}

.iso-platform-wrap {
  position: absolute;
  bottom: 136px;
  left: 50%;
  width: 220px;
  height: 92px;
  transform: translateX(-50%);
  z-index: 4;
}

.iso-platform {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 160px;
  height: 52px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 20px rgba(0, 162, 255, 0.22));
}

.platform-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 200px;
  height: 40px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 162, 255, 0.48) 0%, rgba(0, 162, 255, 0.18) 34%, transparent 70%);
  filter: blur(12px);
}

.building-wrap {
  position: absolute;
  bottom: 158px;
  left: 50%;
  width: 190px;
  height: 248px;
  transform: translateX(-50%);
  z-index: 5;
}

.building-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 124px;
  height: 176px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.12) 0%, rgba(56, 189, 248, 0.22) 36%, rgba(56, 189, 248, 0.04) 100%);
  clip-path: polygon(24% 0, 76% 0, 100% 100%, 0 100%);
  filter: blur(18px);
  opacity: 0.78;
  animation: holoBeamPulse 3.8s ease-in-out infinite;
}

.building-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 132px;
  height: 30px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(186, 230, 253, 0.42) 0%, rgba(56, 189, 248, 0.18) 38%, transparent 72%);
  filter: blur(10px);
}

.building-wrapper {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 156px;
  height: 214px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.34));
  animation: buildingDrift 5.6s ease-in-out infinite, buildingFlicker 7.4s steps(1, end) infinite;
}

.face {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.34);
  box-shadow:
    inset 0 0 26px rgba(0, 162, 255, 0.16),
    0 0 20px rgba(0, 162, 255, 0.08);
}

.face::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
    repeating-linear-gradient(180deg, rgba(125, 211, 252, 0.06) 0 1px, transparent 1px 14px);
  mix-blend-mode: screen;
  opacity: 0.78;
  pointer-events: none;
}

.face-left {
  left: 22px;
  bottom: 28px;
  width: 56px;
  height: 144px;
  transform: skewY(29deg);
  transform-origin: bottom right;
  background: linear-gradient(180deg, rgba(4, 18, 37, 0.96) 0%, rgba(3, 11, 24, 0.92) 100%);
  border-right: 0;
}

.face-right {
  right: 22px;
  bottom: 28px;
  width: 74px;
  height: 144px;
  transform: skewY(-29deg);
  transform-origin: bottom left;
  background: linear-gradient(180deg, rgba(11, 38, 72, 0.96) 0%, rgba(4, 20, 42, 0.92) 100%);
  border-left: 0;
}

.face-top {
  left: 50%;
  bottom: 167px;
  width: 132px;
  height: 54px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 45%, 50% 100%, 0% 45%);
  background: linear-gradient(135deg, rgba(14, 48, 86, 0.96) 0%, rgba(6, 24, 48, 0.92) 100%);
}

.face-top::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%),
    repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.08) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(180deg, rgba(125, 211, 252, 0.05) 0 1px, transparent 1px 12px);
}

.windows-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
}

.windows-grid-left {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 4px;
  padding: 10px 10px 10px 8px;
}

.windows-grid-right {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  padding: 10px 12px 10px 10px;
}

.roof-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 5px;
  padding: 12px 22px 10px;
}

.window {
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 1px;
  background: linear-gradient(180deg, rgba(11, 52, 92, 0.22), rgba(5, 18, 37, 0.48));
  box-shadow: inset 0 0 6px rgba(0, 162, 255, 0.16);
}

.window.lit {
  border-color: rgba(186, 230, 253, 0.7);
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.9), rgba(56, 189, 248, 0.55));
  box-shadow:
    0 0 8px rgba(125, 211, 252, 0.64),
    inset 0 0 6px rgba(255, 255, 255, 0.5);
}

.face-top .window {
  border-radius: 999px;
}

.holo-label {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 114px;
  padding: 7px 10px 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(5, 16, 34, 0.62), rgba(3, 10, 22, 0.32));
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 16px rgba(0, 162, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.holo-label::after {
  content: '';
  position: absolute;
  top: 16px;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.6;
}

.holo-label-nw {
  top: 18%;
  left: 5%;
  color: #7dd3fc;
}

.holo-label-nw::after {
  left: 100%;
  transform: translateX(6px);
}

.holo-label-ne {
  top: 15%;
  right: 5%;
  align-items: flex-end;
  text-align: right;
  color: #7dd3fc;
}

.holo-label-ne::after {
  right: 100%;
  transform: translateX(-6px) scaleX(-1);
}

.holo-label-sw {
  bottom: 30%;
  left: 8%;
  color: #7dd3fc;
}

.holo-label-sw::after {
  left: 100%;
  transform: translateX(6px);
}

.holo-label-se {
  right: 5%;
  bottom: 25%;
  min-width: 138px;
  align-items: flex-end;
  text-align: right;
  color: #d8b4fe;
}

.holo-label-se::after {
  right: 100%;
  transform: translateX(-6px) scaleX(-1);
}

.label-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 2px;
  box-shadow: 0 0 10px currentColor;
}

.ld-blue {
  color: #00A2FF;
  background: #00A2FF;
}

.ld-purple {
  color: #A855F7;
  background: #A855F7;
}

.label-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.92);
  letter-spacing: 0.04em;
}

.label-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ls-blue {
  color: #7dd3fc;
}

.ls-purple {
  color: #d8b4fe;
}

@keyframes holoRingCw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes holoRingCcw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes holoCorePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes buildingDrift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes buildingFlicker {
  0%,
  92%,
  100% {
    opacity: 1;
  }

  93% {
    opacity: 0.92;
  }

  95% {
    opacity: 0.98;
  }

  96% {
    opacity: 0.88;
  }
}

@keyframes holoBeamPulse {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.85;
  }
}

.why-us-hub-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(226, 232, 240, 0.8);
}

.why-us-hub-node span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor, 0 0 22px currentColor;
  flex-shrink: 0;
}

.why-us-hub-node strong,
.why-us-hub-node small {
  display: block;
}

.why-us-hub-node strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.92);
}

.why-us-hub-node small {
  margin-top: 2px;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.5);
}

.why-us-hub-node::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  opacity: 0.65;
}

.why-us-hub-node-a {
  left: 66px;
  top: 205px;
  color: #00A2FF;
}

.why-us-hub-node-a::after {
  right: -42px;
  transform: translateY(-50%);
}

.why-us-hub-node-b {
  right: 70px;
  top: 196px;
  flex-direction: row-reverse;
  text-align: right;
  color: #00A2FF;
}

.why-us-hub-node-b::after {
  left: -42px;
  transform: translateY(-50%) scaleX(-1);
}

.why-us-hub-node-c {
  right: 84px;
  top: 332px;
  flex-direction: row-reverse;
  text-align: right;
  color: #d198ff;
}

.why-us-hub-node-c::after {
  left: -42px;
  transform: translateY(-50%) scaleX(-1);
}

.why-us-hub-node-d {
  left: 76px;
  top: 364px;
  color: #00A2FF;
}

.why-us-hub-node-d::after {
  right: -42px;
  transform: translateY(-50%);
}

.why-us-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1060px;
  margin: 32px auto 0;
  padding: 26px 32px;
  border-radius: 16px;
  border-color: rgba(0, 162, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 0 56px rgba(56, 189, 248, 0.22),
    0 28px 64px rgba(3, 8, 20, 0.44);
}

.why-us-metrics::after {
  content: '';
  position: absolute;
  left: 28px;
  right: 28px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(0, 162, 255, 0.9) 0 3px, transparent 4px) left center / 8px 8px no-repeat,
    radial-gradient(circle, rgba(0, 162, 255, 0.9) 0 3px, transparent 4px) right center / 8px 8px no-repeat,
    linear-gradient(90deg, rgba(0, 162, 255, 0.1), rgba(0, 162, 255, 0.46), rgba(0, 162, 255, 0.1));
  opacity: 0.38;
  pointer-events: none;
}

.why-us-metric {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 6px 12px;
}

.why-us-metric + .why-us-metric {
  border-left: 1px solid rgba(148, 163, 184, 0.14);
  padding-left: 28px;
}

.why-us-metric strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 4px;
}

.why-us-metric strong span {
  color: #00A2FF;
}

.why-us-metric > div > span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.40);
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 6px currentColor; }
  50%       { box-shadow: 0 0 18px currentColor, 0 0 32px currentColor; }
}

.why-us-card-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 162, 255, 0.65), transparent);
  pointer-events: none;
}

@keyframes whyUsFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.why-us-card {
  animation: whyUsFloat 9s ease-in-out infinite;
}

.why-us-cards-left .why-us-card:nth-child(2),
.why-us-cards-right .why-us-card:nth-child(2) {
  animation-delay: -2.2s;
}

.why-us-cards-left .why-us-card:nth-child(3),
.why-us-cards-right .why-us-card:nth-child(3) {
  animation-delay: -4.2s;
}

@media (max-width: 1540px) {
  .why-us-stage {
    grid-template-columns: 220px minmax(280px, 360px) minmax(440px, 520px) minmax(280px, 360px) 220px;
  }

  .hologram-center {
    --holo-scale: 0.94;
  }

  .why-us-hub-node-a {
    left: 34px;
  }

  .why-us-hub-node-b {
    right: 40px;
  }

  .why-us-hub-node-c {
    right: 48px;
  }

  .why-us-hub-node-d {
    left: 44px;
  }
}

@media (max-width: 1320px) {
  .why-us-stage {
    grid-template-columns: 150px minmax(170px, 220px) minmax(220px, 300px) minmax(170px, 220px) 150px;
    gap: 16px;
    min-height: 700px;
    padding-top: 0;
  }

  .why-us-stage-art::before {
    inset: 8% 0 18%;
  }

  .why-us-sidebar {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .why-us-sidebar h3 {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }

  .why-us-status-item {
    padding: 10px 20px 10px 0;
  }

  .why-us-status-item strong {
    font-size: 0.78rem;
  }

  .why-us-status-item span {
    font-size: 0.68rem;
  }

  .why-us-cert-grid {
    gap: 10px;
  }

  .why-us-cert-badge {
    min-height: 64px;
  }

  .why-us-cert-badge span {
    font-size: 0.8rem;
  }

  .why-us-cert-badge small {
    font-size: 0.56rem;
  }

  .why-us-sidebar-link {
    font-size: 0.72rem;
  }

  .why-us-cards {
    gap: 16px;
  }

  .why-us-card {
    min-height: 132px;
    padding: 16px 16px;
    border-radius: 12px;
  }

  .why-us-card-icon,
  .why-us-metric-icon {
    width: 30px;
    height: 30px;
  }

  .why-us-card-icon svg,
  .why-us-metric-icon svg {
    width: 16px;
    height: 16px;
  }

  .why-us-card h3 {
    font-size: 0.9rem;
  }

  .why-us-card p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .why-us-card-stat {
    font-size: 1.9rem;
    margin-top: 8px;
  }

  .why-us-card-bim {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 10px;
    min-height: 142px;
  }

  .why-us-card-visual {
    width: 88px;
    height: 68px;
  }

  .why-us-hub {
    min-height: 520px;
  }

  .hologram-center {
    --holo-scale: 0.84;
  }

  .holo-label {
    min-width: 102px;
    padding: 6px 9px 7px;
  }

  .holo-label-se {
    min-width: 122px;
  }

  .label-name {
    font-size: 0.68rem;
  }

  .label-sub {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
  }

  .why-us-hub-node {
    gap: 8px;
  }

  .why-us-hub-node span {
    width: 7px;
    height: 7px;
  }

  .why-us-hub-node strong {
    font-size: 0.68rem;
  }

  .why-us-hub-node small {
    font-size: 0.54rem;
  }

  .why-us-hub-node-a {
    left: 14px;
    top: 180px;
  }

  .why-us-hub-node-b {
    right: 18px;
    top: 174px;
  }

  .why-us-hub-node-c {
    right: 28px;
    top: 284px;
  }

  .why-us-hub-node-d {
    left: 26px;
    top: 302px;
  }

  .why-us-hub-node::after {
    width: 28px;
  }

  .why-us-hub-node-a::after,
  .why-us-hub-node-d::after {
    right: -26px;
  }

  .why-us-hub-node-b::after,
  .why-us-hub-node-c::after {
    left: -26px;
  }

  .why-us-metrics {
    max-width: 760px;
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 12px;
  }

  .why-us-metric {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 4px 8px;
  }

  .why-us-metric + .why-us-metric {
    padding-left: 18px;
  }

  .why-us-metric strong {
    font-size: 1rem;
  }

  .why-us-metric > div > span {
    font-size: 0.74rem;
  }
}

@media (max-width: 980px) {
  .why-us-section {
    padding: 92px 0 84px;
  }

  .why-us-section > .container {
    padding: 0 18px;
  }

  .why-us-intro .section-title {
    font-size: clamp(2.2rem, 8.2vw, 3.5rem) !important;
  }

  .why-us-stage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 340px;
  }

  .why-us-stage-art {
    height: 340px;
  }

  .why-us-stage-star {
    display: none;
  }

  .why-us-card-bim {
    grid-template-columns: 1fr;
  }

  .why-us-card-visual {
    display: none;
  }

  .why-us-hub {
    min-height: 430px;
  }

  .hologram-center {
    --holo-scale: 0.76;
  }

  .why-us-metrics {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
  }

  .why-us-metric + .why-us-metric {
    border-left: 0;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
    padding-left: 12px;
    padding-top: 18px;
    margin-top: 14px;
  }

  .why-us-metrics::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .why-us-stage {
    padding-top: 280px;
  }

  .why-us-stage-art {
    height: 280px;
  }

  .why-us-sidebar,
  .why-us-card {
    padding: 18px 18px;
    border-radius: 12px;
  }

  .why-us-card-icon,
  .why-us-metric-icon {
    width: 32px;
    height: 32px;
  }

  .why-us-card-icon svg,
  .why-us-metric-icon svg {
    width: 18px;
    height: 18px;
  }

  .why-us-card h3 {
    font-size: 1.02rem;
  }

  .why-us-card p {
    font-size: 0.88rem;
  }

  .why-us-card-stat {
    font-size: 2rem;
  }

  .why-us-metric {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .why-us-metric strong {
    font-size: 1.1rem;
  }

  .why-us-metric > div > span {
    font-size: 0.72rem;
  }

  .why-us-hub {
    min-height: 360px;
  }

  .hologram-center {
    --holo-scale: 0.64;
  }

  .holo-label {
    min-width: 88px;
    padding: 5px 8px 6px;
    border-radius: 10px;
  }

  .holo-label-se {
    min-width: 104px;
  }

  .label-name {
    font-size: 0.63rem;
  }

  .label-sub {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }
}

/* ===== WHY HUD SECTION ===== */
.why-us-section-legacy {
  display: none;
}

.why-hud-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  background:
    radial-gradient(circle at 18% 72%, rgba(3, 105, 161, 0.18), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, #06101d 0%, #030812 100%);
}

.why-hud-section::before,
.why-hud-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.34;
}

.why-hud-section::before {
  inset: 90px auto 120px -140px;
  width: 420px;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(71, 192, 255, 0.22) 26% 27%, transparent 27% 100%),
    linear-gradient(32deg, transparent 0 48%, rgba(71, 192, 255, 0.14) 48% 49%, transparent 49% 100%);
}

.why-hud-section::after {
  inset: 120px -150px 160px auto;
  width: 420px;
  background:
    linear-gradient(225deg, transparent 0 28%, rgba(71, 192, 255, 0.2) 28% 29%, transparent 29% 100%),
    linear-gradient(148deg, transparent 0 52%, rgba(71, 192, 255, 0.12) 52% 53%, transparent 53% 100%);
}

.why-hud-section > .container {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  padding: 0 28px;
}

.why-hud-header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.why-hud-section .section-title {
  margin-bottom: 14px;
  color: #f8fbff;
}

.why-hud-section .section-subtitle {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(225, 236, 247, 0.75);
}

.why-hud-kicker {
  margin-bottom: 14px;
  color: #67d7ff;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(103, 215, 255, 0.25);
}

.why-hud-board {
  position: relative;
  min-height: 760px;
  padding-top: 22px;
}

.why-hud-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    'expert bms'
    'bim security'
    'sep measure';
  align-items: start;
  gap: 42px 84px;
  min-height: 740px;
  padding: 84px 248px 96px;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-margin-top: 108px;
}

.why-hud-stage-glow,
.why-hud-stage-grid,
.why-hud-links,
.why-hud-stage-star {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-hud-stage-glow {
  background:
    radial-gradient(circle at 20% 25%, rgba(87, 174, 255, 0.14), transparent 18%),
    radial-gradient(circle at 42% 56%, rgba(0, 162, 255, 0.26), transparent 24%),
    radial-gradient(circle at 78% 32%, rgba(0, 229, 255, 0.12), transparent 18%);
  filter: blur(12px);
}

.why-hud-stage-grid {
  opacity: 0.42;
  background:
    repeating-linear-gradient(to right, rgba(105, 165, 230, 0.08) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(to bottom, rgba(105, 165, 230, 0.06) 0 1px, transparent 1px 72px);
  -webkit-mask-image: radial-gradient(circle at 50% 52%, #000 0 38%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 52%, #000 0 38%, transparent 82%);
}

.why-hud-stage-star {
  inset: auto;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(transparent 43%, rgba(255, 255, 255, 0.8) 43% 57%, transparent 57%),
    linear-gradient(90deg, transparent 43%, rgba(255, 255, 255, 0.8) 43% 57%, transparent 57%);
  filter: drop-shadow(0 0 6px rgba(153, 231, 255, 0.7));
}

.why-hud-stage-star.star-left {
  top: 108px;
  left: 92px;
}

.why-hud-stage-star.star-right {
  right: 118px;
  bottom: 138px;
}

.why-hud-links {
  width: 100%;
  height: 100%;
}

.why-hud-links path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-hud-links .link-glow {
  stroke: rgba(88, 237, 255, 0.18);
  stroke-width: 18;
  filter: blur(8px);
}

.why-hud-links .link-core {
  stroke: rgba(113, 241, 255, 0.86);
  stroke-width: 5;
  stroke-dasharray: 22 14;
  animation: whyHudFlow 7s linear infinite;
  filter: drop-shadow(0 0 10px rgba(113, 241, 255, 0.35));
}

.why-hud-sidebar {
  position: absolute;
  z-index: 3;
  width: 228px;
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(118, 188, 255, 0.2);
  background: rgba(8, 20, 39, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 20px 40px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.why-hud-sidebar::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid rgba(118, 188, 255, 0.12);
  pointer-events: none;
}

.why-hud-sidebar-left {
  top: 212px;
  left: 0;
}

.why-hud-sidebar-right {
  top: 244px;
  right: 0;
}

.why-hud-sidebar h3 {
  margin-bottom: 18px;
  color: rgba(221, 235, 248, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
}

.why-hud-status-list {
  display: grid;
  gap: 12px;
}

.why-hud-status-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(118, 188, 255, 0.12);
}

.why-hud-status-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-hud-status-item strong {
  display: block;
  margin-bottom: 4px;
  color: #f8fbff;
  font-size: 0.88rem;
  line-height: 1.35;
}

.why-hud-status-item span {
  color: rgba(185, 203, 221, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}

.why-hud-status-item i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
}

.why-hud-status-item i.is-live {
  background: #6cf36c;
  box-shadow: 0 0 12px rgba(108, 243, 108, 0.65);
}

.why-hud-status-item i.is-offline {
  background: #ffb648;
  box-shadow: 0 0 12px rgba(255, 182, 72, 0.5);
}

.why-hud-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-hud-cert {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #f8fbff;
  border: 1px solid rgba(120, 188, 255, 0.18);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(112, 126, 164, 0.92), rgba(67, 73, 100, 0.94));
  box-shadow:
    0 0 22px rgba(98, 160, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.why-hud-cert::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.55;
}

.why-hud-cert.is-blue {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15), transparent 40%),
    linear-gradient(180deg, rgba(63, 116, 214, 0.95), rgba(38, 73, 146, 0.95));
}

.why-hud-cert.is-gold {
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(199, 157, 84, 0.96), rgba(142, 103, 35, 0.96));
}

.why-hud-cert span {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.why-hud-cert small {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.why-hud-link {
  display: block;
  margin-top: 18px;
  color: #67d7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.why-hud-node,
.why-hud-building-core {
  z-index: 2;
}

.why-hud-node {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  column-gap: 18px;
  min-width: 0;
}

.why-hud-node-visual {
  position: relative;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  color: #d6fbff;
}

.why-hud-node-visual::before,
.why-hud-node-visual::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.why-hud-node-visual::before {
  top: 6px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(120, 238, 255, 0.28);
  background:
    radial-gradient(circle at 50% 38%, rgba(124, 241, 255, 0.32), rgba(12, 33, 61, 0.84) 72%);
  box-shadow:
    0 0 24px rgba(70, 196, 255, 0.28),
    inset 0 0 18px rgba(102, 242, 255, 0.08);
}

.why-hud-node-visual::after {
  bottom: 4px;
  width: 68px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(120, 238, 255, 0.3);
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 230, 255, 0.28), rgba(4, 19, 38, 0.96) 70%);
  box-shadow: 0 0 16px rgba(69, 191, 255, 0.2);
}

.why-hud-node-visual.is-ghost::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(129, 255, 225, 0.3), rgba(8, 34, 52, 0.84) 72%);
}

.why-hud-node-visual.is-warm {
  color: #ffd59b;
}

.why-hud-node-visual.is-warm::before {
  border-color: rgba(255, 183, 94, 0.34);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 187, 104, 0.35), rgba(39, 24, 31, 0.82) 72%);
  box-shadow:
    0 0 24px rgba(255, 130, 93, 0.28),
    inset 0 0 18px rgba(255, 205, 140, 0.12);
}

.why-hud-node-visual.is-warm::after {
  border-color: rgba(255, 183, 94, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 166, 87, 0.28), rgba(34, 17, 24, 0.96) 70%);
}

.why-hud-node-icon {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 1;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 10px rgba(103, 215, 255, 0.35));
}

.why-hud-node-icon svg {
  width: 100%;
  height: 100%;
}

.why-hud-node-copy {
  min-width: 0;
}

.why-hud-node-copy h3 {
  margin-bottom: 5px;
  color: #f8fbff;
  font-size: 1.02rem;
  line-height: 1.15;
}

.why-hud-node-copy p {
  color: rgba(213, 227, 241, 0.74);
  font-size: 0.8rem;
  line-height: 1.45;
}

.why-hud-node-value {
  position: static;
  grid-column: 2;
  margin-top: 10px;
  color: #43d7ff;
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 0.92;
  justify-self: start;
  text-shadow: 0 0 22px rgba(67, 215, 255, 0.35);
}

.node-expertise {
  grid-area: expert;
  max-width: none;
}

.node-security {
  grid-area: security;
  max-width: none;
  padding-top: 6px;
}

.node-bms {
  grid-area: bms;
  max-width: none;
}

.node-bim {
  grid-area: bim;
  max-width: none;
  padding-top: 6px;
}

.node-sep {
  grid-area: sep;
  max-width: none;
}

.node-measure {
  grid-area: measure;
  max-width: none;
}

.why-hud-building-core {
  position: absolute;
  top: calc(50% - 240px);
  left: calc(50% - 210px);
  width: 420px;
  height: 480px;
  z-index: 2;
  overflow: visible;
}

.why-hud-building-rings span {
  position: absolute;
  left: 50%;
  bottom: 26px;
  border-radius: 50%;
  border: 1px solid rgba(131, 236, 255, 0.3);
  transform: translateX(-50%);
  animation: whyHudSpin 16s linear infinite;
}

.why-hud-building-rings span:nth-child(1) {
  width: 118px;
  height: 40px;
}

.why-hud-building-rings span:nth-child(2) {
  width: 144px;
  height: 52px;
  animation-direction: reverse;
  animation-duration: 12s;
}

.why-hud-building-rings span:nth-child(3) {
  width: 168px;
  height: 62px;
  opacity: 0.65;
}

.why-hud-building {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 90px;
  height: 120px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 14px rgba(100, 212, 255, 0.3));
}

.why-hud-building-top,
.why-hud-building-left,
.why-hud-building-right {
  position: absolute;
  background-color: rgba(12, 28, 52, 0.84);
  border: 1px solid rgba(143, 229, 255, 0.36);
}

.why-hud-building-top {
  top: 0;
  left: 50%;
  width: 58px;
  height: 28px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 25%, 50% 100%, 0 25%);
  background-image:
    linear-gradient(135deg, rgba(159, 237, 255, 0.26), rgba(14, 30, 54, 0.78)),
    repeating-linear-gradient(90deg, rgba(139, 226, 255, 0.28) 0 2px, transparent 2px 10px),
    repeating-linear-gradient(180deg, rgba(139, 226, 255, 0.2) 0 2px, transparent 2px 10px);
}

.why-hud-building-left {
  top: 23px;
  left: 12px;
  width: 38px;
  height: 88px;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  background-image:
    linear-gradient(180deg, rgba(78, 140, 194, 0.56), rgba(12, 24, 44, 0.94)),
    repeating-linear-gradient(90deg, rgba(136, 228, 255, 0.24) 0 2px, transparent 2px 10px),
    repeating-linear-gradient(180deg, rgba(136, 228, 255, 0.2) 0 3px, transparent 3px 14px);
}

.why-hud-building-right {
  top: 23px;
  right: 12px;
  width: 38px;
  height: 88px;
  clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  background-image:
    linear-gradient(180deg, rgba(105, 174, 229, 0.64), rgba(18, 34, 59, 0.96)),
    repeating-linear-gradient(90deg, rgba(136, 228, 255, 0.24) 0 2px, transparent 2px 10px),
    repeating-linear-gradient(180deg, rgba(136, 228, 255, 0.2) 0 3px, transparent 3px 14px);
}

.why-hud-metrics {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  max-width: 860px;
  margin: 10px auto 0;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid rgba(118, 188, 255, 0.18);
  background: rgba(8, 20, 39, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 24px 48px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.why-hud-metric {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 4px;
  min-width: 0;
}

.why-hud-metric + .why-hud-metric {
  border-left: 1px solid rgba(118, 188, 255, 0.14);
}

.why-hud-metric-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: #77dcff;
  border-radius: 50%;
  border: 1px solid rgba(118, 188, 255, 0.2);
  background: radial-gradient(circle at 50% 40%, rgba(99, 211, 255, 0.2), rgba(6, 19, 36, 0.92) 75%);
}

.why-hud-metric-icon svg {
  width: 22px;
  height: 22px;
}

.why-hud-metric strong {
  display: block;
  margin-bottom: 2px;
  color: #f8fbff;
  font-size: 1rem;
  line-height: 1.2;
}

.why-hud-metric strong span {
  color: #49d8ff;
}

.why-hud-metric div > span {
  color: rgba(213, 227, 241, 0.7);
  font-size: 0.82rem;
}

@keyframes whyHudFlow {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes whyHudSpin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .why-hud-section > .container {
    padding: 0 20px;
  }

  .why-hud-sidebar {
    width: 212px;
  }

  .why-hud-sidebar-left {
    left: 0;
  }

  .why-hud-sidebar-right {
    right: 0;
  }

  .why-hud-stage {
    gap: 72px 32px;
    padding: 84px 250px 106px;
  }

  .why-hud-building-core {
    left: 31%;
  }
}

@media (max-width: 1080px) {
  .why-hud-board {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
  }

  .why-hud-stage {
    order: 1;
    min-height: 700px;
    gap: 58px 28px;
    padding: 70px 44px 92px;
  }

  .why-hud-sidebar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: none;
  }

  .why-hud-sidebar-left {
    order: 2;
  }

  .why-hud-sidebar-right {
    order: 3;
  }

  .why-hud-building-core {
    left: 50%;
    top: 49%;
  }
}

@media (max-width: 960px) {
  .why-hud-kicker {
    font-size: 1.4rem;
  }

  .why-hud-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'expert security'
      'bms bim'
      'sep measure';
    gap: 40px 28px;
    min-height: 0;
    padding: 48px 28px 228px;
  }

  .why-hud-node {
    max-width: none;
  }

  .why-hud-building-core {
    top: auto;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .why-hud-section {
    padding: 90px 0 78px;
  }

  .why-hud-stage {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
    padding: 26px 18px 22px;
  }

  .why-hud-stage-grid {
    -webkit-mask-image: none;
    mask-image: none;
    opacity: 0.2;
  }

  .why-hud-links {
    display: none;
  }

  .why-hud-node,
  .why-hud-building-core {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: none;
  }

  .why-hud-node {
    padding: 16px;
    border-radius: 22px;
    background: rgba(7, 18, 34, 0.72);
    border: 1px solid rgba(118, 188, 255, 0.12);
  }

  .why-hud-building-core {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    bottom: auto;
  }

  .why-hud-node-value {
    position: static;
  }

  .node-expertise {
    order: 1;
  }

  .why-hud-building-core {
    order: 2;
  }

  .node-security {
    order: 3;
  }

  .node-bms {
    order: 4;
  }

  .node-bim {
    order: 5;
  }

  .node-sep {
    order: 6;
  }

  .node-measure {
    order: 7;
  }

  .why-hud-metrics {
    flex-direction: column;
    gap: 0;
  }

  .why-hud-metric + .why-hud-metric {
    border-top: 1px solid rgba(118, 188, 255, 0.14);
    border-left: 0;
  }

  .why-hud-link {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .why-hud-section .section-title {
    font-size: 1.8rem;
  }

  .why-hud-kicker {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }

  .why-hud-sidebar {
    padding: 18px 16px;
  }

  .why-hud-node {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-hud-node-value {
    margin-top: 4px;
    font-size: 2.15rem;
  }

  .why-hud-stage-star.star-left {
    top: 98px;
    left: 42px;
  }

  .why-hud-stage-star.star-right {
    right: 48px;
    bottom: 72px;
  }
}

/* ================================================================
   RESPONSIVE FIXES & MOBILE ADAPTATION
   ================================================================ */

/* ── Global overflow guard ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img, video, svg {
  max-width: 100%;
  height: auto;
}

/* ── Logo: always show S2 ──────────────────────────────────────── */
.logo-ad {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ── NAV: tighter on 1080-1220px ──────────────────────────────── */
@media (max-width: 1180px) {
  nav {
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    gap: 16px;
  }
  .logo-sub {
    display: none;
  }
}

/* ── TABLET 960-1080px ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .logo-main {
    font-size: 1.3rem !important;
  }
  .logo-sub {
    display: none;
  }
}

/* ── MOBILE MENU (≤960px): already handled, ensure logo fits ───── */
@media (max-width: 960px) {
  nav {
    display: flex !important;
    justify-content: space-between;
    gap: 12px;
  }
  .logo {
    min-width: 0 !important;
    flex-shrink: 0;
  }
  .logo-main {
    font-size: 1.3rem !important;
  }
  .logo-sub {
    display: none;
  }
}

/* ── HERO section ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-dark .container,
  .hero .container {
    flex-direction: column !important;
    text-align: center;
  }
  .hero-text {
    max-width: 100% !important;
    padding-right: 0 !important;
  }
  .hero-text h1 {
    font-size: clamp(1.6rem, 5vw, 2.6rem) !important;
  }
  .hero-visual,
  .hero-visual-center {
    display: none !important;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats,
  .hero-dark .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem) !important;
  }
  #heroSubtitle {
    font-size: 0.88rem !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    align-items: stretch;
    gap: 10px;
  }
  .hero-stat {
    min-width: 0;
  }
  .hero-stats {
    gap: 8px 16px;
  }
}

/* ── SECTIONS general ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-title {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
  }
  .section-subtitle {
    font-size: 0.9rem !important;
  }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ── BENTO grid ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr !important;
  }
  .bento-card.wide {
    grid-column: 1 !important;
  }
}

/* ── WHY-HUD section ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .why-hud-stage {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    min-height: unset;
  }
  .why-hud-building-core {
    display: none;
  }
  .why-hud-sidebar,
  .why-hud-node {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .why-hud-node {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(6,20,40,0.6);
    border: 1px solid rgba(0,162,255,0.15);
    border-radius: 12px;
  }
  .why-hud-node-visual {
    flex-shrink: 0;
  }
  .why-hud-metrics {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 !important;
  }
  .why-hud-metric {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }
}

@media (max-width: 640px) {
  .why-hud-metric {
    flex: 1 1 100%;
  }
  .why-hud-cert-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── Services / cards ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .services-grid,
  .service-cards {
    grid-template-columns: 1fr !important;
  }
  .service-card {
    padding: 20px 18px;
  }
}

/* ── Testimonials ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  .testimonials-grid,
  .t-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ── FAQ ───────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .faq-item button {
    font-size: 0.9rem !important;
    padding: 16px 14px !important;
  }
}

/* ── Process steps ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .steps-grid,
  .process-steps {
    grid-template-columns: 1fr !important;
  }
  .step-connector {
    display: none;
  }
}

/* ── Page heroes (sub-pages) ───────────────────────────────────── */
@media (max-width: 767px) {
  .page-hero {
    padding: 80px 0 40px !important;
  }
  .page-hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem) !important;
  }
}

/* ============================================================
   WHY US NEW — .why-us-new
   ============================================================ */
.why-us-new {
  background: var(--c-deep);
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}

.why-us-new::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(2,132,199,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Stats row */
.why-stats-row {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-6);
}

.why-stat {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  position: relative;
}

.why-stat + .why-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.why-stat-num {
  display: block;
  color: var(--accent-light);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}

.why-stat-lbl {
  display: block;
  color: #475569;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Feature grid 3×2 */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: var(--space-5);
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: var(--space-4) var(--space-3);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.why-card:hover {
  border-color: rgba(2,132,199,0.3);
  background: rgba(2,132,199,0.04);
}

.why-card-ic {
  width: 36px;
  height: 36px;
  background: rgba(2,132,199,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  color: var(--accent-light);
}

.why-card-ic svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-light);
  fill: none;
}

.why-card h3 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.why-card p {
  color: #64748B;
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 0;
}

/* Reveal delays */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }

/* Certifications — nodes on line */
.why-certs {
  margin-bottom: var(--space-5);
}

.why-certs-label {
  color: #475569;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-3);
}

.why-certs-nodes {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-2) 0;
}

.why-certs-nodes::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(2,132,199,0.3) 20%, rgba(2,132,199,0.3) 80%, transparent);
  z-index: 0;
}

.why-cert-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.why-cert-dot {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: var(--c-deep);
  border: 2px solid rgba(2,132,199,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.why-cert-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: var(--r-full);
  border: 1px dashed rgba(2,132,199,0.2);
}

.why-cert-dot svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-cert-node:hover .why-cert-dot {
  border-color: var(--accent-light);
  background: rgba(2,132,199,0.08);
}

.why-cert-name {
  color: var(--accent-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.why-cert-desc {
  color: #475569;
  font-size: 0.62rem;
  text-align: center;
  line-height: 1.4;
  max-width: 70px;
}

/* CTA row */
.why-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  padding-top: var(--space-2);
}

/* Responsive */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-certs-nodes {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .why-certs-nodes::before {
    display: none;
  }

  .why-cert-node {
    flex: 0 0 calc(33.333% - var(--space-3));
  }

  .why-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-cert-node {
    flex: 0 0 calc(50% - var(--space-3));
  }

  .why-stats-row {
    flex-wrap: wrap;
  }

  .why-stat {
    flex: 0 0 50%;
  }

  .why-stat + .why-stat::before {
    display: none;
  }
}

/* why-us-new scoped overrides — header sizing */
.why-us-new .eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  margin-bottom: 20px;
}

.why-us-new .section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-5);
}

/* ============================================================
   TESTIMONIALS MARQUEE — двойная бесконечная лента
   ============================================================ */
.testimonials-section {
  padding: 80px 0 96px;
  overflow: hidden;
}

.t-marquee-outer {
  overflow: hidden;
  margin-top: 32px;
  /* edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.t-marquee-outer + .t-marquee-outer {
  margin-top: 14px;
}

.t-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

/* Row 1 — scrolls left */
.t-marquee-left {
  animation: t-scroll-left 32s linear infinite;
}

/* Row 2 — scrolls right, slower */
.t-marquee-right {
  animation: t-scroll-right 44s linear infinite;
}

/* Pause on hover */
.t-marquee-outer:hover .t-marquee-track {
  animation-play-state: paused;
}

@keyframes t-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes t-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Card */
.t-mcard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow var(--transition-fast);
  cursor: default;
}

.t-mcard:hover {
  box-shadow: var(--shadow-tinted);
}

.t-mcard-dim {
  background: rgba(0,0,0,0.03);
  box-shadow: none;
}

.t-mcard-text {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.t-mcard-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-mavatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-mname {
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.t-mrole {
  color: var(--text-light);
  font-size: 0.7rem;
  line-height: 1.3;
}

.t-mstars {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .t-marquee-left,
  .t-marquee-right {
    animation: none;
  }
  .t-marquee-track {
    flex-wrap: wrap;
    width: 100%;
  }
  .t-mcard {
    width: calc(50% - 8px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .t-mcard {
    width: 280px;
    padding: 18px 20px;
  }
}

/* Remove double-padding: header already has defined width, no need for container to add more */
header .container {
  padding: 0;
  max-width: 100%;
}

/* ============================================================
   FLOATING PILL NAV — responsive overrides
   ============================================================ */
@media (max-width: 900px) {
  header {
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .nav-links {
    gap: 12px;
  }
  .nav-links a {
    font-size: 10.5px;
  }
}

@media (max-width: 640px) {
  header {
    top: 8px;
    width: calc(100% - 24px);
    border-radius: 16px;
    padding: 0 4px;
  }
}

/* Non-hero pages — pill nav on white backgrounds needs visibility */
body:not(.has-dark-hero) header {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
body:not(.has-dark-hero) .nav-links a {
  color: var(--text);
}
body:not(.has-dark-hero) .nav-links a:hover,
body:not(.has-dark-hero) .nav-links a[aria-current="page"] {
  color: var(--accent);
}
/* .logo-instal base color is already var(--dark) — no override needed */

/* ============================================================
   BUTTON-IN-BUTTON trailing icon — high-end-visual-design
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 220ms cubic-bezier(0.32,0.72,0,1),
              background 220ms cubic-bezier(0.32,0.72,0,1);
}

.btn:hover .btn-icon {
  transform: translate(2px, -2px) scale(1.08);
  background: rgba(255, 255, 255, 0.25);
}

.btn:active .btn-icon {
  transform: translate(1px, -1px) scale(0.96);
}

.btn-outline .btn-icon {
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.btn-outline:hover .btn-icon {
  background: rgba(2, 132, 199, 0.25);
}

/* ============================================================
   CONTACT — Option C: CTA Hero Centered
   ============================================================ */
.contact-section {
  background: #060910 !important;
  color: var(--white) !important;
  padding: 100px 0 96px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-accent-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #0284c7 25%, #38bdf8 50%, #0284c7 75%, transparent 100%);
  pointer-events: none;
}

.contact-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.contact-eyebrow {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 28px !important;
  opacity: 1 !important;
}

.contact-headline {
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.04em !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
}

.contact-sub {
  font-size: 15px !important;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.65 !important;
  max-width: 480px;
  margin: 0 auto 48px !important;
  opacity: 1 !important;
}

.contact-form-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 40px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  text-align: left;
}

.contact-full {
  grid-column: 1 / -1;
}

.contact-section .form-group {
  margin-bottom: 0;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  transition: border-color 0.2s !important;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
  border-color: rgba(2,132,199,0.5) !important;
  box-shadow: 0 0 0 3px rgba(2,132,199,0.08) !important;
}

.contact-section .form-group textarea {
  min-height: 100px !important;
}

.contact-section .form-checkbox {
  margin-bottom: 0;
}

.contact-section .form-checkbox label {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}

.contact-submit-row {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.btn-contact-submit {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  font-weight: 700 !important;
  padding: 14px 32px !important;
}

.btn-contact-submit:hover {
  background: var(--accent-dark, #0369a1) !important;
}

/* ============================================================
   FOOTER — Minimal single-row
   ============================================================ */
footer.footer-minimal {
  background: #03060d !important;
  color: rgba(255,255,255,0.25) !important;
  padding: 28px 0 !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
}

.footer-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-minimal-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo-min {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-s2 {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.footer-logo-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-nav-min {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav-min a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-min a:hover {
  color: rgba(255,255,255,0.65);
}

.footer-minimal-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.footer-minimal-right span {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .contact-form-glass {
    padding: 24px 20px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-full {
    grid-column: 1;
  }
  .footer-minimal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-minimal-right {
    align-items: flex-start;
  }
}

/* ================================================================
   COOKIE CONSENT TOAST
================================================================ */
.cookie-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.7);
  z-index: 10003;
  width: 290px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-toast.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-toast-icon {
  font-size: 17px;
  flex-shrink: 0;
  opacity: 0.7;
  line-height: 1;
}
.cookie-toast-body { flex: 1; }
.cookie-toast-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
  line-height: 1.3;
}
.cookie-toast-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.cookie-toast-sub a {
  color: var(--accent);
  text-decoration: none;
}
.cookie-toast-sub a:hover { text-decoration: underline; }
.cookie-toast-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 13px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.cookie-toast-btn:hover { background: #0369a1; }

@media (max-width: 480px) {
  .cookie-toast {
    bottom: 14px;
    left: 14px;
    right: 14px;
    max-width: none;
  }
}

/* ── 404 ghost button ───────────────────────────────────── */
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-1px);
}
