/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --purple: #5919C1;
  --dark-purple: #3B11B1;
  --magenta: #A53A9A;
  --light-purple: #C0A6EA;
  --yellow: #FAE34D;
  --white: #FFFFFF;
  --light-gray: #F2F2F2;
  --gray: #DCDCDC;
  --dark-gray: #6E6E6E;
  --black: #000000;
}

/* ===== UTILITIES ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
  font-family: inherit;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(89, 25, 193, 0.35);
}
.btn-primary:hover {
  background: var(--dark-purple);
  box-shadow: 0 6px 20px rgba(59, 17, 177, 0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}
.btn-block { width: 100%; text-align: center; }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
}
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-block;
}
.logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
}
.nav-dropdown-inner {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  min-width: 240px;
  overflow: hidden;
}
.nav-dropdown-inner a {
  display: block;
  padding: 14px 20px;
  font-size: 0.92rem;
  color: #333;
  transition: background 0.15s;
  border-bottom: 1px solid #f5f5f5;
}
.nav-dropdown-inner a:last-child {
  border-bottom: none;
}
.nav-dropdown-inner a:hover {
  background: var(--light-gray);
  color: var(--purple);
}
.nav-dropdown-inner .dropdown-label {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.nav-dropdown-inner .dropdown-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--dark-gray);
  font-weight: 400;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--purple) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.25s !important;
  box-shadow: 0 2px 8px rgba(89,25,193,0.25);
}
.nav-cta:hover {
  background: var(--dark-purple) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(89,25,193,0.35);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 12px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(165deg, #f8f5ff 0%, #fff 40%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(89,25,193,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(165,58,154,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-visual { flex: 1; display: flex; justify-content: center; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(89,25,193,0.08);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-note {
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin-top: 14px;
}
.hero-note svg { vertical-align: middle; margin-right: 4px; }

/* Hero centered variant */
.hero-centered {
  text-align: center;
}
.hero-centered .container {
  flex-direction: column;
  align-items: center;
}
.hero-centered .hero-text {
  max-width: 720px;
  text-align: center;
  flex: none;
  width: 100%;
  margin: 0 auto;
}
.hero-centered .hero p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-centered .hero-cta {
  justify-content: center;
}
.hero-centered .hero-note {
  text-align: center;
}

