/* =====================================================
   EzyAudit AI — Premium SaaS Design System v2.0
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Core Colors */
  --ezy-bg: #040d1a;
  --ezy-bg2: #071224;
  --ezy-surface: #0b1a30;
  --ezy-surface2: #0f2140;
  --ezy-surface3: #132548;
  --ezy-border: #1a3255;
  --ezy-border2: #1e3d66;

  /* Brand */
  --ezy-blue: #2563eb;
  --ezy-blue-light: #3b82f6;
  --ezy-blue-glow: rgba(59,130,246,0.25);
  --ezy-cyan: #06b6d4;
  --ezy-green: #10b981;
  --ezy-emerald: #059669;
  --ezy-yellow: #f59e0b;
  --ezy-orange: #f97316;
  --ezy-red: #ef4444;
  --ezy-purple: #8b5cf6;
  --ezy-pink: #ec4899;

  /* Text */
  --ezy-text: #e2e8f0;
  --ezy-text2: #cbd5e1;
  --ezy-muted: #64748b;
  --ezy-muted2: #475569;
  --ezy-white: #ffffff;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* Shadows */
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.3);
  --shadow-glow: 0 0 60px rgba(59,130,246,0.15);

  /* Gradients */
  --grad-blue: linear-gradient(135deg, #1d4ed8, #2563eb, #3b82f6);
  --grad-surface: linear-gradient(180deg, #0b1a30, #071224);
  --grad-hero: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(37,99,235,0.18) 0%, transparent 70%);
  --grad-card: linear-gradient(145deg, rgba(11,26,48,0.9), rgba(7,18,36,0.95));
}

/* =====================================================
   RESET & BASE
   ===================================================== */
.ezy-site *, .ezy-app *, .ezy-auth-page *, .ezy-public-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.ezy-site, .ezy-app, .ezy-auth-page, .ezy-public-page {
  font-family: var(--font-sans);
  color: var(--ezy-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* =====================================================
   PUBLIC SITE — GLOBAL NAV
   ===================================================== */
.ezy-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4,13,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,50,85,0.6);
  transition: background 0.3s;
}
.ezy-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ezy-nav-brand-icon {
  width: 36px; height: 36px;
  background: var(--grad-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.ezy-nav-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--ezy-white);
  letter-spacing: -0.3px;
}
.ezy-nav-brand-name span {
  color: var(--ezy-blue-light);
}
.ezy-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.ezy-nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--ezy-text2);
  text-decoration: none;
  transition: all 0.2s;
}
.ezy-nav-links a:hover { color: var(--ezy-white); background: var(--ezy-surface2); }
.ezy-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ezy-nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--ezy-text2);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.ezy-nav-login:hover { color: var(--ezy-white); }

/* =====================================================
   BUTTONS
   ===================================================== */
.ezy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.ezy-btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.ezy-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.5);
  filter: brightness(1.05);
}
.ezy-btn-outline {
  background: transparent;
  color: var(--ezy-blue-light);
  border: 1.5px solid var(--ezy-border2);
}
.ezy-btn-outline:hover {
  background: rgba(59,130,246,0.08);
  border-color: var(--ezy-blue-light);
  color: var(--ezy-white);
}
.ezy-btn-ghost {
  background: var(--ezy-surface2);
  color: var(--ezy-text2);
  border: 1px solid var(--ezy-border);
}
.ezy-btn-ghost:hover { background: var(--ezy-surface3); color: var(--ezy-white); }
.ezy-btn-danger { background: rgba(239,68,68,0.12); color: var(--ezy-red); border: 1px solid rgba(239,68,68,0.25); }
.ezy-btn-danger:hover { background: var(--ezy-red); color: #fff; }
.ezy-btn-sm { padding: 7px 14px; font-size: 13px; }
.ezy-btn-xs { padding: 5px 10px; font-size: 12px; }
.ezy-btn-lg { padding: 14px 28px; font-size: 15px; }
.ezy-btn-xl { padding: 16px 36px; font-size: 16px; border-radius: var(--radius); }
.ezy-btn-full { width: 100%; justify-content: center; }

/* =====================================================
   PUBLIC SITE — PAGE WRAPPER
   ===================================================== */
.ezy-public-page {
  background: var(--ezy-bg);
  min-height: 100vh;
  padding-top: 72px; /* nav height */
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.ezy-hero {
  position: relative;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
  background: var(--ezy-bg);
}
.ezy-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, rgba(59,130,246,0.08) 40%, transparent 70%);
  pointer-events: none;
}
.ezy-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ezy-border), transparent);
}
.ezy-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ezy-blue-light);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.ezy-hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ezy-blue-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59,130,246,0.6); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(59,130,246,0); }
}
.ezy-hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ezy-white);
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.ezy-hero-title-gradient {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ezy-hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ezy-muted);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}
.ezy-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.ezy-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ezy-hero-stat {
  text-align: center;
}
.ezy-hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--ezy-white);
  line-height: 1;
  margin-bottom: 4px;
}
.ezy-hero-stat-label {
  font-size: 13px;
  color: var(--ezy-muted);
  font-weight: 500;
}
.ezy-hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--ezy-border);
}

