/* ============================================
   AWIRON — Main Stylesheet
   Enterprise Light Theme
   ============================================ */

:root {
  --aw-primary:     #1E6BFF;
  --aw-primary-dark:#1557d4;
  --aw-secondary:   #3AA8FF;
  --aw-accent:      #00C2FF;
  --aw-dark:        #0E2A47;
  --aw-darker:      #081929;
  --aw-success:     #00D084;
  --aw-danger:      #FF4D4D;
  --aw-warning:     #F59E0B;
  --aw-purple:      #8B5CF6;

  --aw-bg:          #FFFFFF;
  --aw-bg-2:        #F8FAFF;
  --aw-bg-3:        #F0F4FF;
  --aw-border:      #E2E8F0;
  --aw-border-2:    #CBD5E1;

  --aw-text:        #0F172A;
  --aw-text-2:      #334155;
  --aw-text-3:      #64748B;
  --aw-text-4:      #94A3B8;

  --aw-radius:      12px;
  --aw-radius-sm:   8px;
  --aw-radius-lg:   20px;
  --aw-shadow:      0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(30,107,255,0.06);
  --aw-shadow-md:   0 4px 24px rgba(30,107,255,0.1);
  --aw-shadow-lg:   0 8px 48px rgba(30,107,255,0.15);

  --font-main:      'Inter', -apple-system, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--aw-bg-2); }
::-webkit-scrollbar-thumb { background: var(--aw-border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--aw-primary); }

/* ── NAVBAR ── */
.aw-navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--aw-border);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.aw-navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--aw-shadow-md);
}

/* Logo */
.aw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.aw-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--aw-primary), var(--aw-secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30,107,255,0.3);
  flex-shrink: 0;
}

.aw-logo-icon.small { width: 30px; height: 30px; font-size: 14px; border-radius: 8px; }

.aw-logo-text { display: flex; flex-direction: column; }

.aw-logo-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--aw-dark);
  line-height: 1;
}

.aw-logo-sub {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--aw-text-3);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.aw-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--aw-text-2) !important;
  padding: 8px 14px !important;
  border-radius: var(--aw-radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.aw-nav-link:hover,
.aw-nav-link.active {
  color: var(--aw-primary) !important;
  background: rgba(30,107,255,0.06);
}

/* Dropdown */
.aw-dropdown {
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  box-shadow: var(--aw-shadow-lg);
  padding: 8px;
  min-width: 280px;
  background: white;
  margin-top: 8px !important;
}

.aw-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px !important;
  border-radius: var(--aw-radius-sm);
  transition: all 0.2s ease;
}

.aw-dropdown-item:hover { background: var(--aw-bg-2) !important; }

.aw-dd-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--aw-bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.aw-dd-text { display: flex; flex-direction: column; }
.aw-dd-name { font-size: 13px; font-weight: 600; color: var(--aw-text); line-height: 1.3; }
.aw-dd-desc { font-size: 11px; color: var(--aw-text-3); margin-top: 1px; }

.aw-dd-all .aw-dd-icon { color: var(--aw-primary); }
.aw-divider { border-color: var(--aw-border); margin: 4px 0; }

/* Lang switcher */
.aw-lang-switcher { display: flex; align-items: center; }
.aw-lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--aw-text-3);
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s;
}
.aw-lang-btn:hover,
.aw-lang-btn.active { color: var(--aw-primary); }
.aw-lang-sep { color: var(--aw-border-2); font-size: 12px; }

/* Buttons */
.aw-btn-primary {
  background: linear-gradient(135deg, var(--aw-primary), var(--aw-secondary));
  color: white !important;
  border: none;
  padding: 9px 20px;
  border-radius: var(--aw-radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(30,107,255,0.25);
}

.aw-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,107,255,0.35);
}

.aw-btn-outline {
  background: transparent;
  color: var(--aw-text-2) !important;
  border: 1px solid var(--aw-border-2);
  padding: 9px 20px;
  border-radius: var(--aw-radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.aw-btn-outline:hover {
  border-color: var(--aw-primary);
  color: var(--aw-primary) !important;
  background: rgba(30,107,255,0.04);
}

/* Mobile toggler */
.aw-toggler {
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  padding: 6px 10px;
}

/* ── FOOTER ── */
.aw-footer {
  background: var(--aw-darker);
  color: #94A3B8;
  padding-top: 64px;
}

.aw-footer-top { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.aw-footer-brand .aw-logo-name { color: white; }

.aw-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  max-width: 280px;
  margin-bottom: 20px;
}

.aw-footer-social { display: flex; gap: 10px; }

.aw-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #64748B;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

.aw-social-btn:hover {
  border-color: var(--aw-primary);
  color: var(--aw-primary);
  background: rgba(30,107,255,0.1);
}

.aw-footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.aw-footer-links { list-style: none; padding: 0; }

.aw-footer-links li { margin-bottom: 10px; }

.aw-footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.aw-footer-links a:hover { color: white; }

.aw-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: #475569;
  flex-wrap: wrap;
  gap: 12px;
}

.aw-footer-badges { display: flex; gap: 10px; }

.aw-footer-badge {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  color: #64748B;
}

/* ── UTILITIES ── */
main { padding-top: 72px; }

.aw-section { padding: 80px 0; }
.aw-section-sm { padding: 48px 0; }
.aw-section-lg { padding: 120px 0; }

.aw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(30,107,255,0.08);
  color: var(--aw-primary);
  border: 1px solid rgba(30,107,255,0.15);
  margin-bottom: 16px;
}

.aw-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
}

.aw-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aw-shadow-lg);
  border-color: rgba(30,107,255,0.2);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.aw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.aw-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aw-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,107,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,107,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.aw-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.aw-hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,107,255,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}

.aw-hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,194,255,0.08) 0%, transparent 70%);
  bottom: 0; left: 10%;
}

.aw-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--aw-dark);
  margin-bottom: 20px;
  display: block;
}

