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

:root {
  --bg-0: #050505;
  --bg-1: #0a0a0a;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(232, 115, 42, 0.2);
  --orange: #e8732a;
  --orange-light: #f5a623;
  --orange-glow: rgba(232, 115, 42, 0.12);
  --text-primary: #ededed;
  --text-secondary: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.28);
  --font-zh: 'Noto Sans TC', sans-serif;
  --font-en: 'Inter', sans-serif;
}

html {
  scroll-behavior: auto;
}

html.fp-scroll {
  overflow: hidden;
}

html.fp-scroll body {
  overflow: hidden;
}

body {
  font-family: var(--font-zh);
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.accent { color: var(--orange); }
.text-center { text-align: center; }

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text-zh {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.2;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.3s;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s;
  border-radius: 1px;
}

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

.hero-img-bg {
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') center center / cover no-repeat;
  animation: heroZoom 25s ease infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.75) 0%,
      rgba(5, 5, 5, 0.45) 35%,
      rgba(5, 5, 5, 0.35) 50%,
      rgba(5, 5, 5, 0.55) 75%,
      rgba(5, 5, 5, 0.92) 100%
    );
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--orange-light);
  border: 1px solid rgba(232,115,42,0.35);
  padding: 8px 28px;
  border-radius: 50px;
  margin-bottom: 48px;
  background: rgba(5, 5, 5, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

/* ===== Geometric Title ===== */
.hero-title-wrap {
  position: relative;
  display: inline-block;
  padding: 20px 0;
  margin-bottom: 20px;
}

.hero-title-main {
  position: relative;
  z-index: 1;
  font-family: 'Orbitron', var(--font-en);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1.3;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.title-line-1,
.title-line-2 {
  display: block;
}

.title-line-2 {
  margin-top: 4px;
}

.title-gap {
  display: inline-block;
  width: 0.35em;
}

.geo-letter {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s ease;
  animation: letterReveal 0.6s ease forwards;
  opacity: 0;
  transform: translateY(24px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.geo-letter:hover {
  color: var(--orange-light);
  transform: translateY(-4px) scale(1.08);
  text-shadow: 0 0 40px rgba(232, 115, 42, 0.6), 0 0 80px rgba(232, 115, 42, 0.3);
}

.accent-letter {
  color: var(--orange) !important;
  text-shadow: 0 0 30px rgba(232, 115, 42, 0.4), 0 2px 20px rgba(0, 0, 0, 0.5);
}

.accent-letter:hover {
  color: var(--orange-light) !important;
  text-shadow: 0 0 50px rgba(245, 166, 35, 0.6), 0 0 100px rgba(232, 115, 42, 0.3);
}

/* Stagger letter reveals */
.title-line-1 .geo-letter:nth-child(1)  { animation-delay: 0.05s; }
.title-line-1 .geo-letter:nth-child(2)  { animation-delay: 0.10s; }
.title-line-1 .geo-letter:nth-child(3)  { animation-delay: 0.15s; }
.title-line-1 .geo-letter:nth-child(4)  { animation-delay: 0.20s; }
.title-line-1 .geo-letter:nth-child(5)  { animation-delay: 0.25s; }
.title-line-1 .geo-letter:nth-child(6)  { animation-delay: 0.30s; }
.title-line-1 .geo-letter:nth-child(7)  { animation-delay: 0.35s; }
.title-line-1 .geo-letter:nth-child(9)  { animation-delay: 0.45s; }
.title-line-1 .geo-letter:nth-child(10) { animation-delay: 0.50s; }
.title-line-1 .geo-letter:nth-child(11) { animation-delay: 0.55s; }
.title-line-1 .geo-letter:nth-child(12) { animation-delay: 0.60s; }

.title-line-2 .geo-letter:nth-child(1)  { animation-delay: 0.70s; }
.title-line-2 .geo-letter:nth-child(2)  { animation-delay: 0.75s; }
.title-line-2 .geo-letter:nth-child(3)  { animation-delay: 0.80s; }
.title-line-2 .geo-letter:nth-child(4)  { animation-delay: 0.85s; }
.title-line-2 .geo-letter:nth-child(5)  { animation-delay: 0.90s; }
.title-line-2 .geo-letter:nth-child(6)  { animation-delay: 0.95s; }
.title-line-2 .geo-letter:nth-child(7)  { animation-delay: 1.00s; }
.title-line-2 .geo-letter:nth-child(9)  { animation-delay: 1.10s; }
.title-line-2 .geo-letter:nth-child(10) { animation-delay: 1.15s; }
.title-line-2 .geo-letter:nth-child(11) { animation-delay: 1.20s; }
.title-line-2 .geo-letter:nth-child(12) { animation-delay: 1.25s; }
.title-line-2 .geo-letter:nth-child(13) { animation-delay: 1.30s; }
.title-line-2 .geo-letter:nth-child(14) { animation-delay: 1.35s; }
.title-line-2 .geo-letter:nth-child(15) { animation-delay: 1.40s; }

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glowing underline */
.hero-title-main::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), var(--orange), transparent);
  background-size: 200% 100%;
  animation: glowLine 3s ease infinite;
  box-shadow: 0 0 20px rgba(232, 115, 42, 0.3);
}

@keyframes glowLine {
  0%   { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.hero-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 32px auto;
}

.hero-slogan-zh {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 8px;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 4px;
  font-style: italic;
  margin-bottom: 36px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  margin-bottom: 44px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Hero bottom stats */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  border-top: 1px solid rgba(232, 115, 42, 0.15);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 28px 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-en);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

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

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

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
  font-family: var(--font-zh);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: #d4661f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,115,42,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 15px 28px;
}

.btn-ghost:hover {
  color: var(--orange);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn-ghost:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-secondary);
  padding: 12px 28px;
}

