/* ============================================
   ClearShield Advisory -- Main Styles
   Dark Navy / Glassmorphism Theme
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Colors - Navy/Blue/Cyan Palette */
  --navy:              #0A1628;
  --navy-mid:          #0F2044;
  --blue:              #1A56DB;
  --blue-bright:       #2563EB;
  --cyan:              #06B6D4;
  --cyan-glow:         rgba(6, 182, 212, 0.15);
  --off-white:         #F0F4FF;
  --gray:              #94A3B8;
  --gray-mid:          #475569;
  --green:             #10B981;
  --gold:              #F59E0B;
  --card-bg:           rgba(15, 32, 68, 0.8);
  --border:            rgba(6, 182, 212, 0.2);

  /* Functional Aliases */
  --color-primary:         var(--blue);
  --color-primary-light:   var(--cyan);
  --color-primary-dark:    var(--navy-mid);
  --color-accent:          var(--cyan);
  --color-accent-hover:    var(--blue-bright);
  --color-bg:              var(--navy);
  --color-bg-alt:          var(--navy-mid);
  --color-text:            #FFFFFF;
  --color-text-secondary:  var(--gray);
  --color-surface:         var(--card-bg);
  --color-border:          var(--border);
  --color-success:         var(--green);
  --color-warning:         #EF4444;

  /* Typography */
  --font-heading:   'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:      'DM Sans', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:      'DM Mono', 'Fira Code', 'Consolas', monospace;

  --text-hero:      4rem;
  --text-h1:        3rem;
  --text-h2:        2.25rem;
  --text-h3:        1.75rem;
  --text-h4:        1.375rem;
  --text-body-lg:   1.125rem;
  --text-body:      1rem;
  --text-body-sm:   0.875rem;
  --text-label:     0.8125rem;
  --text-button:    0.9375rem;
  --text-code:      0.875rem;

  /* Spacing */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;

  /* Border Radius */
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-xs:          0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm:          0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md:          0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg:          0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-xl:          0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-card:        0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover:  0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-btn:         0 4px 20px rgba(26, 86, 219, 0.35);
  --shadow-btn-hover:   0 6px 28px rgba(26, 86, 219, 0.5);

  /* Transitions */
  --ease-default:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:        cubic-bezier(0, 0, 0.2, 1);
  --ease-in:         cubic-bezier(0.4, 0, 1, 1);
  --duration-fast:   150ms;
  --duration-normal: 200ms;
  --duration-slow:   300ms;
  --duration-enter:  400ms;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

/* Background grid overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

a:hover {
  color: var(--color-primary);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: var(--text-body);
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--space-24) 0;
  position: relative;
  z-index: 1;
}

.section--alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--dark {
  background-color: rgba(15, 32, 68, 0.4);
  color: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #FFFFFF;
}

.section--dark p {
  color: rgba(255,255,255,0.85);
}

.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--space-3);
  display: block;
}

.section-label::before {
  content: '// ';
  opacity: 0.5;
}

.section-title {
  font-size: var(--text-h2);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-body-lg);
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.6;
  font-weight: 300;
}

.section-subtitle--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  color: #FFFFFF;
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-btn-hover);
}

.btn--secondary {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.btn--secondary:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--ghost {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border);
  padding: 12px 26px;
}

.btn--ghost:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-body-sm);
}

.btn--lg {
  padding: 18px 36px;
  font-size: var(--text-body);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--duration-slow) var(--ease-out),
              background var(--duration-slow) var(--ease-out);
}

.nav--scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo svg {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__link {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
  position: relative;
  letter-spacing: 0.3px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  border-radius: 1px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--white, #FFFFFF);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

.nav__hamburger svg {
  width: 24px;
  height: 24px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy-mid);
  border-left: 1px solid var(--border);
  z-index: 1001;
  padding: var(--space-20) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-xl);
  transition: right var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu--open {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  border-radius: var(--radius-full);
  transition: background var(--duration-normal) var(--ease-out);
}

.mobile-menu__close:hover {
  background: rgba(6, 182, 212, 0.1);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  font-size: var(--text-body-lg);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-3) 0;
  min-height: 44px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__link:hover {
  color: var(--cyan);
}

.mobile-menu__cta {
  margin-top: var(--space-6);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-out),
              visibility var(--duration-slow) var(--ease-out);
}

.mobile-overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* --- Hero Section --- */
.hero {
  padding: calc(72px + var(--space-20)) 0 var(--space-24);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Hero radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--space-4);
  background: var(--cyan-glow);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 0.95;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hero__title span {
  color: var(--cyan);
}

