/* ============================================
   NEOWARE LABS
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0b0b0d;
  --bg-2: #111214;
  --bg-3: #16171b;
  --bg-card: rgba(255,255,255,0.035);
  --surface: rgba(255,255,255,0.045);
  --surface-2: rgba(255,255,255,0.065);

  --border: rgba(255,255,255,0.08);
  --border-h: rgba(255,255,255,0.14);

  --text: #f5f5f7;
  --text-2: rgba(245,245,247,0.72);
  --text-3: rgba(245,245,247,0.46);

  --accent: #ffffff;
  --accent-soft: rgba(255,255,255,0.08);

  --success: #6ee7b7;
  --danger: #ff6b6b;

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 16px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --max-w: 1240px;
  --section-pad: 140px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.20);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.24);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.05), transparent 32%),
    linear-gradient(180deg, #0c0c0f 0%, #0a0a0c 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: rgba(255,255,255,0.16); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid rgba(255,255,255,0.45); outline-offset: 4px; }

.btn--primary {
  background: #f5f5f7;
  color: #0b0b0d;
  box-shadow: 0 10px 28px rgba(255,255,255,0.08);
}
.btn--primary:hover { background: #ffffff; }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: rgba(255,255,255,0.09);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}

.btn--full { width: 100%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 10ch;
}
.section-title--light { color: var(--text); }

.section-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 700px;
}
.section-sub--light { color: var(--text-2); }

.section-header {
  margin-bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal--delay  { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.22s; }

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* --- ESTILOS SELECTOR IDIOMA --- */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 15px; /* Separación entre el menú y el botón CTA */
  font-size: 0.88rem;
  font-weight: 600;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.lang-item img {
  width: 18px; /* Tamaño reducido de la bandera */
  height: auto;
  border-radius: 2px;
}

.lang-item:hover, .lang-item.active {
  opacity: 1;
  color: var(--text);
}

.lang-divider {
  color: var(--text-3);
  opacity: 0.4;
}

/* Ajuste móvil */
.nav__lang-mobile {
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}

.nav__lang-mobile a.active {
  color: var(--text);
}

.nav.scrolled {
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255,255,255,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav__logo img {
  height: 37px;
  width: auto;  /* Para que no se deforme */
  opacity: 1;   /* Le damos total claridad al logo */
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:focus-visible { outline: 2px solid rgba(255,255,255,0.28); border-radius: 8px; }

.nav__cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08) !important;
  color: var(--text) !important;
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}
.nav__cta:hover {
  background: rgba(255,255,255,0.12) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  border-radius: 10px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10,10,12,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.3s;
}
.nav__mobile.open {
  max-height: 420px;
  padding: 10px 0 20px;
}
.nav__mobile a {
  padding: 14px 32px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 1rem;
}
.nav__mobile a:last-child { border-bottom: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.08;
  mask-image: radial-gradient(circle at center, black 32%, transparent 82%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.45;
}
.hero__glow--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -120px;
  background: rgba(255,255,255,0.08);
}
.hero__glow--2 {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -120px;
  background: rgba(255,255,255,0.04);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 72px;
  align-items: center;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 11ch;
}
.hero__headline em {
  font-style: normal;
  color: rgba(255,255,255,0.88);
}
.hero__sub {
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__stat-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__stat {
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}
.hero__stat-n {
  display: block;
  font-size: 3.6rem;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
  color: #0f1217 !important;
  margin-bottom: 6px;
  opacity: 1 !important;
}

.hero__stat-l {
  font-size: 0.88rem; 
  line-height: 1.45;
  color: rgba(15, 18, 23, 0.6) !important;
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual { position: relative; }
.hero__img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-card);
}
.hero__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 24%),
    linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.36) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}
.hero__img-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(10,10,12,0.62);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(245,245,247,0.86);
  font-size: 0.82rem;
  font-weight: 500;
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}
.hero__scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* SECTIONS */
.expertise,
.work,
.clients,
.approach,
.contact {
  padding: var(--section-pad) 0;
}
.expertise,
.work,
.clients,
.approach,
.contact {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* EXPERTISE */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.expertise__card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 34px 30px;
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  box-shadow: var(--shadow-soft);
}
.expertise__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-card);
}
.expertise__card::after { display: none; }
.expertise__icon {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
}
.expertise__icon svg { width: 100%; height: 100%; }
.expertise__card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.expertise__card p {
  color: var(--text-2);
  line-height: 1.75;
  font-size: 0.96rem;
}

