/* ================================================================
   MAXLEEN — Professional Hiring & Resource Management
   styles.css
   ================================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --navy-900: #060d1f;
  --navy-800: #0d1b3e;
  --navy-700: #122352;
  --navy-600: #1a3068;
  --navy-500: #24407a;
  --gold-500:  #c9a84c;
  --gold-400:  #dfc06e;
  --gold-300:  #edd99a;
  --white:     #ffffff;
  --off-white: #f7f8fc;
  --gray-100:  #eef0f6;
  --gray-200:  #d8dce8;
  --gray-400:  #9098b1;
  --gray-600:  #555e7a;
  --gray-800:  #2a2f42;

  --font-display: 'Playfair Display', 'Noto Serif TC', Georgia, serif;
  --font-body:    'Inter', 'Noto Serif TC', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Traditional Chinese typography tweak */
[data-lang="zh"] body,
[data-lang="zh"] * {
  font-family: 'Noto Serif TC', 'Inter', system-ui, sans-serif;
  letter-spacing: .04em;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section { padding: 100px 0; }

.gold { color: var(--gold-500); }

/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--transition), transform .65s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 13, 31, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
  flex-shrink: 0;
}
.logo-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 10px rgba(201,168,76,.35));
  transition: filter var(--transition), transform var(--transition);
}
.nav-logo:hover .logo-icon {
  filter: drop-shadow(0 4px 16px rgba(201,168,76,.55));
  transform: rotate(5deg) scale(1.05);
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
}

.logo-max  { color: var(--white); }
.logo-leen { color: var(--gold-500); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.lang-toggle:hover { border-color: var(--gold-500); background: rgba(201,168,76,.1); }
.lang-divider { opacity: .4; }
.lang-en, .lang-zh { transition: color var(--transition); }
.lang-en.active, .lang-zh.active { color: var(--gold-400); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(36,64,122,.6) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, #0e2048 100%);
}

/* Animated grid pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Glow orbs */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,13,31,.7) 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  left: 50%; top: 6px;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--navy-800);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, transparent 60%);
}

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

.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--gold-500);
  opacity: .5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about { background: var(--off-white); }

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

.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 520px;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-500));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(201,168,76,.15) 0%, transparent 60%),
    linear-gradient(145deg, rgba(255,255,255,.05) 0%, transparent 50%);
}
.about-img-placeholder {
  position: relative;
  z-index: 1;
  font-size: 7rem;
  color: rgba(201,168,76,.4);
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.about-badge i {
  font-size: 1.8rem;
  color: var(--gold-500);
}
.about-badge strong {
  display: block;
  font-size: .95rem;
  color: var(--navy-800);
  font-weight: 700;
}
.about-badge span {
  font-size: .78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-text .section-eyebrow,
.about-text .section-title {
  text-align: left;
  justify-content: flex-start;
}
.about-text .section-eyebrow::before { display: none; }
.about-text .section-title { margin-bottom: 20px; }

.about-desc {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-pillars {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-pillars li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy-800);
}
.about-pillars li i {
  color: var(--gold-500);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services { background: var(--white); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(26,48,104,.02) 0%, transparent 60%);
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(13,27,62,.2);
}
.service-icon i {
  font-size: 1.4rem;
  color: var(--gold-400);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 20px;
  letter-spacing: .02em;
}

/* ================================================================
   WHY US
   ================================================================ */
.why-us {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, #0e1f4a 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(26,48,104,.5) 0%, transparent 45%);
}
.why-us .section-title { color: var(--white); }
.why-us .section-sub   { color: rgba(255,255,255,.55); }

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

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.3);
}

.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon i {
  font-size: 1.3rem;
  color: var(--gold-400);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ================================================================
   INDUSTRIES
   ================================================================ */
.industries { background: var(--off-white); }

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}
.industry-pill i {
  color: var(--gold-500);
  font-size: .95rem;
}
.industry-pill:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.industry-pill:hover i { color: var(--gold-400); }

/* ================================================================
   CONTACT
   ================================================================ */
.contact { background: var(--white); }

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

.contact-info .section-eyebrow,
.contact-info .section-title {
  text-align: left;
  justify-content: flex-start;
}
.contact-info .section-eyebrow::before { display: none; }
.contact-info .section-title { margin-bottom: 16px; }

.contact-desc {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item i {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: var(--gold-400);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.contact-item span {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 10px;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  padding: 14px;
  background: rgba(39,174,96,.08);
  border: 1px solid rgba(39,174,96,.25);
  border-radius: var(--radius-sm);
  color: #1a7a43;
  font-weight: 600;
  font-size: .9rem;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.1rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}
.footer-url {
  font-size: .8rem;
  color: var(--gold-500) !important;
  margin-top: 4px;
  letter-spacing: .04em;
}

.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--gold-400); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

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

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Navbar */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: rgba(6,13,31,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .lang-toggle { font-size: .75rem; padding: 5px 12px; }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-content { padding-top: 100px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .about-badge { bottom: -16px; right: -8px; padding: 14px 16px; }

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

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; padding-bottom: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 16px 0; }
}
