@font-face {
  font-family: 'Geist';
  src: url('fonts/geist-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Geist';
  src: url('fonts/geist-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #09090b;
  --text: #fafafa;
  --accent: #3b82f6;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --card-bg: rgba(24, 24, 27, 0.6);
  --card-border: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --font-geist-sans: 'Geist', sans-serif;
  --popular-bg: #1e40af;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-geist-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 0;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

.glowBlob1, .glowBlob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.5;
}

.glowBlob1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
  animation: floatX 20s ease-in-out infinite;
}

.glowBlob2 {
  top: 20vh;
  right: -5vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3) 0%, rgba(220, 38, 38, 0) 70%);
  animation: floatY 25s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .glowBlob1 {
    left: 0 !important;
    width: 80vw !important;
  }
  .glowBlob2 {
    right: 0 !important;
    width: 80vw !important;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: url('herobg.webp') center/cover no-repeat;
  opacity: 0.05; /* 5% transparency */
  z-index: -2;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatX {
  0% { transform: translate(0, 0); }
  50% { transform: translate(5vw, 2vh); }
  100% { transform: translate(0, 0); }
}

@keyframes floatY {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-4vw, -4vh); }
  100% { transform: translate(0, 0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Global Utilities */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Glass Card */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

a.glass-card:hover, button.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--card-border);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: rgba(255,255,255,0.25);
  color: #fff;
}

.btn-secondary {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: #2563eb;
  transform: scale(1.05);
}

