/* ===== VARIABLES ===== */
:root {
  --qk-bg-deep:      #0D3318;
  --qk-bg-dark:      #1A5C26;
  --qk-green-mid:    #2E7D32;
  --qk-green-light:  #4CAF50;
  --qk-green-pale:   #A5D6A7;
  --qk-glass-bg:     rgba(46, 125, 50, 0.12);
  --qk-glass-border: rgba(76, 175, 80, 0.25);
  --qk-white:        #FFFFFF;
  --qk-white-muted:  rgba(255, 255, 255, 0.7);
  --qk-white-faint:  rgba(255, 255, 255, 0.08);
  --qk-footer-bg:    #0A1F0D;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--qk-bg-dark);
  color: var(--qk-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'DM Sans', sans-serif; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== GLASS UTILITY ===== */
.glass-card {
  background: var(--qk-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--qk-glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(76,175,80,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: transparent;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(13, 51, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(76,175,80,0.15);
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 18px;
  cursor: pointer;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--qk-green-mid);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text span { color: var(--qk-green-light); }
.navbar-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.navbar-links a {
  color: var(--qk-green-pale); font-size: 15px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--qk-green-light); transition: width 0.2s;
}
.navbar-links a:hover { color: var(--qk-white); }
.navbar-links a:hover::after { width: 100%; }
.navbar-cta {
  background: var(--qk-green-light); color: var(--qk-white);
  padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.navbar-cta:hover { background: #66BB6A; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--qk-white);
  transition: all 0.3s ease; border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(13, 51, 24, 0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; gap: 24px;
  padding: 32px 24px; z-index: 999;
  border-bottom: 1px solid var(--qk-glass-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--qk-green-pale); font-size: 18px; font-weight: 500; }
.mobile-menu a:hover { color: var(--qk-white); }
.mobile-menu .navbar-cta { width: 100%; text-align: center; padding: 14px 22px; font-size: 16px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46,125,50,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(76,175,80,0.15) 0%, transparent 50%),
    var(--qk-bg-deep);
  padding: 100px 5% 60px;
}
.hero-content {
  flex: 1; max-width: 620px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--qk-glass-bg); border: 1px solid var(--qk-glass-border);
  backdrop-filter: blur(20px); border-radius: 50px;
  padding: 8px 16px; font-size: 14px; font-weight: 500;
  margin-bottom: 28px; min-width: 280px;
  transition: opacity 0.4s ease;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--qk-green-light); border-radius: 50%; flex-shrink: 0; }
.hero-title {
  font-size: 64px; font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-title .accent { color: var(--qk-green-light); }
.hero-subtitle {
  font-size: 18px; line-height: 1.65; color: var(--qk-green-pale);
  margin-bottom: 40px; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.btn-primary {
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #4CAF50);
  background-size: 200%;
  animation: shimmer 3s infinite linear;
  color: var(--qk-white); padding: 16px 32px; border-radius: 50px;
  font-weight: 600; font-size: 16px; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(76,175,80,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(76,175,80,0.5); }
.btn-secondary {
  background: var(--qk-glass-bg); border: 1px solid var(--qk-glass-border);
  backdrop-filter: blur(20px); color: var(--qk-white);
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: background 0.2s, border-color 0.2s; white-space: nowrap;
}
.btn-secondary:hover { background: rgba(76,175,80,0.2); border-color: rgba(76,175,80,0.5); }
.hero-phone-wrapper {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.hero-phone {
  width: 260px; height: 520px;
  background: var(--qk-bg-dark);
  border: 2px solid rgba(76,175,80,0.4);
  border-radius: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(76,175,80,0.1);
  animation: float 3s ease-in-out infinite;
  overflow: hidden; position: relative; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone-notch {
  width: 80px; height: 6px; background: rgba(76,175,80,0.3);
  border-radius: 3px; margin: 0 auto 12px;
}
.phone-header {
  background: rgba(76,175,80,0.15); border-radius: 10px; padding: 10px 12px;
  border: 1px solid rgba(76,175,80,0.2);
}
.phone-header-line {
  height: 8px; background: var(--qk-green-light); border-radius: 4px;
  width: 60%; margin-bottom: 6px; opacity: 0.8;
}
.phone-header-sub { height: 6px; background: rgba(76,175,80,0.4); border-radius: 3px; width: 40%; }
.phone-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.phone-block {
  background: rgba(46,125,50,0.2); border: 1px solid rgba(76,175,80,0.15);
  border-radius: 8px; padding: 10px 8px;
}
.phone-block-line {
  height: 6px; border-radius: 3px; margin-bottom: 5px;
}
.phone-block-line.green { background: var(--qk-green-light); width: 70%; opacity: 0.8; }
.phone-block-line.pale { background: rgba(165,214,167,0.4); width: 50%; }
.phone-list { display: flex; flex-direction: column; gap: 6px; }
.phone-list-item {
  display: flex; align-items: center; gap: 6px;
  background: rgba(46,125,50,0.15); border-radius: 6px; padding: 8px;
  border: 1px solid rgba(76,175,80,0.1);
}
.phone-list-dot { width: 6px; height: 6px; background: var(--qk-green-light); border-radius: 50%; flex-shrink: 0; }
.phone-list-line { height: 5px; background: rgba(255,255,255,0.2); border-radius: 3px; flex: 1; }
.phone-btn {
  background: var(--qk-green-light); border-radius: 8px; padding: 10px;
  text-align: center; margin-top: auto;
}
.phone-btn-line { height: 7px; background: rgba(255,255,255,0.8); border-radius: 3px; width: 50%; margin: 0 auto; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  opacity: 0.5; animation: bounce 2s ease-in-out infinite;
  transition: opacity 0.3s;
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-chevron {
  width: 20px; height: 20px; border-right: 2px solid var(--qk-green-pale);
  border-bottom: 2px solid var(--qk-green-pale); transform: rotate(45deg);
}

/* ===== PARTICLES ===== */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--qk-green-light); opacity: 0;
  animation: particle-float linear infinite;
}

/* ===== STATS ===== */
.stats {
  background: var(--qk-bg-dark);
  padding: 80px 5%; position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(76,175,80,0.03) 40px, rgba(76,175,80,0.03) 41px
  );
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
}
.stat-card {
  padding: 32px 24px; text-align: center;
  transition: transform 0.3s;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-value {
  font-family: 'DM Sans', sans-serif; font-weight: 800; font-size: 56px;
  color: var(--qk-green-light); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--qk-green-pale); font-weight: 500; }

/* ===== SECTION COMMON ===== */
.section { padding: 96px 5%; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: 42px; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-subtitle { font-size: 18px; color: var(--qk-green-pale); max-width: 560px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features { background: var(--qk-bg-dark); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1200px; margin: 0 auto;
}
.feature-card {
  padding: 28px 24px; cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(76,175,80,0.3);
  border-color: rgba(76,175,80,0.5);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(76,175,80,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--qk-green-light); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-title { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--qk-green-pale); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how { background: var(--qk-bg-deep); }
.timeline {
  display: flex; align-items: flex-start; gap: 0;
  max-width: 1000px; margin: 0 auto; position: relative;
}
.timeline-line {
  position: absolute; top: 28px; left: calc(16.66% - 1px); right: calc(16.66% - 1px);
  height: 2px; background: linear-gradient(90deg, var(--qk-green-light), rgba(76,175,80,0.3));
  z-index: 0;
}
.timeline-step {
  flex: 1; text-align: center; padding: 0 24px; position: relative; z-index: 1;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--qk-green-light); color: var(--qk-white);
  font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 0 0 8px var(--qk-bg-deep), 0 0 0 10px rgba(76,175,80,0.3);
}
.step-title { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--qk-green-pale); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing { background: var(--qk-bg-dark); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-size: 15px; font-weight: 500; color: var(--qk-green-pale); transition: color 0.2s; }
.toggle-label.active { color: var(--qk-white); }
.toggle-switch {
  width: 52px; height: 28px; background: var(--qk-green-mid);
  border-radius: 50px; position: relative; cursor: pointer;
  transition: background 0.3s; border: none;
}
.toggle-switch.on { background: var(--qk-green-light); }
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; background: var(--qk-white); border-radius: 50%;
  transition: transform 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.toggle-switch.on .toggle-knob { transform: translateX(24px); }
.toggle-badge {
  background: var(--qk-green-light); color: var(--qk-white);
  font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 50px;
  letter-spacing: 0.3px;
}
.pricing-grid {
  display: flex; gap: 24px; align-items: center; justify-content: center;
  max-width: 1100px; margin: 0 auto; flex-wrap: wrap;
}
.pricing-card {
  flex: 1; min-width: 280px; max-width: 340px;
  padding: 36px 32px; position: relative;
}
.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--qk-green-light);
  box-shadow: 0 12px 48px rgba(76,175,80,0.25), 0 0 0 1px rgba(76,175,80,0.15);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--qk-green-light); color: var(--qk-white);
  padding: 5px 16px; border-radius: 50px; font-size: 13px; font-weight: 700;
  white-space: nowrap;
}
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--qk-green-pale); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-tagline { font-size: 14px; color: var(--qk-white-muted); margin-bottom: 24px; }
.pricing-price { font-family: 'DM Sans', sans-serif; font-size: 52px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 20px; font-weight: 500; color: var(--qk-green-pale); vertical-align: super; }
.pricing-price-sub { font-size: 13px; color: var(--qk-green-pale); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--qk-white-muted); }
.pricing-features li::before { content: '✓'; color: var(--qk-green-light); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-outline {
  display: block; width: 100%; padding: 14px; text-align: center;
  background: var(--qk-glass-bg); border: 1px solid var(--qk-glass-border);
  color: var(--qk-white); border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(76,175,80,0.2); border-color: rgba(76,175,80,0.5); }
.btn-filled {
  display: block; width: 100%; padding: 14px; text-align: center;
  background: linear-gradient(90deg, #4CAF50, #66BB6A, #4CAF50);
  background-size: 200%;
  animation: shimmer 3s infinite linear;
  color: var(--qk-white); border: none; border-radius: 12px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(76,175,80,0.3);
}
.btn-filled:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(76,175,80,0.45); }

/* ===== APP STORES ===== */
.stores { background: var(--qk-bg-dark); }
.stores-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.store-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--qk-white-faint); border: 1px solid var(--qk-glass-border);
  border-radius: 14px; padding: 16px 28px; cursor: not-allowed; position: relative;
  transition: box-shadow 0.3s;
}
.store-badge:hover { box-shadow: 0 0 24px rgba(76,175,80,0.2); }
.store-badge svg { flex-shrink: 0; }
.store-badge-texts { text-align: left; }
.store-badge-small { font-size: 11px; color: var(--qk-white-muted); display: block; }
.store-badge-name { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; }
.store-soon {
  position: absolute; top: -10px; right: -10px;
  background: var(--qk-green-light); color: var(--qk-white);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.waitlist-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto;
}
.waitlist-input {
  flex: 1; min-width: 220px; padding: 14px 18px;
  background: var(--qk-glass-bg); border: 1px solid var(--qk-glass-border);
  border-radius: 12px; color: var(--qk-white); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--qk-white-muted); }
.waitlist-input:focus { border-color: var(--qk-green-light); }
.waitlist-btn {
  background: var(--qk-green-light); color: var(--qk-white);
  padding: 14px 24px; border-radius: 12px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.waitlist-btn:hover { background: #66BB6A; transform: translateY(-1px); }

/* ===== CONTACT ===== */
.contact { background: var(--qk-bg-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.contact-card {
  padding: 40px 36px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; cursor: default;
}
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(76,175,80,0.4);
  border-color: rgba(76,175,80,0.5);
}
.contact-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.contact-icon svg { width: 48px; height: 48px; }
.contact-title { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.contact-desc { font-size: 15px; color: var(--qk-green-pale); line-height: 1.6; margin-bottom: 28px; }
.online-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #4ade80;
  margin-bottom: 20px;
}
.online-dot {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
}
.btn-email {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--qk-glass-bg); border: 1px solid var(--qk-glass-border);
  color: var(--qk-white); padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: 15px; cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.btn-email:hover { background: rgba(76,175,80,0.2); border-color: rgba(76,175,80,0.5); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--qk-white);
  padding: 13px 24px; border-radius: 12px;
  font-weight: 600; font-size: 15px; cursor: pointer; transition: background 0.2s, transform 0.2s;
  border: none;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: var(--qk-footer-bg);
  border-top: 1px solid rgba(76,175,80,0.2);
  padding: 60px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline { font-size: 14px; color: var(--qk-green-pale); line-height: 1.6; }
.footer-col-title { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--qk-green-pale); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--qk-white); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--qk-white-faint); border: 1px solid var(--qk-glass-border);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: rgba(76,175,80,0.2); border-color: rgba(76,175,80,0.4); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-admin { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-admin:hover { color: rgba(255,255,255,0.6); }

/* ===== LEGAL PAGES ===== */
.legal-page { max-width: 800px; margin: 0 auto; padding: 120px 5% 80px; }
.legal-page h1 { font-size: 40px; font-weight: 800; margin-bottom: 8px; }
.legal-page .legal-date { color: var(--qk-green-pale); font-size: 14px; margin-bottom: 48px; }
.legal-page h2 { font-size: 22px; font-weight: 700; color: var(--qk-green-pale); margin: 36px 0 12px; }
.legal-page p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; color: rgba(255,255,255,0.8); font-size: 15px; line-height: 2; }
.legal-page a { color: var(--qk-green-light); text-decoration: underline; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.feature-card:nth-child(1) { transition-delay: 0.0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }
.feature-card:nth-child(7) { transition-delay: 0.6s; }
.feature-card:nth-child(8) { transition-delay: 0.7s; }
.stat-card:nth-child(1) { transition-delay: 0.0s; }
.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }
.stat-card:nth-child(4) { transition-delay: 0.3s; }

/* ===== KEYFRAMES ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
@keyframes fade-cycle {
  0%, 25% { opacity: 1; }
  33%, 100% { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-direction: column; align-items: stretch; gap: 48px; }
  .timeline-line { display: none; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 80px 5% 60px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 16px; }
  .hero-phone-wrapper { display: none; }
  .hero-content { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; align-items: stretch; }
  .pricing-card { max-width: 100%; }
  .section-title { font-size: 32px; }
  .stat-value { font-size: 42px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stores-badges { flex-direction: column; align-items: center; }
}