/* =====================================================
   SCAN FORM (Hero)
   ===================================================== */
.ezy-quick-scan-wrap {
  max-width: 680px;
  margin: 0 auto 48px;
}
.ezy-hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--ezy-surface);
  border: 1.5px solid var(--ezy-border2);
  border-radius: var(--radius-lg);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ezy-hero-search:focus-within {
  border-color: var(--ezy-blue-light);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 4px rgba(59,130,246,0.1);
}
.ezy-hero-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--ezy-white);
  padding: 4px 0;
}
.ezy-hero-input::placeholder { color: var(--ezy-muted); }
.ezy-hero-search-btn {
  flex-shrink: 0;
  background: var(--grad-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.ezy-hero-search-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
}
.ezy-hero-search-trust {
  font-size: 12px;
  color: var(--ezy-muted);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ezy-hero-search-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ezy-hero-search-trust svg { opacity: 0.6; }

/* =====================================================
   SECTION CONTAINERS
   ===================================================== */
.ezy-section {
  padding: 100px 40px;
  max-width: 1240px;
  margin: 0 auto;
}
.ezy-section-full {
  padding: 100px 40px;
  position: relative;
}
.ezy-section-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.ezy-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.ezy-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ezy-blue-light);
  margin-bottom: 16px;
  padding: 4px 14px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
}
.ezy-section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--ezy-white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.ezy-section-desc {
  font-size: 18px;
  color: var(--ezy-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */
.ezy-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.ezy-feature-card {
  background: var(--grad-card);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.ezy-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ezy-feature-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(59,130,246,0.1);
}
.ezy-feature-card:hover::before { opacity: 1; }
.ezy-feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.ezy-feature-icon-wrap svg { width: 26px; height: 26px; }
.ezy-feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ezy-white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.ezy-feature-card-desc {
  font-size: 14px;
  color: var(--ezy-muted);
  line-height: 1.7;
}
.ezy-feature-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 16px;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.ezy-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.ezy-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ezy-border2), transparent);
}
.ezy-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.ezy-step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ezy-surface);
  border: 2px solid var(--ezy-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ezy-blue-light);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.ezy-step:hover .ezy-step-num {
  background: rgba(37,99,235,0.15);
  border-color: var(--ezy-blue-light);
  box-shadow: 0 0 0 8px rgba(37,99,235,0.08);
}
.ezy-step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.ezy-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ezy-white);
  margin-bottom: 8px;
}
.ezy-step-desc {
  font-size: 13px;
  color: var(--ezy-muted);
  line-height: 1.6;
}

/* =====================================================
   TRUST / SOCIAL PROOF BAND
   ===================================================== */
.ezy-trust-band {
  border-top: 1px solid var(--ezy-border);
  border-bottom: 1px solid var(--ezy-border);
  background: var(--ezy-surface);
  padding: 28px 40px;
}
.ezy-trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ezy-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ezy-muted);
}
.ezy-trust-item svg { color: var(--ezy-blue-light); }

/* =====================================================
   SECURITY METRICS VISUAL
   ===================================================== */