.aw-hero-title-gradient {
  display: block;
  background: linear-gradient(135deg, var(--aw-primary), var(--aw-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aw-hero-desc {
  font-size: 17px;
  color: var(--aw-text-3);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.aw-hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.aw-hero-stat {
  display: flex;
  flex-direction: column;
}

.aw-hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--aw-primary);
  font-family: var(--font-mono);
  line-height: 1;
}

.aw-hero-stat-label {
  font-size: 11px;
  color: var(--aw-text-4);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aw-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.aw-btn-lg { padding: 12px 28px; font-size: 15px; }

.aw-btn-ghost {
  background: transparent;
  color: var(--aw-text-2) !important;
  border: 1px solid var(--aw-border);
  padding: 12px 28px;
  border-radius: var(--aw-radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.aw-btn-ghost:hover {
  border-color: var(--aw-primary);
  color: var(--aw-primary) !important;
  background: rgba(30,107,255,0.04);
}

.aw-hero-trust { display: flex; flex-direction: column; gap: 8px; }

.aw-trust-text {
  font-size: 12px;
  color: var(--aw-text-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aw-trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.aw-trust-badge {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--aw-bg-2);
  border: 1px solid var(--aw-border);
  color: var(--aw-text-2);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hero dashboard */
.aw-hero-visual { padding-left: 32px; }

.aw-hero-dashboard {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: 20px;
  box-shadow: var(--aw-shadow-lg);
  overflow: hidden;
  position: relative;
}

.aw-hd-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--aw-border);
  background: var(--aw-bg-2);
}

.aw-hd-dots { display: flex; gap: 6px; }
.aw-hd-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.aw-hd-dot.red    { background: #FF5F57; }
.aw-hd-dot.amber  { background: #FFBD2E; }
.aw-hd-dot.green  { background: #28C840; }

.aw-hd-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--aw-text-2);
  flex: 1;
  text-align: center;
}

.aw-hd-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--aw-success);
  letter-spacing: 1px;
}

.aw-hd-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--aw-success);
  animation: aw-blink 1s infinite;
}

@keyframes aw-blink { 50% { opacity: 0.3; } }

.aw-hd-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--aw-border);
}

.aw-hd-stat {
  padding: 12px;
  text-align: center;
  border-right: 1px solid var(--aw-border);
}
.aw-hd-stat:last-child { border-right: none; }

.aw-hd-stat-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--aw-primary);
  font-family: var(--font-mono);
  line-height: 1;
}
.aw-hd-stat.danger .aw-hd-stat-val  { color: var(--aw-danger); }
.aw-hd-stat.success .aw-hd-stat-val { color: var(--aw-success); }
.aw-hd-stat.warning .aw-hd-stat-val { color: var(--aw-warning); }

.aw-hd-stat-label {
  font-size: 10px;
  color: var(--aw-text-4);
  margin-top: 4px;
  display: block;
}

/* Log feed */
.aw-hd-logs {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 180px;
  overflow: hidden;
  border-bottom: 1px solid var(--aw-border);
}

.aw-hd-log {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--aw-bg-2);
  font-family: var(--font-mono);
  animation: aw-slide-in 0.3s ease;
}