/* SERVICES */
.services {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services__img-wrap {
  position: absolute;
  inset: 0;
}
.services__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.11;
  filter: grayscale(1) saturate(0.8);
}
.services__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.72), rgba(10,10,12,0.94)),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.06), transparent 30%);
}
.services__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.services__left {
  position: sticky;
  top: 108px;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 24px 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: transform 0.28s var(--ease-out), background 0.28s ease, border-color 0.28s ease;
}
.service-item:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.12);
}
.service-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.service-item__num {
  min-width: 34px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding-top: 4px;
}
.service-item__content h3 {
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-item__content p {
  color: var(--text-2);
  line-height: 1.72;
  font-size: 0.96rem;
}

/* WORK */
.work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.work__card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.work__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: var(--shadow-card);
}
.work__card--large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.work__img-wrap {
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
}
.work__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.22) 100%);
}
.work__img-wrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  filter: saturate(0.9);
}
.work__card:hover .work__img-wrap img {
  transform: scale(1.03);
  filter: saturate(1);
}
.work__card-info {
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.work__tag {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.work__card-info h3 {
  font-size: 1.38rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.work__card-info p {
  color: var(--text-2);
  line-height: 1.78;
  font-size: 0.98rem;
}
.work__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work__tags-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 500;
}

/* CLIENTS */
.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.client-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}
.client-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.12);
}
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.client-logo-img {
  max-width: 94px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.56;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}
.client-card:hover .client-logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}
.client-logo-img.no-white-filter {
  filter: none !important;
  opacity: 0.74;
}
.client-card:hover .client-logo-img.no-white-filter { opacity: 0.95; }

.client-logo-img.logo-lg { max-width: 98px; max-height: 38px; }
.client-logo-img.logo-acer { max-width: 100px; max-height: 26px; }
.client-logo-img.logo-samsung { max-width: 106px; max-height: 22px; }
.client-logo-img.logo-starwars { max-width: 112px; max-height: 34px; }
.client-logo-img.logo-madrid,
.client-logo-img.logo-barca { max-width: 44px; max-height: 44px; }
.client-logo-img.logo-cla { max-width: 98px; max-height: 34px; }