.ezy-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.ezy-metric-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}
.ezy-metric-card:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateX(4px);
}
.ezy-metric-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ezy-metric-val {
  font-size: 26px;
  font-weight: 900;
  color: var(--ezy-white);
  line-height: 1;
}
.ezy-metric-lbl {
  font-size: 13px;
  color: var(--ezy-muted);
  margin-top: 2px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.ezy-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.ezy-testimonial {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.ezy-testimonial:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.ezy-testimonial-quote {
  font-size: 36px;
  color: var(--ezy-blue-light);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.ezy-testimonial-text {
  font-size: 15px;
  color: var(--ezy-text2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.ezy-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ezy-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ezy-surface3);
  border: 2px solid var(--ezy-border2);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ezy-blue-light);
}
.ezy-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ezy-white);
}
.ezy-testimonial-role {
  font-size: 12px;
  color: var(--ezy-muted);
  margin-top: 2px;
}
.ezy-stars { color: var(--ezy-yellow); font-size: 14px; margin-bottom: 16px; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.ezy-cta-section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ezy-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ezy-cta-card {
  max-width: 840px;
  margin: 0 auto;
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border2);
  border-radius: var(--radius-2xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.ezy-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-blue);
}
.ezy-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--ezy-white);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.ezy-cta-desc {
  font-size: 17px;
  color: var(--ezy-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.ezy-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =====================================================
   SECURITY ILLUSTRATION PANEL
   ===================================================== */
.ezy-illus-panel {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.ezy-illus-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 70%);
  pointer-events: none;
}

/* =====================================================
   HERO ILLUSTRATION (SVG-based dashboard mockup)
   ===================================================== */
.ezy-hero-visual {
  max-width: 900px;
  margin: 48px auto 0;
  position: relative;
}
.ezy-hero-visual-inner {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.ezy-hero-visual-bar {
  background: var(--ezy-bg2);
  border-bottom: 1px solid var(--ezy-border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ezy-hero-visual-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ezy-hero-visual-url {
  flex: 1;
  background: var(--ezy-surface2);
  border-radius: 6px;
  height: 22px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  font-size: 11px;
  color: var(--ezy-muted);
}

/* =====================================================
   FOOTER
   ===================================================== */
.ezy-footer {
  background: var(--ezy-bg2);
  border-top: 1px solid var(--ezy-border);
  padding: 64px 40px 32px;
}
.ezy-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.ezy-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ezy-footer-brand-desc {
  font-size: 14px;
  color: var(--ezy-muted);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 260px;
}
.ezy-footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ezy-muted);
  margin-bottom: 18px;
}
.ezy-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ezy-footer-links a {
  font-size: 14px;
  color: var(--ezy-text2);
  text-decoration: none;
  transition: color 0.2s;
}
.ezy-footer-links a:hover { color: var(--ezy-white); }
.ezy-footer-bottom {
  border-top: 1px solid var(--ezy-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ezy-muted);
}
.ezy-footer-bottom a { color: var(--ezy-muted); text-decoration: none; }
.ezy-footer-bottom a:hover { color: var(--ezy-text2); }

/* =====================================================
   PRICING CARDS
   ===================================================== */
.ezy-pricing-page {
  background: var(--ezy-bg);
  padding: 80px 40px;
  font-family: var(--font-sans);
  color: var(--ezy-text);
  min-height: 100vh;
}
.ezy-pricing-page * { box-sizing: border-box; margin: 0; padding: 0; }
.ezy-price-header {
  text-align: center;
  margin-bottom: 64px;
}
.ezy-price-header h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--ezy-white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.ezy-price-header p {
  font-size: 18px;
  color: var(--ezy-muted);
  max-width: 520px;
  margin: 0 auto;
}
.ezy-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.ezy-plan-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.ezy-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.ezy-plan-card.featured {
  background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, var(--ezy-surface) 60%);
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.1), 0 16px 48px rgba(0,0,0,0.3);
}
.ezy-plan-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(37,99,235,0.5);
  white-space: nowrap;
}
.ezy-plan-tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ezy-muted);
  margin-bottom: 14px;
}
.ezy-plan-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.ezy-plan-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--ezy-text2);
  margin-bottom: 6px;
}
.ezy-plan-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--ezy-white);
  line-height: 1;
  letter-spacing: -2px;
}
.ezy-plan-period {
  font-size: 14px;
  color: var(--ezy-muted);
  margin-bottom: 6px;
}
.ezy-plan-billedas {
  font-size: 12px;
  color: var(--ezy-muted2);
  margin-bottom: 24px;
}
.ezy-plan-desc {
  font-size: 14px;
  color: var(--ezy-muted);
  line-height: 1.6;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ezy-border);
  margin-bottom: 24px;
}
.ezy-plan-features-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ezy-plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ezy-text2);
  line-height: 1.5;
}
.ezy-plan-features-list li.na { color: var(--ezy-muted2); }
.ezy-plan-fi { color: var(--ezy-green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.ezy-plan-fx { color: var(--ezy-muted2); flex-shrink: 0; margin-top: 1px; }
.ezy-plan-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.ezy-plan-btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.ezy-plan-btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.5);
}
.ezy-plan-btn-outline {
  background: transparent;
  color: var(--ezy-blue-light);
  border: 1.5px solid var(--ezy-border2);
}
.ezy-plan-btn-outline:hover {
  background: rgba(59,130,246,0.08);
  border-color: var(--ezy-blue-light);
}
.ezy-compare-wrap {
  max-width: 1100px;
  margin: 0 auto 80px;
}
.ezy-compare-wrap h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--ezy-white);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.ezy-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ezy-compare-table th {
  padding: 14px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--ezy-muted);
  background: var(--ezy-bg2);
  border-bottom: 2px solid var(--ezy-border);
}
.ezy-compare-table th:first-child { text-align: left; }
.ezy-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ezy-border);
  text-align: center;
  color: var(--ezy-text2);
}
.ezy-compare-table td:first-child { text-align: left; color: var(--ezy-text); font-weight: 500; }
.ezy-compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.ezy-ct-y { color: var(--ezy-green); font-size: 18px; font-weight: 800; }
.ezy-ct-n { color: var(--ezy-muted2); font-size: 16px; }

