/* ═══════════════════════════════════════════════════════════
   AccessNet Landing Page — Main Styles
   Requires: theme-variables.css
   ═══════════════════════════════════════════════════════════ */

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1.6;
}

a { text-decoration: none; }
img { max-width: 100%; }

/* ── NAVIGATION ── */
.lp-nav {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-nav);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease;
}

.nav-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-brand i { color: var(--brand); }

.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  color: var(--text2);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

/* Nav Buttons */
.btn-nav-login {
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 0.4rem 1.1rem;
  border-radius: 8px;
  font-size: 0.83rem;
  transition: all 0.2s;
}
.btn-nav-login:hover { border-color: var(--brand); color: var(--brand); }

.btn-nav-start {
  background: var(--brand);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.83rem;
  box-shadow: 0 0 14px var(--brand-glow);
  transition: all 0.2s;
}
.btn-nav-start:hover { opacity: 0.9; color: #fff; }

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); }

/* ── HERO ── */
.hero {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-hero);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-badge);
  border: 1px solid var(--border-badge);
  color: var(--badge-color);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, #3b82f6, var(--brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* Hero Buttons */
.btn-hero-primary {
  background: var(--brand);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 24px var(--brand-glow);
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--brand-glow);
  color: #fff;
}

.btn-hero-secondary {
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  color: var(--text2);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--brand); color: var(--brand); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num { font-size: 1.9rem; font-weight: 800; color: var(--text); }
.hero-stat-label { font-size: 0.72rem; color: var(--text3); margin-top: 0.15rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg-trust);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-icon);
  border: 1px solid var(--border2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brand);
  flex-shrink: 0;
}
.trust-title { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.trust-desc { font-size: 0.75rem; color: var(--text3); }

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-section); }
.section-alt2 { background: var(--bg-section2); }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

/* ── FEATURE CARDS ── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
}
.feature-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-badge);
  border: 1px solid var(--border-badge);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 0.875rem;
}
.feature-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.feature-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.6; }

/* ── BIG FEATURE BLOCKS ── */
.big-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 2.25rem;
  height: 100%;
  box-shadow: var(--shadow-card);
}
.big-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-badge);
  border: 1px solid var(--border-badge);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--brand);
  margin-bottom: 1.1rem;
}
.big-feature-title { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 0.5rem; }
.big-feature-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.7; margin-bottom: 1.1rem; }
.feature-list { padding: 0; margin: 0; list-style: none; }
.feature-list li {
  font-size: 0.8rem;
  color: var(--text2);
  padding: 0.28rem 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.feature-list li i { color: #22c55e; font-size: 0.68rem; }

/* ── HOW IT WORKS ── */
.step-num {
  width: 36px;
  height: 36px;
  background: var(--brand);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 0.82rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--brand-glow);
}
.step-title { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.step-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.6; }

.terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border-terminal);
  border-radius: 14px;
  padding: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.9;
}
.terminal .ok { color: #22c55e; }
.terminal .success {
  background: rgba(34, 197, 94, 0.07);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #22c55e;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  margin-top: 0.875rem;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.875rem; }
.testimonial-text { font-size: 0.85rem; color: var(--text2); line-height: 1.7; font-style: italic; margin-bottom: 1.1rem; }
.testimonial-author { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.72rem; color: var(--text3); }

/* ── PRICING ── */
.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-card);
  border-radius: 18px;
  padding: 1.875rem;
  height: 100%;
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
}
.pricing-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 36px var(--brand-glow);
}
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-card.featured .pricing-sub,
.pricing-card.featured .pricing-feature { color: rgba(255, 255, 255, 0.8); }
.pricing-card.featured .pricing-feature { border-color: rgba(255, 255, 255, 0.15); }

.pricing-name { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.pricing-price { font-size: 2.1rem; font-weight: 800; color: var(--text); }
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--text3); }
.pricing-sub { font-size: 0.75rem; color: var(--text3); margin-bottom: 1.25rem; }
.pricing-feature {
  font-size: 0.8rem;
  color: var(--text2);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.pricing-feature i { color: #22c55e; font-size: 0.68rem; }

.btn-pricing-outline {
  display: block;
  text-align: center;
  padding: 0.65rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  transition: all 0.2s;
  border: 1.5px solid var(--border2);
  color: var(--brand);
}
.btn-pricing-outline:hover { background: var(--bg-badge); color: var(--brand); }

.btn-pricing-white {
  display: block;
  text-align: center;
  padding: 0.65rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  transition: all 0.2s;
  background: #fff;
  color: var(--brand);
}
.btn-pricing-white:hover { opacity: 0.9; color: var(--brand); }

/* ── CTA SECTION ── */
.cta-box {
  background: var(--bg-cta);
  border-radius: 22px;
  padding: 3.75rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
.cta-sub { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin-bottom: 1.75rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.25rem;
}
.footer-brand { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.footer-desc { font-size: 0.8rem; color: var(--text3); line-height: 1.6; }
.footer-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  margin-bottom: 0.875rem;
}
.footer-link { display: block; font-size: 0.8rem; color: var(--text3); margin-bottom: 0.4rem; transition: color 0.2s; }
.footer-link:hover { color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.75rem; color: var(--text3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 0 2.5rem; }
  .hero-stats { gap: 1.25rem; }
  .cta-box { padding: 2.25rem 1.25rem; }
  .trust-item { margin-bottom: 1rem; }
  .lp-nav .nav-links { display: none; }
}
