@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Ultra-premium B2B logo colors */
  --bg-primary: hsl(226, 36%, 4%);      /* Deep space dark navy-black */
  --bg-secondary: hsl(226, 32%, 7%);    /* Slightly lighter navy-dark */
  --bg-tertiary: hsl(226, 28%, 10%);    /* Cards background */
  --surface-glass: rgba(10, 15, 30, 0.55);
  --border-glass: rgba(243, 112, 33, 0.05);
  --border-glass-hover: rgba(11, 59, 112, 0.25);
  
  --accent-cyan: hsl(22, 95%, 54%);      /* Logo Orange - primary B2B detail */
  --accent-purple: hsl(212, 90%, 48%);    /* Logo Navy Blue - secondary detail */
  
  --accent-orange: hsl(22, 95%, 54%);    /* Dedicated logo orange (#f37021) */
  --accent-blue: hsl(212, 90%, 48%);     /* Dedicated logo navy-blue (#0b3b70) */
  
  --accent-emerald: hsl(150, 75%, 45%);   /* Clean safety emerald */
  --accent-amber: hsl(38, 90%, 48%);      /* Sophisticated warning amber */
  
  --text-primary: hsl(210, 38%, 95%);
  --text-secondary: hsl(215, 18%, 66%);
  --text-muted: hsl(217, 13%, 45%);
  
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: hsl(226, 25%, 15%);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Base resets & selections */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-display);
  overflow-x: hidden;
}

::selection {
  background: rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Custom Cursor Elements */
.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.1s, height 0.1s, background-color 0.2s;
  box-shadow: 0 0 6px var(--accent-cyan);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='11' fill='none' stroke='rgba(243, 112, 33, 0.2)' stroke-width='1'/%3E%3Cpath d='M16 0v4M16 28v4M0 16h4M28 16h4' stroke='rgba(243, 112, 33, 0.65)' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 
    width 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
    height 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
    background-image 0.25s,
    box-shadow 0.25s;
}

/* Active states for cursor */
body.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
  background-color: var(--accent-purple);
  box-shadow: 0 0 5px var(--accent-purple);
}

body.cursor-hover .cursor-ring {
  width: 44px;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Ccircle cx='22' cy='22' r='17' fill='none' stroke='rgba(11, 59, 112, 0.2)' stroke-width='1'/%3E%3Cpath d='M22 0v6M22 38v4M0 22h6M38 22h4' stroke='rgba(11, 59, 112, 0.65)' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  box-shadow: 0 0 10px rgba(11, 59, 112, 0.15);
}

body.cursor-click .cursor-dot {
  transform: translate(-50%, -50%) scale(0.6);
  background-color: var(--accent-emerald);
}

body.cursor-click .cursor-ring {
  transform: translate(-50%, -50%) scale(1.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='11' fill='none' stroke='rgba(150, 75, 45, 0.2)' stroke-width='1'/%3E%3Cpath d='M16 0v4M16 28v4M0 16h4M28 16h4' stroke='rgba(150, 75, 45, 0.65)' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  box-shadow: 0 0 15px rgba(150, 75, 45, 0.2);
}

/* Background Elements */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.85;
}

.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.03) 0%, rgba(11, 59, 112, 0.02) 40%, rgba(0,0,0,0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1), top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 8%;
  transition: padding var(--transition-normal), background-color var(--transition-normal), border-bottom var(--transition-normal);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  padding: 14px 8%;
  background-color: rgba(5, 7, 15, 0.75);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  backdrop-filter: blur(20px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 6px;
  color: var(--bg-primary);
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.logo span {
  background: linear-gradient(to right, var(--text-primary) 50%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-purple));
  transition: width var(--transition-normal);
}

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

nav a:hover::after {
  width: 100%;
}

