/* ============================================================
   Azica — styles.css
   Theme: deep dark navy / charcoal, electric blue accents
   Inspired by the clean, minimal aesthetic of haveibeenpwned.com
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Backgrounds — very dark, near-black with subtle blue tint */
  --bg:        #0a0d15;
  --bg-2:      #0d1120;
  --bg-card:   rgba(255,255,255,.03);
  --bg-card-hover: rgba(255,255,255,.055);

  /* Blues */
  --blue-deep:  #0c2044;
  --blue:       #1d4ed8;
  --blue-mid:   #2563eb;
  --blue-bright:#3b82f6;
  --blue-light: #60a5fa;
  --blue-pale:  #93c5fd;
  --accent:     #38bdf8;

  /* Text */
  --white:   #f0f6fc;
  --gray-1:  #c9d1d9;
  --gray-2:  #8b949e;
  --gray-3:  #21262d;

  /* Borders */
  --border:       rgba(255,255,255,.07);
  --border-hover: rgba(96,165,250,.3);

  /* Other */
  --radius:    10px;
  --radius-lg: 16px;
  --font-main: 'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', sans-serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --transition: .25s var(--ease);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
::selection { background: var(--blue-mid); color: #fff; }

/* Honeypot — absolutely hidden from real users */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 4px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
.accent { color: var(--blue-light); }

/* ---------- Layout ---------- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--blue-mid);
  color: #fff;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 0 rgba(37,99,235,.5);
}
.btn--primary:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  box-shadow: 0 0 28px rgba(37,99,235,.45);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--blue-light);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(96,165,250,.07);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.btn--nav {
  background: rgba(255,255,255,.05);
  color: var(--gray-1);
  border-color: var(--border);
  padding: 9px 18px;
  font-size: .875rem;
}
.btn--nav:hover { background: var(--blue-mid); color: #fff; border-color: var(--blue-mid); }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Section shared ---------- */
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(10,13,21,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--blue-mid);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--blue-light);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--gray-2); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

/* Background — radial glow from center like HIBP */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Radial gradient: deep blue glow at center, fades to near-black */
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(17,50,100,.65) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8,20,45,.8) 0%, var(--bg) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(29,78,216,.22) 0%, transparent 70%);
  top: -80px; left: 50%;
  transform: translateX(-50%);
}
.hero__orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  bottom: 60px; right: 5%;
}

/* ── Laptop ── */
.laptop-wrap {
  position: relative;
  z-index: 2;
  perspective: 1200px;
  width: 500px;
  max-width: 88vw;
  margin-bottom: 48px;
}
.laptop { position: relative; width: 100%; transform-style: preserve-3d; }

.laptop__lid {
  position: relative;
  transform-origin: bottom center;
  transform: rotateX(-8deg);
  transition: transform .04s linear;
  transform-style: preserve-3d;
  will-change: transform;
}

