/* ============================================
   CYBARQ TECHNOLOGY - PREMIUM CYBERSECURITY
   ============================================ */

/* Fonts */
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-UltraLight-TRIAL.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-ExtraLight-TRIAL.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-Light-TRIAL.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-Normal-TRIAL.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-Regular-TRIAL.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'fff-acid';
  src: url('../fonts/FFF-AcidGrotesk-Medium-TRIAL.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --color-bg: #262834;
  --color-bg-2: #41413d;
  --color-surface: #61677d;
  --color-muted: #747572;
  --color-soft: #dfdfd8;
  --color-light: #f4f4f7;

  --grad-bg: radial-gradient(1200px 700px at 80% -10%, rgba(97, 103, 125, 0.35), transparent 60%),
             radial-gradient(900px 600px at -10% 30%, rgba(65, 65, 61, 0.55), transparent 60%),
             linear-gradient(180deg, #1c1e29 0%, #262834 50%, #1f2029 100%);

  --glass-bg: rgba(244, 244, 247, 0.04);
  --glass-border: rgba(223, 223, 216, 0.10);
  --glass-bg-strong: rgba(244, 244, 247, 0.06);

  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(97, 103, 125, 0.25);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.5s var(--ease);
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'fff-acid', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-light);
  background: var(--color-bg);
  background-image: var(--grad-bg);
  background-attachment: fixed;
  background-size: cover;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.6em; line-height: 1.15; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: rgba(244, 244, 247, 0.78); }
::selection { background: rgba(97, 103, 125, 0.5); color: var(--color-light); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-surface), var(--color-bg-2));
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-surface); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }

/* Subtle layered background accents */
.bg-accent {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 50%;
  z-index: 0;
}
.bg-accent--1 { width: 540px; height: 540px; top: -160px; right: -160px; background: radial-gradient(closest-side, rgba(97, 103, 125, 0.55), transparent 70%); }
.bg-accent--2 { width: 480px; height: 480px; bottom: -200px; left: -180px; background: radial-gradient(closest-side, rgba(65, 65, 61, 0.6), transparent 70%); }

/* ============================================
   TYPOGRAPHY HELPERS
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-soft);
  font-weight: 500;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-soft);
  box-shadow: 0 0 12px rgba(223, 223, 216, 0.7);
}

.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--color-light) 0%, rgba(223, 223, 216, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-subtitle {
  color: rgba(223, 223, 216, 0.75);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 720px;
  margin-top: 0.4em;
}
.section-head { margin-bottom: 64px; max-width: 820px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--color-soft) 0%, var(--color-light) 100%);
  color: var(--color-bg);
  box-shadow: 0 10px 30px rgba(223, 223, 216, 0.18);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(223, 223, 216, 0.28);
}
.btn--ghost {
  background: var(--glass-bg);
  color: var(--color-light);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(223, 223, 216, 0.25);
  transform: translateY(-2px);
}
.btn--text {
  padding: 8px 0;
  color: var(--color-soft);
  font-weight: 500;
  position: relative;
}
.btn--text::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 1px;
  background: var(--color-soft);
  transition: width 0.4s var(--ease);
}
.btn--text:hover::after { width: 100%; }
.btn--text:hover { color: var(--color-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(28, 30, 41, 0.65);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(223, 223, 216, 0.08);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__brand img { height: 36px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 15px;
  color: rgba(244, 244, 247, 0.78);
  border-radius: 999px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__link:hover { color: var(--color-light); background: var(--glass-bg); }
.nav__link.active { color: var(--color-light); background: var(--glass-bg-strong); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--color-light);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 18px; height: 1.5px;
  background: var(--color-light);
  transition: transform 0.3s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav--open .nav__toggle span { background: transparent; }
.nav--open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: min(360px, 84vw);
    background: rgba(28, 30, 41, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 24px 32px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
  }
  .nav--open .nav__menu { transform: translateX(0); }
  .nav__link { padding: 16px 18px; font-size: 17px; }
  .nav__cta { margin-left: 0; margin-top: 16px; justify-content: center; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-soft) 60%, var(--color-surface) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(15px, 1.3vw, 19px);
  color: rgba(223, 223, 216, 0.78);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  justify-self: end;
  width: 100%;
}
.hero__halo {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(97, 103, 125, 0.45), transparent 70%),
    radial-gradient(closest-side, rgba(244, 244, 247, 0.08), transparent 70%);
  filter: blur(40px);
  animation: halo-pulse 6s ease-in-out infinite;
}
.hero__rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(223, 223, 216, 0.08);
}
.hero__ring--2 { inset: 8%; border-color: rgba(223, 223, 216, 0.06); }
.hero__ring--3 { inset: 16%; border-color: rgba(223, 223, 216, 0.04); }

.hero__logo {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: 520px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 60px rgba(97, 103, 125, 0.35));
  animation: spin-slow 28s linear infinite;
  transform-origin: center center;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes halo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.06); opacity: 1; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(223, 223, 216, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(223, 223, 216, 0.55), transparent);
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0.2); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 900px) {
  .hero { padding-top: 120px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { justify-self: center; max-width: 460px; }
  .hero__scroll { display: none; }
}

/* ============================================
   PAGE HEAD (sub-pages hero)
   ============================================ */