/* =====================================================
   DASHBOARD APP
   ===================================================== */
.ezy-app {
  background: var(--ezy-bg);
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ezy-text);
}
.ezy-app * { box-sizing: border-box; }
.ezy-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 64px;
  background: var(--ezy-surface);
  border-bottom: 1px solid var(--ezy-border);
  position: sticky; top: 0; z-index: 100;
}
.ezy-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; color: var(--ezy-white);
  text-decoration: none; letter-spacing: -0.3px;
}
.ezy-brand-icon {
  width: 32px; height: 32px;
  background: var(--grad-blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(37,99,235,0.4);
}
.ezy-topbar-right {
  display: flex; align-items: center; gap: 16px; font-size: 13px;
}
.ezy-topbar-right a { color: var(--ezy-muted); text-decoration: none; transition: color 0.2s; }
.ezy-topbar-right a:hover { color: var(--ezy-white); }
.ezy-user-name { color: var(--ezy-text); font-weight: 500; }
.ezy-plan-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ezy-plan-free { background: rgba(100,116,139,0.15); color: var(--ezy-muted); border: 1px solid rgba(100,116,139,0.2); }
.ezy-plan-professional { background: rgba(37,99,235,0.15); color: var(--ezy-blue-light); border: 1px solid rgba(37,99,235,0.25); }
.ezy-plan-agency { background: rgba(139,92,246,0.15); color: var(--ezy-purple); border: 1px solid rgba(139,92,246,0.25); }
.ezy-dash-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
}
.ezy-sidenav {
  background: var(--ezy-surface);
  border-right: 1px solid var(--ezy-border);
  padding: 24px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.ezy-nav-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--ezy-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-sans);
  width: 100%; text-align: left;
  text-decoration: none;
  transition: all 0.15s;
}
.ezy-nav-btn:hover { background: var(--ezy-surface2); color: var(--ezy-text); }
.ezy-nav-btn.active {
  background: rgba(37,99,235,0.12);
  color: var(--ezy-blue-light);
  font-weight: 600;
}
.ezy-nav-btn.active svg { stroke: var(--ezy-blue-light); }
.ezy-nav-divider { height: 1px; background: var(--ezy-border); margin: 8px 12px; }
.ezy-nav-home { margin-top: auto; }
.ezy-main-content { padding: 32px 36px; overflow-y: auto; }
.ezy-tab { display: none; }
.ezy-tab.active-tab { display: block; }

/* Dashboard section title */
.ezy-dash-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--ezy-white);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.ezy-dash-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ezy-dash-section-header .ezy-dash-section-title { margin-bottom: 0; }

/* Stats grid */
.ezy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.ezy-stat-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.ezy-stat-card:hover { border-color: rgba(59,130,246,0.3); }
.ezy-stat-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(var(--ic-rgb, 59 130 246) / 0.12);
}
.ezy-stat-icon svg { width: 22px; height: 22px; }
.ezy-stat-value { font-size: 28px; font-weight: 900; color: var(--ezy-white); line-height: 1; }
.ezy-stat-unit { font-size: 14px; font-weight: 400; color: var(--ezy-muted); }
.ezy-stat-label { font-size: 12px; color: var(--ezy-muted); margin-top: 3px; font-weight: 500; }
.ezy-grade-big {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin-left: auto; flex-shrink: 0;
}
.ezy-grade-a { background: rgba(16,185,129,0.15); color: var(--ezy-green); }
.ezy-grade-b { background: rgba(37,99,235,0.15); color: var(--ezy-blue-light); }
.ezy-grade-c { background: rgba(245,158,11,0.15); color: var(--ezy-yellow); }
.ezy-grade-d { background: rgba(249,115,22,0.15); color: var(--ezy-orange); }
.ezy-grade-f { background: rgba(239,68,68,0.15); color: var(--ezy-red); }

