:root {
  --bg: #0A0A0C;
  --bg-card: rgba(16, 16, 20, 0.7);
  --accent: #FF5500;
  --accent-glow: rgba(255, 85, 0, 0.4);
  --text-main: #F4F4F6;
  --text-muted: #8A8D93;
  --border: rgba(255, 85, 0, 0.15);
  --success: #00FF66;
  --danger: #FF2A00;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-accent { color: var(--accent); }
.center { text-align: center; }

/* GLOBALS & UTILS */
.h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}
.tag {
  display: inline-block;
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  letter-spacing: 1px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}
.btn-primary:hover {
  background: transparent;
  box-shadow: 0 0 25px var(--accent-glow);
}
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-glow);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.block { display: block; width: 100%; }

/* BACKGROUNDS */
.site-bg {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 0%, #151012 0%, var(--bg) 60%);
  z-index: -2; pointer-events: none;
}
.site-bg::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(255, 85, 0, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 85, 0, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}
.glow-orb {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(100px); z-index: -1; pointer-events: none; opacity: 0.4;
}
.glow-orb.top-left { top: -200px; left: -200px; }
.glow-orb.bottom-right { bottom: -200px; right: -200px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(3, 3, 5, 0.74);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  padding: 10px 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.brand-icon { transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.brand:hover .brand-icon { transform: rotate(90deg) scale(1.1); }
.brand-text {
  font-family: var(--font-heading); font-size: 1.34rem; font-weight: 900;
  color: #fff; letter-spacing: 1.8px; text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.nav-links { display: flex; list-style: none; gap: clamp(14px, 2.4vw, 26px); }
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted); text-decoration: none; font-weight: 700;
  font-size: 1rem; transition: 0.22s ease;
  letter-spacing: .2px;
}
.nav-links a:hover { color: var(--accent); }
.nav-icon { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 0 18px;
  font-size: .86rem;
  letter-spacing: .8px;
  box-shadow: none;
}
.nav-login { min-width: 92px; }
.nav-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255,85,0,.22) !important;
}
.nav-cta:hover { background: #ff6a1a; color: #fff; }

/* NEW NAVBAR STYLES */
.new-navbar {
  background: rgba(10, 10, 12, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.new-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
}
.new-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  display: block;
}
.new-brand:hover .brand-icon { transform: none; } /* Reset old behavior */

.new-nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.new-nav-links a {
  color: #ccc;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  min-height: auto;
}
.new-nav-links a:hover {
  color: #fff;
}

.new-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-btn {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  text-decoration: none;
}
.nav-btn:hover {
  background: #252525;
  border-color: #444;
}
.lang-btn {
  padding: 5px 15px 5px 10px;
  gap: 10px;
  border-radius: 20px;
}
.flag-icon {
  width: 22px;
  border-radius: 3px;
}
.lang-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.lang-label {
  font-size: 0.5rem;
  color: #888;
  font-weight: 700;
}
.lang-value {
  font-size: 0.75rem;
  font-weight: 800;
  font-family: var(--font-heading);
}
.globe-icon {
  color: #666;
}
.cart-btn {
  padding: 10px;
  border-radius: 12px;
}
.cart-btn svg {
  color: #888;
}
.user-btn {
  padding: 0 15px 0 0;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #1e1915;
  border-color: #3d2f20;
}
.user-btn:hover {
  background: #2a221a;
  border-color: #5a452d;
}
.user-accent {
  width: 4px;
  height: 100%;
  background: #d4af37;
  position: absolute;
  left: 0;
  top: 0;
}
.user-icon-bg {
  background: #2a221a;
  padding: 8px;
  border-radius: 8px;
  margin: 4px 0 4px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.username {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}

.enter-btn {
  background: linear-gradient(135deg, var(--accent), #ff2a00);
  border: none;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 85, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.enter-btn:hover {
  background: linear-gradient(135deg, #ff6a1a, #ff3c00);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(255, 85, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: transparent;
}


/* HERO */
.hero { padding: 150px 0 90px; min-height: min(860px, 100svh); display: flex; align-items: center; position: relative; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.modern-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-heading); font-size: 4.5rem; font-weight: 900;
  line-height: 1.05; margin-bottom: 25px; text-transform: uppercase;
  letter-spacing: -1px; text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.gradient-text {
  background: linear-gradient(135deg, #FF5500, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(255,85,0,0.3));
}

.hero-desc { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; font-weight: 400; max-width: 90%; line-height: 1.7; }
.hero-actions { display: flex; gap: 20px; margin-bottom: 50px; }

.btn-glow {
  background: linear-gradient(135deg, var(--accent), #ff2a00);
  color: #fff; border: none; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 85, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 85, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-badges { display: flex; gap: 15px; flex-wrap: wrap; }
.badge-item {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: #aaa;
  background: rgba(255,255,255,0.03); padding: 8px 16px;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
}
.badge-item .check { color: var(--accent); font-weight: 800; }

.hero-visual { position: relative; perspective: 1000px; display: flex; justify-content: center; }
.bento-mockup-wrapper {
  position: relative;
  width: 100%; max-width: 550px;
}
.bento-glass-card {
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 15px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-glass-card:hover { transform: rotateY(0deg) rotateX(0deg) translateY(-10px); }

.modern-mockup { width: 100%; border-radius: 12px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.mockup-reflection {
  position: absolute; bottom: -50px; left: 5%; width: 90%; height: 50px;
  background: inherit; filter: blur(20px); opacity: 0.5;
  transform: scaleY(-1); z-index: -1;
}

.floating-badge {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: #fff;
  z-index: 10;
}
.floating-badge .badge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.badge-1 { top: 10%; left: -20px; animation: float 6s ease-in-out infinite; }
.badge-2 { bottom: 15%; right: -20px; animation: float 8s ease-in-out infinite reverse; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* SECTIONS */
.section { padding: clamp(56px, 8vw, 96px) 0; border-top: 1px solid var(--border); position: relative; }

/* HIGHLIGHT VIDEO */
.highlight-video .video-showcase {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 50px rgba(255, 85, 0, 0.15);
}
.video-frame {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  background: #000; width: 100%;
}
.video-frame video, .main-video { width: 100%; display: block; max-height: 600px; object-fit: cover; }
.video-info-boxes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px;
}
.info-box {
  background: rgba(0,0,0,0.4); padding: 25px; border-radius: 12px;
  border: 1px solid var(--border);
}
.info-icon { font-size: 2rem; margin-bottom: 10px; }
.info-box h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.info-box p { color: var(--text-muted); font-size: 1.1rem; }

/* COMPARISON */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.comp-box {
  position: relative; border-radius: 15px; overflow: hidden;
  border: 2px solid; background: #000;
}
.comp-box.without-macro { border-color: var(--danger); box-shadow: 0 0 30px rgba(255,23,68,0.2); }
.comp-box.with-macro { border-color: var(--success); box-shadow: 0 0 30px rgba(0,230,118,0.2); }
.comp-label {
  position: absolute; top: 15px; left: 15px; z-index: 10;
  padding: 8px 20px; border-radius: 50px; font-weight: 800;
  font-family: var(--font-heading); letter-spacing: 1px;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
}
.comp-label.danger { color: var(--danger); border: 1px solid var(--danger); }
.comp-label.success { color: var(--success); border: 1px solid var(--success); }
.comp-video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* RAPID FIRE */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-list { list-style: none; margin-top: 30px; }
.feature-list li {
  font-size: 1.2rem; margin-bottom: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}

/* UI SHOWCASE */
.ui-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ui-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 15px; overflow: hidden; transition: 0.3s;
}
.ui-card:hover { transform: translateY(-10px); border-color: var(--accent); }
.ui-card img { width: 100%; border-bottom: 1px solid var(--border); display: block; }
.ui-content { padding: 25px; }
.ui-content h3 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 10px; }
.ui-content p { color: var(--text-muted); font-size: 1.1rem; }

/* PRICING */
.pricing-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; align-items: stretch; }
.plan-card {
  background: linear-gradient(180deg, rgba(20,20,25,0.8) 0%, rgba(10,10,15,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-10px); border-color: rgba(255, 85, 0, 0.3); }
.plan-header { padding: 40px 30px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); text-align: center; }
.plan-header h3 { font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 20px; color: var(--text-muted); }
.price { font-family: var(--font-heading); font-size: 4rem; font-weight: 900; color: #fff; line-height: 1; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.price span { font-size: 1.5rem; color: var(--accent); }
.period { color: var(--accent); font-weight: 600; margin-top: 15px; font-size: 1.1rem; }
.plan-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.plan-features { list-style: none; margin-bottom: 30px; flex: 1; }
.plan-features li {
  padding: 12px 0;
  font-size: 1.1rem; font-weight: 600; text-align: left;
  display: flex; align-items: center; gap: 12px;
  color: #ccc;
}
.plan-features li .check { color: var(--accent); font-size: 1.2rem; }
.featured-plan { border: 2px solid var(--accent); transform: scale(1.05); box-shadow: 0 20px 50px rgba(255, 85, 0, 0.15); }
.featured-plan:hover { border-color: var(--accent); box-shadow: 0 20px 60px rgba(255, 85, 0, 0.3); }
.featured-plan .plan-header h3 { color: var(--accent); font-weight: 900; }
.popular-tag {
  background: linear-gradient(90deg, var(--accent), #FF8C00); color: #fff; font-family: var(--font-heading);
  font-weight: 900; font-size: 0.85rem; text-align: center; padding: 10px;
  letter-spacing: 2px; text-transform: uppercase;
}

/* FOOTER */
.footer { background: #010102; padding: 80px 0 30px; border-top: 1px solid var(--border); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand h3 { font-family: var(--font-heading); font-size: 1.5rem; letter-spacing: 2px; margin: 15px 0; }
.footer-brand p { color: var(--text-muted); }
.footer-brand img { height: 40px; }
.footer h4 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 20px; color: var(--accent); }
.footer-links a, .footer-contact a {
  display: block; color: var(--text-muted); text-decoration: none;
  margin-bottom: 10px; font-weight: 600; font-size: 1.1rem; transition: 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: #fff; padding-left: 5px; }
.footer-bottom { text-align: center; color: var(--text-muted); padding-top: 30px; border-top: 1px solid var(--border); }

/* ========================= */
/* SEO CONTENT PAGES         */
/* ========================= */
.seo-page {
  padding-top: 96px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 85, 0, 0.1), transparent 36%),
    var(--bg);
}
.seo-hero {
  padding: 72px 0 36px;
  text-align: center;
}
.seo-hero .tag { margin-bottom: 18px; }
.seo-hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.seo-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0;
}
.seo-card {
  background: linear-gradient(180deg, rgba(20,20,25,0.82), rgba(10,10,15,0.92));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.seo-card h2,
.seo-card h3 {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.seo-card p,
.seo-card li {
  color: var(--text-muted);
  font-size: 1rem;
}
.seo-card ul,
.seo-content ul,
.seo-content ol {
  padding-left: 20px;
}
.seo-card li,
.seo-content li {
  margin: 8px 0;
}
.seo-content {
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 0 72px;
}
.seo-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  margin: 34px 0 12px;
  line-height: 1.12;
}
.seo-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.seo-faq {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.seo-faq details {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.seo-faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
}
.seo-faq details p {
  margin: 12px 0 0;
}
.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.breadcrumb {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

/* ========================= */
/* MOBILE BOTTOM NAVIGATION  */
/* ========================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(7, 7, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #666;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 6px 0;
  min-width: 54px;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item svg { transition: transform 0.2s ease, color 0.2s ease; }
.bottom-nav-item.active,
.bottom-nav-item:active {
  color: var(--accent);
}
.bottom-nav-item.active svg { transform: scale(1.1); }

/* Floating CTA button in the middle */
.bottom-nav-cta { position: relative; }
.bottom-nav-cta-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), #ff2a00);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-top: -22px;
  box-shadow: 0 6px 20px rgba(255, 85, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bottom-nav-cta-icon svg { color: #fff; }
.bottom-nav-cta:active .bottom-nav-cta-icon {
  transform: scale(0.93);
  box-shadow: 0 4px 12px rgba(255, 85, 0, 0.3);
}
.bottom-nav-cta span { color: var(--accent); font-weight: 700; }

/* ========================= */
/* RESPONSIVE — TABLET       */
/* ========================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-badges { justify-content: center; }
  .hero-visual { margin: 28px auto 0; width: min(620px, 100%); }
  .mockup-container { transform: none; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .featured-plan { transform: scale(1); }
  .split-layout { grid-template-columns: 1fr; }
}

/* ========================= */
/* RESPONSIVE — MOBILE       */
/* ========================= */
@media (max-width: 768px) {
  body { font-size: 16px; padding-bottom: 70px; /* space for bottom nav */ }

  .container { padding: 0 20px; }

  /* — Top Navbar: clean, minimal — */
  .navbar, .new-navbar { padding: 12px 0; }
  .new-brand { font-size: 1.3rem; letter-spacing: 1.5px; }
  .brand-text { font-size: 1.2rem; }
  .brand-icon { width: 28px; height: 28px; }

  /* Hide desktop links and unnecessary buttons */
  .nav-links, .new-nav-links { display: none !important; }
  .nav-cta { display: none; }
  .lang-btn, .cart-btn { display: none !important; }

  /* Keep ENTRAR button visible and compact */
  .nav-actions, .new-nav-actions { display: flex !important; align-items: center; gap: 0; }
  .enter-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
    border-radius: 10px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.25);
  }
  .enter-btn svg { width: 14px; height: 14px; margin-right: 5px; }

  /* Show bottom nav */
  .mobile-bottom-nav { display: flex; }

  /* — Hero — */
  .hero {
    min-height: auto;
    padding: 90px 0 40px;
  }
  .hero-inner { gap: 30px; }
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.6rem);
    letter-spacing: -1px;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    padding: 0;
    margin-bottom: 24px;
    color: #999;
  }
  .modern-tag {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 30px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  .btn-glow { border-radius: 12px; }
  .hero-badges {
    gap: 8px;
    justify-content: center;
  }
  .badge-item {
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 6px;
  }

  /* Hero visual / mockup */
  .hero-visual { margin: 20px auto 0; width: 100%; }
  .bento-mockup-wrapper { max-width: 100%; }
  .bento-glass-card {
    transform: none;
    border-radius: 16px;
    padding: 10px;
  }
  .bento-glass-card:hover { transform: none; }
  .modern-mockup { border-radius: 10px; }
  .floating-badge {
    padding: 7px 14px;
    font-size: 0.78rem;
    border-radius: 10px;
    gap: 8px;
  }
  .floating-badge .badge-icon { width: 26px; height: 26px; font-size: 0.9rem; border-radius: 6px; }
  .badge-1 { top: 5%; left: -8px; }
  .badge-2 { bottom: 10%; right: -8px; }

  /* — Sections — */
  .section { padding: 48px 0; }
  .h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 8px;
  }
  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .section-title-wrap.center { text-align: center; }

  /* Detection video section */
  .highlight-video .video-showcase {
    border-radius: 14px;
    padding: 10px;
  }
  .video-frame video, .main-video { max-height: 240px; }
  .video-info-boxes { grid-template-columns: 1fr; gap: 10px; }
  .info-box {
    padding: 16px;
    border-radius: 10px;
  }
  .info-icon { font-size: 1.6rem; margin-bottom: 6px; }
  .info-box h3 { font-size: 1rem; margin-bottom: 6px; }
  .info-box p { font-size: 0.88rem; line-height: 1.5; }

  /* Comparison */
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }
  .comp-box { border-radius: 12px; }
  .comp-label { font-size: 0.72rem; padding: 5px 12px; top: 10px; left: 10px; }

  /* Rapid fire */
  .split-layout { grid-template-columns: 1fr; gap: 24px; }
  .feature-list li { font-size: 0.95rem; margin-bottom: 10px; }
  .desc { font-size: 0.92rem; line-height: 1.5; }
  .video-frame video { max-height: 260px; }

  /* Interface showcase */
  .ui-grid { grid-template-columns: 1fr; gap: 16px; }
  .ui-card { border-radius: 12px; }
  .ui-card:hover { transform: none; }
  .ui-content { padding: 18px; }
  .ui-content h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .ui-content p { font-size: 0.88rem; }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
  }
  .plan-card { border-radius: 14px; }
  .featured-plan { transform: none; border-width: 1.5px; }
  .featured-plan:hover { transform: none; }
  .plan-header { padding: 28px 20px 20px; }
  .plan-header h3 { font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
  .price { font-size: 2.8rem; }
  .price span { font-size: 1.2rem; }
  .period { font-size: 0.95rem; margin-top: 10px; }
  .plan-body { padding: 20px; }
  .plan-features { margin-bottom: 20px; }
  .plan-features li { padding: 8px 0; font-size: 0.92rem; }
  .plan-body .btn { padding: 13px 20px; font-size: 0.88rem; border-radius: 10px; }
  .popular-tag { font-size: 0.75rem; padding: 8px; letter-spacing: 1.5px; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 16px; }
  .faq-answer { font-size: 0.88rem; }

  /* Footer */
  .footer { padding: 50px 0 90px; /* extra bottom for bottom nav */ }
  .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-brand p { font-size: 0.9rem; }
  .footer h4 { font-size: 1rem; margin-bottom: 14px; }
  .footer-links a, .footer-contact a { font-size: 0.95rem; margin-bottom: 8px; }
  .footer-links a:hover { padding-left: 0; }
  .footer-bottom p { font-size: 0.82rem; }

  /* Glow orbs - subtle on mobile */
  .glow-orb { width: 250px; height: 250px; opacity: 0.2; }
  .seo-grid { grid-template-columns: 1fr; }
  .seo-page { padding-top: 76px; }
  .seo-hero { padding: 46px 0 24px; }
  .seo-card { padding: 18px; border-radius: 12px; }
  .seo-content { padding: 18px 0 58px; }
}

/* ========================= */
/* RESPONSIVE — SMALL PHONES */
/* ========================= */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .hero { padding: 85px 0 32px; }
  .hero-title { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .hero-desc { font-size: 0.9rem; }
  .btn-lg { padding: 13px 18px; font-size: 0.88rem; }
  .modern-tag { font-size: 0.68rem; padding: 5px 12px; }
  .tag { font-size: 0.72rem; }
  .section-subtitle { font-size: 0.88rem; }
  .price { font-size: 2.5rem; }
  .floating-badge { display: none; /* hide on very small phones for clean look */ }
  .bento-glass-card { padding: 8px; border-radius: 14px; }
  .enter-btn { padding: 7px 14px; font-size: 0.72rem; }
}