@keyframes aw-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.aw-hd-log-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.aw-hd-log-badge.critical { background: #FFF0F0; color: #FF4D4D; }
.aw-hd-log-badge.high     { background: #FFF8EC; color: #F59E0B; }
.aw-hd-log-badge.medium   { background: #F0F4FF; color: #1E6BFF; }
.aw-hd-log-badge.low      { background: #E6FFF5; color: #00D084; }
.aw-hd-log-badge.info     { background: #F8FAFF; color: #94A3B8; }

.aw-hd-log-text {
  flex: 1;
  color: var(--aw-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.aw-hd-log-time {
  color: var(--aw-text-4);
  font-size: 10px;
  flex-shrink: 0;
}

/* Progress bars */
.aw-hd-bars {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aw-hd-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--aw-text-3);
}

.aw-hd-bar-row > span:first-child { width: 88px; flex-shrink: 0; }
.aw-hd-bar-row > span:last-child  { width: 32px; text-align: right; flex-shrink: 0; }

.aw-hd-bar {
  flex: 1;
  height: 5px;
  background: var(--aw-bg-3);
  border-radius: 3px;
  overflow: hidden;
}

.aw-hd-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}
.aw-hd-bar-fill.primary { background: linear-gradient(90deg, var(--aw-primary), var(--aw-secondary)); }
.aw-hd-bar-fill.success { background: linear-gradient(90deg, #00D084, #00E5B0); }
.aw-hd-bar-fill.purple  { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }

/* ═══════════════════════════════════════
   SOC FLOW
═══════════════════════════════════════ */
.aw-soc-flow {
  padding: 80px 0;
  background: var(--aw-bg-2);
  position: relative;
  overflow: hidden;
}

.aw-flow-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 48px;
}

#soc-flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aw-flow-nodes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.aw-flow-node {
  position: absolute;
  transform: translate(-50%, -50%);
  background: white;
  border: 2px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
  min-width: 140px;
  text-align: center;
  text-decoration: none;
}

.aw-flow-node:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: var(--aw-shadow-lg);
  border-color: var(--node-color, var(--aw-primary));
  z-index: 10;
}

.aw-flow-node-icon {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}

.aw-flow-node-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--aw-text);
  display: block;
  line-height: 1.3;
}

.aw-flow-node-sub {
  font-size: 10px;
  color: var(--aw-text-4);
  display: block;
  margin-top: 2px;
}

.aw-flow-node.source  { border-color: rgba(30,107,255,0.3); }
.aw-flow-node.process { border-color: rgba(139,92,246,0.4); background: linear-gradient(135deg, #F9F7FF, white); }
.aw-flow-node.output  { border-color: rgba(0,208,132,0.4); }

/* ═══════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════ */
.aw-products-section { background: var(--aw-bg); }

.aw-section-header { margin-bottom: 16px; }

.aw-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--aw-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.aw-section-desc {
  font-size: 16px;
  color: var(--aw-text-3);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.aw-product-card {
  display: block;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
  height: 100%;
}

.aw-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aw-shadow-lg);
  border-color: rgba(30,107,255,0.2);
}

.aw-pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.aw-pc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

.aw-pc-arrow {
  font-size: 16px;
  color: var(--aw-text-4);
  transition: all 0.2s ease;
}
.aw-product-card:hover .aw-pc-arrow {
  color: var(--aw-primary);
  transform: translate(3px, -3px);
}

.aw-pc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--aw-text);
  margin-bottom: 6px;
}

.aw-pc-tagline {
  font-size: 13px;
  color: var(--aw-text-3);
  margin-bottom: 16px;
  line-height: 1.5;
}

.aw-pc-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.aw-pc-feature {
  font-size: 12px;
  color: var(--aw-text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aw-pc-stats {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--aw-border);
}

.aw-pc-stat { display: flex; flex-direction: column; }

.aw-pc-stat-val {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1;
}

.aw-pc-stat-label {
  font-size: 10px;
  color: var(--aw-text-4);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════
   LOOKUP
═══════════════════════════════════════ */
.aw-lookup-section {
  background: linear-gradient(180deg, var(--aw-bg) 0%, var(--aw-bg-2) 100%);
}

.aw-lookup-box {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  padding: 32px;
  box-shadow: var(--aw-shadow-md);
  margin-top: 32px;
}

.aw-lookup-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: var(--aw-bg-2);
  padding: 4px;
  border-radius: var(--aw-radius-sm);
}

.aw-lookup-tab {
  flex: 1;
  padding: 8px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--aw-text-3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.aw-lookup-tab.active {
  background: white;
  color: var(--aw-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.aw-lookup-input-wrap {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.aw-lookup-icon {
  position: absolute;
  left: 14px;
  color: var(--aw-text-4);
  font-size: 16px;
}

.aw-lookup-input {
  flex: 1;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  font-size: 14px;
  font-family: var(--font-mono);
  color: var(--aw-text);
  background: var(--aw-bg-2);
  outline: none;
  transition: all 0.2s ease;
}

.aw-lookup-input:focus {
  border-color: var(--aw-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(30,107,255,0.1);
}

.aw-lookup-result {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--aw-radius-sm);
  background: var(--aw-bg-2);
  border: 1px solid var(--aw-border);
  font-size: 13px;
  font-family: var(--font-mono);
}

.aw-lookup-hint {
  font-size: 12px;
  color: var(--aw-text-4);
  margin-top: 12px;
  margin-bottom: 0;
}
.aw-lookup-hint a { color: var(--aw-primary); text-decoration: none; }

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.aw-stats-section {
  background: var(--aw-dark);
  padding: 48px 0;
}

.aw-stat-item { padding: 16px; }

.aw-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: white;
  font-family: var(--font-mono);
}

.aw-stat-suffix {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: var(--aw-secondary);
  font-family: var(--font-mono);
}

.aw-stat-label {
  display: block;
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   USE CASES
═══════════════════════════════════════ */
.aw-usecases-section { background: var(--aw-bg); }

.aw-usecase-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
}

.aw-usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--aw-shadow-md);
}

.aw-uc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.aw-usecase-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--aw-text);
  margin-bottom: 6px;
}

.aw-usecase-card p {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.aw-cta-section {
  padding: 80px 0;
  background: var(--aw-bg-2);
}

.aw-cta-box {
  background: linear-gradient(135deg, var(--aw-dark) 0%, var(--aw-darker) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.aw-cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,107,255,0.3) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.aw-cta-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.aw-cta-desc {
  font-size: 16px;
  color: #64748B;
  margin: 0;
}

.aw-btn-white {
  background: white;
  color: var(--aw-dark) !important;
  border: none;
  padding: 12px 28px;
  border-radius: var(--aw-radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.aw-btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.2); }

.aw-btn-outline-white {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 28px;
  border-radius: var(--aw-radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.aw-btn-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════
   PAGE HERO (shared)
═══════════════════════════════════════ */
.aw-page-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--aw-bg);
}

.aw-page-hero-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--aw-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.aw-page-hero-desc {
  font-size: 17px;
  color: var(--aw-text-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PRODUCT LIST
═══════════════════════════════════════ */
.aw-filter-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: var(--aw-bg-2);
  border-radius: var(--aw-radius-sm);
  width: fit-content;
  border: 1px solid var(--aw-border);
}

.aw-filter-tab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--aw-text-3);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.aw-filter-tab.active {
  background: white;
  color: var(--aw-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.aw-product-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
  height: 100%;
}

.aw-product-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--aw-shadow-lg);
  border-color: rgba(30,107,255,0.2);
}

.aw-plc-left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.aw-plc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.aw-plc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--aw-text);
  margin-bottom: 4px;
}

.aw-plc-tagline {
  font-size: 13px;
  color: var(--aw-text-3);
  margin-bottom: 10px;
  line-height: 1.5;
}

.aw-plc-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.aw-plc-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--aw-bg-2);
  border: 1px solid var(--aw-border);
  color: var(--aw-text-3);
}

.aw-plc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.aw-plc-stat { text-align: right; }

.aw-plc-stat-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1;
}

.aw-plc-stat-label {
  font-size: 10px;
  color: var(--aw-text-4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.aw-plc-arrow {
  font-size: 18px;
  color: var(--aw-text-4);
  margin-top: 4px;
  transition: all 0.2s ease;
}

.aw-product-list-card:hover .aw-plc-arrow {
  color: var(--aw-primary);
  transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════
   ARCHITECTURE DIAGRAM
═══════════════════════════════════════ */
.aw-arch-section { background: var(--aw-bg-2); }

.aw-arch-diagram {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.aw-arch-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.aw-arch-core {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--aw-primary), var(--aw-secondary));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px rgba(30,107,255,0.35);
  text-align: center;
  padding: 0 8px;
}

.aw-arch-core i { font-size: 24px; }

.aw-arch-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.aw-arch-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(30,107,255,0.12);
  transform: translate(-50%, -50%);
}

.aw-arch-ring-1 { width: 180px; height: 180px; animation: arch-spin 20s linear infinite; }
.aw-arch-ring-2 { width: 300px; height: 300px; animation: arch-spin 30s linear infinite reverse; }
.aw-arch-ring-3 { width: 440px; height: 440px; animation: arch-spin 40s linear infinite; }

@keyframes arch-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.aw-arch-satellite {
  position: absolute;
  transform: translate(-50%, -50%);
}

/* Position satellites around the circle */
.aw-arch-sat-1 { top: 7%;  left: 50%; }
.aw-arch-sat-2 { top: 22%; left: 88%; }
.aw-arch-sat-3 { top: 60%; left: 94%; }
.aw-arch-sat-4 { top: 88%; left: 72%; }
.aw-arch-sat-5 { top: 88%; left: 28%; }
.aw-arch-sat-6 { top: 60%; left: 6%;  }
.aw-arch-sat-7 { top: 22%; left: 12%; }

.aw-arch-sat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: 12px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--aw-text);
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: var(--aw-shadow);
  min-width: 80px;
  text-align: center;
}

