/*======================================
  Maxola Labs Studio v4
  Fonts: Syne (display) + DM Sans (body)
  Base: #07090F
  Accent: #00E5A0
  Surface: #0E1118
========================================*/

:root {
  --bg:         #07090F;
  --bg-2:       #0E1118;
  --bg-3:       #141720;
  --bg-card:    #0B0E16;
  --surface:    rgba(255,255,255,0.03);
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --green:      #00E5A0;
  --green-dim:  rgba(0,229,160,0.08);
  --green-glow: rgba(0,229,160,0.2);
  --gold:       #D4AF37;
  --gold-dim:   rgba(212,175,55,0.1);
  --white:      #FFFFFF;
  --gray-1:     rgba(255,255,255,0.88);
  --gray-2:     rgba(255,255,255,0.55);
  --gray-3:     rgba(255,255,255,0.32);
  --gray-4:     rgba(255,255,255,0.12);
  --gray-5:     rgba(255,255,255,0.05);
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-2);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

p { margin: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; color: inherit; }

.section { padding: 128px 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/*======================================
  Preloader
========================================*/
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-logo {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  animation: logoFade 1.2s ease-in-out infinite;
}
@keyframes logoFade {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(0.96); }
}

/*======================================
  Buttons
========================================*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--r-md);
  background: var(--green);
  color: #050A07;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--green-glow);
  color: #050A07;
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  border-color: var(--border-2);
  color: var(--gray-2);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: none;
  background: var(--green-dim);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn i { font-size: 15px; flex-shrink: 0; }

/*======================================
  Header
========================================*/
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header.sticky {
  background: rgba(7,9,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 2;
}
.brand-mark {
  width: 34px; height: 34px;
  background: var(--green);
  color: #050A07;
  border-radius: 9px;
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0 auto;
}
.navbar-nav a {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  transition: color 0.2s ease;
}
.navbar-nav a:hover { color: var(--white); }
.nav-cta { flex-shrink: 0; z-index: 2; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 2;
}
.toggler-icon {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-2);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/*======================================
  Hero
========================================*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 640px; height: 640px;
  top: -180px; right: -80px;
  background: radial-gradient(circle at center, rgba(0,229,160,0.09) 0%, transparent 65%);
  filter: blur(40px);
}
.orb-2 {
  width: 480px; height: 480px;
  bottom: -100px; left: -120px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.07) 0%, transparent 65%);
  filter: blur(40px);
}
.orb-3 {
  width: 280px; height: 280px;
  top: 40%; left: 55%;
  background: radial-gradient(circle at center, rgba(0,229,160,0.05) 0%, transparent 65%);
  filter: blur(30px);
}
.orb-process {
  width: 560px; height: 560px;
  top: -100px; right: -150px;
  background: radial-gradient(circle at center, rgba(0,229,160,0.06) 0%, transparent 60%);
  filter: blur(50px);
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  background: var(--green-dim);
  border: 1px solid rgba(0,229,160,0.2);
  padding: 7px 14px;
  border-radius: 40px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: dotBlink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.15; }
}
.hero-title {
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 800;
  line-height: 0.98;
  margin-bottom: 32px;
  letter-spacing: -0.035em;
  color: var(--white);
}
.hero-title em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-2);
  max-width: 500px;
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 20px 36px;
  position: relative;
}
.stat + .stat {
  border-left: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-3);
}

/*======================================
  Section Shared
========================================*/
.section-header { margin-bottom: 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 16px; height: 1.5px;
  background: var(--green);
  flex-shrink: 0;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

/*======================================
  App Cards
========================================*/
.apps { background: var(--bg); }

.app-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s ease;
}
.app-card:hover { border-color: var(--border-2); }

.app-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.app-card-alt .app-card-inner {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.app-card-alt .app-card-inner > * { direction: ltr; }

.app-info {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.app-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.app-status {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 40px;
}
.app-status.live {
  background: rgba(0,229,160,0.1);
  color: var(--green);
  border: 1px solid rgba(0,229,160,0.25);
}
.app-status.coming {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
}
.app-status.dev {
  background: var(--gray-5);
  color: var(--gray-3);
  border: 1px solid var(--border);
}
.app-platform {
  font-size: 11px;
  color: var(--gray-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.app-name {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}
.app-tagline {
  font-size: 13px;
  color: var(--gray-3);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.app-desc {
  color: var(--gray-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}
.app-features {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
  font-weight: 400;
}
.app-features li i {
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
}
.app-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Visual side */
.app-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  overflow: hidden;
}
.watchtower-visual {
  background: linear-gradient(145deg, #0A1628 0%, #0F2040 60%, #162A52 100%);
}
.pry-visual {
  background: linear-gradient(145deg, #080F0B 0%, #0A1A10 60%, #0D2218 100%);
}
.turbosearch-visual {
  background: linear-gradient(145deg, #131008 0%, #1C1709 60%, #1F1A0A 100%);
}

.app-phone {
  width: 210px;
  background: #080808;
  border-radius: 44px;
  padding: 14px 10px 18px;
  box-shadow:
    0 32px 72px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}
.phone-notch {
  width: 64px; height: 18px;
  background: #000;
  border-radius: 10px;
  margin: 0 auto 10px;
}
.app-phone img {
  border-radius: 30px;
  width: 100%;
  display: block;
}

.app-badge-float {
  position: absolute;
  bottom: 52px; right: 28px;
  background: rgba(7,9,15,0.85);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 9px 14px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.app-badge-float i { color: var(--gold); font-size: 13px; }
.pry-badge i { color: var(--green); }

/* Pry scan animation */
.pry-screen-placeholder {
  border-radius: 30px;
  background: #040C07;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pry-scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,229,160,0.35);
  animation: scanPulse 3s ease-out infinite;
}
.pry-scan-ring       { width: 56px;  height: 56px; }
.pry-scan-ring-2     { width: 96px;  height: 96px;  animation-delay: 0.9s; }
.pry-scan-ring-3     { width: 136px; height: 136px; animation-delay: 1.8s; }
@keyframes scanPulse {
  0%   { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.5);  opacity: 0;   }
}
.pry-center-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green), 0 0 24px rgba(0,229,160,0.3);
  z-index: 2;
  animation: centerPulse 2s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* TurboSearch coming soon */
.turbo-screen-placeholder {
  border-radius: 30px;
  background: #0C0900;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.turbo-coming-label {
  font-family: var(--font-d);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.word-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  opacity: 0.35;
  filter: blur(1px);
}
.word-grid span {
  width: 26px; height: 26px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}

/*======================================
  Process
========================================*/
.process {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
}
.process-item {
  background: var(--bg-2);
  padding: 40px 36px;
  transition: background 0.25s ease;
  position: relative;
}
.process-item:hover { background: var(--bg-3); }
.process-num {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 18px;
  opacity: 0.8;
}
.process-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-item p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
  font-weight: 300;
}

/*======================================
  Stack
========================================*/
.stack { background: var(--bg); }
.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stack-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 40px;
  transition: all 0.2s ease;
  cursor: default;
}
.stack-item:hover {
  border-color: rgba(0,229,160,0.3);
  background: var(--green-dim);
}
.stack-icon { font-size: 16px; line-height: 1; }
.stack-name {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-1);
  letter-spacing: -0.01em;
}

/*======================================
  CTA
========================================*/
.cta-section { background: var(--bg-2); }
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-glow {
  position: absolute;
  width: 480px; height: 480px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,229,160,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner .section-tag { justify-content: center; margin-bottom: 20px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.cta-inner p {
  color: var(--gray-2);
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
}

/*======================================
  Footer
========================================*/
.footer {
  background: var(--bg);
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark-lg {
  width: 44px; height: 44px;
  background: var(--green);
  color: #050A07;
  border-radius: var(--r-md);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-name {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.footer-loc {
  font-size: 12px;
  color: var(--gray-3);
  margin-top: 3px;
  font-weight: 300;
}
.footer-links-group {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--gray-2); font-weight: 300; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-3); font-weight: 300; }

/*======================================
  Scroll To Top
========================================*/
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  background: var(--green);
  color: #050A07;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 99;
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--green-glow);
  color: #050A07;
}

/*======================================
  Privacy / Legal pages
========================================*/
.page-hero {
  padding: 148px 0 72px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.page-hero p { font-size: 16px; color: var(--gray-2); max-width: 520px; font-weight: 300; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}
.prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 48px 0 14px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul li {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
  font-weight: 300;
}
.prose ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}
.prose a { color: var(--green); }
.prose a:hover { opacity: 0.8; }
.prose .last-updated {
  font-size: 13px;
  color: var(--gray-3);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.wow { visibility: hidden; }

/*======================================
  Responsive
========================================*/
@media (max-width: 991px) {
  .navbar-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-cta { display: none; }
  .app-card-inner,
  .app-card-alt .app-card-inner {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .app-visual { min-height: 300px; padding: 40px 24px; }
  .app-info { padding: 40px 36px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { flex-direction: column; gap: 36px; }
  .hero-stats { border-radius: var(--r-md); }
  .stat { padding: 16px 24px; }
}

@media (max-width: 767px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .app-info { padding: 32px 24px; }
  .app-name { font-size: 1.9rem; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-links-group { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--border); }
  .stat { padding: 14px 24px; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 991px) {
  .navbar-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(7,9,15,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px 40px 28px;
    gap: 2px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .navbar-nav.mobile-open a {
    padding: 12px 0;
    font-size: 14px;
    display: block;
    border-bottom: 1px solid var(--border);
    color: var(--gray-2);
  }
  .navbar-nav.mobile-open li:last-child a { border-bottom: none; }
  .mobile-menu-btn.active .toggler-icon:nth-child(1) { transform: rotate(45deg) translate(4px, 7px); }
  .mobile-menu-btn.active .toggler-icon:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-menu-btn.active .toggler-icon:nth-child(3) { transform: rotate(-45deg) translate(4px, -7px); }
}