/* Dashboard Cards */
.ezy-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.ezy-card h3 {
  font-size: 16px; font-weight: 700; color: var(--ezy-white);
  margin-bottom: 18px; letter-spacing: -0.2px;
}
.ezy-card-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.ezy-card-header h3 { margin-bottom: 0; }

/* Chips */
.ezy-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ezy-blue); color: #fff;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px;
}
.ezy-badge-red { background: var(--ezy-red); }
.ezy-grade-chip, .ezy-grade-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 6px;
  font-size: 13px; font-weight: 800;
}
.ezy-score-chip {
  background: var(--ezy-surface3); color: var(--ezy-white);
  border-radius: 6px; padding: 3px 8px; font-weight: 700; font-size: 13px;
}
.ezy-risk-chip {
  border-radius: 6px; padding: 2px 8px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.ezy-risk-low { background: rgba(16,185,129,0.12); color: var(--ezy-green); }
.ezy-risk-medium { background: rgba(245,158,11,0.12); color: var(--ezy-yellow); }
.ezy-risk-high { background: rgba(249,115,22,0.12); color: var(--ezy-orange); }
.ezy-risk-critical { background: rgba(239,68,68,0.12); color: var(--ezy-red); }

/* Forms */
.ezy-input {
  background: var(--ezy-bg);
  border: 1.5px solid var(--ezy-border);
  border-radius: var(--radius-sm);
  color: var(--ezy-text);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ezy-input:focus {
  outline: none;
  border-color: var(--ezy-blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.ezy-input:read-only { opacity: 0.6; }
.ezy-select {
  background: var(--ezy-bg);
  border: 1.5px solid var(--ezy-border);
  border-radius: var(--radius-sm);
  color: var(--ezy-text);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  flex: 1;
  cursor: pointer;
}
.ezy-select:focus { outline: none; border-color: var(--ezy-blue-light); }
.ezy-form-group { margin-bottom: 16px; }
.ezy-form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ezy-text2); margin-bottom: 7px;
}
.ezy-input-row { display: flex; gap: 10px; align-items: center; }
.ezy-input-row .ezy-input { flex: 1; }
.ezy-msg {
  padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500; margin-top: 12px;
}
.ezy-msg-error { background: rgba(239,68,68,0.1); color: var(--ezy-red); border: 1px solid rgba(239,68,68,0.2); }
.ezy-msg-success { background: rgba(16,185,129,0.1); color: var(--ezy-green); border: 1px solid rgba(16,185,129,0.2); }
.ezy-msg-info { background: rgba(37,99,235,0.1); color: var(--ezy-blue-light); border: 1px solid rgba(37,99,235,0.2); }

/* Scan Controls */
.ezy-scan-row { display: flex; gap: 12px; align-items: center; }
.ezy-progress-wrap { margin-top: 18px; }
.ezy-progress { background: var(--ezy-bg); border-radius: 100px; height: 6px; overflow: hidden; }
.ezy-progress-bar {
  background: linear-gradient(90deg, var(--ezy-blue), var(--ezy-cyan));
  height: 100%; border-radius: 100px;
  transition: width 0.6s ease;
  width: 0%;
  box-shadow: 0 0 8px rgba(59,130,246,0.4);
}
.ezy-progress-text { font-size: 13px; color: var(--ezy-muted); margin-top: 10px; }
.ezy-recent-scans { display: flex; flex-direction: column; gap: 12px; }
.ezy-scan-row-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--ezy-border);
}
.ezy-scan-row-item:last-child { border-bottom: none; }
.ezy-scan-meta { display: flex; align-items: center; gap: 8px; }