.aw-arch-sat-card i { font-size: 18px; }

.aw-arch-sat-card:hover {
  transform: scale(1.08);
  box-shadow: var(--aw-shadow-md);
  border-color: var(--sat-color);
}

/* ═══════════════════════════════════════
   PRODUCT DETAIL
═══════════════════════════════════════ */
.aw-product-hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--aw-bg);
}

.aw-prd-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -150px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.aw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--aw-text-4);
  margin-bottom: 24px;
}

.aw-breadcrumb a { color: var(--aw-text-3); text-decoration: none; }
.aw-breadcrumb a:hover { color: var(--aw-primary); }
.aw-breadcrumb i { font-size: 10px; }

.aw-prd-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.aw-prd-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--aw-dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.aw-prd-tagline {
  font-size: 18px;
  color: var(--aw-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.aw-prd-desc {
  font-size: 16px;
  color: var(--aw-text-3);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.aw-prd-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.aw-prd-stats-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  padding: 28px;
  box-shadow: var(--aw-shadow-md);
}

.aw-prd-stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--aw-border);
}

.aw-prd-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.aw-prd-stat-item { text-align: center; }

.aw-prd-stat-val {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 4px;
}

.aw-prd-stat-label {
  font-size: 11px;
  color: var(--aw-text-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aw-prd-use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--aw-border);
}

.aw-prd-uc-label {
  font-size: 12px;
  color: var(--aw-text-4);
  margin-right: 4px;
}

.aw-prd-uc-tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.aw-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 20px;
  box-shadow: var(--aw-shadow);
  height: 100%;
  transition: all 0.2s ease;
}

.aw-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--aw-shadow-md);
}

.aw-feature-check {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.aw-feature-text {
  font-size: 14px;
  color: var(--aw-text-2);
  line-height: 1.6;
  margin: 0;
  padding-top: 6px;
}

.aw-hiw-step {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--aw-radius);
  border: 1px solid var(--aw-border);
  box-shadow: var(--aw-shadow);
}

.aw-hiw-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-mono);
  margin: 0 auto 14px;
}

.aw-hiw-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--aw-text);
  margin-bottom: 8px;
}

.aw-hiw-step p {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

.aw-hiw-arrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: var(--aw-border-2);
  padding-top: 12px;
}

.aw-mini-product-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--aw-shadow);
}

.aw-mini-product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--aw-shadow-md);
  border-color: rgba(30,107,255,0.2);
}

.aw-mpc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.aw-mpc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--aw-text);
  flex: 1;
}

.aw-mpc-arrow {
  font-size: 14px;
  color: var(--aw-text-4);
  transition: all 0.2s ease;
}

.aw-mini-product-card:hover .aw-mpc-arrow {
  color: var(--aw-primary);
  transform: translate(2px, -2px);
}

.aw-prd-nav {
  background: white;
  border-top: 1px solid var(--aw-border);
  border-bottom: 1px solid var(--aw-border);
  padding: 16px 0;
}

.aw-prd-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--aw-text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--aw-radius-sm);
  transition: all 0.2s ease;
}

.aw-prd-nav-btn:hover { color: var(--aw-primary); background: var(--aw-bg-2); }

.aw-prd-nav-btn small {
  display: block;
  font-size: 10px;
  color: var(--aw-text-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.aw-contact-form-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  padding: 40px;
  box-shadow: var(--aw-shadow-md);
}

.aw-contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--aw-dark);
  margin-bottom: 28px;
}

.aw-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--aw-text-2);
  margin-bottom: 6px;
}

.aw-form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-sm);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--aw-text);
  background: var(--aw-bg-2);
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
}

.aw-form-input:focus {
  border-color: var(--aw-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(30,107,255,0.1);
}

.aw-form-textarea { resize: vertical; min-height: 130px; }

.aw-contact-info { padding-top: 8px; }

.aw-contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--aw-dark);
  margin-bottom: 24px;
}

.aw-contact-points { display: flex; flex-direction: column; gap: 20px; }

.aw-contact-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.aw-cp-icon {
  width: 40px; height: 40px;
  background: var(--aw-bg-2);
  border: 1px solid var(--aw-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--aw-primary);
  flex-shrink: 0;
}

.aw-contact-point strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--aw-text);
  margin-bottom: 3px;
}

.aw-contact-point p {
  font-size: 13px;
  color: var(--aw-text-3);
  margin: 0;
  line-height: 1.5;
}

.aw-contact-direct {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--aw-border);
}

.aw-contact-direct-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--aw-primary);
  text-decoration: none;
}

.aw-contact-direct-link:hover { text-decoration: underline; }



/* ═══════════════════════════════════════
   BLOG
═══════════════════════════════════════ */
.aw-blog-featured {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  overflow: hidden;
  box-shadow: var(--aw-shadow-md);
  margin-bottom: 8px;
}

.aw-blog-feat-img {
  height: 100%;
  min-height: 280px;
}

.aw-blog-feat-placeholder {
  width: 100%; height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, var(--aw-dark), var(--aw-primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: rgba(255,255,255,0.2);
}

.aw-blog-feat-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.aw-blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--aw-primary);
  background: rgba(30,107,255,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.aw-blog-feat-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--aw-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.aw-blog-feat-desc {
  font-size: 14px;
  color: var(--aw-text-3);
  line-height: 1.7;
  margin-bottom: 16px;
}

.aw-blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--aw-text-4);
}

