/* ============================================
   MySSLPro — Design System
   ============================================ */

/* Local fonts — /fonts folder at same level as /assets (copied from myssl.pro) */
/* latin-ext */
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../../fonts/syne-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../../fonts/syne-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ─── DM SANS ─── */

/* latin-ext */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../../fonts/dm-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("../../fonts/dm-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}


:root {
  /* Colors from myssl.pro */
  --bg:           #0b1120;
  --bg-card:      #131c30;
  --bg-card-hover:#1a243a;
  --border:       rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);

  --accent:       #00d4e0; /* Target cyan */
  --accent-hover: #4d94ff;
  --accent-glow:  rgba(0, 212, 224, 0.15);
  --accent-dim:   rgba(0, 212, 224, 0.08);

  --blue:         #1664e8;
  --blue-light:   #4d94ff;

  --green:        #00c472;
  --green-dim:    rgba(0, 196, 114, 0.1);
  --amber:        #f59e0b;
  --amber-dim:    rgba(245, 158, 11, 0.1);
  --purple:       #a78bfa;
  --purple-dim:   rgba(167, 139, 250, 0.1);

  --text:         #ffffff;
  --text-muted:   #94a3b8;
  --text-dim:     #64748b;

  /* Typography */
  --font-body:    'DM Sans', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-mono:    ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Monaco, Consolas, monospace;

  /* Spacing */
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    20px;

  /* Shadows */
  --shadow-card:  0 10px 40px rgba(0,0,0,0.3);
  --shadow-glow:  0 0 30px rgba(30, 111, 255, 0.2);
}

/* ============================================
   Reset & Base
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 40px 0; }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  height: 80px;
  padding-top: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  letter-spacing: -0.5px;
  line-height: 1;
}

.site-logo .logo-slogan {
  font-family: var(--font-body);
  font-size: 0.62em;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0.2px;
  margin-top: 1px;
  margin-left: 4.5em;
}

.site-logo span { color: var(--accent); }
.site-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 0 15px var(--accent-glow);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: var(--accent-dim);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  z-index: 200;
  animation: navFadeIn 0.2s ease-out;
}

/* Invisible bridge to prevent closing on gap hover */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* ─── FADE-IN ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 25px rgba(22, 100, 232, 0.3);
}
.btn-primary:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(22, 100, 232, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.95rem;
  border-radius: 8px;
}

.nav-toggle {
  display: none !important;
  font-size: 1.5rem;
  padding: 4px 8px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  padding: 30px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(30, 111, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 224, 0.1);
  border: 1px solid rgba(0, 212, 224, 0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text);
  font-family: var(--font-heading);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item .icon { color: var(--green); font-size: 1rem; }

/* ============================================
   Section Labels
   ============================================ */

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  color: var(--accent);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-sub {
  margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.1);
  transform: translateY(-2px);
}

.card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-glow);
  position: relative;
}
.card-badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 100, 232, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================
   Product Grid
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  justify-items: center;
}

/* When fewer than 4 cards, center them */
.products-grid > * {
  width: 100%;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--accent-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-dim);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.product-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 10px 40px rgba(22, 100, 232, 0.2);
  position: relative;
}

.product-card--featured:hover {
  border-color: var(--blue-light);
  box-shadow: 0 10px 50px rgba(22, 100, 232, 0.4), 0 0 20px rgba(77, 148, 255, 0.2);
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.product-brand {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.product-desc {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.tag--dv   { background: rgba(0, 212, 224, 0.15); color: var(--accent); }
.tag--ov   { background: rgba(77, 148, 255, 0.2);  color: var(--blue-light); }
.tag--ev   { background: rgba(0, 196, 114, 0.15);  color: var(--green); }
.tag--gray { background: rgba(255,255,255,0.06); color: var(--text-muted); }

.product-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-cents {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  vertical-align: top;
  margin-top: 2px;
  display: inline-block;
}

.price-period {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
}

.product-warranty {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.products-grid--simplified {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.products-grid--simplified .product-card {
  flex: 0 1 calc(33.333% - 16px);
  min-width: 300px;
  max-width: 360px;
}

.product-category-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.compare-link {
  display: inline-block;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
}

.compare-link span {
  color: var(--accent);
}

.compare-link:hover {
  color: var(--text);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .products-grid--simplified .product-card {
    flex: 0 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .products-grid--simplified {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
  }
  .products-grid--simplified .product-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
  }
}

/* ============================================
   Steps / How It Works
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--border) 50%, var(--accent) 100%);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 28px 20px;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 188, 212, 0.3);
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-mono);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   Comparison Table
   ============================================ */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th {
  padding: 16px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

.compare-table .check { color: var(--green); font-weight: 700; }
.compare-table .cross { color: var(--text-dim); }

/* ============================================
   Testimonials
   ============================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.review-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0, 212, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-dim);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================
   CTA Banner
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(30, 111, 255, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.12) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: #080e1c;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  color: var(--text-dim);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--text-dim);
  margin-left: 12px;
}

.footer-bottom a:hover { color: var(--text-muted); }

/* ============================================
   Badges / Pills
   ============================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge--green  { background: var(--green-dim);  color: var(--green); }
.badge--blue   { background: var(--accent-dim); color: var(--accent); }
.badge--amber  { background: var(--amber-dim);  color: var(--amber); }
.badge--purple { background: var(--purple-dim); color: var(--purple); }
.badge--ev     { background: var(--green-dim);  color: var(--green); }

/* ============================================
   Utilities
   ============================================ */

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-green  { color: var(--green); }

.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ──────────────────────────────────────────
   Homepage Specific
   ────────────────────────────────────────── */

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.filter-tab:hover { border-color: var(--accent); color: var(--text); }
.filter-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px rgba(22, 100, 232, 0.3);
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all 0.3s;
}
.feature-item:hover { 
  border-color: var(--accent-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.feature-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Compat logos */
.compat-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.compat-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Stats bar */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 80px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.stat-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-val span { color: var(--accent); }
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Responsive
   ============================================ */

.mobile-actions { display: none; }

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .site-header {
    height: 70px;
    padding-top: 15px;
  }

  .header-inner {
    height: 100%;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0; /* Start from very top */
    left: 0;
    right: 0;
    z-index: 1001;
    background: #0b1120;
    flex-direction: column;
    padding: 90px 24px 120px; /* 90px top padding to clear the header */
    gap: 4px;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border);
    height: 100dvh; /* Full screen height */
    overflow-y: auto;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    padding: 8px 0;
    font-size: 0.9rem;
    width: 100%;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block !important;
  }

  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
    margin-bottom: 4px;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 0 12px;
    margin-top: 2px;
  }

  .nav-toggle-sub {
    pointer-events: none;
    font-weight: 800 !important;
    color: var(--accent) !important;
    padding: 0 0 8px 0 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .btn:not(.nav-toggle) {
    display: inline-flex;
    padding: 6px 8px;
    font-size: 0.75rem;
  }

  .site-logo {
    font-size: 1.1rem;
  }

  .mobile-actions {
    display: none !important;
  }

  .mobile-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .products-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .products-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero   { padding: 64px 0 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 40px 24px; }
  .products-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 24px 12px; gap: 16px; }
  .stat-val { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; line-height: 1.2; }
}
