/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed !important;
  top: 12px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 40px) !important;
  max-width: 1200px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 20px !important;
  z-index: 1000 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 54px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #dc2626;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 110px; /* adjust as needed */
  aspect-ratio: 16 / 9; /* enforces 16:9 */
  width: auto; /* auto-adjust width */
  object-fit: contain; /* no cropping or distortion */
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  background: rgba(248, 250, 252, 0.6);
  border-radius: 15px;
  padding: 0.5rem 1rem;
}

.nav-menu a {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.nav-menu a:hover {
  color: #1f2937;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #dc2626;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 16px;
}

.nav-cta .cta-button {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.3);
  text-decoration: none;
}

.nav-cta .cta-button:hover {
  background: linear-gradient(135deg, #374151, #4b5563);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4);
}

.nav-cta .cta-button .fa-whatsapp {
  font-size: 1.1em;
  color: #25d366;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(248, 250, 252, 0.6);
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(248, 250, 252, 0.8);
  transform: scale(1.05);
}

.hamburger .bar {
  width: 20px;
  height: 2px;
  background: #374151;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(220, 38, 38, 0.02) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Professional Tech Background */
.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Circuit Pattern */
.circuit-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.15),
    transparent
  );
  opacity: 0;
  animation: circuitPulse 8s ease-in-out infinite;
}

.circuit-line.horizontal {
  height: 2px;
}

.circuit-line.vertical {
  width: 2px;
  background: linear-gradient(
    0deg,
    transparent,
    rgba(220, 38, 38, 0.15),
    transparent
  );
}

.circuit-node {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #dc2626;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
  animation: nodePulse 4s ease-in-out infinite;
  transform: translate(-50%, -50%);
}

/* Data Flow Animation */
.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.data-particle {
  position: absolute;
  left: -10px;
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
  animation: dataFlow 10s linear infinite;
}

/* Subtle Grid Pattern */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(220, 38, 38, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(220, 38, 38, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: 1;
}

/* Animation Keyframes */
@keyframes circuitPulse {
  0%,
  20% {
    opacity: 0;
    transform: scaleX(0);
  }
  40%,
  60% {
    opacity: 1;
    transform: scaleX(1);
  }
  80%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  }
}

