/* ============================================================
   SKYPROT — Styles
   Color Palette: Orange (#FF6B00), Greys, White, Black
   Glass morphism + Animations
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #FF6B00;
  --orange-light: #FF8C00;
  --orange-dark: #cc5500;
  --orange-glow: rgba(255, 107, 0, 0.4);
  --orange-subtle: rgba(255, 107, 0, 0.08);
  --black: #0a0a0a;
  --black-pure: #000000;
  --grey-900: #111111;
  --grey-800: #1a1a1a;
  --grey-700: #2a2a2a;
  --grey-600: #3a3a3a;
  --grey-500: #555555;
  --grey-400: #777777;
  --grey-300: #999999;
  --grey-200: #bbbbbb;
  --grey-100: #e0e0e0;
  --white: #ffffff;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--grey-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img { max-width: 100%; display: block; }

::selection {
  background: var(--orange);
  color: var(--white);
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Glass Utilities ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 107, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 0, 0.05);
}

.glass-card-lg {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
}

.glass-panel {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
}

.glass-chip {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.glass-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glass-btn:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
}

.glass-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border: 1px solid rgba(255, 140, 0, 0.4);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-btn-primary:hover {
  box-shadow: 0 8px 40px rgba(255, 107, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.glass-btn-sm {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.glass-btn-sm:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

.glass-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.glass-input::placeholder {
  color: var(--grey-500);
}

.glass-input:focus {
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.glass-dot {
  background: rgba(255, 107, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

/* ---------- Text Utilities ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 107, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease, background 0.3s ease;
}

.navbar.visible {
  transform: translateY(0);
  opacity: 1;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--grey-300);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* --- Language Toggle --- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--grey-500);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.3s ease, background 0.3s ease;
}

.lang-btn:hover {
  color: var(--grey-200);
}

.lang-btn.active {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
}

.lang-sep {
  color: var(--grey-600);
  font-size: 0.75rem;
  user-select: none;
}

.lang-toggle-mobile {
  margin: 16px 0;
  justify-content: center;
}

.lang-toggle-mobile .lang-btn {
  font-size: 1rem;
  padding: 8px 12px;
}

.lang-toggle-mobile .lang-sep {
  font-size: 1rem;
}

.nav-cta {
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  text-align: center;
  padding: 48px;
  border-radius: 24px;
}

.mobile-menu-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.mobile-menu-content ul li {
  margin: 16px 0;
}

.mobile-menu-content ul a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--grey-200);
  transition: color 0.3s ease;
}

.mobile-menu-content ul a:hover {
  color: var(--orange);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25), transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.15), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.05); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 15px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  margin-bottom: 24px;
}

.logo-svg {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  animation: logoReveal 1.5s var(--ease-out-expo) forwards;
}

.logo-hex-outer {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawHex 2s var(--ease-out-expo) 0.3s forwards;
}

.logo-hex-mid {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawHex 2s var(--ease-out-expo) 0.6s forwards;
}

.logo-hex-inner {
  opacity: 0;
  animation: fadeScale 0.8s var(--ease-out-expo) 1s forwards;
}

.logo-shield {
  opacity: 0;
  animation: fadeScale 0.8s var(--ease-out-expo) 1.1s forwards;
}

.logo-arrow {
  opacity: 0;
  animation: fadeScaleUp 0.6s var(--ease-spring) 1.3s forwards;
}

@keyframes drawHex {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeScaleUp {
  from { opacity: 0; transform: translateY(10px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hero-title-line {
  color: var(--white);
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey-400);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out-expo) 1.3s forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll-indicator span {
  font-size: 0.75rem;
  color: var(--grey-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-400);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--grey-900) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text {
  max-width: 500px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--grey-200);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p {
  color: var(--grey-400);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  padding: 28px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-400);
  margin-top: 4px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--grey-900);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  font-size: 0.75rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 6px;
  color: var(--orange-light);
}

/* ============================================================
   WORK / PORTFOLIO SECTION
   ============================================================ */
.work {
  background: linear-gradient(180deg, var(--grey-900) 0%, var(--black) 100%);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  overflow: hidden;
}

.work-card-large {
  grid-column: span 2;
}

.work-card-image {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.work-card-large .work-card-image {
  height: 360px;
}

.work-card-info {
  padding: 24px 28px;
}

.work-category {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.work-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 8px 0;
}

.work-card-info p {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.5;
}

.work-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.work-tech span {
  padding: 3px 10px;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: var(--grey-300);
}

/* --- SVG Mockup images --- */
.work-mock {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-svg {
  width: 100%;
  max-width: 620px;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s var(--ease-out-expo), filter 0.5s ease;
}

.work-card:hover .mock-svg {
  transform: scale(1.03) translateY(-4px);
  filter: drop-shadow(0 16px 50px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(255, 107, 0, 0.06));
}

.mock-svg-phone {
  max-width: 160px;
}

.work-card-large .mock-svg {
  max-width: 680px;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--black);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(255, 107, 0, 0.1));
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-dot {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-dot span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
}

.process-card {
  flex: 1;
  padding: 28px;
}

.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.process-card p {
  color: var(--grey-400);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team {
  background: linear-gradient(180deg, var(--black) 0%, var(--grey-900) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  padding: 32px 24px;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

.team-avatar-svg {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease;
}

.team-card:hover .team-avatar-svg {
  transform: scale(1.05);
  border-color: var(--orange);
}

.avatar-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--grey-400);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  background: var(--grey-900);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px 28px;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-card p {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--grey-500);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--grey-900) 0%, var(--black) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px;
}

.contact-info .section-title {
  text-align: left;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-info p {
  color: var(--grey-400);
  margin-top: 16px;
  line-height: 1.6;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey-300);
  font-size: 0.9rem;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  width: 100%;
}

select.glass-input {
  color: var(--grey-500);
}

select.glass-input option {
  background: var(--grey-800);
  color: var(--white);
}

textarea.glass-input {
  resize: vertical;
  min-height: 100px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-pure);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--grey-500);
  font-size: 0.9rem;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a {
  display: block;
  color: var(--grey-500);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--grey-600);
  font-size: 0.82rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .logo-svg {
    width: 100px;
    height: 100px;
  }

  .section {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card-large {
    grid-column: span 1;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .process-line {
    left: 20px;
  }

  .process-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .process-dot span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--grey-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--grey-600);
}

/* ============================================================
   GLOSS/SHINE ANIMATION ON CARDS
   ============================================================ */
.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.glass-card:hover::after {
  transform: translateX(30%);
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

/* Position relative for cards that need the shimmer */
.service-card,
.stat-card,
.team-card,
.testimonial-card,
.work-card,
.process-card {
  position: relative;
  overflow: hidden;
}
