/* ---------- RESET & ROOT ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:        #050508;
  --white:        #f5f4f0;
  --cyan:         #00f5d4;
  --blue:         #0066ff;
  --purple:       #7b2fff;
  --gold:         #ffcc00;
  --glass:        rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Type scale */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   22px;

  /* Border radius */
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* ---------- BACK TO TOP ---------- */
/* bottom: 90px so it doesn't overlap WhatsApp float button */
#backToTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  padding: 12px 16px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  background: var(--cyan);
  color: #000;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

#backToTop:hover {
  transform: translateY(-3px);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
  will-change: left, top;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 245, 212, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: left, top;
}

/* ---------- BACKGROUND CANVAS ---------- */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5, 5, 8, 0.9), transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.5px;
  color: var(--white);
}

.nav-logo span { color: var(--cyan); }

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(245, 244, 240, 0.6);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

.nav-links a.active,
.nav-links a.page-active {
  color: var(--cyan);
  font-weight: 500;
}

.nav-cta {
  background: var(--cyan) !important;
  color: var(--black) !important;
  padding: 10px var(--space-md) !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  font-size: var(--text-sm) !important;
  letter-spacing: 0.3px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.4) !important;
}

/* ---------- NAV DROPDOWN ---------- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-chevron {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
  color: rgba(245, 244, 240, 0.4);
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 280px;
  background: rgba(8, 8, 14, 0.96);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0,245,212,0.06);
  z-index: 200;
}

/* Small pointer arrow */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(8, 8, 14, 0.96);
  border-left: 1px solid var(--glass-border);
  border-top: 1px solid var(--glass-border);
  rotate: 45deg;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: rgba(245, 244, 240, 0.65);
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;

  /* Arrow setup */
  position: relative;
  padding-right: 36px;       /* arrow ke liye space */
}

/* Arrow — default position (hidden, left side pe) */
.nav-dropdown-item::after {
  content: '→';
  position: absolute;
  right: 14px;
  font-size: 13px;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

/* Hover state */
.nav-dropdown-item:hover {
  background: rgba(0, 245, 212, 0.07);
  color: var(--white);
}

/* Arrow — hover pe slide in aur appear */
.nav-dropdown-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.ndi-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  flex-shrink: 0;
}

.ndi-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ndi-text strong {
  font-weight: 500;
  font-size: 13px;
  color: rgba(245,244,240,0.9);
  transition: font-weight 0.15s, color 0.2s;  /* smooth bold transition */
}

.ndi-text small {
  font-size: 11px;
  color: rgba(245,244,240,0.35);
}

/* Hover pe heading bold + cyan */
.nav-dropdown-item:hover .ndi-text strong {
  color: var(--cyan);
  font-weight: 700;                            /* ← yahan bold hoga */
}

.nav-dropdown-item + .nav-dropdown-item {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* ---------- LANG SWITCHER ---------- */
.lang-switcher,
#langSwitcher,
#langSwitcherMobile {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

/* ---------- HAMBURGER ---------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(16px);
  z-index: 105;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(245, 244, 240, 0.7);
  transition: color 0.3s;
}

.nav-mobile a:hover { color: var(--cyan); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 998;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Language dropdown click toggle */
#langDropdown .nav-dropdown-menu {
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-6px);
}
#langDropdown:hover .nav-dropdown-menu,
#langDropdown.lang-open .nav-dropdown-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nav-lang-trigger {
  color: rgba(245, 244, 240, 0.6) !important;
}
.nav-lang-trigger.lang-selected {
  color: var(--cyan) !important;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--space-lg) 100px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  padding: var(--space-xs) 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 .line { display: block; }

.hero h1 .accent {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(245, 244, 240, 0.3);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(245, 244, 240, 0.55);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  position: relative;
  bottom: 20px;
  left: 20%;
  margin-top: 60px;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
  width: 100%;
  padding: 0 var(--space-lg);
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--cyan);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(245, 244, 240, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  white-space: nowrap;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  font-size: 12px;
  white-space: nowrap;
  color: rgba(245, 244, 240, 0.7);
  animation: float 6s ease-in-out infinite;
}

