/*
Theme Name: Flux1 Platform
Theme URI: https://flux1.ro
Author: ASL Security Solutions SRL
Author URI: https://aslsecurity.ro
Description: Tema dedicată prezentării și licențierii platformei Flux1 — ecosistem ERP pentru firme de pază și securitate din România.
Version: 1.0.0
License: Proprietary
Text Domain: flux1
Tags: business, dark, one-page, security, saas
*/

/* ── CSS VARIABLES ── */
:root {
  --bg: #080c10;
  --bg2: #0d1219;
  --bg3: #111820;
  --border: rgba(255,255,255,0.07);
  --accent: #00c8ff;
  --accent2: #0066ff;
  --accent3: #ff4d00;
  --text: #e8edf2;
  --text-dim: #6b7a8d;
  --text-mid: #9aaabb;
  --card-bg: rgba(255,255,255,0.03);
  --grid-line: rgba(255,255,255,0.04);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── GRID BACKGROUND ── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,200,0.12), transparent 70%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(0,200,255,0.05), transparent 60%);
}

/* ── SITE WRAPPER ── */
#page { position: relative; z-index: 1; }

/* ── NAVIGATION ── */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#masthead.scrolled { background: rgba(8,12,16,0.97); }

.site-branding { display: flex; align-items: center; gap: 10px; }
.site-title {
  font-family: 'Space Mono', monospace;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.5px; color: var(--text);
}
.nav-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

#site-navigation ul {
  display: flex; gap: 32px;
}
#site-navigation a {
  color: var(--text-dim);
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
#site-navigation a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent); color: #000;
  padding: 9px 22px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: all 0.2s;
}
.nav-cta:hover {
  background: #fff;
  box-shadow: 0 0 24px rgba(0,200,255,0.5);
}

/* ── HAMBURGER MOBILE ── */
.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border);
  color: var(--text); padding: 8px 12px;
  font-size: 18px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #000;
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: all 0.2s;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0,200,255,0.5);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
}

/* ── SECTION COMMON ── */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 800;
  line-height: 0.95; letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-header p { color: var(--text-mid); font-size: 16px; line-height: 1.7; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 4px 12px 4px 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}
.hero-tag .led {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 80px; font-weight: 800;
  line-height: 0.92; letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero h1 .accent-word { color: var(--accent); }
.hero h1 .dim-word { color: var(--text-dim); font-weight: 300; font-style: italic; }
.hero-sub {
  font-size: 17px; font-weight: 300;
  color: var(--text-mid); line-height: 1.7;
  max-width: 460px; margin-bottom: 20px;
}
.hero-proof {
  display: flex; gap: 24px; align-items: center;
  margin-bottom: 40px;
  font-size: 12px; color: var(--text-dim);
  font-family: 'Space Mono', monospace;
}
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof .dot-g { width: 6px; height: 6px; border-radius: 50%; background: #00e57a; }
.hero-actions { display: flex; gap: 16px; align-items: center; }

/* ── HERO VISUAL (dashboard) ── */
.hero-visual { position: relative; }
.dashboard-frame {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,200,255,0.1),
    0 40px 80px rgba(0,0,0,0.6);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s ease;
}
.dashboard-frame:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
}
.dash-titlebar {
  background: #0a0f14;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 6px;
}
.dash-dot { width: 8px; height: 8px; border-radius: 50%; }
.dash-dot.r { background: #ff5f57; }
.dash-dot.y { background: #febc2e; }
.dash-dot.g { background: #28c840; }
.dash-url {
  margin-left: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim);
  letter-spacing: 0.04em;
}
.dash-body { display: grid; grid-template-columns: 150px 1fr; min-height: 280px; }
.dash-sidebar {
  background: rgba(0,0,0,0.3);
  border-right: 1px solid var(--border);
  padding: 12px 0;
}
.dash-nav-item {
  padding: 8px 14px;
  font-size: 11px; color: var(--text-dim);
  display: flex; align-items: center; gap: 8px;
  border-left: 2px solid transparent;
  font-family: 'Barlow', sans-serif;
  transition: all 0.15s;
}
.dash-nav-item.active {
  color: var(--accent);
  background: rgba(0,200,255,0.06);
  border-left-color: var(--accent);
}
.dash-main { padding: 18px; }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mstat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 10px;
}
.mstat-label { font-size: 8px; color: var(--text-dim); font-family: 'Space Mono', monospace; text-transform: uppercase; margin-bottom: 4px; }
.mstat-val { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.mstat-val.g { color: #00e57a; }
.mstat-val.w { color: #ffaa00; }
.mini-bars {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  height: 70px; padding: 10px 12px;
  display: flex; align-items: flex-end; gap: 4px;
}
.mbar { flex: 1; border-radius: 1px; background: rgba(0,200,255,0.2); }
.mbar.hi { background: rgba(0,200,255,0.7); }
.mbar.mid { background: rgba(0,200,255,0.4); }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.015);
}
.proof-item {
  padding: 32px 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 6px;
}
.proof-label {
  font-size: 12px; font-weight: 300;
  color: var(--text-dim); text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── PROBLEM → SOLUTION ── */
.problem-section { border-top: 1px solid var(--border); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.problem-col { background: var(--bg); padding: 40px; }
.problem-col.solution { background: var(--bg2); }
.col-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.col-eyebrow.bad { color: var(--accent3); }
.col-eyebrow.good { color: #00e57a; }
.col-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: currentColor;
}
.problem-col h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 800;
  line-height: 1.05; margin-bottom: 16px;
}
.problem-list { list-style: none; }
.problem-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-dim);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.problem-list li:last-child { border-bottom: none; }
.problem-list li::before {
  content: attr(data-icon);
  flex-shrink: 0; margin-top: 1px;
}

/* ── MODULES GRID ── */
.modules-section { background: linear-gradient(180deg, transparent, rgba(0,50,100,0.04) 50%, transparent); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.module-card {
  background: var(--bg);
  padding: 36px 32px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.module-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--module-color, var(--accent));
  opacity: 0; transition: opacity 0.3s;
}
.module-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, transparent 50%, var(--module-color, var(--accent)) 50%);
  opacity: 0.06; transition: opacity 0.3s;
}
.module-card:hover::before { opacity: 1; }
.module-card:hover::after { opacity: 0.15; }
.module-card:hover { background: var(--bg3); }
.module-icon {
  font-size: 28px; margin-bottom: 18px;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}