.aw-blog-card {
  display: block;
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
  height: 100%;
}

.aw-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--aw-shadow-lg);
  border-color: rgba(30,107,255,0.2);
}

.aw-blog-card-img { height: 160px; }

.aw-blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}

.aw-blog-card-body { padding: 20px; }

.aw-blog-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--aw-dark);
  line-height: 1.4;
  margin: 8px 0;
}

.aw-blog-card-desc {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Newsletter */
.aw-newsletter {
  background: linear-gradient(135deg, var(--aw-dark), var(--aw-darker));
  border-radius: var(--aw-radius-lg);
  padding: 40px 48px;
  margin-top: 48px;
}

.aw-newsletter-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.aw-newsletter-desc {
  font-size: 14px;
  color: #64748B;
  margin: 0;
}

.aw-newsletter-form {
  display: flex;
  gap: 10px;
}

.aw-newsletter-form .aw-form-input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: white;
}

.aw-newsletter-form .aw-form-input::placeholder { color: #475569; }
.aw-newsletter-form .aw-form-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--aw-primary);
}


/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.aw-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: var(--aw-bg-2);
  padding: 8px 20px;
  border-radius: 40px;
  border: 1px solid var(--aw-border);
}

.aw-billing-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--aw-text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.aw-billing-save {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(0,208,132,0.12);
  color: var(--aw-success);
}

.aw-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.aw-toggle-switch input { display: none; }

.aw-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--aw-border-2);
  border-radius: 12px;
  transition: all 0.3s;
}

.aw-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.aw-toggle-switch input:checked + .aw-toggle-slider {
  background: var(--aw-primary);
}

.aw-toggle-switch input:checked + .aw-toggle-slider::before {
  transform: translateX(20px);
}

/* Pricing card */
.aw-pricing-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  padding: 32px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--aw-shadow);
  display: flex;
  flex-direction: column;
}

.aw-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--aw-shadow-lg);
}

.aw-pricing-popular {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 2px rgba(139,92,246,0.2), var(--aw-shadow-lg);
}

.aw-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.aw-pricing-header { margin-bottom: 20px; }

.aw-pricing-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}

.aw-pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--aw-dark);
  margin-bottom: 6px;
}

.aw-pricing-desc {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

.aw-pricing-price { margin-bottom: 20px; }

.aw-price-monthly {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.aw-price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--aw-text-2);
  margin-top: 4px;
}

.aw-price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--aw-dark);
  font-family: var(--font-mono);
  line-height: 1;
}

.aw-price-period {
  font-size: 16px;
  color: var(--aw-text-3);
  margin-left: 2px;
}

.aw-price-yearly-note {
  font-size: 12px;
  color: var(--aw-success);
  margin: 4px 0 0;
}

.aw-price-custom {
  font-size: 32px;
  font-weight: 800;
  color: var(--aw-dark);
  font-family: var(--font-mono);
}

.aw-price-custom-note {
  font-size: 13px;
  color: var(--aw-text-3);
  margin: 4px 0 0;
}

.aw-pricing-cta { margin-bottom: 20px; }

.aw-pricing-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.aw-pricing-divider::before,
.aw-pricing-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--aw-border);
}

.aw-pricing-divider span {
  font-size: 11px;
  color: var(--aw-text-4);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.aw-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.aw-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  color: var(--aw-text-2);
  border-bottom: 1px solid var(--aw-bg-3);
}

.aw-pricing-feature:last-child { border: none; }

.aw-pricing-feature-off { color: var(--aw-text-4); }

.aw-pricing-check {
  width: 20px;
  flex-shrink: 0;
  font-size: 15px;
}

/* Compare table */
.aw-compare-table { overflow-x: auto; }

.aw-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.aw-table thead tr {
  background: var(--aw-bg-3);
}

.aw-table th {
  padding: 14px 20px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  border-bottom: 2px solid var(--aw-border);
}

.aw-table th:first-child { text-align: left; }

.aw-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--aw-border);
  text-align: center;
  color: var(--aw-text-2);
}

.aw-table td:first-child {
  text-align: left;
  color: var(--aw-text);
  font-weight: 500;
}

.aw-table tr:hover td { background: var(--aw-bg-2); }

.aw-table-section td {
  background: var(--aw-bg-3) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--aw-text-3) !important;
  padding: 10px 20px;
}

/* Accordion */
.aw-accordion-item {
  border: 1px solid var(--aw-border) !important;
  border-radius: var(--aw-radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.aw-accordion-btn {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--aw-text) !important;
  background: white !important;
  padding: 18px 20px !important;
  box-shadow: none !important;
}

.aw-accordion-btn:not(.collapsed) {
  color: var(--aw-primary) !important;
  background: rgba(30,107,255,0.03) !important;
}

.aw-accordion-body {
  font-size: 14px;
  color: var(--aw-text-3);
  line-height: 1.7;
  padding: 0 20px 18px;
}

/* ═══════════════════════════════════════
   COMPANY
═══════════════════════════════════════ */
.aw-company-hero-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--aw-shadow-lg);
}

.aw-company-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.aw-company-hero-name {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--aw-dark);
  margin-bottom: 6px;
}

.aw-company-hero-tagline {
  font-size: 13px;
  color: var(--aw-text-3);
  margin-bottom: 24px;
}

.aw-company-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--aw-border);
}

.aw-company-hero-stat { text-align: center; }

.aw-company-hero-stat-val {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--aw-primary);
  font-family: var(--font-mono);
}

.aw-company-hero-stat-label {
  font-size: 11px;
  color: var(--aw-text-4);
  margin-top: 2px;
  display: block;
}

/* Value cards */
.aw-value-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--aw-shadow);
  transition: all 0.2s ease;
}

.aw-value-card:hover { transform: translateY(-3px); box-shadow: var(--aw-shadow-md); }

.aw-value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--aw-dark);
  margin: 10px 0 6px;
}

