@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Sora:wght@700;800&display=swap');

:root {
  --black:       #080808;
  --surface:     #0e0e0e;
  --border:      rgba(255, 255, 255, 0.12); /* Increased from 0.07 */
  --border-md:   rgba(255, 255, 255, 0.20); /* Increased from 0.14 */
  --white:       #ffffff;
  --muted:       #888888; /* Significantly lightened from #444444 */
  --dim:         #4a4a4a; /* Lightened from #2a2a2a for better icon/border visibility */
  --wa-green:    #25D366;
}

/* ── RESET ── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

/* ════════════════════════════════
   KEYFRAMES
═══════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50%       { opacity: 1;   box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

@keyframes pulseWA {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.65); }
  65%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes shimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}

@keyframes navLinkIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
  50%       { box-shadow: 0 0 18px 2px rgba(255,255,255,0.08); }
}

@keyframes underlineExpand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

@keyframes statFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes borderFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

@keyframes ripple {
  0%   { transform: scale(0); opacity: 0.4; }
  100% { transform: scale(4); opacity: 0; }
}

/* ════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015),
    transparent 70%);
  z-index: 0;
  transition: transform 0.08s linear;
}

/* ════════════════════════════════
   NAVBAR
═══════════════════════════════════ */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  height: 68px;
  position: fixed;
  width: 100%; top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 0.5px solid var(--border);
  animation: fadeDown 0.6s ease both;
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Navbar scrolled state — add via JS: navbar.classList.add('scrolled') */
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  border-bottom-color: rgba(255,255,255,0.1);
}

/* ── Logo ── */
.logo {
  font-family: 'Sora', sans-serif;
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
  display: flex; align-items: center; gap: 2px;
  position: relative;
  transition: opacity 0.25s ease;
}

.logo span { color: rgba(255,255,255,0.2); }

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 0.5px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.logo:hover { opacity: 0.75; }
.logo:hover::after { transform: scaleX(1); }

/* ── Nav links ── */
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
}

.nav-links li {
  display: flex;
  align-items: center;
  position: relative;
}

/* Stagger each link in */
.nav-links li:nth-child(1) { animation: navLinkIn 0.5s ease 0.15s both; }
.nav-links li:nth-child(2) { animation: navLinkIn 0.5s ease 0.23s both; }
.nav-links li:nth-child(3) { animation: navLinkIn 0.5s ease 0.31s both; }
.nav-links li:nth-child(4) { animation: navLinkIn 0.5s ease 0.39s both; }
.nav-links li:nth-child(5) { animation: navLinkIn 0.5s ease 0.47s both; }

.nav-links a {
  color: #555;
  text-decoration: none;
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.1px;
  padding: 0 20px;
  height: 100%;
  display: flex; align-items: center;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

/* Bottom border slide-in on hover */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20px;
  width: calc(100% - 40px);
  height: 1.5px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover { color: rgba(255,255,255,0.85); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Active state */
.nav-links a.active {
  color: var(--white);
}
.nav-links a.active::after {
  transform: scaleX(1);
  background: rgba(255,255,255,0.5);
}

/* Dot indicator on hover */
.nav-links a::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover::before {
  transform: translateX(-50%) scale(1);
}

/* ── Nav CTA button ── */
.nav-cta {
  background: var(--white);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: navLinkIn 0.5s ease 0.55s both;
}

/* Shimmer on CTA */
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg,
    transparent,
    rgba(0,0,0,0.08) 45%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.08) 55%,
    transparent);
  transform: skewX(-15deg);
  transition: left 0s;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
}

.nav-cta:hover::before {
  animation: shimmer 0.55s ease forwards;
}

.nav-cta:active {
  transform: translateY(0px);
  box-shadow: none;
}

/* Ripple effect on click */
.nav-cta .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  width: 80px; height: 80px;
  margin-top: -40px; margin-left: -40px;
  animation: ripple 0.55s ease-out forwards;
  pointer-events: none;
}

/* ════════════════════════════════
   MOBILE HAMBURGER
═══════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.05); }

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #777;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, background 0.25s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--white); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--white); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0;
  width: 100%; 
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 0.5px solid var(--border);
  padding: 24px 8% 32px;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  display: block;
  color: #555;
  text-decoration: none;
  font-size: 20px; font-weight: 300;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
  transition: color 0.25s, padding-left 0.25s;
  letter-spacing: -0.3px;
}

.mobile-menu a:hover {
  color: var(--white);
  padding-left: 8px;
}

.mobile-menu .mob-cta {
  display: block;
  margin-top: 24px;
  background: var(--white);
  color: var(--black);
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mobile-menu .mob-cta:hover { opacity: 0.88; padding-left: 0; }

/* ════════════════════════════════
   HERO
═══════════════════════════════════ */
#home.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 10% 100px;
  position: relative;
  overflow: hidden;
}

#nodesCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.hero > div { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid var(--dim);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.2s both;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.hero-badge:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.badge-text {
  font-size: 11px; color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 72px; font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero h1 em { color: #2e2e2e; font-style: normal; }

.hero > div > p {
  color: var(--muted);
  font-size: 16px; font-weight: 300;
  line-height: 1.85;
  max-width: 420px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease 0.5s both;
}

/* ════════════════════════════════
   BUTTONS
═══════════════════════════════════ */
.btns {
  margin-top: 40px;
  display: flex; gap: 12px;
  justify-content: center; align-items: center;
  animation: fadeUp 0.8s ease 0.62s both;
}

.btn {
  padding: 13px 28px;
  border-radius: 9px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.btn:active::after {
  width: 200px; height: 200px;
  opacity: 0;
}

.primary {
  background: var(--white);
  color: var(--black);
  border: none;
}

.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255,255,255,0.12), 0 4px 12px rgba(255,255,255,0.07);
  opacity: 0.92;
}

