:root {
  /* ===== 深色奢華 ===== */
  --bg-dark: #0d0d0d;
  --bg-section: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-overlay: rgba(13,13,13,0.75);
  --gold: #c9a96e;
  --gold-light: #d4bc8b;
  --gold-dark: #a8894f;
  --gold-dim: rgba(201,169,110,0.15);
  --white: #ffffff;
  --text-light: #e8e6e1;
  --text-body: #b0afa9;
  --text-muted: #7a7974;
  --border-subtle: rgba(201,169,110,0.12);
  --border-card: rgba(201,169,110,0.18);
  --shadow-gold: rgba(201,169,110,0.08);
  --shadow-deep: rgba(0,0,0,0.5);
  --font-heading: 'Noto Serif TC', 'Noto Serif SC', serif;
  --font-body: 'Noto Sans TC', 'Noto Sans SC', sans-serif;
  --radius: 6px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.8;
  overflow-x: hidden;
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--gold); color: var(--bg-dark); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== SVG ICONS ===== */
svg.icon { width: 1.2em; height: 1.2em; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-brand {
  font-family: var(--font-heading); font-size: 1.05rem;
  color: var(--white); letter-spacing: 3px; font-weight: 400;
  display: flex; align-items: center; gap: 12px;
}
.nav-brand .brand-line {
  width: 24px; height: 1px; background: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--gold) !important; color: var(--gold) !important;
  padding: 8px 20px !important; letter-spacing: 1.5px !important;
  transition: var(--transition) !important; background: transparent !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--bg-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 20px; height: 1px; background: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 40px; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer;
  border: none; transition: var(--transition); font-family: inherit;
}
.btn-gold {
  background: var(--gold); color: var(--bg-dark);
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-outline-gold {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--bg-dark);
  box-shadow: 0 8px 30px rgba(201,169,110,0.2);
}
.btn-line {
  background: transparent; border: none; color: var(--gold);
  padding: 8px 0 !important; gap: 8px !important; font-size: 0.82rem;
  letter-spacing: 1px; text-transform: none;
}
.btn-line:hover { gap: 14px !important; color: var(--gold-light); }

/* ===== SECTION COMMON ===== */
section { padding: 110px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 500;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 18px; color: var(--white);
  font-weight: 400; letter-spacing: 1px;
  line-height: 1.35;
}
.section-desc {
  font-size: 0.95rem; color: var(--text-body); max-width: 560px;
  line-height: 1.9;
}
.gold-line {
  width: 56px; height: 2px; background: var(--gold); margin: 22px 0;
}
.alt-section { background: var(--bg-section); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: var(--bg-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/hero-banner.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.95) 100%);
}
#hero-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content {
  position: relative; z-index: 3; text-align: center;
  max-width: 900px; padding: 0 24px;
}
.hero-overline {
  font-size: 0.72rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px; font-weight: 500;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 28px;
  color: var(--white); letter-spacing: 2px;
}
.hero-title em {
  font-style: normal; color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  color: rgba(255,255,255,0.75); max-width: 600px;
  margin: 0 auto 44px; line-height: 1.9;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-note {
  margin-top: 32px; font-size: 0.72rem;
  color: rgba(255,255,255,0.4); letter-spacing: 1.5px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}

/* ===== PAIN SECTION ===== */
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.pain-grid.reverse { direction: rtl; }
.pain-grid.reverse > * { direction: ltr; }
.pain-img-wrap {
  position: relative; overflow: hidden;
}
.pain-img-wrap::before {
  content: ''; position: absolute; top: -8px; left: -8px;
  width: 60px; height: 60px; border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold); z-index: 1;
}
.pain-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.9) saturate(0.9); transition: var(--transition);
  border-radius: 2px;
}
.pain-img-wrap:hover img { filter: brightness(1) saturate(1); transform: scale(1.02); }
.pain-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 22px; color: var(--white);
  font-weight: 400; line-height: 1.4;
}
.pain-text p {
  color: var(--text-body); margin-bottom: 14px; line-height: 1.9;
}

