/* ============================================================
   VANTAGE LOGIC — styles.css
   Colors: #0F172A (bg) · #805AD1 (primary) · #FFFFFF (white)
   Fonts: Syne (headings) · Outfit (body)
   ============================================================ */

/* ── Variables ── */
:root {
  --bg:        #0F172A;
  --bg-2:      #131c30;
  --bg-card:   #162035;
  --primary:   #805AD1;
  --primary-h: #9b7ae0;
  --primary-d: #6644b8;
  --white:     #FFFFFF;
  --grey:      #94a3b8;
  --grey-d:    #475569;
  --border:    rgba(128, 90, 209, 0.2);
  --border-s:  rgba(255,255,255,0.06);
  --glow:      rgba(128, 90, 209, 0.35);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --radius:    12px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-d); border-radius: 99px; }

/* ── Canvas BG ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ── Custom Cursor ── */
.cursor, .cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor {
  width: 10px; height: 10px;
  background: var(--primary);
  top: -20px; left: -20px;
}
.cursor-trail {
  width: 32px; height: 32px;
  border: 1.5px solid var(--primary);
  top: -20px; left: -20px;
  transition: top 0.12s var(--ease), left 0.12s var(--ease), width 0.3s, height 0.3s;
  opacity: 0.5;
}
body:hover .cursor, body:hover .cursor-trail { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2); }

/* ── Container ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { position: relative; z-index: 1; padding: 120px 0; }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: none;
}
.btn-primary:hover {
  background: var(--primary-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(128,90,209,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--grey);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--border-s);
  transition: color 0.25s, border-color 0.25s, transform 0.2s;
  cursor: none;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--border);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 20px;
  background: rgba(128,90,209,0.08);
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--white);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 520px;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-sub { margin: 0 auto; }
.accent { color: var(--primary); }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(15,23,42,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border-s);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 7px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--primary-h); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  padding: 120px 40px 80px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(128,90,209,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(128,90,209,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(128,90,209,0.18) 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}
@keyframes pulse-glow {
  from { transform: scale(1); opacity: 0.8; }
  to   { transform: scale(1.15); opacity: 1; }
}
.hero-content {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 18px;
  margin-bottom: 28px;
  background: rgba(128,90,209,0.08);
  animation-delay: 0.1s;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation-delay: 0.2s;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation-delay: 0.3s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation-delay: 0.4s;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-d);
  animation-delay: 0.5s;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey-d);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-head);
  animation: fade-in 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================
   STATS BAR
   ============================ */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  background: rgba(22,32,53,0.6);
  backdrop-filter: blur(10px);
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  flex: 1;
  animation-delay: calc(var(--i, 0) * 0.1s);
}
.stat-item p {
  font-size: 0.8rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-s);
}

/* ============================
   ABOUT
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left .section-title { margin-bottom: 24px; }
.about-body {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--grey);
  letter-spacing: 0.02em;
}
.pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--primary);
}
.about-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
}
.about-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 380px;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}
.about-card .card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 99px 0 0 99px;
}
.about-card blockquote {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.about-card blockquote em { color: var(--primary); font-style: normal; }
.card-line {
  height: 1px;
  background: var(--border-s);
  margin-bottom: 20px;
}
.about-card p {
  font-size: 0.8rem;
  color: var(--grey-d);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-head);
  font-weight: 600;
}
.about-geo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.geo-1 {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  animation: spin 20s linear infinite;
}
.geo-2 {
  width: 360px; height: 360px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
  animation: spin 30s linear infinite reverse;
}
@keyframes spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ============================
   SERVICES
   ============================ */
.services { overflow: hidden; }
.services-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(128,90,209,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: 20px;
  padding: 44px 36px 40px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128,90,209,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(128,90,209,0.15);
}
.service-number {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey-d);
  letter-spacing: 0.12em;
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--primary);
  margin-bottom: 28px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
}
.service-arrow {
  width: 32px; height: 32px;
  color: var(--grey-d);
  margin-top: 28px;
  transition: color 0.2s, transform 0.2s;
}
.service-arrow svg { width: 100%; height: 100%; }
.service-card:hover .service-arrow {
  color: var(--primary);
  transform: translate(3px, -3px);
}

/* ============================
   WHY US
   ============================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
.why-card {
  background: transparent;
  border: 1px solid var(--border-s);
  border-radius: 16px;
  padding: 40px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: var(--border);
  background: rgba(128,90,209,0.05);
}
.why-icon {
  width: 44px; height: 44px;
  color: var(--primary);
  margin-bottom: 24px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.why-card p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.75;
}
.manifesto {
  text-align: center;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-s);
}
.manifesto-line {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--grey-d);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.manifesto-line:hover { color: var(--white); }

/* ============================
   CONTACT
   ============================ */
.contact { overflow: hidden; }
.contact-glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(128,90,209,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--grey);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-email svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-email:hover { color: var(--primary); }

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  color: var(--grey);
  font-size: 0.95rem;
}
.contact-address svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}
.contact-address address {
  font-style: normal;
  line-height: 1.7;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-d); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(128,90,209,0.15);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.field-error {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 16px;
}

/* Submit button states */
#submit-btn { position: relative; overflow: hidden; }
.btn-loading {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin-btn 0.7s linear infinite;
}
@keyframes spin-btn {
  to { transform: rotate(360deg); }
}
#submit-btn.loading .btn-text { opacity: 0; }
#submit-btn.loading .btn-loading { display: block; }
#submit-btn.loading {
  pointer-events: none;
  justify-content: center;
}

.form-status {
  border-radius: 10px;
  padding: 0;
  font-size: 0.9rem;
  text-align: center;
  transition: all 0.4s;
  max-height: 0;
  overflow: hidden;
}
.form-status.show {
  padding: 16px;
  max-height: 80px;
}
.form-status.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #4ade80;
}
.form-status.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #f87171;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-s);
  padding: 64px 0 32px;
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--grey-d);
  letter-spacing: 0.08em;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact-block a {
  font-size: 0.9rem;
  color: var(--grey);
  transition: color 0.2s;
}
.footer-contact-block a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border-s);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--grey-d);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--grey-d);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--grey); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-right { min-height: 300px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .navbar { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-s);
    padding: 20px 0;
    align-items: center;
  }
  .nav-links.open a {
    padding: 14px 0;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-s);
  }
  .hero { padding: 120px 24px 80px; }
  .stats-inner {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .stat-item { width: 100%; border-bottom: 1px solid var(--border-s); }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cursor, .cursor-trail { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }
}