.hero__subtitle {
  font-size: var(--text-body-lg);
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.hero__trust-text {
  font-size: var(--text-body-sm);
  color: var(--gray);
  max-width: 320px;
  line-height: 1.5;
}

.hero__trust-icons {
  display: flex;
  gap: var(--space-3);
}

.hero__trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.hero__trust-icon svg {
  width: 18px;
  height: 18px;
}

/* Hero visual - geometric shield animation */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.hero__shape {
  position: absolute;
  border-radius: var(--radius-xl);
}

.hero__shape--1 {
  width: 380px;
  height: 380px;
  border: 2px solid rgba(26, 86, 219, 0.3);
  border-radius: 50%;
  opacity: 1;
  animation: hero-pulse 8s ease-in-out infinite;
}

.hero__shape--2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 1;
  animation: hero-pulse 8s ease-in-out infinite 2s;
}

.hero__shape--3 {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(6, 182, 212, 0.25);
  border-radius: 50%;
  opacity: 1;
  animation: hero-pulse 8s ease-in-out infinite 4s;
}

.hero__shield-icon {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  opacity: 0.25;
}

@keyframes hero-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}

/* --- Stats Section --- */
.stats {
  padding: var(--space-24) 0;
}

.stats__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.stat-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: var(--space-3);
}

.stat-card__label {
  font-size: var(--text-body-sm);
  color: var(--gray);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

.stats__cta {
  text-align: center;
}

.stats__cta-text {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 2px;
}

/* --- PhishSim Section --- */
.phishsim {
  padding: var(--space-24) 0;
}

.phishsim__header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.phishsim__logo {
  max-width: 320px;
  margin: 0 auto var(--space-6);
}

.phishsim__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.phishsim-feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.phishsim-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phishsim-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--cyan);
}

.phishsim-feature__icon svg {
  width: 24px;
  height: 24px;
}

.phishsim-feature__title {
  font-size: var(--text-h4);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.phishsim-feature__desc {
  font-size: var(--text-body);
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* PhishSim Dashboard Mockup */
.phishsim__dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.dashboard-panel {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.dashboard-panel__title {
  font-family: var(--font-mono);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--gray);
  margin-bottom: var(--space-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CSS Bar Chart */
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--space-3);
  height: 200px;
  padding-top: var(--space-4);
}

.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.chart-bar__fill {
  width: 100%;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: height 1.2s var(--ease-out);
  min-height: 4px;
}

.chart-bar__fill--high {
  background: var(--color-warning);
}

.chart-bar__fill--mid {
  background: var(--gold);
}

.chart-bar__fill--low {
  background: var(--green);
}

.chart-bar__label {
  font-size: 11px;
  color: var(--gray);
  margin-top: var(--space-2);
  white-space: nowrap;
}

.chart-bar__value {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: var(--space-1);
}

/* Risk Gauge */
.risk-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) 0;
}

.gauge-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(
    var(--green) 0deg 216deg,
    var(--navy-mid) 216deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gauge-circle__inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--navy-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gauge-circle__value {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  letter-spacing: 2px;
}

.gauge-circle__label {
  font-size: var(--text-body-sm);
  color: var(--gray);
  margin-top: var(--space-1);
}

/* Department mini-bars */
.dept-bars {
  margin-top: var(--space-6);
}

.dept-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.dept-bar__name {
  font-size: var(--text-body-sm);
  color: var(--gray);
  width: 90px;
  flex-shrink: 0;
  text-align: right;
}

.dept-bar__track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.dept-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.2s var(--ease-out);
}