/* ===== SERVICES ===== */
.services-section { background: var(--bg-section); }
.pain-section, .warm-section { background: var(--bg-section); }
.stat-card { padding: 28px 20px; }
.service-card { border: 1px solid var(--border-card); margin: -1px; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px;
}
.service-card {
  position: relative; padding: 48px 32px;
  border: 1px solid var(--border-card);
  transition: var(--transition); overflow: hidden;
  background: var(--bg-card);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.service-card:hover .service-icon { color: var(--gold); }
.service-num {
  font-size: 2.5rem; font-weight: 700; color: rgba(201,169,110,0.06);
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-heading);
  transition: color 0.4s;
}
.service-icon {
  width: 48px; height: 48px; color: var(--gold);
  margin-bottom: 28px; transition: var(--transition);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem; margin-bottom: 14px;
  font-weight: 400; letter-spacing: 1px;
  color: var(--white);
}
.service-card p {
  font-size: 0.88rem; color: var(--text-body); line-height: 1.9;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 56px;
}
.why-item { text-align: center; }
.why-icon {
  width: 68px; height: 68px; border: 1px solid var(--border-card);
  border-radius: 50%; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: var(--transition);
  background: transparent;
}
.why-icon svg { width: 24px; height: 24px; }
.why-item:hover .why-icon {
  background: var(--gold); border-color: var(--gold); color: var(--bg-dark);
  box-shadow: 0 0 30px rgba(201,169,110,0.2);
}
.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem; margin-bottom: 10px; font-weight: 400;
  letter-spacing: 1px; color: var(--white);
}
.why-item p { font-size: 0.85rem; color: var(--text-body); line-height: 1.8; }

/* ===== WHO FITS ===== */
.who-section {
  text-align: center; padding: 130px 0;
  background: var(--bg-dark); color: var(--white);
  position: relative; overflow: hidden;
}
.who-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.06);
  transform: translate(-50%, -50%);
}
.who-section::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 380px; height: 380px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.1);
  transform: translate(-50%, -50%);
}
.who-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 22px; position: relative; z-index: 1;
  color: var(--white); font-weight: 400; line-height: 1.4;
}
.who-section p {
  font-size: 1rem; color: var(--text-body);
  max-width: 640px; margin: 0 auto; line-height: 2;
  position: relative; z-index: 1;
}
.who-section .who-note {
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 28px; letter-spacing: 2px;
  position: relative; z-index: 1;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex; gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 30px; left: 48px; right: 48px;
  height: 1px; background: var(--border-card);
}
.process-step {
  flex: 1; text-align: center; padding: 0 20px;
  position: relative;
}
.process-dot {
  width: 12px; height: 12px; border: 1px solid var(--gold);
  border-radius: 50%; margin: 24px auto 22px;
  position: relative; background: var(--bg-section);
}
.process-dot::after {
  content: ''; position: absolute; inset: 3px;
  background: var(--gold); border-radius: 50%;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem; margin-bottom: 8px; font-weight: 400;
  letter-spacing: 1px; color: var(--white);
}
.process-step p {
  font-size: 0.82rem; color: var(--text-body);
}
.process-step .step-num {
  font-size: 0.65rem; color: var(--gold); letter-spacing: 2px;
  display: block; margin-bottom: 8px;
}