.laptop__screen {
  background: #060c18;
  border-radius: 14px;
  border: 1.5px solid #1b3460;
  padding: 8px;
  box-shadow:
    0 0 50px rgba(29,78,216,.25),
    inset 0 0 30px rgba(0,0,0,.5);
}
.laptop__screen-inner {
  background: #07101e;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}
.laptop__screen-header {
  display: flex;
  gap: 6px;
  padding: 7px 10px;
  background: #0b1828;
  border-bottom: 1px solid #15304e;
}
.laptop__screen-header span { width: 9px; height: 9px; border-radius: 50%; }
.laptop__screen-header span:nth-child(1) { background: #ff5f57; }
.laptop__screen-header span:nth-child(2) { background: #ffbd2e; }
.laptop__screen-header span:nth-child(3) { background: #28c840; }

.laptop__screen-content { padding: 16px 18px; font-family: 'Courier New', monospace; font-size: .78rem; }
.terminal-line { display: flex; gap: 7px; align-items: center; }
.terminal-prompt { color: #28c840; }
.terminal-text { color: var(--blue-pale); }
.terminal-cursor { color: var(--blue-pale); animation: blink 1s step-end infinite; }
.terminal-output { color: #4da6ff; margin-top: 8px; font-size: .72rem; line-height: 1.75; white-space: pre; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0} }


/* ── Hero Content ── */
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 720px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,78,216,.12);
  border: 1px solid rgba(96,165,250,.2);
  color: var(--blue-pale);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(56,189,248,.5); }
  50% { box-shadow: 0 0 0 5px rgba(56,189,248,0); }
}

/* Large bold HIBP-style title */
.hero__title {
  font-size: clamp(2.8rem, 7.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.03em;
}
.hero__title--accent {
  /* Blue gradient text — the signature HIBP look */
  background: linear-gradient(120deg, #90c4ff 0%, #4a8eff 40%, #1a5fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--gray-2);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  z-index: 2;
  font-size: .68rem;
  color: var(--gray-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1.5s both;
}
.hero__scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid var(--gray-3);
  border-bottom: 1.5px solid var(--gray-3);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }
@keyframes fadeInUp {
  from { opacity:0; transform: translateX(-50%) translateY(16px); }
  to   { opacity:1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  z-index: -1;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,.07) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 30px rgba(29,78,216,.12);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(29,78,216,.15);
  border: 1px solid rgba(96,165,250,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--blue-light); }
.service-card:hover .service-card__icon { background: rgba(29,78,216,.3); border-color: rgba(96,165,250,.4); }

.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--white); }
.service-card p { font-size: .875rem; color: var(--gray-2); margin-bottom: 18px; line-height: 1.65; }

.service-card__list { display: flex; flex-direction: column; gap: 7px; }
.service-card__list li {
  font-size: .78rem;
  color: var(--gray-2);
  padding-left: 12px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__glow {
  position: absolute;
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(29,78,216,.18) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stats .container { position: relative; z-index: 1; }

/* 2x2 grid with divider lines — matches reference image */
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.stat-card {
  text-align: center;
  background: rgba(255,255,255,.02);
  padding: 52px 32px;
  transition: background var(--transition);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
/* Remove right border on right-column cards */
.stat-card:nth-child(2n)   { border-right: none; }
/* Remove bottom border on bottom-row cards */
.stat-card:nth-child(3),
.stat-card:nth-child(4)    { border-bottom: none; }

.stat-card:hover { background: rgba(255,255,255,.04); }

.stat-card__number {
  font-family: var(--font-head);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  /* Teal gradient matching the reference image */
  background: linear-gradient(135deg, #5eead4 0%, #2dd4bf 50%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card__label {
  font-size: .85rem;
  color: var(--gray-2);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 120px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__visual { display: flex; flex-direction: column; gap: 16px; }

.about__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: border-color var(--transition), transform var(--transition);
}
.about__card:hover { border-color: var(--border-hover); transform: translateX(4px); }

/* Compliance badge */
.about__compliance { margin-top: 8px; }
.compliance-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(45,212,191,.07);
  border: 1px solid rgba(45,212,191,.2);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}
.compliance-badge:hover { background: rgba(45,212,191,.12); border-color: rgba(45,212,191,.4); }
.compliance-badge svg {
  width: 28px; height: 28px;
  color: #2dd4bf;
  flex-shrink: 0;
}
.compliance-badge__text { display: flex; flex-direction: column; gap: 2px; }
.compliance-badge__text strong { font-size: .9rem; color: var(--white); }
.compliance-badge__text span   { font-size: .75rem; color: var(--gray-2); }

.about__card-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(29,78,216,.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__card-icon svg { width: 18px; height: 18px; color: var(--blue-light); }
.about__card-text strong { display: block; font-size: .9rem; margin-bottom: 3px; color: var(--white); }
.about__card-text p { font-size: .78rem; color: var(--gray-2); }

.about__copy p { color: var(--gray-2); margin-bottom: 14px; line-height: 1.75; font-size: .95rem; }

.about__trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(96,165,250,.18);
  border-left: 3px solid var(--blue-light);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 6px 0 22px;
}
.about__trust p {
  margin: 0 !important;
  font-size: .82rem !important;
  color: var(--gray-1) !important;
  line-height: 1.65 !important;
}

.about__features { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.about__feature { display: flex; align-items: center; gap: 10px; font-size: .875rem; color: var(--gray-1); }
.about__feature-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(29,78,216,.2);
  border: 1px solid var(--blue-mid);
  flex-shrink: 0;
  position: relative;
}
.about__feature-check::after {
  content: '';
  position: absolute;
  left: 5px; top: 2px;
  width: 5px; height: 8px;
  border-right: 1.5px solid var(--blue-light);
  border-bottom: 1.5px solid var(--blue-light);
  transform: rotate(45deg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}
.contact__orb {
  position: absolute;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(29,78,216,.15) 0%, transparent 70%);
  right: -80px; bottom: -80px;
  border-radius: 50%;
  filter: blur(50px);
}
.contact .container { position: relative; z-index: 1; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}
.contact__copy p { color: var(--gray-2); margin-bottom: 28px; line-height: 1.75; font-size: .95rem; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-1);
}
.contact__detail svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
.contact__detail a:hover { color: var(--blue-light); }

.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .75rem; font-weight: 600; color: var(--gray-2); letter-spacing: .04em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: .875rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(59,130,246,.18);
  background: rgba(255,255,255,.06);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b949e'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}
.form-group select option { background: #0d1120; }
.form-group textarea { resize: vertical; min-height: 96px; }

/* Loader */
.btn-spinner { display: none; width: 18px; height: 18px; flex-shrink: 0; animation: spin 1s linear infinite; }
#submitBtn.is-loading .btn-spinner { display: block; }
#submitBtn.is-loading { pointer-events: none; opacity: .85; cursor: wait; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status {
  padding: 11px 14px;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.form-status.success { background: rgba(22,163,74,.12); border: 1px solid rgba(22,163,74,.25); color: #4ade80; }
.form-status.error   { background: rgba(220,38,38,.12);  border: 1px solid rgba(220,38,38,.25);  color: #f87171; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand p { margin-top: 10px; font-size: .85rem; color: var(--gray-2); max-width: 240px; line-height: 1.65; }
.footer__crisis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2dd4bf !important;
  background: rgba(45,212,191,.08);
  border: 1px solid rgba(45,212,191,.2);
  border-radius: 100px;
  padding: 4px 12px;
}
.footer__links h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-2); margin-bottom: 14px; }
.footer__links ul { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: .85rem; color: var(--gray-2); transition: color var(--transition); }
.footer__links a:hover { color: var(--blue-light); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 22px; text-align: center; font-size: .78rem; color: var(--gray-2); }

/* ============================================================
   AOS — Lightweight scroll animations
   ============================================================ */
[data-aos] { opacity: 0; transition: opacity .55s ease, transform .55s ease; }
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  /* stats__grid stays 2x2 at all widths — no change needed */
  .about__inner   { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,13,21,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }
  .nav__links.open a { font-size: 1.4rem; }
  .nav__burger { display: flex; }
  .btn--nav { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row       { grid-template-columns: 1fr; }
  .footer__inner  { grid-template-columns: 1fr 1fr; }
  .contact__form-wrap { padding: 22px; }
  .hero { padding-top: 80px; }
  .laptop-wrap { width: 320px; }
}

@media (max-width: 480px) {
  .stat-card { padding: 32px 16px; }
  .stat-card__number { font-size: 2.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}