.aw-value-card p {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.aw-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.aw-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--aw-border);
}

.aw-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.aw-timeline-year {
  width: 64px;
  font-size: 13px;
  font-weight: 800;
  color: var(--aw-primary);
  font-family: var(--font-mono);
  text-align: right;
  padding-top: 4px;
  flex-shrink: 0;
}

.aw-timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--aw-primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--aw-primary);
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

.aw-timeline-content {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 16px 20px;
  flex: 1;
  box-shadow: var(--aw-shadow);
}

.aw-timeline-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--aw-dark);
  margin-bottom: 4px;
}

.aw-timeline-desc {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

/* Team */
.aw-team-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--aw-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.aw-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--aw-shadow-lg);
}

.aw-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}

.aw-team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--aw-dark);
  margin-bottom: 4px;
}

.aw-team-role {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.aw-team-bio {
  font-size: 13px;
  color: var(--aw-text-3);
  line-height: 1.6;
  margin: 0;
}

/* Awards */
.aw-award-card {
  background: white;
  border: 1px solid var(--aw-border);
  border-radius: var(--aw-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--aw-shadow);
  transition: all 0.2s ease;
}

.aw-award-card:hover { transform: translateY(-3px); box-shadow: var(--aw-shadow-md); }

.aw-award-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--aw-dark);
  margin: 12px 0 4px;
}

.aw-award-card p {
  font-size: 12px;
  color: var(--aw-text-4);
  margin: 0;
}

/* ═══════════════════════════════════════
   PRODUCT DEMOS
═══════════════════════════════════════ */
.aw-demo-section { overflow: hidden; }

.aw-demo-wrapper {
  border-radius: var(--aw-radius-lg);
  overflow: hidden;
}


/* ═══════════════════════════════════════
   RESPONSIVE — Mobile First
═══════════════════════════════════════ */

/* ── TABLET (≤ 991px) ── */
@media (max-width: 991px) {

  /* Navbar */
  .aw-navbar { padding: 10px 0; }

  #awNavbar {
    background: white;
    border-top: 1px solid var(--aw-border);
    padding: 16px;
    margin-top: 10px;
    border-radius: var(--aw-radius);
    box-shadow: var(--aw-shadow-lg);
  }

  .aw-navbar .navbar-nav { gap: 2px; }

  .aw-navbar .d-flex {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--aw-border);
    flex-wrap: wrap;
    gap: 8px;
  }

  .aw-lang-switcher { order: -1; }

  .aw-dropdown { min-width: 100%; margin-top: 4px !important; }

  /* Hero */
  .aw-hero { padding: 90px 0 40px; min-height: auto; }

  .aw-hero-visual {
    padding-left: 0;
    margin-top: 40px;
  }

  .aw-hero-title { font-size: clamp(28px, 6vw, 40px); }

  .aw-hero-stats { gap: 16px; }

  .aw-hero-stat-val { font-size: 18px; }

  /* Hero dashboard */
  .aw-hd-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-hd-stat:nth-child(2) { border-right: none; }
  .aw-hd-stat:nth-child(3),
  .aw-hd-stat:nth-child(4) { border-top: 1px solid var(--aw-border); }

  /* SOC Flow */
  .aw-flow-wrapper { height: 380px; }

  .aw-flow-node {
    min-width: 110px;
    padding: 10px 12px;
  }

  .aw-flow-node-name { font-size: 11px; }
  .aw-flow-node-sub  { font-size: 9px; }

  /* Products */
  .aw-pc-stats { gap: 10px; }

  /* Architecture */
  .aw-arch-diagram {
    width: 100%;
    max-width: 500px;
    height: 500px;
  }

  /* Pricing */
  .aw-pricing-card { padding: 24px; }

  /* CTA */
  .aw-cta-box { padding: 40px 28px; }

  /* Company */
  .aw-timeline::before { left: 60px; }
  .aw-timeline-year { width: 48px; font-size: 12px; }

  /* Demo */
  .aw-demo-ai-body { grid-template-columns: 1fr; }
  .aw-demo-ai-col:last-child { border-left: none; border-top: 1px solid var(--aw-border); }
  .aw-demo-ai-engine { flex-direction: row; padding: 12px 16px; justify-content: space-around; }

  .aw-ti-body { grid-template-columns: 1fr; }
  .aw-ti-panel { border-top: 1px solid var(--aw-border); }
  .aw-ti-map-wrap { border-right: none; }

  .aw-agents-body { grid-template-columns: 1fr; }
  .aw-agents-canvas-wrap {
    border-right: none;
    border-bottom: 1px solid var(--aw-border);
    height: 220px;
  }

  .aw-risk-body { grid-template-columns: 1fr 1fr; }
  .aw-risk-gauge-wrap { border-right: none; border-bottom: 1px solid var(--aw-border); }
  .aw-risk-assets-wrap { border-right: none; }
  .aw-risk-breakdown {
    grid-column: 1 / -1;
    border-top: 1px solid var(--aw-border);
  }

  .aw-siem-stats { flex-wrap: wrap; }
  .aw-siem-stat { flex: 1; min-width: 80px; }
  .aw-siem-spark { display: none; }

  /* Offline investigation */
  .aw-killchain { flex-wrap: wrap; gap: 6px; }
  .aw-kc-arrow { display: none; }

}