.page-head {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-head__title {
  font-size: clamp(36px, 5.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--color-light) 0%, rgba(223, 223, 216, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.page-head__sub {
  color: rgba(223, 223, 216, 0.78);
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 720px;
  margin: 16px auto 0;
}

/* ============================================
   ABOUT (homepage short)
   ============================================ */
.about {
  position: relative;
  z-index: 1;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about__copy p { font-size: clamp(16px, 1.2vw, 18px); color: rgba(223, 223, 216, 0.85); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stat {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.stat:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-strong);
  border-color: rgba(223, 223, 216, 0.18);
}
.stat__num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--color-light), var(--color-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(223, 223, 216, 0.6);
}
@media (max-width: 800px) {
  .about__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 223, 216, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(400px circle at var(--x, 50%) var(--y, 50%), rgba(223, 223, 216, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 223, 216, 0.22);
  background: var(--glass-bg-strong);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(97, 103, 125, 0.4), rgba(65, 65, 61, 0.4));
  border: 1px solid rgba(223, 223, 216, 0.14);
  color: var(--color-soft);
  margin-bottom: 6px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: clamp(20px, 1.6vw, 23px);
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: -0.01em;
}
.service-card p {
  color: rgba(223, 223, 216, 0.74);
  flex: 1;
  font-size: 15.5px;
}
.service-card .btn--text { align-self: flex-start; }

@media (max-width: 1000px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   PARTNERS
   ============================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.partner-tile {
  position: relative;
  aspect-ratio: 5 / 3;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.partner-tile img {
  max-height: 70%;
  max-width: 80%;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.72);
  transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
}
.partner-tile:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(223, 223, 216, 0.22);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-glow);
}
.partner-tile:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.05);
}

@media (max-width: 900px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ============================================
   CERTIFICATIONS
   ============================================ */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cert-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(244, 244, 247, 0.06), rgba(244, 244, 247, 0.02));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cert-tile img {
  max-width: 86%;
  max-height: 86%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.cert-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 223, 216, 0.22);
  box-shadow: var(--shadow-glow);
}
.cert-tile:hover img { transform: scale(1.06); }