.client-logo-svg {
  width: 32px;
  height: 32px;
  color: rgba(245,245,247,0.6);
}
.client-logo-fallback {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* APPROACH */
.approach__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.approach__step {
  padding: 34px 30px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}
.approach__step:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.12);
}
.approach__step-num {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.20);
  -webkit-text-stroke: 0 transparent;
  margin-bottom: 18px;
}
.approach__step-content h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.approach__step-content p {
  color: var(--text-2);
  line-height: 1.75;
}
.approach__img-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
}
.approach__img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) saturate(0.9);
}
.approach__img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 44px;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.48));
}
.approach__img-quote {
  max-width: 620px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.approach__img-quote::before,
.approach__img-quote::after {
  color: rgba(255,255,255,0.62);
}

/* CONTACT */
.contact {
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -260px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 66%);
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__details { margin-top: 30px; }
.contact__email {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s var(--ease-out);
}
.contact__email:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.contact__form-wrap {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-card);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-group textarea {
  min-height: 140px;
  padding: 16px 18px;
  resize: vertical;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239999a6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,245,247,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}
.form-group select option {
  background: #101114;
  color: #f5f5f7;
}
.form__success {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(110,231,183,0.08);
  border: 1px solid rgba(110,231,183,0.18);
  color: #d1fae5;
  font-size: 0.92rem;
  text-align: center;
}
.form__success.visible { display: block; }

/* FOOTER */
.footer {
  padding: 42px 0 54px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand img { height: 21px; }
.footer__brand p {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.92rem;
  color: var(--text-3);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--text); }
.footer__copy {
  font-size: 0.9rem;
  color: var(--text-3);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  :root { --section-pad: 112px; }

  .hero__inner,
  .services__inner,
  .contact__inner {
    gap: 48px;
  }

  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__inner,
  .services__inner,
  .contact__inner,
  .work__card--large {
    grid-template-columns: 1fr;
  }

  .hero__inner { gap: 40px; }
  .hero__headline { max-width: 12ch; }
  .hero__img { min-height: 480px; }

  .services__left { position: static; }

  .expertise__grid,
  .approach__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root { --section-pad: 92px; }

  .container { padding: 0 20px; }

  .section-header { margin-bottom: 52px; }
  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    max-width: none;
  }
  .section-sub { font-size: 1rem; }

  .hero {
    padding-top: 112px;
    min-height: auto;
  }
  .hero__headline {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }
  .hero__sub {
    font-size: 1.02rem;
  }
  .hero__stat-row {
    flex-direction: column;
    gap: 12px;
  }
  .hero__stat { min-width: 0; }
  .hero__img { min-height: 380px; }

  .expertise__grid,
  .clients__grid,
  .approach__steps,
  .form-row,
  .work__grid {
    grid-template-columns: 1fr;
  }

  .contact__form-wrap { padding: 22px; }

  .approach__img-strip {
    height: 320px;
  }
  .approach__img-overlay {
    padding: 28px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* ============================================
   HERO V3 — stacked headline + full banner
   ============================================ */
.hero--stacked {
  min-height: auto;
  padding: 132px 0 64px;
}

.hero--stacked .hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: stretch;
}

.hero__gradient {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.55;
}
.hero__gradient--1 {
  width: 460px;
  height: 460px;
  top: 60px;
  left: -100px;
  background: radial-gradient(circle, rgba(20, 120, 255, 0.18) 0%, rgba(20, 120, 255, 0.04) 52%, transparent 72%);
}
.hero__gradient--2 {
  width: 520px;
  height: 520px;
  top: 340px;
  right: -120px;
  background: radial-gradient(circle, rgba(120, 90, 255, 0.14) 0%, rgba(120, 90, 255, 0.03) 54%, transparent 74%);
}

.hero--stacked .hero__content {
  max-width: 920px;
}

.hero--stacked .hero__label {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.72);
}

.hero__headline--xl {
  font-size: clamp(4.8rem, 10vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
  max-width: 8.6ch;
  margin-bottom: 28px;
}

.hero__headline--xl em {
  display: inline-block;
  color: #f5f5f7;
  background: linear-gradient(180deg, #ffffff 0%, #d8dbe4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub--narrow {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.78;
}

.hero--stacked .hero__stat-row {
  margin-top: 6px;
  margin-bottom: 34px;
}

.hero__banner {
  width: 100%;
}

.hero__banner-frame {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.03);
  box-shadow: 0 24px 80px rgba(0,0,0,0.30);
}

.hero__banner-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.hero__banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,0.08) 0%, rgba(10,10,12,0.00) 24%, rgba(10,10,12,0.18) 100%),
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.10), transparent 24%);
  pointer-events: none;
}

.hero--stacked .hero__img-badge {
  left: 18px;
  bottom: 18px;
}

.hero--stacked .hero__scroll-hint {
  bottom: 26px;
}