.text-gradient {
  background: linear-gradient(to right, #fff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.nav-wrapper {
  width: 100%;
}

.nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.navControls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Hamburger Navigation Button & Dropdown Overlay */
.mobile-menu-btn {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-btn i, .mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  color: var(--text);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .navControls {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding: 1.25rem 1.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    z-index: 10000;
    box-sizing: border-box;
  }

  .navControls.is-open {
    display: flex !important;
    animation: fadeIn 0.25s ease-out;
  }

  .navControls a, 
  .navControls button,
  .navControls .langToggle,
  .navControls .themeToggle {
    width: 100% !important;
    justify-content: center !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  [data-theme="light"] .mobile-menu-btn {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
  }

  [data-theme="light"] .mobile-menu-btn i,
  [data-theme="light"] .mobile-menu-btn svg {
    color: #0f172a;
  }

  [data-theme="light"] .navControls {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(203, 213, 225, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
}
.floating-nav-container {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate(-50%, -150%);
  width: min(1200px, calc(100% - 4rem));
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.floating-nav-container.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-nav-container .nav {
  padding: 0;
}

[data-theme="light"] .floating-nav-container {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.navControls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.langToggle {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1rem;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.langToggle i {
  width: 18px;
  height: 18px;
}

.langToggle:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.themeToggle {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.themeToggle i {
  width: 18px;
  height: 18px;
}

.themeToggle:hover {
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero */
.hero {
  padding: 2rem 0 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero, .hero * {
  animation: none !important;
  transition-property: background-color, border-color, color, box-shadow, transform;
}

.hero-top-group {
  margin: auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1.5rem 2rem;
  width: 100%;
}

.made-in svg {
  display: block;
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: #71717a; /* very muted */
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.5;
}

.hero-content {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
}

.hero-visual {
  grid-column: 2 / 3;
  width: 100%;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-top-group {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero h1 {
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .hero-content {
    grid-column: 1 / -1 !important;
    align-items: center;
    text-align: center;
  }

  .hero-visual {
    display: none !important;
  }

  .ctaGroup {
    justify-content: center;
    width: 100%;
  }

  .hero-guarantee-line {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .mock-body {
    flex-direction: column;
    min-height: auto;
  }

  .mock-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    overflow-x: auto;
    padding: 0.5rem;
  }

  .mock-nav-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
  }

  .mock-content {
    padding: 1rem;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }
}

.mock-plugin-ui {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 15, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  pointer-events: none;
  user-select: none;
  padding: 0;
}

.mock-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-dots {
  display: flex;
  gap: 6px;
  margin-right: 1rem;
}

.mock-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3f3f46;
}

.mock-dots span:nth-child(1) { background: #ef4444; }
.mock-dots span:nth-child(2) { background: #eab308; }
.mock-dots span:nth-child(3) { background: #22c55e; }

.mock-title {
  font-size: 0.8rem;
  color: #cbd5e1;
  flex-grow: 1;
  text-align: center;
  font-weight: 500;
}

.mock-body {
  display: flex;
  min-height: 250px;
}

.mock-sidebar {
  width: 150px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.mock-nav-item {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.mock-nav-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-left: 3px solid var(--accent);
}

.mock-nav-item i {
  width: 16px;
  height: 16px;
}

.mock-content {
  flex-grow: 1;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mock-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.mock-card h4 {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.mock-stat {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.16rem, 3.7vw, 3.36rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
  text-align: left;
}

.hero-h2 {
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.ctaGroup {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .ctaGroup {
    justify-content: center;
  }
}

/* How It Works & Features */
.how-it-works {
  margin-top: 100px;
  margin-bottom: 100px;
}

.how-header {
  text-align: center;
  margin-bottom: 3rem;
}

.how-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.how-header p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-trust-badges {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.trust-badge span {
  display: block;
}

.trust-badge i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  min-height: 84px;
}

.feature-tab h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}



/* Automotive Tech Cockpit Corner Bracket Frame for Feature Details */
.feature-detail-container {
  position: relative;
  margin-top: 3rem;
  padding: 2.5rem 3rem;
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  text-align: left;
}

/* Top-Left Corner Bracket */
.feature-detail-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-top-left-radius: 20px;
  pointer-events: none;
}

/* Bottom-Right Corner Bracket */
.feature-detail-container::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 36px;
  height: 36px;
  border-bottom: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-bottom-right-radius: 20px;
  pointer-events: none;
}

.corner-bracket {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
}

.corner-bracket.top-right {
  top: -1px;
  right: -1px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-top-right-radius: 20px;
}

.corner-bracket.bottom-left {
  bottom: -1px;
  left: -1px;
  border-bottom: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  border-bottom-left-radius: 20px;
}

@media (max-width: 768px) {
  .feature-detail-container {
    padding: 1.75rem 1.5rem;
  }
}

[data-theme="light"] .feature-detail-container {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.06);
}

[data-theme="light"] .feature-detail-container::before,
[data-theme="light"] .feature-detail-container::after,
[data-theme="light"] .corner-bracket {
  border-color: #2563eb;
}

/* Clean Feature Detail List - No Cards, 40px Large Icons */
.feature-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.5rem;
}

@media (max-width: 768px) {
  .feature-detail-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.feature-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.feature-detail-list .detail-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail-list .detail-icon svg,
.feature-detail-list .detail-icon i {
  width: 40px;
  height: 40px;
  color: var(--accent);
  stroke-width: 1.75;
}

.feature-detail-list .feature-content {
  display: flex;
  flex-direction: column;
}

.feature-detail-list h4 {
  margin: 0 0 0.5rem 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature-detail-list p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

[data-theme="light"] .feature-detail-list .detail-icon svg,
[data-theme="light"] .feature-detail-list .detail-icon i {
  color: #2563eb;
}

[data-theme="light"] .feature-detail-list h4 {
  color: #0f172a !important;
}

[data-theme="light"] .feature-detail-list p {
  color: #334155 !important;
}

/* Pricing Section */
.pricing {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Toggle Switch */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.toggle-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.badge-free {
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 3px;
  bottom: 3px;
  background-color: #ffffff;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #10b981;
}

.switch input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.pricingCard {
  display: flex;
  flex-direction: column;
}

.pricingCard h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.tier-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e4e4e7;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0.25rem;
}

.period {
  color: #cbd5e1;
}

.tier-limits {
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.limit-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}

.limit-row:last-child {
  margin-bottom: 0;
}

.limit-row b {
  color: var(--text);
  font-weight: 600;
}

.featureList {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featureList li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #e4e4e7;
  font-size: 0.9rem;
  line-height: 1.4;
}

.featureList li.disabled {
  color: #52525b;
}

.check {
  color: #10b981; /* green */
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cross {
  color: #52525b;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.popular {
  border-color: var(--accent);
  background: rgba(30, 64, 175, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Footer */
.footer {
  margin-top: 8rem;
  padding: 4rem 0 3rem;
  color: #cbd5e1;
  border-top: 1px solid var(--card-border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
}

.footer-copy {
  font-size: 0.85rem;
  color: #71717a;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  justify-self: center;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.made-in {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: #cbd5e1;
  justify-self: end;
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-disclaimer p {
  color: #cbd5e1;
  font-size: 0.825rem;
  line-height: 1.6;
  margin: 0;
}

/* Deep Dive Section */
.deep-dive {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.deep-dive-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.deep-dive-row.reverse {
  flex-direction: row-reverse;
}

.deep-dive-text {
  flex: 1;
}

.deep-dive-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.deep-dive-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.deep-dive-image {
  flex: 1.2;
}

.image-wrapper {
  padding: 0.5rem;
  border-radius: var(--radius);
  background: var(--card-border);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Comparison Section */
.comparison {
  margin-top: 8rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.comparison-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.comparison-table th.highlight, .comparison-table td.highlight {
  background: rgba(124, 58, 237, 0.1);
  color: #fff;
}

.comparison-table td {
  color: #cbd5e1;
}

.comparison-table td i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transform: translateY(1px);
  margin-right: 0.5rem;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.faq {
  margin-top: 8rem;
}

.faq h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #e4e4e7;
}

.faq-card p {
  color: #cbd5e1;
  line-height: 1.6;
}

.feature-tab.active { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2); }

/* Responsive / Mobile Optimization */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deep-dive-row, .deep-dive-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }
  .how-it-works, .pricing, .deep-dive, .comparison, .faq {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 0 1.5rem;
    min-height: auto;
    gap: 1.75rem;
  }
  .hero h1 {
    text-align: center !important;
    font-size: clamp(1.65rem, 6.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    width: 100%;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-h2 {
    text-align: center !important;
    font-size: clamp(1.05rem, 4vw, 1.25rem);
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .hero-desc {
    text-align: center !important;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.5rem;
  }
  .ctaGroup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .ctaGroup .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
  }
  .footer-brand, .footer-links, .made-in {
    justify-self: center;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .feature-detail-list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .deep-dive-text h2 {
    font-size: 1.75rem;
  }
  .how-header h2, .pricing h2, .faq h2 {
    font-size: 1.85rem;
  }
  .how-it-works, .pricing, .deep-dive, .comparison, .faq {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .comparison-table-wrapper {
    padding: 1rem 0.5rem;
  }
  .comparison-table th, .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
  .pricing-trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Mock UI Mobile styling */
  .hero-visual {
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    overflow: hidden;
  }
  .mock-plugin-ui {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .mock-header {
    padding: 0.5rem 0.75rem;
  }
  .mock-title {
    font-size: 0.75rem;
  }
  .mock-body {
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }
  .mock-sidebar {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.35rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    gap: 0.35rem;
  }
  .mock-sidebar::-webkit-scrollbar {
    display: none;
  }
  .mock-nav-item {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
    border-left: none !important;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    gap: 0.35rem;
    flex-shrink: 0;
  }
  .mock-nav-item.active {
    border-bottom: 2px solid var(--accent);
    background: rgba(59, 130, 246, 0.15);
  }
  .mock-content {
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .mock-card {
    padding: 0.65rem;
    text-align: left;
    min-width: 0;
    overflow: hidden;
  }
  .mock-card h4 {
    font-size: 0.7rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mock-stat {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 1rem;
  }
  .nav {
    padding: 1rem 0;
    gap: 0.5rem;
  }
  .logo {
    font-size: 1.15rem;
  }
  .navControls {
    gap: 0.35rem;
  }
  .navBtn {
    padding: 0.35rem 0.65rem !important;
    font-size: 0.75rem !important;
  }
  .langToggle {
    height: 32px;
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }
  .themeToggle {
    height: 32px;
    width: 32px;
  }
  .themeToggle i {
    width: 15px;
    height: 15px;
  }
  .glass-card {
    padding: 1.25rem !important;
  }
  .pricing-toggle-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .toggle-label {
    font-size: 0.85rem;
  }
  .badge-free {
    font-size: 0.7rem;
    padding: 0.15rem 0.4rem;
  }
}

@media (max-width: 480px) {
  .mock-content {
    grid-template-columns: 1fr;
  }
}

/* Light Theme Variables & Styles */
[data-theme="light"] {
  --bg: #f8fafc;
  --text: #0f172a;
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.25);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(203, 213, 225, 0.7);
  --popular-bg: #dbeafe;
}

[data-theme="light"] .text-gradient {
  background: linear-gradient(to right, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .hero-h2 {
  color: #1e293b;
}

[data-theme="light"] .hero-desc {
  color: #475569;
}

[data-theme="light"] .btn-primary {
  background-color: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

[data-theme="light"] .btn-primary:hover {
  background-color: #e2e8f0;
  color: #020617;
}

[data-theme="light"] .btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

[data-theme="light"] .btn-secondary:hover {
  background-color: #f1f5f9;
}

[data-theme="light"] .featureList li {
  color: #334155;
}

[data-theme="light"] .featureList li.disabled {
  color: #94a3b8;
}

[data-theme="light"] .tier-limits {
  background: rgba(241, 245, 249, 0.8);
}

[data-theme="light"] .limit-row {
  color: #64748b;
}

[data-theme="light"] .mock-plugin-ui {
  background: rgba(255, 255, 255, 0.95);
  border-color: #cbd5e1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mock-header {
  background: #f1f5f9;
  border-bottom-color: #e2e8f0;
}

[data-theme="light"] .mock-title {
  color: #475569;
}

[data-theme="light"] .mock-sidebar {
  background: #f8fafc;
  border-right-color: #e2e8f0;
}

[data-theme="light"] .mock-nav-item {
  color: #64748b;
}

[data-theme="light"] .mock-nav-item.active {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

[data-theme="light"] .mock-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

[data-theme="light"] .mock-card h4 {
  color: #64748b;
}

[data-theme="light"] .mock-stat {
  color: #0f172a;
}

[data-theme="light"] .comparison-table th {
  color: #0f172a;
}

[data-theme="light"] .comparison-table td {
  color: #475569;
}

[data-theme="light"] .comparison-table th.highlight, 
[data-theme="light"] .comparison-table td.highlight {
  background: rgba(37, 99, 235, 0.08);
  color: #0f172a;
}

[data-theme="light"] .faq-card h3 {
  color: #0f172a;
}

[data-theme="light"] .faq-card p {
  color: #475569;
}

[data-theme="light"] .footer {
  background: #ffffff;
  border-top-color: #e2e8f0;
  color: #64748b;
}

[data-theme="light"] .footer-copy,
[data-theme="light"] .footer-disclaimer p {
  color: #64748b;
}

[data-theme="light"] .footer-disclaimer {
  border-top-color: #e2e8f0;
}

[data-theme="light"] .footer-links a {
  color: #475569 !important;
}

[data-theme="light"] .footer-links a:hover {
  color: #0f172a !important;
}

[data-theme="light"] .made-in {
  color: #475569;
}

[data-theme="light"] .toggle-label {
  color: #475569;
}

[data-theme="light"] .slider {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

/* Trust Bar Section inside Hero */
.trust-bar-section {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.trust-bar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar-icon svg {
  width: 22px;
  height: 22px;
}

.trust-bar-text {
  display: flex;
  flex-direction: column;
}

.trust-bar-text strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.trust-bar-text span {
  font-size: 0.8rem;
  color: #cbd5e1;
}

.hero-guarantee-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.825rem;
  color: #cbd5e1;
}

/* Guarantee Banner */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(24, 24, 27, 0.6) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 30px;
  height: 30px;
}

.guarantee-content h4 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.guarantee-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Final CTA Banner */
.final-cta-section {
  margin-top: 8rem;
  margin-bottom: 4rem;
}

.final-cta-card {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, rgba(24, 24, 27, 0.8) 100%);
  border: 1px solid var(--card-border);
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.final-cta-card h2 {
  font-size: 2.5rem;
  max-width: 750px;
  margin-bottom: 1rem;
}

.final-cta-card p {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #cbd5e1;
}

@media (max-width: 900px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 550px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
  }
  .final-cta-card h2 {
    font-size: 1.8rem;
  }
}

[data-theme="light"] .trust-bar-grid {
  background: rgba(255, 255, 255, 0.8);
  border-color: #cbd5e1;
}

[data-theme="light"] .trust-bar-text strong {
  color: #0f172a;
}

[data-theme="light"] .trust-bar-text span {
  color: #64748b;
}

[data-theme="light"] .final-cta-card {
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: #cbd5e1;
}

[data-theme="light"] .guarantee-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(16, 185, 129, 0.4);
}

[data-theme="light"] .guarantee-content h4 {
  color: #0f172a;
}

[data-theme="light"] .guarantee-content p {
  color: #475569;
}





.hero-guarantee-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #e4e4e7;
}

[data-theme="light"] .hero-guarantee-line {
  color: #334155 !important;
}

[data-theme="light"] .hero-guarantee-line span {
  color: #334155 !important;
}

/* ==========================================
   PERFECT LIGHT MODE COLOR OVERRIDES & CONTRAST
   ========================================== */
[data-theme="light"] {
  --bg: #f8fafc;
  --text: #0f172a;
  --text-muted: #334155;
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-border: rgba(203, 213, 225, 0.8);
}

[data-theme="light"] body {
  background-color: #f8fafc;
  color: #0f172a;
}

[data-theme="light"] p,
[data-theme="light"] .hero-desc,
[data-theme="light"] .tier-desc,
[data-theme="light"] .feature-tab p,
[data-theme="light"] .feature-detail p,
[data-theme="light"] .faq-card p,
[data-theme="light"] .trust-bar-text span,
[data-theme="light"] [data-i18n="how_subtitle"],
[data-theme="light"] [data-i18n="comp_subtitle"],
[data-theme="light"] [data-i18n="deep_1_desc"],
[data-theme="light"] [data-i18n="deep_2_desc"],
[data-theme="light"] .toggle-label,
[data-theme="light"] .footer-disclaimer p {
  color: #334155 !important;
}

[data-theme="light"] .hero-h2 {
  color: #0f172a !important;
}

[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4,
[data-theme="light"] .trust-bar-text strong,
[data-theme="light"] .price .amount,
[data-theme="light"] .price .currency {
  color: #0f172a !important;
}

[data-theme="light"] .price .period,
[data-theme="light"] .limit-row span {
  color: #475569 !important;
}

[data-theme="light"] .trust-bar-section {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="light"] .trust-bar-grid {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .trust-bar-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .feature-tab {
  background: rgba(255, 255, 255, 0.92);
  border-color: #cbd5e1;
}

[data-theme="light"] .feature-tab.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: #2563eb;
}

[data-theme="light"] .feature-tab h3 {
  color: #0f172a !important;
}

[data-theme="light"] .mock-card {
  background: #ffffff;
  border-color: #cbd5e1;
}

[data-theme="light"] .mock-card h3 {
  color: #1e293b !important;
}

[data-theme="light"] .mock-stat {
  color: #0f172a !important;
}