@media (max-width: 900px) { .certs-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* ============================================
   CONTACT BAND (homepage)
   ============================================ */
.contact-band {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  background:
    radial-gradient(600px circle at 0% 0%, rgba(97, 103, 125, 0.3), transparent 60%),
    radial-gradient(500px circle at 100% 100%, rgba(65, 65, 61, 0.5), transparent 60%),
    linear-gradient(135deg, rgba(244, 244, 247, 0.05), rgba(244, 244, 247, 0.02));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.contact-band__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.contact-band__list { display: grid; gap: 14px; }
.contact-band__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.contact-band__item:hover {
  transform: translateX(6px);
  background: var(--glass-bg-strong);
  border-color: rgba(223, 223, 216, 0.2);
}
.contact-band__item svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-soft);
}
.contact-band__item span {
  font-size: 16px;
  color: var(--color-light);
}
@media (max-width: 800px) { .contact-band { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(223, 223, 216, 0.08);
  background: rgba(20, 22, 30, 0.5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand img { height: 36px; margin-bottom: 16px; }
.footer__brand p { color: rgba(223, 223, 216, 0.6); font-size: 14px; max-width: 320px; }
.footer__col h5 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  color: rgba(223, 223, 216, 0.7);
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__col a:hover { color: var(--color-light); transform: translateX(3px); }
.footer__bottom {
  border-top: 1px solid rgba(223, 223, 216, 0.06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(223, 223, 216, 0.5);
}
.footer__tag { letter-spacing: 0.06em; }
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-hero {
  position: relative;
  padding: 180px 0 60px;
  overflow: hidden;
}
.service-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
  background: linear-gradient(180deg, var(--color-light) 0%, rgba(223, 223, 216, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service-hero__lead {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(223, 223, 216, 0.78);
  max-width: 560px;
}
.service-hero__media {
  aspect-ratio: 1 / 1;
  max-width: 380px;
  width: 100%;
  border-radius: 50%;
  position: relative;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(97, 103, 125, 0.4), transparent 70%),
    radial-gradient(closest-side, rgba(244, 244, 247, 0.06), transparent 70%);
  filter: blur(24px);
}
.service-hero__icon {
  position: relative;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 244, 247, 0.08), rgba(244, 244, 247, 0.02));
  border: 1px solid rgba(223, 223, 216, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-soft);
}
.service-hero__icon svg { width: 50%; height: 50%; }

@media (max-width: 900px) {
  .service-hero__inner { grid-template-columns: 1fr; }
  .service-hero__media { justify-self: center; max-width: 280px; }
}

.service-content { padding: 40px 0 80px; }
.service-blocks {
  display: grid;
  gap: 24px;
}
.service-block {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.service-block:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 223, 216, 0.18);
  background: var(--glass-bg-strong);
}
.service-block__num {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-soft);
  margin-bottom: 10px;
  display: inline-block;
}
.service-block h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.service-block p {
  font-size: clamp(15px, 1.05vw, 17px);
  color: rgba(223, 223, 216, 0.85);
  margin: 0;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related { padding-top: 0; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.related-card {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 180px;
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 223, 216, 0.22);
  background: var(--glass-bg-strong);
}
.related-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-light);
  margin: 0;
}
.related-card p {
  font-size: 14px;
  color: rgba(223, 223, 216, 0.72);
  flex: 1;
  margin: 0;
}
.related-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-soft);
  font-weight: 500;
  transition: transform 0.4s var(--ease);
}
.related-card:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  position: relative;
  padding: 60px 0 100px;
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 240px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 223, 216, 0.22);
  background: var(--glass-bg-strong);
  box-shadow: var(--shadow-glow);
}
.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(97, 103, 125, 0.45), rgba(65, 65, 61, 0.5));
  border: 1px solid rgba(223, 223, 216, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-soft);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(223, 223, 216, 0.6);
}
.contact-card__value {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-light);
  font-weight: 500;
  letter-spacing: -0.01em;
  word-break: break-word;
}
@media (max-width: 800px) { .contact-cards { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT PAGE EXTRAS
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.about-story h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.about-story p { font-size: clamp(15px, 1.1vw, 17px); color: rgba(223, 223, 216, 0.82); }
.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--color-soft);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 800px) { .about-story { grid-template-columns: 1fr; } }

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .hero__logo { animation: none; }
  .hero__halo { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