.module-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; margin-bottom: 4px;
}
.module-code {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--module-color, var(--accent));
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.module-desc {
  font-size: 13px; color: var(--text-dim);
  line-height: 1.7; margin-bottom: 18px;
}
.module-features {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.module-features li {
  font-size: 12px; color: var(--text-mid);
  padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.module-features li:last-child { border-bottom: none; }
.module-features li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--module-color, var(--accent));
  flex-shrink: 0; opacity: 0.7;
}
.module-status {
  position: absolute; top: 14px; right: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 9px; padding: 3px 8px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.status-live { color: #00e57a; background: rgba(0,229,122,0.1); border: 1px solid rgba(0,229,122,0.25); }
.status-dev  { color: #ffaa00; background: rgba(255,170,0,0.08); border: 1px solid rgba(255,170,0,0.2); }
.status-soon { color: var(--text-dim); background: rgba(255,255,255,0.03); border: 1px solid var(--border); }

/* ── PRICING ── */
.pricing-section { border-top: 1px solid var(--border); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.pricing-card {
  background: var(--bg); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.pricing-card.featured {
  background: var(--bg2);
  border-top: 2px solid var(--accent);
}
.pricing-card.featured::before {
  content: 'RECOMANDAT';
  position: absolute; top: 0; right: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(0,200,255,0.1);
  padding: 4px 10px;
}
.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 20px;
}
.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px; font-weight: 800;
  line-height: 1; color: var(--text);
  margin-bottom: 4px;
}
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-period {
  font-size: 13px; color: var(--text-dim); margin-bottom: 8px;
}
.plan-period small { color: var(--accent); font-family: 'Space Mono', monospace; font-size: 10px; }
.plan-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 28px; }
.plan-divider {
  height: 1px; background: var(--border); margin-bottom: 24px;
}
.plan-features li {
  font-size: 13px; color: var(--text-mid);
  padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  line-height: 1.4;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li .chk { color: #00e57a; flex-shrink: 0; margin-top: 1px; }
.plan-features li .x { color: var(--text-dim); flex-shrink: 0; margin-top: 1px; }
.plan-cta { margin-top: 32px; display: block; width: 100%; text-align: center; }

/* ── TECH STACK ── */
.tech-section {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,30,60,0.15));
}
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
.tech-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.tech-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.tech-card-icon { font-size: 28px; margin-bottom: 12px; }
.tech-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700; margin-bottom: 6px;
}
.tech-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { border-top: 1px solid var(--border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.testimonial-card { background: var(--bg); padding: 40px; }
.testimonial-card:hover { background: var(--bg2); }
.quote-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 60px; font-weight: 800;
  color: var(--accent); opacity: 0.3;
  line-height: 0.8; margin-bottom: 16px;
}
.quote-text {
  font-size: 15px; font-weight: 300;
  color: var(--text-mid); line-height: 1.75;
  margin-bottom: 24px; font-style: italic;
}
.quote-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--text);
}
.quote-role { font-size: 12px; color: var(--text-dim); font-family: 'Space Mono', monospace; }

/* ── FAQ ── */
.faq-section { border-top: 1px solid var(--border); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent; color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 600;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  font-size: 20px; color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 14px; color: var(--text-dim); line-height: 1.75;
}

/* ── CTA FINAL ── */
.cta-section {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,30,60,0.25));
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 800;
  letter-spacing: -2px; line-height: 0.95;
  margin-bottom: 20px;
}
.cta-section p {
  color: var(--text-dim); font-size: 16px;
  line-height: 1.7; margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0,200,255,0.4);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit { margin-top: 8px; }

/* ── FOOTER ── */
#colophon {
  border-top: 1px solid var(--border);
  padding: 60px 48px 32px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-tagline {
  font-size: 13px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-info {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim);
  line-height: 2;
}
.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 13px; color: var(--text-dim);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--text-dim); opacity: 0.5;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 11px; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 56px; }
  .hero-visual { order: -1; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav, #masthead { padding: 0 24px; }
  #site-navigation { display: none; }
  .menu-toggle { display: block; }
  #site-navigation.active { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; }
  #site-navigation.active ul { flex-direction: column; gap: 0; }
  #site-navigation.active li { border-bottom: 1px solid var(--border); }
  #site-navigation.active a { display: block; padding: 12px 0; }
  .hero { padding: 100px 24px 60px; }
  .hero h1 { font-size: 48px; }
  .container { padding: 0 24px; }
  section { padding: 60px 0; }
  .modules-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .section-header h2 { font-size: 36px; }
  .cta-section h2 { font-size: 44px; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── WORDPRESS SPECIFIC ── */
.wp-block-image img { border: 1px solid var(--border); }
.wp-caption-text { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.aligncenter { display: block; margin: 0 auto; }
.page-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.page-content p { color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