/* ── MOBILE (≤ 767px) ── */
@media (max-width: 767px) {

  /* Global */
  main { padding-top: 64px; }
  .aw-section    { padding: 48px 0; }
  .aw-section-sm { padding: 32px 0; }
  .aw-section-lg { padding: 64px 0; }

  /* Navbar */
  .aw-logo-name { font-size: 13px; letter-spacing: 1.5px; }
  .aw-logo-sub  { display: none; }

  /* Hero */
  .aw-hero { padding: 80px 0 32px; }

  .aw-hero-title { font-size: clamp(26px, 8vw, 36px); }

  .aw-hero-desc { font-size: 15px; }

  .aw-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .aw-hero-stat {
    background: var(--aw-bg-2);
    border: 1px solid var(--aw-border);
    border-radius: var(--aw-radius-sm);
    padding: 12px;
  }

  .aw-hero-actions { flex-direction: column; gap: 10px; }

  .aw-hero-actions .btn { width: 100%; text-align: center; }

  .aw-btn-lg { padding: 12px 20px; font-size: 14px; }

  /* Hero dashboard */
  .aw-hero-dashboard { margin-top: 24px; }

  .aw-hd-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-hd-stat-val { font-size: 16px; }

  .aw-hd-logs { max-height: 140px; }

  .aw-hd-bars { padding: 10px 12px; }

  .aw-hd-bar-row > span:first-child { width: 72px; font-size: 10px; }

  /* SOC Flow */
  .aw-flow-wrapper { height: 300px; margin-top: 24px; }

  .aw-flow-node {
    min-width: 90px;
    padding: 8px 10px;
  }

  .aw-flow-node-icon { font-size: 16px; margin-bottom: 3px; }
  .aw-flow-node-name { font-size: 10px; }
  .aw-flow-node-sub  { display: none; }

  /* Section headers */
  .aw-section-title { font-size: clamp(22px, 6vw, 30px); }
  .aw-section-desc  { font-size: 14px; }

  /* Badge */
  .aw-badge { font-size: 11px; padding: 5px 12px; }

  /* Products */
  .aw-product-card { padding: 18px; }
  .aw-pc-name { font-size: 16px; }
  .aw-pc-stats { gap: 8px; }
  .aw-pc-stat-val { font-size: 14px; }

  /* Product list */
  .aw-product-list-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .aw-plc-right {
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--aw-border);
  }

  .aw-plc-stat { text-align: left; flex: 1; }

  .aw-plc-arrow {
    font-size: 20px;
    color: var(--aw-primary);
  }

  /* Architecture */
  .aw-arch-diagram {
    width: 320px;
    height: 320px;
  }

  .aw-arch-ring-3 { width: 300px; height: 300px; }
  .aw-arch-ring-2 { width: 200px; height: 200px; }
  .aw-arch-ring-1 { width: 120px; height: 120px; }

  .aw-arch-core { width: 70px; height: 70px; font-size: 8px; }
  .aw-arch-core i { font-size: 18px; }

  .aw-arch-sat-card { padding: 6px 8px; font-size: 9px; min-width: 60px; }
  .aw-arch-sat-card i { font-size: 14px; }

  /* Page hero */
  .aw-page-hero { padding: 80px 0 36px; }
  .aw-page-hero-title { font-size: clamp(24px, 7vw, 36px); }
  .aw-page-hero-desc  { font-size: 15px; }

  /* Product detail */
  .aw-prd-title   { font-size: clamp(24px, 7vw, 36px); }
  .aw-prd-tagline { font-size: 15px; }
  .aw-prd-desc    { font-size: 14px; }

  .aw-prd-actions { flex-direction: column; }
  .aw-prd-actions .btn { width: 100%; text-align: center; }

  .aw-prd-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .aw-prd-stat-val   { font-size: 20px; }

  /* Breadcrumb */
  .aw-breadcrumb { font-size: 11px; }

  /* Features */
  .aw-feature-card { padding: 14px; }
  .aw-feature-check { width: 30px; height: 30px; }
  .aw-feature-text { font-size: 13px; }

  /* How it works */
  .aw-hiw-arrow { display: none; }

  /* Prev/Next nav */
  .aw-prd-nav-btn small { display: none; }
  .aw-prd-nav-btn { font-size: 12px; padding: 6px 8px; }

  /* Lookup */
  .aw-lookup-box { padding: 20px; }

  .aw-lookup-tabs {
    flex-wrap: wrap;
  }

  .aw-lookup-tab { flex: 1; font-size: 12px; padding: 7px 4px; }

  .aw-lookup-input-wrap { flex-direction: column; gap: 8px; }

  .aw-lookup-input { padding-left: 14px; }
  .aw-lookup-icon  { display: none; }

  .aw-lookup-input-wrap .btn { width: 100%; }

  /* Stats section */
  .aw-stat-num    { font-size: clamp(28px, 8vw, 40px); }
  .aw-stat-suffix { font-size: clamp(18px, 5vw, 28px); }

  /* Use cases */
  .aw-uc-icon { width: 36px; height: 36px; font-size: 16px; }
  .aw-usecase-card h4 { font-size: 14px; }

  /* CTA */
  .aw-cta-box { padding: 28px 20px; border-radius: 16px; }
  .aw-cta-title { font-size: clamp(20px, 5vw, 28px); }
  .aw-cta-desc  { font-size: 14px; }
  .aw-cta-box .btn { display: block; width: 100%; margin: 0 0 8px 0 !important; text-align: center; }

  /* Footer */
  .aw-footer { padding-top: 40px; }
  .aw-footer-desc { max-width: 100%; }
  .aw-footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .aw-contact-form-card { padding: 24px 16px; }
  .aw-contact-form-title { font-size: 18px; }

  /* Blog */
  .aw-blog-feat-placeholder { min-height: 200px; font-size: 48px; }
  .aw-blog-feat-body { padding: 20px; }
  .aw-blog-feat-title { font-size: 18px; }

  .aw-newsletter { padding: 24px 20px; }
  .aw-newsletter-form { flex-direction: column; }

  /* Pricing */
  .aw-billing-toggle { padding: 8px 14px; }
  .aw-billing-label  { font-size: 13px; }

  .aw-compare-table { font-size: 12px; }
  .aw-table th,
  .aw-table td { padding: 10px 10px; font-size: 12px; }

  .aw-accordion-btn { font-size: 14px !important; padding: 14px 16px !important; }

  /* Company */
  .aw-company-hero-card { padding: 24px; }
  .aw-company-hero-name { font-size: 22px; }
  .aw-company-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .aw-timeline::before { left: 44px; }
  .aw-timeline-year { width: 36px; font-size: 10px; }
  .aw-timeline-item { gap: 12px; }
  .aw-timeline-content { padding: 12px 14px; }
  .aw-timeline-title { font-size: 14px; }

  .aw-team-card { padding: 20px 16px; }
  .aw-team-avatar { width: 56px; height: 56px; font-size: 24px; }

  /* DEMOS */

  /* AI Analysis */
  .aw-demo-ai-body {
    grid-template-columns: 1fr;
  }

  .aw-demo-ai-engine {
    flex-direction: row;
    padding: 12px;
    justify-content: space-around;
    border-bottom: 1px solid var(--aw-border);
  }

  .aw-engine-core { width: 70px; height: 70px; }
  .aw-engine-ring-1 { width: 70px; height: 70px; }
  .aw-engine-ring-2 { width: 54px; height: 54px; }
  .aw-engine-inner  { width: 42px; height: 42px; }
  .aw-engine-inner i { font-size: 14px; }
  .aw-engine-stats { flex-direction: column; gap: 4px; }
  .aw-engine-stat  { font-size: 12px; }

  .aw-mitre-cell { width: 24px; height: 16px; }

  /* SIEM */
  .aw-siem-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .aw-siem-stat:nth-child(2) { border-right: none; }
  .aw-siem-stat:nth-child(3),
  .aw-siem-stat:nth-child(4) { border-top: 1px solid var(--aw-border); }

  .aw-siem-sources { gap: 4px; }
  .aw-siem-source  { font-size: 10px; padding: 3px 8px; }

  .aw-siem-table { font-size: 11px; }
  .aw-siem-table th,
  .aw-siem-table td { padding: 6px 8px; }

  /* Threat Intel */
  .aw-ti-counter { padding: 5px 10px; }
  .aw-ti-counter span:first-child { font-size: 22px !important; }

  .aw-ti-feed-stats { gap: 8px; }
  .aw-ti-feed-item  { font-size: 11px; padding: 4px 6px; }

  /* Agents */
  .aw-agents-canvas-wrap { height: 200px; }
  .aw-agents-deploy-stats { gap: 0; }
  .aw-agents-ds { font-size: 14px; }

  /* Forensic */
  .aw-fq-filters { flex-wrap: wrap; }
  .aw-fq-select  { flex: 1; min-width: 120px; font-size: 11px; }

  .aw-fq-table th,
  .aw-fq-table td { padding: 6px 8px; font-size: 11px; }

  /* Risk */
  .aw-risk-body {
    grid-template-columns: 1fr;
  }

  .aw-risk-gauge-wrap {
    padding: 16px;
    border-bottom: 1px solid var(--aw-border);
    border-right: none;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }

  #risk-gauge { width: 140px !important; height: 84px !important; }

  .aw-risk-gauge-label span:first-child { font-size: 26px !important; }

  .aw-risk-assets-wrap { border-right: none; border-bottom: 1px solid var(--aw-border); }

  /* Offline */
  .aw-offline-upload { padding: 20px; }
  .aw-offline-drop   { padding: 28px 16px; }

  .aw-offline-progress-header { flex-direction: column; gap: 10px; align-items: flex-start; }

  .aw-killchain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .aw-kc-stage { min-width: auto; padding: 8px 6px; }
  .aw-kc-name  { font-size: 9px; }
  .aw-kc-count { display: none; }

}