.btn-outline-light:hover {
  border-color: var(--orange);
  color: var(--orange);
}

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

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ========== Section Common ========== */
.section {
  padding: 120px 0;
  position: relative;
  background: var(--bg-1);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section > .container {
  width: 100%;
}

.section-darker {
  background: var(--bg-0);
}

.section-label {
  display: block;
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0;
}

.section-bar {
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
}

.section-bar.center {
  margin-left: auto;
  margin-right: auto;
}

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

.section-header .section-label {
  text-align: center;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== About ========== */
.section-about {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.about-bg-img {
  position: absolute;
  inset: 0;
  background: url('/images/about-bg.jpg') center center / cover no-repeat;
  animation: aboutZoom 30s ease infinite alternate;
}

@keyframes aboutZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.82) 40%,
      rgba(5, 5, 5, 0.6) 70%,
      rgba(5, 5, 5, 0.45) 100%
    );
  z-index: 1;
}

.section-about > .container {
  position: relative;
  z-index: 2;
}

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

.about-left .section-label { text-align: left; }
.about-left .section-heading { text-align: left; }

.about-lead {
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.about-left .btn-outline-light {
  margin-top: 20px;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s;
}

.about-feature-card:hover {
  border-color: var(--border-hover);
  background: rgba(10, 10, 10, 0.85);
}

.afc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: 10px;
  color: var(--orange);
}

.about-feature-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ========== Services ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 28px 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.sc-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: 12px;
  color: var(--orange);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
}

.sc-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  line-height: 1;
}

/* ========== Cases ========== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.cc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cc-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: 12px;
  color: var(--orange);
}

.cc-tag {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--orange);
  border: 1px solid rgba(232,115,42,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
}

.case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--text-primary);
  font-weight: 600;
}

.case-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.85;
  flex: 1;
}

.cc-meta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.cc-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,115,42,0.08), rgba(5,5,5,0.95));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s;
}

.ci-card:hover {
  border-color: var(--border-hover);
}

.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-glow);
  border-radius: 10px;
  color: var(--orange);
}

.ci-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.ci-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text-primary);
  font-family: var(--font-zh);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: vertical;
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 64px 0 48px;
}

.footer-slogan {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
  letter-spacing: 2px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-en);
}

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

@media (max-width: 768px) {
  .hero-title-main {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .geo-deco { display: none; }

  .hero-slogan-zh {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 6px 16px;
  }

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

  .hero-bottom-inner {
    gap: 24px;
    padding: 20px 0;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .scroll-hint { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a::after { display: none; }

  .nav-toggle {
    display: flex;
  }

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 80px 0;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