.btn-cyber {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--accent-cyan);
  background: transparent;
  color: var(--accent-cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.25), transparent);
  transition: left 0.5s ease-in-out;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-cyber:hover {
  background: rgba(0, 240, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
  text-shadow: 0 0 5px var(--accent-cyan);
  transform: translateY(-2px);
}

.btn-cyber-solid {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border: none;
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-cyber-solid:hover {
  background: linear-gradient(135deg, hsl(184, 100%, 60%), hsl(279, 100%, 74%));
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(191, 70, 255, 0.4);
  text-shadow: none;
  transform: translateY(-2px);
}

/* Sections General */
section {
  padding: 100px 8%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: inline-block;
  border-left: 2px solid var(--accent-cyan);
  padding-left: 8px;
  line-height: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(to right, var(--text-primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 50px;
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  min-height: 90vh;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-content h1 span.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-cyan) 65%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Threat Shield Dashboard Widget */
.hero-widget {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-card {
  width: 100%;
  max-width: 440px;
  background-color: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.shield-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 50px rgba(191, 70, 255, 0.1);
}

.shield-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.status-badge.secure {
  background-color: rgba(145, 100, 50, 0.1);
  color: var(--accent-emerald);
  border: 1px solid rgba(145, 100, 50, 0.25);
}

.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.gauge-svg {
  width: 180px;
  height: 180px;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 12px;
}

.gauge-fill {
  fill: none;
  stroke: url(#gauge-gradient);
  stroke-width: 12px;
  stroke-dasharray: 439.8; /* 2 * PI * r (r=70) */
  stroke-dashoffset: 87.9; /* 80% default score */
  stroke-linecap: round;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gauge-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gauge-score {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.gauge-score span {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.gauge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.widget-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background-color var(--transition-fast);
}

.control-row:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.control-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Custom Switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-secondary);
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
}

input:checked + .slider {
  background-color: rgba(0, 240, 255, 0.15);
  border-color: rgba(0, 240, 255, 0.4);
}

input:checked + .slider:before {
  transform: translateX(20px);
  background-color: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Diagnostic Terminal Audit Section */
.terminal-section {
  background: radial-gradient(ellipse at bottom, rgba(13, 20, 38, 0.2) 0%, rgba(5, 7, 15, 0) 70%);
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.terminal-mock {
  width: 100%;
  height: 380px;
  background-color: rgba(5, 7, 15, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.05);
  font-family: var(--font-mono);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.terminal-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  background-size: 100% 4px, 6px 100%;
  z-index: 10;
  pointer-events: none;
  opacity: 0.4;
}

.terminal-header {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.t-dot.red { background-color: #ff5f56; }
.t-dot.yellow { background-color: #ffbd2e; }
.t-dot.green { background-color: #27c93f; }

.terminal-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.terminal-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-line {
  word-break: break-all;
}

.t-system {
  color: var(--accent-cyan);
}
.t-warning {
  color: var(--accent-amber);
}
.t-success {
  color: var(--accent-emerald);
}
.t-input {
  color: var(--text-primary);
}

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: var(--accent-cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
  box-shadow: 0 0 5px var(--accent-cyan);
}

@keyframes blink {
  from, to { background-color: transparent; }
  50% { background-color: var(--accent-cyan); }
}

/* Core Services Matrix */
.services-section {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(191, 70, 255, 0.08) 0%, rgba(0,0,0,0) 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-glass-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(191, 70, 255, 0.05);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-features-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: bold;
}

/* myCISO Planner Calculator */
.ciso-section {
  background: radial-gradient(ellipse at top, rgba(191, 70, 255, 0.04) 0%, rgba(5, 7, 15, 0) 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.ciso-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  background-color: var(--surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ciso-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ciso-inputs h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.ciso-inputs p.intro {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-cyber {
  width: 100%;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  transition: all var(--transition-fast);
}

.select-cyber:focus {
  border-color: var(--accent-cyan);
  background-color: rgba(0, 240, 255, 0.02);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--text-muted);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Roadmap Display output */
.ciso-output {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 50px;
  display: flex;
  flex-direction: column;
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.ciso-tier-label {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent-purple);
  font-weight: 600;
}

.ciso-budget-est {
  text-align: right;
}

.ciso-budget-est .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  display: block;
}

.ciso-budget-est .value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 20px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.08);
}

.timeline-step {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -20px;
  top: 6px;
  width: 9px;
  height: 9px;
  background-color: var(--bg-primary);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent-cyan);
  transition: all var(--transition-normal);
}

.timeline-step:hover .timeline-dot {
  background-color: var(--accent-cyan);
  transform: scale(1.3);
}

.timeline-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-purple);
  margin-bottom: 2px;
  display: block;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* CTA & Request Consultation Section */
.cta-section {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-info h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.cta-info h2 span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-cyber-input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-cyber-input:focus {
  border-color: var(--accent-purple);
  background-color: rgba(191, 70, 255, 0.02);
  box-shadow: 0 0 12px rgba(191, 70, 255, 0.1);
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, hsl(184, 100%, 60%), hsl(279, 100%, 74%));
  box-shadow: 0 0 25px rgba(191, 70, 255, 0.35);
  transform: translateY(-1px);
}

/* Footer styling */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--bg-primary);
  padding: 60px 8% 40px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer-contact-info a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.footer-contact-info a:hover {
  color: var(--accent-cyan);
}

.footer-column h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Scroll reveals - Progressive enhancement CSS scroll-driven animations */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* Responsive breakdowns */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }
  .hero-content p {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .terminal-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ciso-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .ciso-output {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 30px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* Hide full nav on mobile for aesthetic simplicity */
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  section {
    padding: 60px 6%;
  }
  .cursor-ring {
    display: none !important; /* Disable custom cursor lag on mobile touchscreen */
  }
  .cursor-dot {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
}