.dept-bar__value {
  font-family: var(--font-mono);
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--cyan);
  width: 36px;
  flex-shrink: 0;
}

/* Phishing email mockup */
.phish-email {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  margin-bottom: var(--space-16);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.phish-email__toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}

.phish-email__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.phish-email__dot--red { background: #E5534B; }
.phish-email__dot--yellow { background: #E8B83A; }
.phish-email__dot--green { background: var(--green); }

.phish-email__header {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
}

.phish-email__field {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
  font-size: var(--text-body-sm);
}

.phish-email__field-label {
  color: var(--gray);
  font-weight: 500;
  min-width: 56px;
}

.phish-email__field-value {
  color: var(--color-text);
}

.phish-email__body {
  padding: var(--space-5);
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--off-white);
}

.phish-email__body p {
  margin-bottom: var(--space-4);
}

.phish-email__fake-link {
  display: inline-block;
  background: var(--color-warning);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: var(--text-body-sm);
  position: relative;
}

.phish-email__annotation {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.phish-email__annotation::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  transform: rotate(45deg);
}

.phish-email__annotations-list {
  padding: var(--space-4) var(--space-5);
  background: rgba(6, 182, 212, 0.06);
  border-top: 2px solid var(--cyan);
}

.phish-email__annotations-list h4 {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: var(--space-2);
  letter-spacing: normal;
}

.phish-email__annotations-list ul {
  font-size: var(--text-body-sm);
  color: var(--gray);
  line-height: 1.8;
}

.phish-email__annotations-list li {
  padding-left: var(--space-4);
  position: relative;
}

.phish-email__annotations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* PhishSim How It Works */
.phishsim__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.phishsim-step {
  text-align: center;
  position: relative;
}

.phishsim-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  letter-spacing: 2px;
}

.phishsim-step__title {
  font-size: var(--text-h4);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.phishsim-step__desc {
  font-size: var(--text-body);
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* Connector line between steps */
.phishsim-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -16px;
  width: calc(100% - 56px);
  height: 2px;
  background: var(--border);
  transform: translateX(calc(50% + 28px));
}

/* --- Pricing Section --- */
.pricing-core {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.pricing-core h3 {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: normal;
}

.pricing-core__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-6);
  font-size: var(--text-body-sm);
  color: var(--off-white);
  font-weight: 300;
}

.pricing-core__list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-core__list li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: var(--space-10);
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card.featured {
  border-color: var(--blue-bright);
  background: rgba(26, 86, 219, 0.1);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.pricing-setup {
  font-size: 13px;
  color: var(--gray-mid);
  margin-bottom: 4px;
}

.pricing-setup s {
  text-decoration: line-through;
}

.pricing-setup .pricing-setup-waived {
  color: var(--green);
  font-weight: 600;
  margin-left: 6px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 64px;
  letter-spacing: 2px;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 28px;
  vertical-align: super;
}

.pricing-period {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
  font-weight: 300;
}

.pricing-features li::before {
  content: '\2192';
  color: var(--cyan);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features .pricing-features__subhead {
  font-weight: 600;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.pricing-features .pricing-features__subhead::before {
  content: none;
}

.btn-pricing {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-pricing-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray);
}

.btn-pricing-outline:hover {
  border-color: rgba(6, 182, 212, 0.4);
  color: var(--cyan);
}

.btn-pricing-filled {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  border: none;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.4);
}

.btn-pricing-filled:hover {
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.6);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-note span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-note span::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* --- Services Section --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--cyan);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--text-h4);
  font-weight: 400;
  margin-bottom: var(--space-2);
}