.float-card:nth-child(1) { top: 20%; left: 5%;  animation-delay: 0s; }
.float-card:nth-child(2) { top: 35%; right: 6%; animation-delay: -2s; }
.float-card:nth-child(3) { top: 65%; left: 8%;  animation-delay: -4s; }
.float-card:nth-child(4) { bottom: 28%; right: 5%; animation-delay: -1s; }

.float-card .fc-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--cyan);
  color: var(--black);
  border: none;
  padding: var(--space-sm) 36px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 245, 212, 0.35);
}

.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  padding: var(--space-sm) 36px;
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: var(--text-base);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--glass);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- SECTION LABEL ---------- */
.section-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.5;
}

/* ---------- SECTIONS WRAPPER ---------- */
section { position: relative; z-index: 1; }

/* ---------- SERVICES ---------- */
.services {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: var(--space-lg);
}

.services-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -2px;
  max-width: 520px;
}

.services-header p {
  max-width: 320px;
  font-size: var(--text-base);
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.7;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}

.service-card {
  background: var(--black);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
  scroll-margin-top: 110px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover { background: rgba(0, 245, 212, 0.03); }
.service-card:hover::before { transform: scaleX(1); }

.service-card::after {
  content: "→";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 18px;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Highlight a service card when navigated to via anchor */
.service-card:target {
  border-color: rgba(0, 245, 212, 0.55);
  box-shadow: 0 0 0 2px rgba(0, 245, 212, 0.18), 0 8px 40px rgba(0, 245, 212, 0.12);
  animation: cardPulse 1.6s ease forwards;
}

@keyframes cardPulse {
  0%   { box-shadow: 0 0 0 2px rgba(0,245,212,0.5), 0 8px 40px rgba(0,245,212,0.25); }
  60%  { box-shadow: 0 0 0 6px rgba(0,245,212,0.12), 0 8px 40px rgba(0,245,212,0.1); }
  100% { box-shadow: 0 0 0 2px rgba(0,245,212,0.18), 0 8px 40px rgba(0,245,212,0.06); }
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  background: var(--glass);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(0, 245, 212, 0.2);
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.service-card p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tag {
  font-size: var(--text-xs);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  color: rgba(245, 244, 240, 0.5);
  letter-spacing: 0.3px;
}

/* ---------- PORTFOLIO ---------- */
.portfolio {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -2px;
  margin-bottom: 64px;
  max-width: 600px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.portfolio-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  background: var(--glass);
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  transform-style: preserve-3d;
  will-change: transform;
}

.portfolio-card:hover {
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 245, 212, 0.1);
}

.portfolio-card .card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.card-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
  position: relative;
}

.portfolio-card:hover .card-visual-bg { transform: scale(1.05); }

/* Client visuals */
.produo-bg { background: linear-gradient(135deg, #1a0a00, #3d1a00); }
.produo-bg::before {
  content: '🪵';
  position: absolute;
  font-size: 100px;
  opacity: 0.15;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.produo-logo {
  width: 90px; height: 90px;
  background: #c8a26b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  color: #1a0800;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(200, 162, 107, 0.3);
}

.dlish-bg { background: linear-gradient(135deg, #1a001a, #3d003d); }
.dlish-bg::before {
  content: '🍫';
  position: absolute;
  font-size: 80px;
  opacity: 0.2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.dlish-logo {
  background: linear-gradient(135deg, #8b1a4a, #c43b7a);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  color: white;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 32px rgba(196, 59, 122, 0.4);
}

.proacoustic-bg { background: linear-gradient(135deg, #001a2e, #003355); }
.proacoustic-bg::before {
  content: '🔊';
  position: absolute;
  font-size: 80px;
  opacity: 0.15;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.proacoustic-logo {
  background: linear-gradient(135deg, #0a4a7a, #0066aa);
  border-radius: 12px;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  color: white;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 32px rgba(0, 102, 170, 0.4);
}

.card-info { padding: 28px 32px; }

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-category {
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
}

.card-year {
  font-size: 12px;
  color: rgba(245, 244, 240, 0.3);
}

.card-info h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.card-info p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-tags { display: flex; gap: var(--space-xs); flex-wrap: wrap; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--cyan);
  font-weight: 500;
  margin-top: 12px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 12px; }

/* ---------- PORTFOLIO LOGO IMAGES ---------- */
.card-visual {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.card-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.produo-bg    { background: #c8d400; }
.dlish-bg     { background: #f5f4f0; }
.proacoustic-bg { background: #ffffff; }
.digimkt-bg   { background: linear-gradient(135deg, #020d1a, #041e3a); }
.nailedit-bg{background: #FFFF6F;}



.digimkt-logo {
  width: 90px; height: 90px;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0, 245, 212, 0.15);
}

.portfolio-logo {
  max-width: 60%;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Nailed It — logo fits the card visual area proportionally */
.nailedit-logo {
   width: 90px; height: 90px;
  background: rgba(0, 245, 212, 0.08);
  border: 1px solid rgba(0, 245, 212, 0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(0, 245, 212, 0.15);
}

.portfolio-card:hover .portfolio-logo { transform: scale(1.05); }

/* ---------- PROCESS ---------- */
.process {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.process h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -2px;
  margin-bottom: 72px;
  max-width: 500px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: var(--black);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}

.process-step:hover { background: var(--glass); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: rgba(0, 245, 212, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.process-step:hover .step-num { color: rgba(0, 245, 212, 0.15); }

.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.7;
}

/* ---------- WHY US ---------- */
.why {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
}

.why-left p {
  font-size: var(--space-sm);
  color: rgba(245, 244, 240, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
}

.why-features { display: grid; gap: var(--space-sm); }

.why-feat {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: 20px var(--space-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: transform 0.3s, border-color 0.3s;
}

.why-feat:hover {
  transform: translateX(8px);
  border-color: rgba(0, 245, 212, 0.2);
}

.feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(0, 245, 212, 0.1);
  border: 1px solid rgba(0, 245, 212, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.feat-text h4 { font-weight: 600; font-size: var(--text-base); margin-bottom: 4px; }
.feat-text p  { font-size: 13px; color: rgba(245, 244, 240, 0.5); }

/* 3D Cube Visual */
.why-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  height: 100%;
}

.cube-container {
  perspective: 600px;
  width: 200px; height: 200px;
}

.cube {
  width: 200px; height: 200px;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
  position: relative;
}

.face {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(0, 245, 212, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.face.front  { background: rgba(0,245,212,0.05); transform: translateZ(100px);                color: var(--cyan);   }
.face.back   { background: rgba(0,102,255,0.05); transform: rotateY(180deg) translateZ(100px); color: #6699ff; }
.face.left   { background: rgba(123,47,255,0.05); transform: rotateY(-90deg) translateZ(100px); color: #aa77ff; }
.face.right  { background: rgba(255,204,0,0.05); transform: rotateY(90deg) translateZ(100px);  color: var(--gold);  }
.face.top    { background: rgba(0,245,212,0.03); transform: rotateX(90deg) translateZ(100px);  }
.face.bottom { background: rgba(0,245,212,0.03); transform: rotateX(-90deg) translateZ(100px); }

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0, 245, 212, 0.15);
  animation: spinRing 20s linear infinite;
}

.orbit-ring:nth-child(1) { width: 340px; height: 340px; animation-duration: 20s; }
.orbit-ring:nth-child(2) { width: 460px; height: 460px; animation-duration: 30s; animation-direction: reverse; }

.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
}

.orbit-ring:nth-child(1) .orbit-dot { top: 0; left: 50%; transform: translateX(-50%) translateY(-4px); }
.orbit-ring:nth-child(2) .orbit-dot { top: 50%; right: 0; transform: translateY(-50%) translateX(4px); }

/* ---------- MARQUEE ---------- */
.marquee-section {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative; z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245, 244, 240, 0.2);
  display: flex; align-items: center; gap: var(--space-sm);
  white-space: nowrap;
}

.marquee-item.accent { color: rgba(0, 245, 212, 0.4); }
.marquee-sep { color: var(--cyan); font-size: 8px; }

/* ---------- CTA ---------- */
.cta-section {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 245, 212, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -2px; line-height: 1.0;
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(245, 244, 240, 0.5);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-info {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid var(--glass-border);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.contact-label {
  font-size: var(--text-xs);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.3);
}

.contact-val { font-size: var(--text-base); font-weight: 500; color: var(--white); }
.contact-val a { color: var(--cyan); }

/* ---------- FOOTER ---------- */
footer {
  position: relative; z-index: 1;
  padding: 60px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.3);
}

footer a { color: rgba(245, 244, 240, 0.3); transition: color 0.3s; }
footer a:hover { color: var(--cyan); }

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: var(--space-sm);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo span { color: var(--cyan); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(245, 244, 240, 0.45);
  line-height: 1.5;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(245, 244, 240, 0.45); }
.footer-contact-item a:hover { color: var(--cyan); }

.footer-links { display: flex; gap: var(--space-md); }

/* ---------- UTILITIES ---------- */
.glow-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 212, 0.3), transparent);
  position: relative; z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: none; }

/* ---------- KEYFRAMES ---------- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rotateCube {
  from { transform: rotateX(15deg) rotateY(0deg); }
  to   { transform: rotateX(15deg) rotateY(360deg); }
}

@keyframes spinRing {
  from { transform: rotateX(60deg) rotateZ(0deg); }
  to   { transform: rotateX(60deg) rotateZ(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { gap: 48px; }
  .why-right { height: 380px; }
  .orbit-ring:nth-child(1) { width: 260px; height: 260px; }
  .orbit-ring:nth-child(2) { width: 340px; height: 340px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: var(--space-sm) var(--space-md); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 100px var(--space-md) 160px; }
  .float-card { display: none; }
  .hero h1 { letter-spacing: -2px; }
  .hero-stats { bottom: 32px; gap: 20px; padding: 0 var(--space-md); }
  .stat-label { font-size: 10px; }

  .services,
  .portfolio,
  .process,
  .why,
  .cta-section { padding: var(--space-xl) var(--space-md); }

  .services-header { flex-direction: column; gap: var(--space-md); align-items: flex-start; }
  .services-header p { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px var(--space-md); }

  .portfolio-grid { grid-template-columns: 1fr; }
  .card-info { padding: var(--space-md); }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 36px var(--space-md); }
  .step-num { font-size: 48px; }

  .why-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .why-right { height: 300px; }
  .orbit-ring:nth-child(1) { width: 220px; height: 220px; }
  .orbit-ring:nth-child(2) { width: 300px; height: 300px; }

  .cta-inner { padding: 48px var(--space-md); }
  .cta-contact-info { gap: var(--space-md); }

  footer { flex-direction: column; align-items: center; text-align: center; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .page-hero { padding: 120px var(--space-md) 60px; }
  .page-hero h1 { letter-spacing: -1.5px; }

  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 90px var(--space-sm) 180px; }
  .hero h1 { font-size: 34px; line-height: 1.1; letter-spacing: -1px; padding: 0 10px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 22px; }
  .services-grid { gap: 1px; }
  .process-steps { grid-template-columns: 1fr; }
  .why-right { height: 240px; }
  .cube-container { width: 140px; height: 140px; }
  .cube { width: 140px; height: 140px; }
  .face { width: 140px; height: 140px; }
  .face.front  { transform: translateZ(70px); }
  .face.back   { transform: rotateY(180deg) translateZ(70px); }
  .face.left   { transform: rotateY(-90deg) translateZ(70px); }
  .face.right  { transform: rotateY(90deg)  translateZ(70px); }
  .face.top    { transform: rotateX(90deg)  translateZ(70px); }
  .face.bottom { transform: rotateX(-90deg) translateZ(70px); }
  .orbit-ring:nth-child(1) { width: 180px; height: 180px; }
  .orbit-ring:nth-child(2) { width: 240px; height: 240px; }
  .footer-links { gap: var(--space-sm); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

.page-hero {
  position: relative;
  z-index: 1;
  padding: 160px var(--space-lg) 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero .hero-badge { animation: none; margin-bottom: 20px; }

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 20px;
  animation: none;
}

.page-hero p {
  font-size: 18px;
  color: rgba(245,244,240,0.55);
  max-width: 560px;
  line-height: 1.7;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: -2px;
  margin-bottom: 56px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.review-card:hover {
  border-color: rgba(0, 245, 212, 0.2);
  transform: translateY(-4px);
}

.review-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.review-card p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.65);
  line-height: 1.8;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}

.produo-av      { background: #c8a26b; color: #1a0800; }
.dlish-av       { background: linear-gradient(135deg, #8b1a4a, #c43b7a); color: #fff; }
.proacoustic-av { background: linear-gradient(135deg, #0a4a7a, #0066aa); color: #fff; }

.review-name    { font-weight: 600; font-size: 14px; }
.review-company { font-size: 12px; color: rgba(245, 244, 240, 0.4); margin-top: 2px; }

@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- WRITE A REVIEW ---------- */
.write-review {
  padding: var(--space-2xl) var(--space-lg);
  max-width: 860px;
  margin: 0 auto;
}

.review-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-form .form-group { display: flex; flex-direction: column; gap: 8px; }

.review-form label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,244,240,0.7);
  letter-spacing: 0.3px;
}

.review-form input,
.review-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: rgba(0,245,212,0.5);
  box-shadow: 0 0 0 3px rgba(0,245,212,0.08);
}

.review-form textarea { resize: vertical; min-height: 130px; }

.star-picker {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  width: fit-content;
}

.star-picker input { display: none; }

.star-picker label {
  font-size: 32px;
  color: rgba(245,244,240,0.15);
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0;
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label {
  color: var(--gold);
}

.form-note {
  font-size: 12px;
  color: rgba(245,244,240,0.35);
  text-align: center;
  margin-top: -8px;
}

.review-success {
  text-align: center;
  padding: 64px 32px;
  background: var(--glass);
  border: 1px solid rgba(0,245,212,0.2);
  border-radius: var(--radius-lg);
}

.success-icon { font-size: 48px; margin-bottom: 16px; }

.review-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.review-success p { color: rgba(245,244,240,0.55); font-size: 16px; }

@media (max-width: 600px) {
  .review-form { padding: 28px 20px; }
  .review-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MISSION · VISION · VALUES
   ============================================================ */
.mvv-section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--space-lg);
}

.mvv-inner { max-width: 1280px; margin: 0 auto; }

.mvv-header { text-align: center; margin-bottom: 64px; }

.mvv-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.mvv-intro {
  font-size: 17px;
  color: rgba(245, 244, 240, 0.5);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.mvv-values { grid-column: 1 / -1; }

.mvv-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}

.mvv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.mvv-mission::before { background: radial-gradient(ellipse at top left, rgba(0,245,212,0.07) 0%, transparent 65%); }
.mvv-vision::before  { background: radial-gradient(ellipse at top right, rgba(0,102,255,0.08) 0%, transparent 65%); }
.mvv-values::before  { background: radial-gradient(ellipse at center top, rgba(123,47,255,0.07) 0%, transparent 60%); }

.mvv-card:hover { border-color: rgba(0, 245, 212, 0.22); transform: translateY(-4px); }
.mvv-card:hover::before { opacity: 1; }

.mvv-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }

.mvv-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.mvv-mission .mvv-icon-wrap { color: var(--cyan); }
.mvv-vision  .mvv-icon-wrap { color: var(--blue); }
.mvv-values  .mvv-icon-wrap { color: var(--purple); }

.mvv-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid;
}

.mvv-mission .mvv-label { color: var(--cyan); border-color: rgba(0,245,212,0.3); background: rgba(0,245,212,0.06); }
.mvv-vision  .mvv-label { color: #6ba3ff;    border-color: rgba(0,102,255,0.3);  background: rgba(0,102,255,0.07); }
.mvv-values  .mvv-label { color: #b48eff;    border-color: rgba(123,47,255,0.3); background: rgba(123,47,255,0.07); }

.mvv-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mvv-card > p {
  font-size: 15px;
  color: rgba(245, 244, 240, 0.55);
  line-height: 1.85;
  margin-bottom: 28px;
}

.mvv-pillars { display: flex; gap: 10px; flex-wrap: wrap; }

.mvv-pillars span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(245, 244, 240, 0.5);
}

.mvv-values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.mvv-value-item { display: flex; gap: 14px; align-items: flex-start; }

.mvv-value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 10px rgba(123,47,255,0.6);
}

.mvv-value-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(245,244,240,0.9);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.mvv-value-item p {
  font-size: 13.5px;
  color: rgba(245, 244, 240, 0.45);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 900px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .mvv-values { grid-column: auto; }
  .mvv-values-list { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 600px) {
  .mvv-card { padding: 32px 24px; }
  .mvv-header { margin-bottom: 40px; }
  .mvv-header h2 { letter-spacing: -1.5px; }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.team-inner { max-width: 1280px; margin: 0 auto; }

.team-intro {
  color: rgba(245, 244, 240, 0.5);
  font-size: 1.05rem;
  margin-bottom: 56px;
  max-width: 520px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1280px;
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), border-color 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,230,255,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 30px rgba(0,230,255,0.08);
}

.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s, transform 0.4s;
}

.team-card:hover .team-photo { filter: grayscale(0%); transform: scale(1.06); }

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.35s;
}

.team-card:hover .team-overlay { opacity: 1; }

.team-socials { display: flex; gap: 10px; }

.team-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,230,255,0.15);
  border: 1px solid rgba(0,230,255,0.4);
  color: #00e6ff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.team-socials a:hover { background: rgba(0,230,255,0.3); transform: scale(1.12); }

.team-info { padding: 18px 20px 22px; }

.team-info h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.team-role {
  font-size: 0.78rem;
  color: #00e6ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: transform 0.4s;
}

.team-card:hover .team-avatar-placeholder { transform: scale(1.06); }

.avatar-ss { background: linear-gradient(135deg, #0a1628 0%, #0d2d5e 50%, #0066ff 100%); }
.avatar-kp { background: linear-gradient(135deg, #0a1628 0%, #1a0d2e 50%, #6600cc 100%); }
.avatar-kk { background: linear-gradient(135deg, #0a1628 0%, #0d2e2a 50%, #00c4a7 100%); }
.avatar-as { background: linear-gradient(135deg, #1a0828 0%, #3d0a5e 50%, #cc00aa 100%); }

.team-bio {
  font-size: 13px;
  color: rgba(245, 244, 240, 0.45);
  line-height: 1.7;
  margin-top: 10px;
}

@media (max-width: 720px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .team-section { padding: 64px 20px; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 120px;
  position: relative;
  z-index: 1;
}

.contact-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  color: rgba(245,244,240,0.55);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details { display: grid; gap: 20px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.contact-detail-item:hover { border-color: rgba(0,245,212,0.2); }

.contact-detail-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0,245,212,0.1);
  border: 1px solid rgba(0,245,212,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.contact-detail-text label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,244,240,0.35);
  margin-bottom: 4px;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-text a:hover { color: var(--cyan); }

.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.contact-form > p {
  font-size: 14px;
  color: rgba(245,244,240,0.5);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,244,240,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,245,212,0.5);
  box-shadow: 0 0 0 3px rgba(0,245,212,0.08);
}

.form-group select option { background: #0d0d14; color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  background: var(--cyan);
  color: var(--black);
  border: none;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,245,212,0.35);
}

/* Language Switcher */
#langSwitcher {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Hover Effect */
#langSwitcher:hover {
  border-color: #00e0ff;
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.4);
}

/* Focus (click) */
#langSwitcher:focus {
  outline: none;
  border-color: #00e0ff;
}

/* Dropdown Options */
#langSwitcher option {
  background: #050508;
  color: #fff;
}