@media (max-width: 960px) {
  .hero__headline--xl {
    font-size: clamp(4rem, 13vw, 6rem);
    max-width: 9ch;
  }

  .hero__banner-frame,
  .hero__banner-img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .hero--stacked {
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .hero--stacked .hero__inner {
    gap: 30px;
  }

  .hero__headline--xl {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
    line-height: 0.92;
    max-width: none;
    letter-spacing: -0.075em;
  }

  .hero__sub--narrow {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero__banner-frame,
  .hero__banner-img {
    min-height: 300px;
    border-radius: 24px;
  }

  .hero__gradient--1 {
    width: 280px;
    height: 280px;
    left: -60px;
    top: 100px;
  }

  .hero__gradient--2 {
    width: 300px;
    height: 300px;
    right: -70px;
    top: 320px;
  }
}


/* ============================================
   VARIANT — refined tech / less Apple / more structure
   ============================================ */

:root {
  --radius: 12px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --accent-tech: #49a7ff;
  --accent-tech-2: #7c6cff;
  --accent-tech-3: #00d1c7;
}

/* Slightly more technical background language */
body {
  background:
    radial-gradient(circle at top center, rgba(73,167,255,0.10), transparent 20%),
    radial-gradient(circle at 85% 18%, rgba(124,108,255,0.10), transparent 18%),
    linear-gradient(180deg, #090a0d 0%, #0c0e12 100%);
}

.hero__grid {
  opacity: 0.16 !important;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
}

.hero__gradient {
  filter: blur(82px);
  opacity: 0.7;
}

.hero__gradient--1 {
  background: radial-gradient(circle, rgba(73,167,255,0.24) 0%, rgba(73,167,255,0.06) 48%, transparent 72%) !important;
}

.hero__gradient--2 {
  background: radial-gradient(circle, rgba(124,108,255,0.22) 0%, rgba(124,108,255,0.05) 50%, transparent 74%) !important;
}

/* More technical accent on label */
.hero--stacked .hero__label {
  color: rgba(73,167,255,0.92);
  letter-spacing: 0.13em;
}

.section-label {
  color: rgba(255,255,255,0.68);
}
.section-label::before {
  background: linear-gradient(90deg, rgba(73,167,255,0.8), rgba(124,108,255,0.5));
  width: 32px;
}

/* Less rounded overall */
.hero__banner-frame,
.hero__img-frame,
.work__card,
.contact__form-wrap,
.approach__img-strip,
.expertise__card,
.approach__step,
.service-item,
.client-card {
  border-radius: 18px !important;
}

.hero__banner-frame,
.hero__img-frame,
.work__card,
.contact__form-wrap,
.approach__img-strip {
  position: relative;
  overflow: hidden;
}

/* Tech pattern overlays */
.hero__banner-frame::after,
.work__card .work__img-wrap::before,
.approach__img-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.035) 49.5%, transparent 50.5%, transparent 100%),
    linear-gradient(transparent 0%, rgba(255,255,255,0.02) 49.5%, transparent 50.5%, transparent 100%);
  background-size: 84px 84px;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.hero__banner-frame {
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: 0 24px 80px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.03);
}

.hero__banner-overlay {
  background:
    linear-gradient(180deg, rgba(10,10,12,0.10) 0%, rgba(10,10,12,0.02) 24%, rgba(10,10,12,0.24) 100%),
    radial-gradient(circle at 18% 12%, rgba(73,167,255,0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(124,108,255,0.12), transparent 20%);
}

/* Headline still large, but a bit more technical/less soft */
.hero__headline--xl em {
  background: linear-gradient(90deg, #7ed0ff 0%, #56a8ff 36%, #91c0ff 70%, #f5f5f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub--narrow {
  color: rgba(245,245,247,0.78);
}

/* More structured stats */
.hero__stat {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.09);
}

.hero__stat-n {
  color: #ffffff;
}

.btn {
  border-radius: 12px;
}
.btn--primary {
  background: linear-gradient(180deg, #5ab6ff 0%, #2f84ff 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47,132,255,0.18);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #69beff 0%, #3a8cff 100%);
}
.btn--ghost {
  background: rgba(255,255,255,0.035);
}

/* Cards less glassy, more premium tech */
.expertise__card,
.approach__step,
.service-item,
.client-card,
.contact__form-wrap,
.work__card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.022)) !important;
  border-color: rgba(255,255,255,0.09) !important;
}

.expertise__card:hover,
.approach__step:hover,
.service-item:hover,
.client-card:hover,
.work__card:hover {
  border-color: rgba(73,167,255,0.16) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}

/* More visible tech accent lines in selected areas */
.work__tag,
.service-item__num {
  color: rgba(126,208,255,0.82);
}

.work__tags-list span {
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
}

.contact__email {
  border-radius: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(73,167,255,0.22);
  box-shadow: 0 0 0 4px rgba(73,167,255,0.08);
}

/* Banner and imagery slightly more angular */
.hero__banner-frame,
.approach__img-strip {
  clip-path: inset(0 round 18px);
}