.service-card__desc {
  font-size: var(--text-body);
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

/* --- Industries Section --- */
.industries__tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.industries__tab {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.industries__tab--active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.industries__tab:hover {
  color: var(--cyan);
}

.industries__panel {
  display: none;
}

.industries__panel--active {
  display: block;
}

.industries__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: start;
}

.industries__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.industries__icon svg {
  width: 36px;
  height: 36px;
}

.industries__details h3 {
  font-size: var(--text-h3);
  font-weight: 400;
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.industries__threats,
.industries__approach {
  margin-bottom: var(--space-5);
}

.industries__threats h4,
.industries__approach h4 {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: normal;
}

.industries__threats ul,
.industries__approach ul {
  font-size: var(--text-body);
  color: var(--gray);
  line-height: 1.8;
}

.industries__threats li,
.industries__approach li {
  padding-left: var(--space-5);
  position: relative;
}

.industries__threats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-warning);
}

.industries__approach li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* Industries accordion (mobile) */
.industries__accordion {
  display: none;
}

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

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) 0;
  min-height: 48px;
  font-size: var(--text-body-lg);
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--duration-normal) var(--ease-out);
  color: var(--gray);
}

.accordion-item--open .accordion-trigger__icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.accordion-item--open .accordion-content {
  max-height: 600px;
}

.accordion-content__inner {
  padding-bottom: var(--space-5);
}

/* --- Testimonials Section --- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

.testimonial-card__quote {
  font-size: var(--text-body);
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  font-style: italic;
  position: relative;
  padding-top: var(--space-6);
  font-weight: 300;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--cyan);
  opacity: 0.4;
  line-height: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: var(--text-body-sm);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: normal;
}

.testimonial-card__role {
  font-size: var(--text-body-sm);
  color: var(--gray);
}

/* Trust Stats Bar */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  background: rgba(15, 32, 68, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
}

.trust-stat {
  text-align: center;
  color: #FFFFFF;
}

.trust-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--space-1);
  color: var(--cyan);
  letter-spacing: 2px;
}

.trust-stat__label {
  font-size: var(--text-body-sm);
  color: var(--gray);
}

/* --- About Section --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about__story {
  font-size: var(--text-body-lg);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  font-weight: 300;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.about__value {
  display: flex;
  align-items: start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about__value-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.about__value-icon svg {
  width: 18px;
  height: 18px;
}

.about__value-title {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: normal;
}

.about__value-desc {
  font-size: var(--text-body-sm);
  color: var(--gray);
  line-height: 1.5;
}

/* PNW visual - mountain silhouette */
.about__visual {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.about__pnw-scene {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.about__pnw-scene svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.about__visual-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-6);
}

.about__visual-text h3 {
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--cyan);
  margin-bottom: var(--space-2);
  letter-spacing: 2px;
}

.about__visual-text p {
  font-size: var(--text-body);
  color: var(--gray);
}

/* --- Contact Section --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-body);
  color: var(--color-text);
  background: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: var(--text-body-sm);
  color: var(--color-warning);
  margin-top: var(--space-1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-info {
  padding-top: var(--space-4);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.3), rgba(6, 182, 212, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-size: var(--text-body-sm);
  color: var(--gray);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--color-text);
}

.contact-info__expect {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-top: var(--space-8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-info__expect h4 {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  margin-bottom: var(--space-3);
  letter-spacing: normal;
}

.contact-info__expect ul {
  font-size: var(--text-body-sm);
  color: var(--gray);
  line-height: 1.8;
}

.contact-info__expect li {
  padding-left: var(--space-5);
  position: relative;
}

.contact-info__expect li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* --- Footer --- */
.footer {
  background: #060E1C;
  border-top: 1px solid var(--border);
  color: #FFFFFF;
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 280px;
}

.footer__brand .nav__logo {
  margin-bottom: var(--space-2);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out);
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.2);
  color: #FFFFFF;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__column h4 {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-4);
}

.footer__link {
  display: block;
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.75);
  padding: var(--space-1) 0;
  transition: color var(--duration-normal) var(--ease-out);
}

.footer__link:hover {
  color: #FFFFFF;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.5);
}

.footer__bottom-tagline {
  font-style: italic;
}

/* --- Utility Classes --- */
/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 2000;
  background: var(--blue);
  color: #FFFFFF;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-body-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