/* ===== RECRUIT BANNER ===== */
.recruit-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--bg-card); color: var(--white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.recruit-text {
  padding: 100px 56px; display: flex; flex-direction: column; justify-content: center;
}
.recruit-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 20px; color: var(--white);
  font-weight: 400; line-height: 1.4;
}
.recruit-text p {
  color: var(--text-body); margin-bottom: 32px;
  line-height: 1.9; font-size: 0.95rem;
}
.recruit-img { overflow: hidden; }
.recruit-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: var(--transition);
}
.recruit-img:hover img { filter: brightness(0.95) saturate(1) brightness(1.05); transform: scale(1.03); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 56px;
}
.gallery-item {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img {
  filter: brightness(0.9) saturate(1);
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 20%, rgba(13,13,13,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 20px; opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--white); font-size: 1rem; font-weight: 400;
  letter-spacing: 1px;
}
.gallery-sub {
  color: var(--gold); font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 4px;
}
.gallery-item::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover::after { width: 100%; }

/* ===== STATS ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-bottom: 72px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  color: var(--gold); font-weight: 400;
  line-height: 1; margin-bottom: 10px;
}
.stat-label {
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-img { position: relative; }
.about-img img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
}
.about-img::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 100px; height: 100px; border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 20px; color: var(--white);
  font-weight: 400; line-height: 1.4;
}
.about-text p {
  color: var(--text-body); margin-bottom: 16px; line-height: 1.9;
}
.about-stats {
  display: flex; gap: 48px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid var(--border-subtle);
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem; color: var(--gold); font-weight: 400; line-height: 1;
}
.about-stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 1px; margin-top: 6px;
}

/* ===== RECRUIT BENEFITS ===== */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 56px;
}
.benefit-card {
  padding: 40px; border: 1px solid var(--border-card);
  transition: var(--transition); background: var(--bg-card);
}
.benefit-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  background: var(--bg-card-hover);
}
.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem; margin-bottom: 14px;
  display: flex; align-items: center; gap: 14px;
  font-weight: 400; letter-spacing: 1px;
  color: var(--white);
}
.benefit-card h4 svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.benefit-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.9; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  padding: 26px 0; cursor: pointer; font-size: 0.95rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.3s; font-weight: 400; letter-spacing: 0.5px;
  color: var(--white);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-toggle {
  width: 28px; height: 28px; border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.faq-item.open .faq-q .faq-toggle { background: var(--gold); border-color: var(--gold); }
.faq-item.open .faq-q .faq-toggle svg { color: var(--bg-dark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 0 0 24px; font-size: 0.88rem;
  color: var(--text-body); line-height: 1.9;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 64px;
  margin-top: 56px;
}
.contact-form { padding: 0; }
.form-tabs { display: flex; border-bottom: 1px solid var(--border-card); margin-bottom: 40px; }
.form-tab {
  padding: 14px 28px; font-size: 0.8rem; letter-spacing: 1px;
  cursor: pointer; font-family: inherit; font-weight: 400;
  color: var(--text-muted); border: none; background: none;
  transition: var(--transition); position: relative;
}
.form-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.3s;
}
.form-tab.active { color: var(--gold); }
.form-tab.active::after { width: 100%; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 10px;
}
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--border-card);
  font-size: 0.95rem; font-family: inherit;
  background: transparent; color: var(--white);
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.form-group textarea { min-height: 80px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-footer {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 18px;
  font-style: italic;
}
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; margin-bottom: 40px; color: var(--white);
  font-weight: 400;
}
.contact-card {
  display: flex; gap: 18px; padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-card-icon {
  width: 42px; height: 42px; border: 1px solid var(--border-card);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold);
}
.contact-card-icon svg { width: 16px; height: 16px; }
.contact-card h4 {
  font-size: 0.85rem; margin-bottom: 4px; font-weight: 400;
  letter-spacing: 0.5px; color: var(--white);
}
.contact-card p { font-size: 0.85rem; color: var(--text-body); }

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center; padding: 130px 0;
  background: var(--bg-section); color: var(--white);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border-subtle);
}
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px; color: var(--white);
  font-weight: 400; line-height: 1.4;
}
.final-cta p {
  font-size: 0.95rem; color: var(--text-body);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.9;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark); color: var(--text-muted);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-subtle);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-brand h3 {
  color: var(--white); font-size: 1.05rem; margin-bottom: 16px;
  letter-spacing: 2px; font-weight: 400; font-family: var(--font-heading);
}
.footer-brand p { font-size: 0.85rem; line-height: 1.9; color: var(--text-body); }
footer h4 {
  color: var(--gold); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px; font-weight: 500;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a {
  font-size: 0.85rem; transition: color 0.3s; color: var(--text-body);
}
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 0; text-align: center;
  font-size: 0.72rem; color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border: 1px solid var(--border-card); margin: -1px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98); z-index: 999;
    justify-content: center; gap: 28px;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--white); }
  .container { padding: 0 20px; }
  .pain-grid, .pain-grid.reverse, .contact-grid, .about-grid,
  .recruit-banner, .benefits-grid { grid-template-columns: 1fr; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .btn { padding: 14px 28px; font-size: 0.78rem; width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .recruit-text { padding: 56px 20px; }
  .who-section { padding: 72px 20px; }
  .about-stats { flex-direction: column; gap: 24px; }
}