/* Hero floating grade card */
.hero-card {
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(89,25,193,0.15), 0 4px 20px rgba(0,0,0,0.06);
  padding: 32px 28px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hero-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-card-date {
  font-size: 0.75rem;
  color: #aaa;
}
.hero-grade-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}
.hero-grade-circle .grade {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}
.hero-card-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-card-subtitle {
  text-align: center;
  font-size: 0.82rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
}
.hero-card-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--light-gray);
  border-radius: 10px;
  font-size: 0.82rem;
}
.hero-metric-name { color: #555; font-weight: 500; }
.hero-metric-value { font-weight: 700; }
.metric-good { color: #16a34a; }
.metric-warn { color: #f59e0b; }
.metric-bad { color: #ef4444; }

/* ===== SERVICE CARDS (Homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 20px;
  padding: 44px 36px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 12px 48px rgba(89,25,193,0.1);
  transform: translateY(-4px);
}
.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
}
.icon-purple { background: rgba(89,25,193,0.1); color: var(--purple); }
.icon-magenta { background: rgba(165,58,154,0.1); color: var(--magenta); }
.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card .price-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  background: rgba(89,25,193,0.06);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.service-card .btn {
  margin-top: 4px;
}

/* ===== REALTIME SECTION ===== */
.realtime-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.realtime-image {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.realtime-image img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .realtime-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .realtime-image {
    order: -1;
  }
}

/* ===== STEPS TIMELINE ===== */
.steps-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-item {
  text-align: center;
  max-width: 260px;
  flex: 0 1 260px;
}
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}
.step-line {
  flex: 0 0 60px;
  height: 2px;
  background: var(--light-purple);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .steps-timeline {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .step-line {
    width: 2px;
    height: 40px;
    flex: 0 0 40px;
    margin-top: 0;
  }
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  background: var(--light-gray);
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cert-badge {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.cert-badge:hover {
  border-color: var(--light-purple);
  box-shadow: 0 8px 32px rgba(89,25,193,0.08);
  transform: translateY(-2px);
}
.cert-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cert-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
.cert-badge h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cert-badge p {
  font-size: 0.78rem;
  color: var(--dark-gray);
  line-height: 1.4;
}
.cert-copy {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-section {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--purple) 50%, var(--magenta) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
  position: relative;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}
.stat-number .yellow { color: var(--yellow); }
.stat-text {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== WHY CHOOSE ZIO ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  padding: 36px 32px;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.why-card:hover {
  background: #fff;
  border-color: var(--light-purple);
  box-shadow: 0 8px 32px rgba(89,25,193,0.08);
  transform: translateY(-2px);
}
.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(89,25,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--purple);
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light-gray);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--light-purple), var(--purple), var(--magenta));
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== MONITOR CARDS ===== */
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.monitor-card {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.monitor-card:hover {
  background: #fff;
  border-color: var(--light-purple);
  box-shadow: 0 10px 40px rgba(89,25,193,0.1);
  transform: translateY(-4px);
}
.monitor-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.monitor-icon-purple { background: rgba(89,25,193,0.1); color: var(--purple); }
.monitor-icon-magenta { background: rgba(165,58,154,0.1); color: var(--magenta); }
.monitor-icon-blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.monitor-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.monitor-card p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}
.monitor-card ul { margin-top: 14px; list-style: none; padding: 0; display: inline-block; text-align: left; }
.monitor-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.monitor-card ul li::before {
  content: '\2713';
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== SAMPLE REPORT MOCKUP ===== */
.report-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}
.report-text { flex: 1; }
.report-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.report-text p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}
.report-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.report-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.report-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(89,25,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
}
.report-mockup { flex: 1; display: flex; justify-content: center; }
.report-card {
  width: 380px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid #eee;
}
.report-card-top {
  background: linear-gradient(135deg, var(--dark-purple), var(--purple));
  color: #fff;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-card-org {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.report-card-period {
  font-size: 0.78rem;
  opacity: 0.8;
}
.report-card-grade-sm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
}
.report-card-body { padding: 24px 28px; }
.report-card-summary {
  font-size: 0.88rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.report-categories { display: flex; flex-direction: column; gap: 12px; }
.report-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-cat-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-cat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-green { background: #22c55e; }
.dot-yellow { background: #f59e0b; }
.dot-red { background: #ef4444; }
.report-cat-name { font-size: 0.88rem; font-weight: 500; color: #444; }
.report-cat-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 12px;
}
.badge-green { background: #dcfce7; color: #16a34a; }
.badge-yellow { background: #fef3c7; color: #b45309; }
.badge-red { background: #fee2e2; color: #dc2626; }

/* ===== PRICING ===== */
/* Pricing Tabs */
.pricing-tabs {
  display: inline-flex;
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.pricing-tab {
  padding: 12px 32px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.25s ease;
}
.pricing-tab:hover {
  color: var(--black);
}
.pricing-tab.active {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 2px 8px rgba(89,25,193,0.3);
}
.pricing-tab-content {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto 48px;
}
.pricing-grid.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}
.pricing-credits {
  display: inline-block;
  background: rgba(89,25,193,0.08);
  color: var(--purple);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-annual {
  font-size: 0.8rem;
  color: var(--dark-gray);
  margin-top: 12px;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 2px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 10px 40px rgba(89,25,193,0.1);
}
.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: 0 10px 40px rgba(89,25,193,0.15);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pricing-period {
  font-size: 1rem;
  color: var(--dark-gray);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 28px;
  line-height: 1.5;
}
.pricing-features { margin-bottom: 32px; list-style: none; padding: 0; text-align: left; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; text-align: center; }
.pricing-trial {
  font-size: 0.82rem;
  color: var(--dark-gray);
  text-align: center;
  margin-top: 12px;
}
.pricing-note {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
}
.pricing-note h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-note p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pricing-disclaimer {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question:hover { color: var(--purple); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: var(--dark-gray);
}
.faq-item.open .faq-icon {
  background: var(--purple);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--purple) 60%, var(--magenta) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(250,227,77,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.form-label .optional {
  font-weight: 400;
  color: var(--dark-gray);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(89,25,193,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #bbb;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-error {
  font-size: 0.82rem;
  color: #dc2626;
  margin-top: 6px;
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #dc2626;
}
.form-group.error .form-error {
  display: block;
}
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}
.form-success {
  text-align: center;
  padding: 60px 24px;
  display: none;
}
.form-success.active {
  display: block;
}
.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ===== PENTEST SERVICES GRID ===== */
.pt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pt-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.pt-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 10px 40px rgba(89,25,193,0.1);
  transform: translateY(-4px);
}
.pt-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(89,25,193,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple);
}
.pt-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pt-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ===== CONTACT INFO SIDEBAR ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  padding: 40px 36px;
  background: var(--light-gray);
  border-radius: 20px;
  margin-left: 10%;
}
.contact-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(89,25,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}
.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.9rem;
  color: var(--dark-gray);
}
.contact-info-item a:hover {
  color: var(--purple);
}

/* ===== ONBOARDING / SUCCESS PAGES ===== */
.page-simple {
  padding: 140px 0 100px;
  min-height: 80vh;
}
.page-simple h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.page-simple .lead {
  font-size: 1.1rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 520px;
}
.page-simple.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Success page steps */
.success-steps {
  max-width: 560px;
  margin: 0 auto 48px;
  text-align: left;
}
.success-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.success-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.success-step-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.success-step-text p {
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

/* ===== FEATURES LIST (inline) ===== */
.features-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}
.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(89,25,193,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
}
.feature-item span {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  color: #aaa;
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo img { filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #888;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: #888;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--light-purple); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666;
}
.footer-bottom a {
  color: #888;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--light-purple); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .hero .container { gap: 40px; }
  .hero-card { width: 280px; }
  .report-layout { gap: 48px; }
  .report-card { width: 340px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { max-width: 480px; }
  .pt-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    padding-top: 0;
    opacity: 1;
    pointer-events: all;
  }
  .nav-dropdown-inner {
    box-shadow: none;
    border: none;
    background: var(--light-gray);
    border-radius: 8px;
    margin-top: 8px;
  }

  .hero { padding: 120px 0 80px; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-note { text-align: center; }
  .report-features { display: inline-flex; text-align: left; }
  .report-feature span { text-align: left; }
  .hero-card { width: 260px; }

  .section-title { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .monitor-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-number { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); max-width: 360px; }
  .pt-services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .report-layout { flex-direction: column; gap: 48px; }
  .report-card { width: 100%; max-width: 380px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-grid.pricing-grid-3 { grid-template-columns: 1fr; max-width: 420px; }

  .cta-banner h2 { font-size: 1.8rem; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .features-list-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .form-card { padding: 32px 24px; }
  .page-simple h1 { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 1.05rem; }
  .section-title { font-size: 1.65rem; }
  .section-pad { padding: 72px 0; }
  .hero-card { width: 240px; padding: 24px 20px; }
  .pricing-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ===== RISK REVIEW PAGE COMPONENTS ===== */

/* Who It's For Grid */
.who-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.who-for-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
}
.who-for-card:hover {
  border-color: var(--light-purple);
  box-shadow: 0 8px 32px rgba(89,25,193,0.08);
  transform: translateY(-2px);
}
.who-for-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}
.who-for-card p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  max-width: 800px;
  margin: 0 auto;
}
.trust-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}
.trust-content > p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-point svg {
  color: #10b981;
  flex-shrink: 0;
}
.trust-point span {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.certifications {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.certifications img {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.certifications img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Single Pricing Card */
.pricing-single {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.pricing-card-single {
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(89,25,193,0.15);
  position: relative;
}
.pricing-card-single::before {
  content: "POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pricing-card-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.pricing-currency {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
}
.pricing-amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.pricing-period {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
}
.pricing-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 32px;
}
.pricing-features {
  text-align: left;
  margin: 32px 0;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.pricing-feature svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-feature span {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .who-for-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .who-for-card {
    padding: 24px;
  }
  .trust-content h3 {
    font-size: 1.3rem;
  }
  .trust-content > p {
    font-size: 1rem;
  }
  .certifications {
    justify-content: center;
  }
  .certifications img {
    height: 60px;
  }
  .pricing-card-single {
    padding: 32px 24px;
  }
  .pricing-amount {
    font-size: 3rem;
  }
}