/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

  .aw-hero-stats { grid-template-columns: repeat(2, 1fr); }

  .aw-hero-title { font-size: clamp(22px, 8vw, 30px); }

  .aw-hd-stats { grid-template-columns: repeat(2, 1fr); }
  .aw-hd-stat:nth-child(3) { border-top: 1px solid var(--aw-border); }
  .aw-hd-stat:nth-child(4) { border-top: 1px solid var(--aw-border); border-right: none; }

  .aw-flow-wrapper { height: 240px; }

  .aw-flow-node { min-width: 76px; padding: 6px 8px; }
  .aw-flow-node-icon { font-size: 13px; }
  .aw-flow-node-name { font-size: 9px; }

  .aw-arch-diagram { width: 280px; height: 280px; }

  .aw-arch-ring-3 { width: 260px; height: 260px; }
  .aw-arch-ring-2 { width: 170px; height: 170px; }
  .aw-arch-ring-1 { width: 100px; height: 100px; }

  .aw-killchain { grid-template-columns: repeat(3, 1fr); }

  .aw-pricing-card { padding: 20px 16px; }

  .aw-price-amount { font-size: 36px; }

  .aw-prd-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .aw-prd-stat-val   { font-size: 16px; }
  .aw-prd-stat-label { font-size: 9px; }

  .aw-cta-box { padding: 24px 16px; }

  .aw-timeline::before { left: 36px; }
  .aw-timeline-year    { width: 28px; font-size: 9px; }
  .aw-timeline-item    { gap: 8px; }

  .aw-newsletter { padding: 20px 16px; }
  .aw-newsletter-title { font-size: 16px; }

  .aw-contact-form-card { padding: 20px 14px; }

  .aw-lookup-box { padding: 16px; }

  .aw-fq-tabs { gap: 2px; }
  .aw-fq-tab  { font-size: 11px; padding: 6px 2px; }

  .aw-siem-stat-val { font-size: 16px; }

}


/* ── TOUCH / HOVER FIX ── */
@media (hover: none) {
  .aw-product-card:hover,
  .aw-product-list-card:hover,
  .aw-usecase-card:hover,
  .aw-feature-card:hover,
  .aw-blog-card:hover,
  .aw-mini-product-card:hover,
  .aw-team-card:hover,
  .aw-award-card:hover,
  .aw-value-card:hover,
  .aw-pricing-card:hover {
    transform: none;
    box-shadow: var(--aw-shadow);
  }

  .aw-btn-primary:hover,
  .aw-btn-white:hover { transform: none; }

  .aw-flow-node:hover {
    transform: translate(-50%, -50%);
  }
}


/* ── PRINT ── */
@media print {
  .aw-navbar,
  .aw-footer,
  .aw-cta-section,
  .aw-hero-actions,
  .aw-prd-nav,
  .aw-billing-toggle { display: none !important; }

  main { padding-top: 0; }

  .aw-hero { min-height: auto; padding: 20px 0; }

  .aw-hero-title-gradient {
    -webkit-text-fill-color: var(--aw-primary);
  }
}