@media (max-width: 760px) {
  .hero__banner-frame,
  .hero__img-frame,
  .work__card,
  .contact__form-wrap,
  .approach__img-strip,
  .expertise__card,
  .approach__step,
  .service-item,
  .client-card {
    border-radius: 14px !important;
  }

  .btn,
  .contact__email,
  .form-group input,
  .form-group select,
  .form-group textarea,
  .work__tags-list span {
    border-radius: 10px;
  }
}


/* ============================================
   CORPORATE ELEGANT TECH REFINEMENT
   Visual-only layer. Layout and structure unchanged.
   ============================================ */

:root{
  --bg: #0a0c10;
  --bg-2: #0e1218;
  --bg-3: #131923;
  --bg-card: rgba(255,255,255,0.036);
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.055);

  --text: #f4f7fb;
  --text-2: rgba(244,247,251,0.76);
  --text-3: rgba(244,247,251,0.46);

  --border: rgba(255,255,255,0.08);
  --border-h: rgba(255,255,255,0.14);

  --accent-tech: #6bb8ff;
  --accent-tech-2: #8a7cff;
  --accent-tech-3: #87e7de;
}

body {
  background:
    radial-gradient(circle at top center, rgba(107,184,255,0.10), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(138,124,255,0.08), transparent 16%),
    linear-gradient(180deg, #090b0f 0%, #0b0f14 58%, #0a0d12 100%);
  color: var(--text);
}

.nav.scrolled {
  background: rgba(8,10,14,0.78);
  border-bottom-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__links a,
.footer__nav a {
  color: rgba(244,247,251,0.68);
}

.nav__links a:hover,
.footer__nav a:hover {
  color: rgba(244,247,251,0.98);
}

.nav__cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05)) !important;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.section-label {
  color: rgba(244,247,251,0.58);
}

.section-label::before {
  background: linear-gradient(90deg, rgba(107,184,255,0.92), rgba(138,124,255,0.50));
}

.section-title,
.hero__headline {
  color: var(--text);
  text-wrap: balance;
}

.hero__headline--xl em {
  background: linear-gradient(90deg, #f7fbff 0%, #c8dcff 42%, #8dc4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub,
.section-sub {
  color: var(--text-2);
}

.hero__grid {
  opacity: 0.13 !important;
  background-size: 56px 56px;
}

.hero__gradient {
  filter: blur(88px);
}

.hero__banner-frame,
.hero__img-frame,
.work__card,
.approach__img-strip,
.contact__form-wrap,
.expertise__card,
.service-item,
.approach__step,
.client-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)) !important;
  border: 1px solid rgba(255,255,255,0.085) !important;
  box-shadow:
    0 18px 48px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.035);
}

.hero__banner-frame::after,
.work__card .work__img-wrap::before,
.approach__img-strip::before {
  opacity: 0.16;
  background-size: 96px 96px;
}

.hero__banner-overlay {
  background:
    linear-gradient(180deg, rgba(8,10,14,0.08) 0%, rgba(8,10,14,0.02) 28%, rgba(8,10,14,0.22) 100%),
    radial-gradient(circle at 18% 12%, rgba(107,184,255,0.14), transparent 22%),
    radial-gradient(circle at 84% 22%, rgba(138,124,255,0.10), transparent 18%);
}

.hero__stat {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.085);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}

.hero__stat-n {
  letter-spacing: -0.05em;
}

.btn {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: linear-gradient(180deg, #78c1ff 0%, #499cff 100%);
  box-shadow:
    0 12px 28px rgba(73,156,255,0.20),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #88c9ff 0%, #56a5ff 100%);
}

.btn--ghost {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(107,184,255,0.20);
  color: #ffffff;
}

.expertise__card:hover,
.service-item:hover,
.approach__step:hover,
.client-card:hover,
.work__card:hover {
  border-color: rgba(107,184,255,0.16) !important;
  box-shadow:
    0 22px 56px rgba(0,0,0,0.24),
    0 0 0 1px rgba(107,184,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.035);
}

.expertise__icon,
.work__tag,
.service-item__num {
  color: #8ec8ff !important;
}

.work__tag {
  letter-spacing: 0.10em;
}

.work__tags-list span {
  background: rgba(255,255,255,0.032);
  border: 1px solid rgba(255,255,255,0.075);
  color: rgba(244,247,251,0.70);
}

.client-logo-img {
  opacity: 0.64;
}

.client-card:hover .client-logo-img {
  opacity: 0.94;
}

.contact__email {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.085);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.085);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(255,255,255,0.05);
  border-color: rgba(107,184,255,0.24);
  box-shadow: 0 0 0 4px rgba(107,184,255,0.08);
}