/* Domains */
.ezy-domains-list { display: flex; flex-direction: column; gap: 14px; }
.ezy-domain-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.ezy-domain-card:hover { border-color: rgba(59,130,246,0.3); }
.ezy-domain-header {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.ezy-domain-info { display: flex; align-items: center; gap: 12px; }
.ezy-domain-name { font-size: 15px; font-weight: 600; color: var(--ezy-white); }
.ezy-domain-actions { display: flex; align-items: center; gap: 8px; }
.ezy-verify-badge {
  font-size: 11px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: 0.3px;
}
.ezy-verified { background: rgba(16,185,129,0.12); color: var(--ezy-green); border: 1px solid rgba(16,185,129,0.2); }
.ezy-unverified { background: rgba(245,158,11,0.12); color: var(--ezy-yellow); border: 1px solid rgba(245,158,11,0.2); }
.ezy-monitor-badge {
  font-size: 11px; background: rgba(37,99,235,0.1);
  color: var(--ezy-blue-light); padding: 3px 9px;
  border-radius: 100px; font-weight: 600;
}
/* Toggle */
.ezy-toggle { position: relative; display: inline-block; width: 40px; height: 22px; cursor: pointer; }
.ezy-toggle input { opacity: 0; width: 0; height: 0; }
.ezy-toggle-track {
  position: absolute; inset: 0;
  background: var(--ezy-border); border-radius: 100px;
  transition: background 0.2s;
}
.ezy-toggle-track::after {
  content: ''; position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: transform 0.2s;
}
.ezy-toggle input:checked + .ezy-toggle-track { background: var(--ezy-blue); }
.ezy-toggle input:checked + .ezy-toggle-track::after { transform: translateX(18px); }
/* Verify panel */
.ezy-verify-panel {
  background: var(--ezy-bg);
  border-top: 1px solid var(--ezy-border);
  padding: 20px;
}
.ezy-vtabs { display: flex; gap: 4px; margin-bottom: 16px; background: var(--ezy-surface); border-radius: var(--radius-sm); padding: 4px; }
.ezy-vtab { flex: 1; padding: 8px 12px; border-radius: 6px; border: none; background: transparent; color: var(--ezy-muted); font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--font-sans); transition: all 0.15s; }
.ezy-vtab.active { background: var(--ezy-surface2); color: var(--ezy-white); }
.ezy-code {
  background: var(--ezy-surface2);
  border: 1px solid var(--ezy-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 12px 0;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--ezy-cyan);
  word-break: break-all;
  line-height: 1.6;
}
.ezy-verify-msg { margin-top: 10px; font-size: 13px; }

/* Table */
.ezy-table-wrap { overflow-x: auto; }
.ezy-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ezy-table th {
  background: var(--ezy-bg);
  color: var(--ezy-muted);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 10px 16px; text-align: left;
  border-bottom: 1px solid var(--ezy-border);
}
.ezy-table td { padding: 13px 16px; border-bottom: 1px solid var(--ezy-border); color: var(--ezy-text); }
.ezy-table tr:hover td { background: rgba(255,255,255,0.02); }
.ezy-table tr:last-child td { border-bottom: none; }

/* Alerts */
.ezy-alert-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--ezy-surface); border: 1px solid var(--ezy-border);
  border-radius: var(--radius); padding: 16px 18px;
  margin-bottom: 10px; transition: opacity 0.3s;
}
.ezy-alert-card.ezy-read { opacity: 0.4; }
.ezy-alert-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
}
.ezy-sev-critical .ezy-alert-dot { background: var(--ezy-red); box-shadow: 0 0 8px var(--ezy-red); }
.ezy-sev-high .ezy-alert-dot { background: var(--ezy-orange); }
.ezy-sev-medium .ezy-alert-dot { background: var(--ezy-yellow); }
.ezy-sev-low .ezy-alert-dot, .ezy-sev-info .ezy-alert-dot { background: var(--ezy-blue-light); }
.ezy-alert-body { flex: 1; }
.ezy-alert-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.ezy-alert-msg { margin: 0; font-size: 13px; color: var(--ezy-muted); }
.ezy-sev-label {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 2px 7px; border-radius: 4px;
}
.ezy-sev-critical { background: rgba(239,68,68,0.12); color: var(--ezy-red); }
.ezy-sev-high { background: rgba(249,115,22,0.12); color: var(--ezy-orange); }
.ezy-sev-medium { background: rgba(245,158,11,0.12); color: var(--ezy-yellow); }
.ezy-sev-low, .ezy-sev-info { background: rgba(37,99,235,0.12); color: var(--ezy-blue-light); }

