/* ============================================
   RESET & VARIABLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0A0C10;
  --surface: #111520;
  --surface-2: #1A1F2E;
  --accent: #00C2FF;
  --accent-dim: #0090BF;
  --text: #F0F4FF;
  --text-muted: #8A92A8;
  --border: #1E2538;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(0, 194, 255, 0.3);
  color: var(--white);
}

::-moz-selection {
  background: rgba(0, 194, 255, 0.3);
  color: var(--white);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 32px;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 64px 0;
  position: relative;
}

@media (min-width: 768px) {
  .container { padding: 0 64px; }
  .section { padding: 96px 0; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: var(--surface);
  border-bottom-color: var(--border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
}

.logo .htx {
  color: var(--white);
}

.nav-links {
  display: none;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 16, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
  color: var(--accent);
}

.mobile-nav-contact {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-contact a {
  font-size: 16px;
  color: var(--accent);
  font-weight: 400;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0D1525 0%, #0A0C10 70%);
  padding: 120px 24px 80px;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  color: rgba(255, 255, 255, 0.115);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 194, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
  animation: ambient-pulse 10s ease-in-out infinite alternate;
}

@keyframes ambient-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1.2;
    transform: scale(1.05);
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(0, 194, 255, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: sweep 6s linear infinite;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

@keyframes sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
  min-height: 1em;
}

.hero-word {
  display: inline-block;
  margin-right: 0.25em;
  opacity: 0;
  transform: translateY(60px);
  background: linear-gradient(110deg, var(--white) 35%, rgba(0, 240, 255, 0.75) 45%, var(--white) 50%, rgba(0, 240, 255, 0.75) 55%, var(--white) 65%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: text-shine 6s linear infinite;
}

@keyframes text-shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #001820;
  border: 1px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.45);
}


.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #001820;
}


.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.trust-pill .star {
  color: var(--accent);
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background-color: var(--surface);
  background-image: radial-gradient(rgba(0, 194, 255, 0.1) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-50%);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  background-color: #121827;
  box-shadow: 0 12px 40px rgba(0, 194, 255, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  width: 80%;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--text-muted);
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  color: var(--accent);
  transform: scale(1.12) translateY(-4px) rotate(3deg);
  filter: drop-shadow(0 0 8px rgba(0, 194, 255, 0.6));
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--accent);
}

.service-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-card:hover .service-copy {
  color: var(--text);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--surface);
  padding: 64px 0;
  position: relative;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
}

.stat-item {
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(0, 194, 255, 0.25);
  }
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 64px);
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.why-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.why-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  margin-top: 2px;
}

.feature-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.feature-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--surface);
  position: relative;
}

.process::before,
.process::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.process::before { top: 0; }
.process::after { bottom: 0; }

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border);
  transition: background-color 0.4s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 194, 255, 0.4);
  background: var(--surface-2);
  box-shadow: 0 12px 40px rgba(0, 194, 255, 0.1);
}

.process-step:hover::before {
  background: var(--accent);
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.process-step:hover .step-number {
  transform: translateY(-2px) scale(1.05);
}

.step-number::after {
  display: none !important;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  margin-top: 0;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: var(--accent);
}

.step-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  transition: color 0.3s ease;
}

.process-step:hover .step-copy {
  color: var(--text);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg);
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-row-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 3px;
}

.contact-row-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-row-value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}

.contact-row-value a {
  color: var(--text);
  transition: color 0.3s ease;
}

.contact-row-value a:hover {
  color: var(--accent);
}

.contact-credential {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.contact-actions .btn {
  flex: 1;
  min-width: 160px;
}

/* Form */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
}

@media (min-width: 768px) {
  .quote-form { padding: 40px 36px; }
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #161B2B;
}

.form-control::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238A92A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  text-align: center;
  padding: 60px 20px;
  opacity: 0;
}

.form-success-icon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.form-success-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-success-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #07090D;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 56px;
  }
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

.footer-col-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-list a {
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ============================================
   HERO BACKGROUND IMAGE
   ============================================ */
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.5) contrast(1.15) saturate(0.85);
}

/* ============================================
   PORTFOLIO / GALLERY
   ============================================ */
.portfolio {
  background: var(--bg);
  position: relative;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.portfolio-card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.portfolio-img-container {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.portfolio-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.portfolio-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(10, 12, 16, 0.85);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 194, 255, 0.2);
  text-transform: uppercase;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.portfolio-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero::after { animation: none; }
  .portfolio-card:hover .portfolio-img { transform: none; }
}