.form-group label {
  color: rgba(244,247,251,0.50);
}

.footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
}

.footer__copy,
.footer__brand p {
  color: rgba(244,247,251,0.42);
}


/* ============================================
   WHITE ELEGANT OVERRIDE PACKAGE
   Same layout, lighter premium visual system
   ============================================ */

:root {
  --bg: #f5f7fa;
  --bg-2: #ffffff;
  --bg-3: #edf1f5;
  --bg-card: rgba(255,255,255,0.78);
  --surface: rgba(255,255,255,0.7);
  --surface-2: rgba(255,255,255,0.86);

  --border: rgba(16, 22, 32, 0.08);
  --border-h: rgba(16, 22, 32, 0.14);

  --text: #0f1217;
  --text-2: rgba(15, 18, 23, 0.68);
  --text-3: rgba(15, 18, 23, 0.42);

  --accent: #111317;
  --accent-soft: rgba(17,19,23,0.06);

  --shadow-soft: 0 14px 32px rgba(14, 20, 30, 0.05);
  --shadow-card: 0 24px 70px rgba(14, 20, 30, 0.08);
}

body {
  background:
    radial-gradient(circle at 16% 0%, rgba(95, 118, 150, 0.08), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(145, 156, 176, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 50%, #f2f5f8 100%);
  color: var(--text);
}

::selection { background: rgba(20,24,32,0.12); color: #111; }

.nav.scrolled {
  background: rgba(255,255,255,0.82);
  border-bottom-color: rgba(12, 18, 28, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav__logo img,
.footer__brand img {
  filter: none;
  opacity: 1;
}

.nav__links a,
.footer__nav a,
.nav__mobile a {
  color: rgba(15,18,23,0.68);
}
.nav__links a:hover,
.footer__nav a:hover,
.nav__mobile a:hover {
  color: rgba(15,18,23,0.98);
}

.nav__cta {
  background: rgba(17,19,23,0.04) !important;
  color: #111317 !important;
  border: 1px solid rgba(17,19,23,0.10);
  box-shadow: none;
}
.nav__cta:hover {
  background: rgba(17,19,23,0.08) !important;
}

.nav__burger span {
  background: #111317;
}

.nav__mobile {
  background: rgba(255,255,255,0.96);
  border-top: 1px solid rgba(12,18,28,0.06);
}
.nav__mobile a {
  border-bottom: 1px solid rgba(12,18,28,0.05);
}

.section-label,
.hero__label,
.work__tag,
.service-item__num,
.footer__copy,
.footer__brand p,
.client-logo-fallback {
  color: rgba(15,18,23,0.46) !important;
}

.section-label::before {
  background: linear-gradient(90deg, rgba(17,19,23,0.45), rgba(120,128,142,0.25));
}

.section-title,
.hero__headline,
.section-title--light,
.hero__headline--xl {
  color: var(--text) !important;
}

.hero__headline--xl em {
  background: linear-gradient(180deg, #101318 0%, #555d69 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub,
.section-sub,
.section-sub--light,
.work__card-info p,
.service-item__content p,
.expertise__card p,
.approach__step-content p,
.contact__email,
.form-group label,
.form-group input,
.form-group select,
.form-group textarea {
  color: var(--text-2);
}

.hero__grid {
  opacity: 0.12 !important;
  background:
    linear-gradient(rgba(16,20,28,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,28,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero__glow,
.hero__gradient {
  opacity: 0.55;
  filter: blur(88px);
}

.hero__glow--1,
.hero__gradient--1 {
  background: radial-gradient(circle, rgba(142, 154, 170, 0.20) 0%, rgba(142, 154, 170, 0.05) 46%, transparent 72%) !important;
}

.hero__glow--2,
.hero__gradient--2 {
  background: radial-gradient(circle, rgba(186, 191, 201, 0.18) 0%, rgba(186, 191, 201, 0.04) 50%, transparent 74%) !important;
}

.hero__banner-frame,
.hero__img-frame,
.work__card,
.contact__form-wrap,
.approach__img-strip,
.expertise__card,
.approach__step,
.service-item,
.client-card,
.hero__stat {
  background: rgba(255,255,255,0.74) !important;
  border: 1px solid rgba(16,22,32,0.07) !important;
  box-shadow: 0 18px 56px rgba(14,20,30,0.06) !important;
}

.hero__banner-frame::after,
.work__card .work__img-wrap::before,
.approach__img-strip::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(17,22,30,0.024) 49.5%, transparent 50.5%, transparent 100%),
    linear-gradient(transparent 0%, rgba(17,22,30,0.018) 49.5%, transparent 50.5%, transparent 100%) !important;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

.expertise__card:hover,
.approach__step:hover,
.service-item:hover,
.client-card:hover,
.work__card:hover,
.hero__banner-frame:hover,
.hero__img-frame:hover {
  border-color: rgba(16,22,32,0.11) !important;
  box-shadow: 0 26px 80px rgba(14,20,30,0.09) !important;
}

.hero__banner-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.03) 24%, rgba(16,20,28,0.08) 100%),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.38), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(173,181,194,0.12), transparent 24%) !important;
}

.hero__banner-img,
.hero__img,
.work__img-wrap img,
.approach__img-strip img,
.services__img-wrap img {
  filter: saturate(0.82) contrast(0.98) brightness(1.02);
}

.hero__img-badge,
.contact__email,
.work__tags-list span,
.btn--ghost {
  background: rgba(255,255,255,0.72);
  color: #111317;
  border-color: rgba(17,19,23,0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.badge__dot {
  background: #0f1217;
  box-shadow: 0 0 0 6px rgba(15,18,23,0.08);
}

.btn--primary {
  background: linear-gradient(180deg, #1a1d23 0%, #0f1217 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(12,16,22,0.12);
}
.btn--primary:hover { background: linear-gradient(180deg, #252a33 0%, #11151b 100%); }

.btn--ghost:hover,
.contact__email:hover,
.work__tags-list span:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(17,19,23,0.13);
}

.services__bg::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(246,248,251,0.96)),
    radial-gradient(circle at 18% 0%, rgba(140,149,163,0.10), transparent 26%) !important;
}
.services__img-wrap img {
  opacity: 0.10;
  filter: grayscale(1) saturate(0.5) brightness(1.1);
}

.work__img-wrap,
.hero__banner-frame,
.hero__img-frame,
.approach__img-strip {
  background: #eef2f6;
}
.work__img-wrap::after {
  background: linear-gradient(180deg, transparent 50%, rgba(12,18,28,0.08) 100%);
}

.client-logo-img {
  filter: brightness(0) saturate(100%) !important;
  opacity: 0.58;
}
.client-card:hover .client-logo-img {
  opacity: 0.82;
}
.client-logo-img.no-white-filter {
  filter: none !important;
  opacity: 0.72;
}
.client-logo-svg {
  color: rgba(15,18,23,0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.82);
  color: #111317;
  border: 1px solid rgba(17,19,23,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(15,18,23,0.34);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(17,19,23,0.15);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 0 0 4px rgba(17,19,23,0.05);
}
.form-group select option {
  background: #ffffff;
  color: #111317;
}

.form__success {
  background: rgba(15,135,89,0.08);
  border: 1px solid rgba(15,135,89,0.14);
  color: #0b6b49;
}

.footer,
.expertise,
.work,
.clients,
.approach,
.contact {
  border-top: 1px solid rgba(16,22,32,0.05);
}

@media (max-width: 760px) {
  .hero__banner-frame,
  .hero__img-frame,
  .work__card,
  .contact__form-wrap,
  .approach__img-strip,
  .expertise__card,
  .approach__step,
  .service-item,
  .client-card {
    border-radius: 14px !important;
  }
}