/* Profile */
.ezy-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.ezy-profile-field label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ezy-muted); font-weight: 700; }
.ezy-profile-field p { font-size: 15px; color: var(--ezy-white); margin-top: 5px; font-weight: 500; }
.ezy-upgrade-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(139,92,246,0.08));
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius);
  padding: 24px;
}
.ezy-upgrade-box h4 { font-size: 16px; font-weight: 700; color: var(--ezy-white); margin-bottom: 8px; }
.ezy-upgrade-box p { font-size: 14px; color: var(--ezy-muted); margin-bottom: 16px; line-height: 1.6; }

/* Empty state */
.ezy-empty { text-align: center; padding: 48px 20px; color: var(--ezy-muted); }
.ezy-empty svg { display: block; margin: 0 auto 16px; }
.ezy-empty p { font-size: 15px; color: var(--ezy-muted); }
.ezy-muted { color: var(--ezy-muted); }
.ezy-small { font-size: 12px; }
.ezy-flash { padding: 12px 20px; border-radius: var(--radius-sm); margin-bottom: 16px; font-weight: 500; font-size: 14px; }
.ezy-flash-success { background: rgba(16,185,129,0.12); color: var(--ezy-green); border: 1px solid rgba(16,185,129,0.2); }
.ezy-notice { background: var(--ezy-surface); border: 1px solid var(--ezy-border); border-radius: var(--radius); padding: 24px; text-align: center; }
.ezy-notice a { color: var(--ezy-blue-light); }

/* Modal */
.ezy-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.ezy-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); }
.ezy-modal-box {
  position: relative;
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border2);
  border-radius: var(--radius-xl);
  width: 100%; max-width: 760px;
  max-height: 88vh; overflow-y: auto;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.ezy-modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--ezy-surface2); border: 1px solid var(--ezy-border);
  color: var(--ezy-muted); border-radius: var(--radius-sm);
  width: 32px; height: 32px; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.ezy-modal-close:hover { background: var(--ezy-border); color: var(--ezy-white); }
.ezy-report-header { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.ezy-report-stat { background: var(--ezy-bg); border: 1px solid var(--ezy-border); border-radius: var(--radius); padding: 16px; text-align: center; }
.ezy-report-stat .val { font-size: 30px; font-weight: 900; color: var(--ezy-white); }
.ezy-report-stat .lbl { font-size: 12px; color: var(--ezy-muted); margin-top: 2px; }
.ezy-findings { display: flex; flex-direction: column; gap: 12px; }
.ezy-finding {
  background: var(--ezy-bg); border: 1px solid var(--ezy-border);
  border-radius: var(--radius); padding: 16px; border-left: 3px solid;
}
.ezy-finding[data-sev="critical"] { border-left-color: var(--ezy-red); }
.ezy-finding[data-sev="high"] { border-left-color: var(--ezy-orange); }
.ezy-finding[data-sev="medium"] { border-left-color: var(--ezy-yellow); }
.ezy-finding[data-sev="low"] { border-left-color: var(--ezy-blue-light); }
.ezy-finding[data-sev="info"] { border-left-color: var(--ezy-green); }
.ezy-finding-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.ezy-finding-title { font-weight: 700; color: var(--ezy-white); font-size: 15px; }
.ezy-finding-cat { font-size: 11px; background: var(--ezy-surface); color: var(--ezy-muted); padding: 2px 8px; border-radius: 4px; }
.ezy-finding p { font-size: 13px; color: var(--ezy-muted); margin: 0 0 6px; }
.ezy-finding-rec { background: rgba(37,99,235,0.08); border-radius: 6px; padding: 8px 12px; font-size: 13px; color: var(--ezy-text2); }
.ezy-finding-rec strong { color: var(--ezy-blue-light); }
.ezy-checks-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.ezy-check-item { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--ezy-bg); border: 1px solid var(--ezy-border); border-radius: var(--radius-sm); font-size: 13px; }
.ezy-check-pass { color: var(--ezy-green); font-weight: 800; }
.ezy-check-fail { color: var(--ezy-red); font-weight: 800; }

/* =====================================================
   AUTH PAGES
   ===================================================== */
