:root {
  --navy: #0A1526;
  --navy-light: #1A2B42;
  --navy-dark: #050B14;
  --gold: #F4B942;
  --gold-light: #F7C55C;
  --ink: #0B1B2B;
  --stone: #f8fafc;
  --muted: #475569;
  --radius: 16px;
  --radius-large: 24px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gradient-bg: linear-gradient(135deg, #0A1526 0%, #1A2B42 25%, #2A3B52 50%, #1A2B42 75%, #0A1526 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 21, 38, 0.95) 0%, rgba(26, 43, 66, 0.9) 50%, rgba(42, 59, 82, 0.85) 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--gradient-bg);
  background-attachment: fixed;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.section {
  padding: 40px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

/* HEADER */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.nav__brand:hover {
  transform: translateY(-1px);
}

.nav__brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.nav__brand img:hover {
  box-shadow: var(--shadow-large);
}

.nav__brand .title {
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  gap: 8px;
}

.nav__links a {
  padding: 12px 20px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.nav__links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.1), rgba(10, 21, 38, 0.05));
  border-radius: var(--radius);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__links a:hover::before,
.nav__links a.active::before {
  opacity: 1;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav__cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow) !important;
  border: 2px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__cta:hover::before {
  opacity: 1;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.nav__burger:hover {
  background: rgba(244, 185, 66, 0.1);
}

.mobile-menu {
  display: none;
}

@media (max-width: 968px) {
  .nav__links {
    display: none;
  }
  
  .nav__burger {
    display: block;
  }
  
  .mobile-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 20px 0;
  }
  
  .mobile-menu.open {
    display: block;
  }
  
  .mobile-menu a {
    display: block;
    padding: 16px 24px;
    color: var(--muted);
    font-weight: 600;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
  }
  
  .mobile-menu a:hover {
    background: rgba(244, 185, 66, 0.05);
    color: var(--navy);
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(244, 185, 66, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244, 185, 66, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(244, 185, 66, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-large);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  filter: brightness(1.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .blob {
  position: absolute;
  inset: -60px;
  width: 400px;
  height: 400px;
  opacity: 0.1;
  filter: blur(1px);
  z-index: 1;
}

.hero .art img:not(.blob) {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.hero .art img:not(.blob):hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 968px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero {
    min-height: 80vh;
  }
  
  .hero-cta {
    justify-content: center;
  }
}

/* VALUE CARDS */
.cards {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-large);
  padding: 24px 20px;
  box-shadow: var(--shadow-large);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244, 185, 66, 0.3);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
  line-height: 1.3;
}

.card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
  margin: 0;
}

.pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.span-4 {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 32px 24px;
  }
}

/* STEPS/PROCESS */
.steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  text-align: center;
  position: relative;
}

.step .n {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 800;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-large);
  transition: all 0.3s ease;
}

.step:hover .n {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.step h4 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
}

.step p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 15px;
}

/* DIVIDER */
.hr {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 185, 66, 0.3) 50%, transparent 100%);
  margin: 30px 0;
}

/* BAND/CTA SECTION */
.band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-large);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 70% 30%, rgba(244, 185, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.band h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: white;
}

.band > div:first-child {
  flex: 1;
  position: relative;
  z-index: 2;
}

.band > div:first-child div {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.5;
}

.band .btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .band {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
}

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(244, 185, 66, 0.5) 50%, transparent 100%);
}

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

.footer h4 {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-top: 16px;
  font-size: 15px;
}

.copy {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .hero {
    min-height: 70vh;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: clamp(28px, 8vw, 48px);
  }
  
  .sub {
    font-size: 16px;
  }
  
  .nav {
    height: 70px;
  }
  
  .mobile-menu {
    top: 70px;
  }
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.step {
  animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* CONTACT PAGE STYLES */
.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-large);
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.contact-form h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.1);
}

.contact-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  padding: 40px 32px;
  color: white;
  height: fit-content;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: white;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item strong {
  display: block;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.contact-item a:hover {
  color: var(--gold);
}

/* WORK PAGE STYLES */
.work-grid {
  display: grid;
  gap: 30px;
}

.work-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all 0.3s ease;
  color: white;
  display: block;
}

.work-image {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-dark);
}

.work-image video,
.work-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
}

.work-content {
  padding: 32px;
}

.work-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 16px 0 16px;
}

.work-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}

.work-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.work-features span {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  padding: 40px 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

/* ABOUT PAGE STYLES */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.mission-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.mission-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.approach-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.approach-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.approach-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* RESPONSIVE IMPROVEMENTS */
@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .contact-info {
    padding: 32px 24px;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

/* Work Page Styles */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.portfolio-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 64px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.work-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: all 0.3s ease;
  color: white;
}

.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.work-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2b42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-icon {
  font-size: 48px;
}

.work-content {
  padding: 32px;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.work-category {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.work-year {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.work-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.work-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.result-item {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.industry-item {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  text-align: center;
  color: white;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.industry-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.industry-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-large);
  padding: 32px;
  color: white;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.author-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Work Page Mobile Styles */
@media (max-width: 968px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  
  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 24px 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .work-content {
    padding: 24px;
  }
  
  .work-results {
    grid-template-columns: 1fr;
  }
  
  .industry-item {
    padding: 24px 20px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}

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