@keyframes floatGentle {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes dataFlow {
  0% {
    left: -10px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #111827;
}

.highlight {
  color: #dc2626;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item i {
  font-size: 1.5rem;
  color: #dc2626;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: #dc2626;
  color: white;
}

.primary-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.secondary-btn {
  background: transparent;
  color: #374151;
  border: 2px solid #e5e7eb;
}

.secondary-btn:hover {
  background: #f9fafb;
  border-color: #dc2626;
  color: #dc2626;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-dashboard {
  background: #0f172a;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid #1e293b;
  max-width: 520px;
  width: 100%;
  font-family: "Fira Code", "Courier New", monospace;
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #334155;
}

.terminal-title {
  color: #00ff41;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terminal-title i {
  color: #dc2626;
}

.terminal-controls {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
}

.terminal-dot.minimize {
  background: #fbbf24;
}

.terminal-dot.maximize {
  background: #10b981;
}

.terminal-dot.close {
  background: #ef4444;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: #0f172a;
  min-height: 300px;
  text-align: left;
}

.terminal-output {
  flex: 1;
  margin-bottom: 1rem;
  font-family: "Fira Code", "Courier New", monospace;
  max-height: 350px;
  overflow-y: auto;
}

.terminal-line {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
  display: block;
  text-align: left;
  min-height: 20px;
  opacity: 0;
  animation: fadeInLine 0.3s ease-in-out forwards;
  width: 100%;
}

.terminal-line.command-line {
  margin-bottom: 0.3rem;
  margin-top: 1rem;
  display: block;
  white-space: nowrap;
  overflow-x: auto;
  text-align: left;
}

.terminal-line.command-line:first-child {
  margin-top: 0;
}
a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.terminal-line.output-line {
  margin-left: 0;
  padding-left: 0;
  display: block;
}

@keyframes fadeInLine {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.prompt {
  color: #00ff41;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  padding-right: 4px;
  width: auto;
}

.command {
  color: #38bdf8;
  font-weight: 500;
  overflow: hidden;
  border-right: 2px solid #00ff41;
  animation: typing 0.02s steps(1, end) forwards;
  white-space: pre-wrap;
  display: inline;
  word-break: break-all;
}

.command.typing-complete {
  border-right: none;
}

@keyframes typing {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.output {
  color: #cbd5e1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  white-space: pre-wrap;
  word-break: break-word;
  display: block;
}

.terminal-line.output-line .output {
  margin-left: 0;
  padding-left: 0;
}

.output.vulnerability {
  color: #ef4444;
}

.output.success {
  color: #22c55e;
}

.output.warning {
  color: #f59e0b;
}

.output.info {
  color: #3b82f6;
}

.cursor {
  color: #00ff41;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.terminal-line.scanning .output {
  animation: scanning 2s infinite;
}

@keyframes scanning {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

/* Terminal scrollbar styling */
.terminal-output::-webkit-scrollbar {
  width: 4px;
}

.terminal-line.command-line::-webkit-scrollbar {
  height: 3px;
}

.terminal-output::-webkit-scrollbar-track {
  background: #1e293b;
}

.terminal-output::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 2px;
}

.terminal-output::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

@keyframes scanning {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes scanning {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

.status-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #1e293b;
  opacity: 0;
  animation: slideUp 0.8s ease-out 8s forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  transition: transform 0.3s ease;
}

.status-item:hover {
  transform: scale(1.05);
}

.status-item i {
  font-size: 1.25rem;
  color: #dc2626;
  animation: pulse 2s infinite;
}

.status-item:nth-child(1) i {
  animation-delay: 0.5s;
}

.status-item:nth-child(2) i {
  animation-delay: 1s;
}

.status-item:nth-child(3) i {
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.status-info {
  display: flex;
  flex-direction: column;
}

.status-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00ff41;
  line-height: 1;
  animation: countUp 2s ease-out 8.5s forwards;
}

.status-value.critical {
  color: #ef4444;
  animation: countUp 2s ease-out 8.5s forwards, glitch 4s infinite 10s;
}

@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glitch {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-2px);
  }
  20% {
    transform: translateX(2px);
  }
  30% {
    transform: translateX(-1px);
  }
  40% {
    transform: translateX(1px);
  }
  50% {
    transform: translateX(-1px);
  }
  60% {
    transform: translateX(1px);
  }
  70% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}

.status-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Terminal window animations */
.security-dashboard {
  animation: bootUp 1s ease-out;
}

@keyframes bootUp {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.terminal-controls .terminal-dot {
  animation: dotPulse 3s infinite;
}

.terminal-dot.minimize {
  animation-delay: 0.5s;
}

.terminal-dot.maximize {
  animation-delay: 1s;
}

.terminal-dot.close {
  animation-delay: 1.5s;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.metric-label {
  font-size: 0.875rem;
  color: #6b7280;
  display: block;
}

/* Recognition Section */
.recognition {
  padding: 4rem 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.recognition h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 3rem;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 1rem;
  border-radius: 12px;
}

.logo-item img {
  max-width: 100px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.7;
  filter: grayscale(100%);
}

.logo-item:hover {
  transform: translateY(-15px);
}

.logo-item:hover img {
  transform: scale(1.25);
  opacity: 1;
  filter: grayscale(0%) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
  color: #374151;
}

.service-card ul li i {
  color: #10b981;
  font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid #dc2626;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.price-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.price-icon i {
  font-size: 2rem;
  color: white;
}

.popular-badge {
  position: absolute;
  top: -28px;
  right: -10px;
  background: #dc2626;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
  color: #374151;
}

.pricing-features ul li i {
  color: #10b981;
  font-size: 0.875rem;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
}

.pricing-cta:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-features {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: #dc2626;
  margin-top: 4px;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #6b7280;
  margin: 0;
}

/* Security Matrix */
.security-matrix {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.matrix-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.matrix-header h4 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 600;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.matrix-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.matrix-cell.secure {
  background: #d1fae5;
  color: #10b981;
  border: 1px solid #a7f3d0;
}

.matrix-cell.vulnerable {
  background: #fee2e2;
  color: #ef4444;
  border: 1px solid #fecaca;
}

.matrix-cell.compliance {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 8px;
}

.matrix-cell.compliance img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.matrix-cell:hover {
  transform: scale(1.1);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #f8fafc;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #dc2626;
  margin-top: 4px;
}

.contact-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #6b7280;
  margin: 0;
}

.contact-form {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.form-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #dc2626;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  display: none;
  transition: all 0.3s ease;
}

.form-status.success {
  display: block;
  background-color: #ecfdf5;
  color: #10b981;
  border: 1px solid #10b981;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #dc2626;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #dc2626;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #dc2626;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #dc2626;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* Page-specific styles */

/* Page Hero */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.page-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.breadcrumb i {
  color: #dc2626;
}

/* About Page Styles */
.about-detailed {
  padding: 5rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story h2,
.about-mission h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.about-story p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mission-item i {
  font-size: 1.5rem;
  color: #dc2626;
  margin-top: 4px;
}

.mission-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.mission-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.team-avatar i {
  font-size: 2.5rem;
  color: white;
}

.team-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #dc2626;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-bio {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.cert-badge {
  background: #e5e7eb;
  color: #374151;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-detailed {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-info-section p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc2626, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 1.5rem;
  color: white;
}

.method-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* Enhanced Form Styles */
.form-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.form-container h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  color: #6b7280;
}

/* Emergency Contact */
.emergency-contact {
  padding: 4rem 0;
  background: #fef2f2;
  border-top: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
}

.emergency-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.emergency-icon {
  width: 100px;
  height: 100px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon i {
  font-size: 2.5rem;
  color: white;
}

.emergency-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 1rem;
}

.emergency-text p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.emergency-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.emergency-btn {
  padding: 12px 24px;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.emergency-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

.emergency-btn.secondary {
  background: transparent;
  color: #dc2626;
  border: 2px solid #dc2626;
}

.emergency-btn.secondary:hover {
  background: #dc2626;
  color: white;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #dc2626;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.faq-question i {
  color: #dc2626;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Active Navigation State */
.nav-menu a.active {
  color: #1f2937;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu a.active::after {
  width: 16px;
}

/* Performance Optimization Classes */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(25px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2) !important;
  transform: translateX(-50%) scale(0.98) !important;
}

.fade-in {
  animation: fadein 0.5s ease-in-out forwards;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Reduce animation workload on mobile */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }

  .logo-item img.simple-processed {
    opacity: 0.9;
    filter: brightness(1.05);
  }

  /* Use simpler animations on mobile */
  .fade-in {
    opacity: 1;
    animation: none;
  }

  /* Optimize images for mobile */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-prepared {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    top: 8px;
    width: calc(100% - 20px);
    border-radius: 16px;
  }

  .nav-container {
    padding: 0 1rem;
    height: 50px;
  }

  /* Terminal mobile improvements */
  .security-dashboard {
    max-width: 100%;
  }

  .dashboard-content {
    padding: 0.8rem;
    text-align: left;
  }

  .terminal-output {
    text-align: left;
  }

  .terminal-line {
    font-size: 0.75rem;
    line-height: 1.4;
    text-align: left;
  }

  .prompt {
    font-size: 0.75rem;
    margin-right: 5px;
  }

  .command {
    font-size: 0.75rem;
  }

  .output {
    padding-left: 0;
    font-size: 0.75rem;
    text-align: left;
  }

  .nav-logo {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
  }

  .nav-logo img {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: calc(100% - 40px);
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    gap: 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-menu a {
    padding: 0.8rem 1rem;
    margin: 0.2rem 0;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-group {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .emergency-content {
    flex-direction: column;
    text-align: center;
  }

  .emergency-actions {
    justify-content: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content h1 {
    font-size: 2.5rem;
  }

  .about-story h2,
  .about-mission h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  /* Smaller terminal for mobile */
  .terminal-line {
    font-size: 0.7rem;
    line-height: 1.3;
    overflow-x: auto;
    white-space: pre-wrap;
    text-align: left;
  }

  .prompt {
    font-size: 0.7rem;
    display: inline-block;
    margin-right: 3px;
  }

  .command {
    font-size: 0.7rem;
  }

  .output {
    font-size: 0.7rem;
    padding-left: 0;
    text-align: left;
  }

  .terminal-output {
    padding: 0;
  }

  .dashboard-content {
    padding: 0.6rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 300px;
  }

  .form-container {
    padding: 1.5rem;
  }

  .emergency-actions {
    flex-direction: column;
    align-items: center;
  }

  .emergency-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.hero-visual {
  animation: fadeInUp 0.8s ease-out;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1001;
  transition: transform 0.3s ease;
}