.ezy-auth-page {
  min-height: 100vh;
  background: var(--ezy-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
}
.ezy-auth-page::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ezy-auth-card {
  background: var(--ezy-surface);
  border: 1px solid var(--ezy-border2);
  border-radius: var(--radius-xl);
  padding: 44px;
  width: 100%; max-width: 460px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
}
.ezy-auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-blue);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.ezy-auth-brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 800; color: var(--ezy-white);
  margin-bottom: 32px;
}
.ezy-auth-brand-icon {
  width: 40px; height: 40px;
  background: var(--grad-blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
}
.ezy-auth-card h2 {
  font-size: 26px; font-weight: 900;
  color: var(--ezy-white); margin-bottom: 8px; letter-spacing: -0.5px;
}
.ezy-auth-card > .ezy-muted { margin-bottom: 28px; font-size: 15px; }
.ezy-auth-form { margin-top: 4px; }
.ezy-auth-link {
  text-align: center; font-size: 14px;
  margin-top: 22px; color: var(--ezy-muted);
}
.ezy-auth-link a { color: var(--ezy-blue-light); text-decoration: none; font-weight: 600; }
.ezy-auth-link a:hover { text-decoration: underline; }
.ezy-auth-terms { text-align: center; font-size: 12px; color: var(--ezy-muted2); margin-top: 14px; }
.ezy-auth-terms a { color: var(--ezy-muted); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .ezy-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ezy-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ezy-nav { padding: 0 20px; }
  .ezy-nav-links { display: none; }
  .ezy-hero { padding: 80px 20px 60px; }
  .ezy-section { padding: 64px 20px; }
  .ezy-section-full { padding: 64px 20px; }
  .ezy-features-grid { grid-template-columns: 1fr; }
  .ezy-metrics-grid { grid-template-columns: 1fr; }
  .ezy-cta-card { padding: 40px 28px; }
  .ezy-hero-stats { gap: 24px; }
  .ezy-hero-stat-div { display: none; }
}
@media (max-width: 768px) {
  .ezy-dash-layout { grid-template-columns: 1fr; }
  .ezy-sidenav { flex-direction: row; overflow-x: auto; padding: 10px; border-right: none; border-bottom: 1px solid var(--ezy-border); }
  .ezy-nav-btn { white-space: nowrap; flex-shrink: 0; }
  .ezy-nav-home { margin-top: 0; }
  .ezy-main-content { padding: 20px 16px; }
  .ezy-stats-grid { grid-template-columns: 1fr 1fr; }
  .ezy-dash-topbar { padding: 0 16px; }
  .ezy-profile-grid { grid-template-columns: 1fr; }
  .ezy-modal-box { padding: 20px; }
  .ezy-hero-ctas { flex-direction: column; align-items: stretch; }
  .ezy-hero-search { flex-direction: column; border-radius: var(--radius); }
  .ezy-hero-search-btn { border-radius: var(--radius-sm); }
  .ezy-steps { grid-template-columns: 1fr; }
  .ezy-steps::before { display: none; }
  .ezy-plans-grid { grid-template-columns: 1fr; }
  .ezy-footer-grid { grid-template-columns: 1fr; }
  .ezy-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ezy-report-header { grid-template-columns: 1fr 1fr; }
  .ezy-checks-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ezy-stats-grid { grid-template-columns: 1fr; }
  .ezy-auth-card { padding: 28px 20px; }
  .ezy-hero-title { letter-spacing: -1px; }
  .ezy-report-header { grid-template-columns: 1fr; }
}

/* =====================================================
   CUSTOM SCROLLBAR
   ===================================================== */
.ezy-app ::-webkit-scrollbar, .ezy-modal-box::-webkit-scrollbar { width: 5px; height: 5px; }
.ezy-app ::-webkit-scrollbar-track, .ezy-modal-box::-webkit-scrollbar-track { background: transparent; }
.ezy-app ::-webkit-scrollbar-thumb, .ezy-modal-box::-webkit-scrollbar-thumb { background: var(--ezy-border); border-radius: 3px; }
.ezy-app ::-webkit-scrollbar-thumb:hover, .ezy-modal-box::-webkit-scrollbar-thumb:hover { background: var(--ezy-muted2); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.ezy-fade-in { animation: fadeIn 0.4s ease forwards; }
.ezy-slide-in { animation: slideIn 0.3s ease forwards; }

/* =====================================================
   GENERAL PUBLIC SITE LAYOUT (non-Elementor pages)
   ===================================================== */
.ezy-public-page .entry-content,
.ezy-public-page .page-content {
  font-family: var(--font-sans);
}
body:has(.ezy-public-page),
body:has(.ezy-app),
body:has(.ezy-auth-page) {
  background: var(--ezy-bg) !important;
}
/* Ensure the theme does not override our styles on app pages */
.ezy-app ~ * { display: none !important; }
.page-id-25 .site-main::before,
.page-id-26 .site-main::before,
.page-id-27 .site-main::before { display: none; }
