/* ============================================================
   JUAN LMM LLC — style.css
   Dark theme · Amber (#f59e0b) + Rose (#f43f5e) gradient
   ============================================================ */

:root {
  --bg: #0b0d12;
  --bg-alt: #10131b;
  --bg-card: #161a24;
  --bg-card-hover: #1c2130;
  --border: #262c3d;
  --text: #e7e9f0;
  --text-dim: #9aa3b8;
  --text-faint: #6b7280;
  --primary: #f59e0b;
  --primary-soft: rgba(245, 158, 11, 0.12);
  --secondary: #f43f5e;
  --secondary-soft: rgba(244, 63, 94, 0.12);
  --gradient: linear-gradient(135deg, #f59e0b 0%, #fb7185 55%, #f43f5e 100%);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--secondary); }

ul { list-style: none; }

/* ---------- Navigation ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38, 44, 61, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
  background: rgba(11, 13, 18, 0.97);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  border-radius: 12px;
  background: var(--gradient);
  color: #0b0d12;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: block;
  padding: 9px 16px;
  border-radius: 10px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); background: rgba(255, 255, 255, 0.06); }

.nav-links a.contact-btn {
  background: var(--gradient);
  color: #0b0d12;
  font-weight: 700;
  margin-left: 8px;
}

.nav-links a.contact-btn:hover,
.nav-links a.contact-btn.active {
  background: var(--gradient);
  color: #0b0d12;
  filter: brightness(1.1);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  background: var(--gradient);
  color: #0b0d12;
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(244, 63, 94, 0.42); color: #0b0d12; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 18% 20%, rgba(245, 158, 11, 0.14), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(244, 63, 94, 0.14), transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-content { max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.1;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 96px 0;
}

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

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

.section-header { max-width: 720px; margin-bottom: 56px; }

.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--secondary-soft);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.section-desc {
  color: var(--text-dim);
  font-size: 1.06rem;
}

/* ---------- Feature / service cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gradient);
  color: #0b0d12;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p { color: var(--text-dim); font-size: 0.98rem; }

.feature-card ul { margin-top: 14px; display: grid; gap: 8px; }
.feature-card ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 0.94rem;
}
.feature-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--gradient);
}

/* ---------- About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.split-text p { color: var(--text-dim); margin-bottom: 18px; }

.check-list { display: grid; gap: 12px; margin-top: 10px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 7px;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 3px;
}

/* Visual panel (creative element) */
.visual-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.visual-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.visual-window-bar span {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #333a4d;
}
.visual-window-bar span:nth-child(1) { background: #f43f5e; }
.visual-window-bar span:nth-child(2) { background: #f59e0b; }
.visual-window-bar span:nth-child(3) { background: #34d399; }

.visual-body { padding: 26px 24px; display: grid; gap: 14px; }

.visual-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-row .v-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gradient);
}

.visual-row .v-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.visual-row .v-line.short { width: 55%; }
.visual-row .v-line.mid { width: 78%; }

.visual-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---------- Process / steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-step:hover { transform: translateY(-5px); border-color: rgba(244, 63, 94, 0.45); }

.step-number {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gradient);
  color: #0b0d12;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.process-step h4 { font-size: 1.08rem; margin-bottom: 10px; }
.process-step p { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Industries ---------- */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-tag {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.industry-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.08;
}

.cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-box p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 34px; }

/* ---------- Page banner ---------- */
.page-banner {
  padding: calc(var(--nav-h) + 70px) 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 55% 60% at 50% 0%, rgba(245, 158, 11, 0.1), transparent 60%),
    var(--bg);
}

.page-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-banner h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-banner p {
  color: var(--text-dim);
  font-size: 1.08rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- Content pages (legal / about) ---------- */
.content-page { padding: 72px 0 110px; }

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

.content-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 36px;
  margin-bottom: 26px;
}

.content-section h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}

.content-section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 64px; height: 2px;
  background: var(--gradient);
}

.content-section h3 { font-size: 1.15rem; margin: 20px 0 10px; }

.content-section p { color: var(--text-dim); margin-bottom: 14px; }

.content-section ul { margin: 12px 0 18px; display: grid; gap: 10px; }

.content-section ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-dim);
}

.content-section ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 10px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--gradient);
}

.content-section strong { color: var(--text); }

/* ---------- Service detail pages ---------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: var(--shadow);
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--gradient);
  color: #0b0d12;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-detail-card > p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 6px; }

.service-detail-card ul { margin-top: 14px; display: grid; gap: 8px; }

.service-detail-card ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 0.94rem;
}

.service-detail-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 3px;
  background: var(--gradient);
}

.delivery-model {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 0;
  border-top: 1px solid var(--border);
}

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

.delivery-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.delivery-step:hover { transform: translateY(-5px); border-color: rgba(244, 63, 94, 0.45); }

.delivery-step h4 { font-size: 1.06rem; margin-bottom: 10px; }

.delivery-step p { color: var(--text-dim); font-size: 0.93rem; }

/* ---------- Team (role cards, no names) ---------- */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.team-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.team-page-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(245, 158, 11, 0.45);
}

.team-avatar {
  width: 74px; height: 74px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #0b0d12;
  font-size: 1.7rem;
}

.team-role {
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--text);
}

.team-desc { color: var(--text-dim); font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info > p { color: var(--text-dim); margin-bottom: 28px; }

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.contact-card:hover { border-color: rgba(245, 158, 11, 0.4); transform: translateX(4px); }

.contact-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.contact-value { color: var(--text); font-weight: 600; }
.contact-value a { color: var(--primary); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px 36px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-textarea { min-height: 150px; resize: vertical; }

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #34d399;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-success.show { display: block; }

/* ---------- Footer ---------- */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p { color: var(--text-dim); font-size: 0.95rem; margin-top: 16px; max-width: 300px; }

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-links ul { display: grid; gap: 10px; }

.footer-links a { color: var(--text-dim); font-size: 0.94rem; }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p { color: var(--text-faint); font-size: 0.88rem; }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-faint); font-size: 0.88rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .split { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 13, 18, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 6px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a { padding: 13px 16px; font-size: 1rem; }
  .nav-links a.contact-btn { margin-left: 0; margin-top: 6px; text-align: center; }

  .hero-stats { gap: 28px; }
  .stat-item h3 { font-size: 1.6rem; }

  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-section { padding: 26px 22px; }
  .contact-form { padding: 28px 22px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 18px; }
  .container, .hero-container { padding: 0 18px; }
  .hero-actions .btn { width: 100%; }
}