.primary:active { transform: translateY(-1px); box-shadow: none; }

.ghost {
  background: transparent;
  color: var(--muted);
  border: 0.5px solid var(--dim);
}

.ghost:hover {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.03);
}

/* ════════════════════════════════
   HERO STATS
═══════════════════════════════════ */
.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 72px;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  animation: fadeUp 0.9s ease 0.78s both;
}

.stat {
  flex: 1; padding: 22px 0;
  text-align: center;
  border-right: 0.5px solid var(--border);
  transition: background 0.3s;
}

.stat:nth-child(1) { animation: statFadeUp 0.6s ease 0.9s both; }
.stat:nth-child(2) { animation: statFadeUp 0.6s ease 1.05s both; }
.stat:nth-child(3) { animation: statFadeUp 0.6s ease 1.2s both; }
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.02); }

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -1px; color: var(--white);
}

.stat-label {
  font-size: 11px; color: #333;
  margin-top: 4px; letter-spacing: 0.3px;
}

/* ════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
section {
  padding: 120px 8% 100px;
  position: relative; z-index: 2;
}

.section-label {
  font-size: 11px; color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center; margin-bottom: 14px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 38px; font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--white);
}

/* ════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-text {
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
  font-weight: 300;
}

/* ════════════════════════════════
   CARDS
═══════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.card {
  background: var(--black);
  padding: 36px 32px;
  transition: background 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.025) 45%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.025) 55%,
    transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}

.card:hover { background: var(--surface); }
.card:hover::before { animation: shimmer 0.65s ease forwards; }

/* ════════════════════════════════
   INDUSTRY GRID
═══════════════════════════════════ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.industry-card-container {
  background: var(--black);
  height: 130px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 24px;
  transition: background 0.3s ease, transform 0.35s ease;
  cursor: pointer;
  position: relative; overflow: hidden;
}

.industry-card-container::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.025) 45%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.025) 55%,
    transparent);
  transform: skewX(-15deg);
  pointer-events: none;
}

.industry-card-container:hover { background: var(--surface); transform: translateY(-4px); }
.industry-card-container:hover::before { animation: shimmer 0.65s ease forwards; }

/* ════════════════════════════════
   FEATURES
═══════════════════════════════════ */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin: 0 -8%;
}

.feat {
  padding: 48px 40px;
  border-right: 0.5px solid var(--border);
  transition: background 0.35s ease;
  cursor: pointer;
  position: relative; overflow: hidden;
}

.feat:last-child { border-right: none; }
.feat:hover { background: var(--surface); }

.feat-icon {
  width: 38px; height: 38px;
  border: 0.5px solid var(--dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: #555; font-size: 17px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.feat:hover .feat-icon {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  transform: scale(1.08);
}

.feat h3 {
  font-size: 15px; font-weight: 600;
  color: #d0d0d0; margin-bottom: 12px;
  letter-spacing: -0.2px;
  transition: color 0.3s;
}

.feat:hover h3 { color: var(--white); }

.feat p {
  font-size: 13px; color: #353535;
  line-height: 1.8; font-weight: 300;
}

/* ════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px; align-items: start;
}

.contact-box p {
  display: flex; align-items: flex-start;
  gap: 14px; color: var(--muted);
  font-size: 14px; line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.25s;
}

.contact-box p:hover { color: rgba(255,255,255,0.5); }
.contact-box p i { color: #444; margin-top: 2px; transition: color 0.25s; }
.contact-box p:hover i { color: #888; }

.input-group { position: relative; margin-bottom: 16px; }

.input-group i {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: #2e2e2e; font-size: 15px;
  pointer-events: none; z-index: 1;
  transition: color 0.25s;
}

.input-group:has(textarea) i { top: 18px; transform: none; }
.input-group:focus-within i { color: #666; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 15px 15px 44px;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  color: var(--white);
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(255,255,255,0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,255,255,0.2);
  background: #111;
  transform: translateY(-1px);
}

.contact-form textarea { min-height: 130px; resize: none; }

.input-group::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0.5px;
  background: rgba(255,255,255,0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group:focus-within::after { transform: scaleX(1); }

/* ════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════ */
.btn-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #1ebe57, #25D366 50%, #128C7E);
  background-size: 200% auto;
  background-position: left center;
  color: white;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  position: relative; overflow: hidden;
  transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.3s ease;
  animation: pulseWA 2.5s ease-in-out infinite;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(120deg,
    transparent,
    rgba(255,255,255,0.22) 50%,
    transparent);
  transform: skewX(-15deg);
}

.btn-submit:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow:
    0 16px 44px rgba(37,211,102,0.45),
    0 4px 16px rgba(37,211,102,0.25);
  animation: none;
}

.btn-submit:hover::before { animation: shimmer 0.55s ease forwards; }
.btn-submit:active { transform: translateY(-1px); }

/* ════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  text-align: center;
  padding: 36px 0;
  border-top: 0.5px solid var(--border);
  color: #555555; /* Updated from #2a2a2a */
  font-size: 20px;
  transition: color 0.3s;
}

footer:hover { color: #3a3a3a; }

/* ════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 992px) {
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .features-row { grid-template-columns: 1fr; margin: 0; }
  .feat { border-right: none; border-bottom: 0.5px solid var(--border); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 42px; letter-spacing: -2px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; border-radius: 10px; }
  .stat { border-right: none; border-bottom: 0.5px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}