
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@import url("3d-architecture.css");

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

:root {
  /* Japanese-inspired Color Palette */
  --primary-navy: #02042a;
  --secondary-navy: #0a0e3f;
  --accent-gold: #d4af37;
  --platinum: #e5e5e5;
  --white: #ffffff;
  --error-red: #ff4444;
  --success-green: #00ff88;

  /* Typography */
  /* --font-primary: "Space Grotesk", sans-serif;
  --font-secondary: "Inter", sans-serif; */

  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0 20px;

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: var(--primary-navy);
  color: var(--platinum);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.5;
}

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(2, 4, 42, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 15px 0;
  background: rgba(2, 4, 42, 0.98);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
}

.brand-text {
  color: var(--white);
}

.brand-accent {
  color: var(--accent-gold);
}

.navbar-nav .nav-link {
  color: var(--platinum);
  font-weight: 500;
  margin: 0 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
  color: var(--accent-gold);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.cta-nav {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  color: var(--primary-navy) !important;
  padding: 12px 24px !important;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 20px !important;
}

.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-gold);
  margin: 5px 0;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.defense-panel,
.defense-map {
  background-color: rgba(0, 0, 0, 0.6); /* black with 60% opacity */
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 2;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 3;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.floating-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-particles::after {
  bottom: 20%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 100px;
}

.hero-badge i {
  margin-right: 8px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line.accent {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(229, 229, 229, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  border: none;
  color: var(--primary-navy);
  padding: 18px 36px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  color: var(--primary-navy);
}

.cta-secondary {
  background: transparent;
  border: 2px solid var(--platinum);
  color: var(--platinum);
  padding: 16px 36px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-secondary:hover {
  background: var(--platinum);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(229, 229, 229, 0.7);
  margin-top: 5px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.server-network {
  position: relative;
  width: 400px;
  height: 400px;
}

.central-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.node-core {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  border-radius: 50%;
  position: relative;
  z-index: 3;
}

.node-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

.node-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.satellite-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.satellite-node {
  position: absolute;
  width: 40px;
  height: 40px;
}

.satellite-node:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.satellite-node:nth-child(2) {
  top: 25%;
  right: 0;
  transform: translateY(-50%);
}

.satellite-node:nth-child(3) {
  bottom: 25%;
  right: 0;
  transform: translateY(50%);
}

.satellite-node:nth-child(4) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.satellite-node:nth-child(5) {
  top: 25%;
  left: 0;
  transform: translateY(-50%);
}

.node-dot {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(229, 229, 229, 0.8), rgba(229, 229, 229, 0.4));
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 150px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  transform-origin: top center;
}

.satellite-node:nth-child(1) .connection-line {
  transform: translate(-50%, 0) rotate(0deg);
}

.satellite-node:nth-child(2) .connection-line {
  transform: translate(-50%, 0) rotate(225deg);
}

.satellite-node:nth-child(3) .connection-line {
  transform: translate(-50%, 0) rotate(135deg);
}

.satellite-node:nth-child(4) .connection-line {
  transform: translate(-50%, 0) rotate(180deg);
}

.satellite-node:nth-child(5) .connection-line {
  transform: translate(-50%, 0) rotate(315deg);
}

.data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
}

.stream {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
}

.stream-1 {
  animation: stream1 3s ease-in-out infinite;
}

.stream-2 {
  animation: stream2 3s ease-in-out infinite 1s;
}

.stream-3 {
  animation: stream3 3s ease-in-out infinite 2s;
}

@keyframes stream1 {
  0% {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 50%;
    opacity: 0;
  }
}

@keyframes stream2 {
  0% {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  100% {
    top: 25%;
    right: -20px;
    opacity: 0;
  }
}

@keyframes stream3 {
  0% {
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  100% {
    bottom: -20px;
    left: 50%;
    opacity: 0;
  }
}

/* Hologram UI */
.hologram-ui {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ui-panel {
  position: absolute;
  background: rgba(2, 4, 42, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 15px;
  min-width: 150px;
}

.panel-1 {
  top: 20px;
  right: 20px;
}

.panel-2 {
  bottom: 20px;
  left: 20px;
}

.panel-header {
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-content {
  font-size: 0.9rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.server-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.server-item {
  font-size: 0.8rem;
  color: var(--platinum);
  opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(229, 229, 229, 0.6);
  z-index: 10;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.scroll-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION STYLES ===== */
.section-header {
  margin-bottom: 80px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(229, 229, 229, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  position: relative;
  overflow: hidden;
}

.problem-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.problem-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}



.problem-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.chaos-network {
  position: relative;
  width: 100%;
  height: 100%;
}

.tangled-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection.error {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--error-red), transparent);
  animation: errorPulse 2s ease-in-out infinite;
}

.connection.error:nth-child(1) {
  top: 20%;
  left: 10%;
  transform: rotate(45deg);
}

.connection.error:nth-child(2) {
  top: 40%;
  right: 20%;
  transform: rotate(-30deg);
}

.connection.error:nth-child(3) {
  bottom: 30%;
  left: 30%;
  transform: rotate(60deg);
}

.connection.error:nth-child(4) {
  bottom: 20%;
  right: 10%;
  transform: rotate(-45deg);
}

@keyframes errorPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.domain-mess {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.domain-item.error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid var(--error-red);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--error-red);
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.problem-content {
  padding-left: 40px;
  position: relative;
  z-index: 10;
}

.problem-list {
  margin-bottom: 40px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid var(--error-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--error-red);
  flex-shrink: 0;
}

.problem-text h4 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.problem-text p {
  color: rgba(229, 229, 229, 0.8);
  line-height: 1.6;
}

.transition-text {
  padding: 30px;
  background: rgba(212, 175, 55, 0.05);
  border-left: 4px solid var(--accent-gold);
  border-radius: 10px;
}

.transition-text p {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin: 0;
  font-style: italic;
}

/* ===== INNOVATION SECTION ===== */
.innovation-section {
  padding: var(--section-padding);
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

.innovation-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.innovation-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* .innovation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  z-index: 2;
} */

.innovation-section .container {
  position: relative;
  z-index: 10;
}

.innovation-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--accent-gold);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
}

.innovation-badge i {
  margin-right: 8px;
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.innovation-item {
  background: rgba(10, 14, 63, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.innovation-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.innovation-item:hover::before {
  left: 100%;
}

.innovation-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.innovation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-navy);
}

.innovation-item h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.innovation-item p {
  color: rgba(229, 229, 229, 0.8);
  line-height: 1.6;
}


/* ===== COMPARISON SECTION ===== */
.comparison-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  position: relative;
  overflow: hidden;
}

.comparison-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.comparison-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 4, 42, 0.9) 0%, rgba(10, 14, 63, 0.7) 100%);
  z-index: 2;
}

.comparison-section .container {
  position: relative;
  z-index: 10;
}

.comparison-table {
  background: rgba(10, 14, 63, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: rgba(2, 4, 42, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-item {
  padding: 25px 20px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  color: var(--white);
}

.header-item.legacy {
  color: var(--error-red);
}

.header-item.modern {
  color: var(--accent-gold);
}

.table-body {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(229, 229, 229, 0.1);
  transition: var(--transition-smooth);
}

.table-row:hover {
  background: rgba(212, 175, 55, 0.05);
}

.feature-name {
  padding: 20px;
  font-weight: 500;
  color: var(--platinum);
  display: flex;
  align-items: center;
}

.feature-value {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-value.legacy i {
  color: var(--error-red);
}

.feature-value.modern i {
  color: var(--success-green);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
  padding: var(--section-padding);
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

.benefits-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.benefits-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

/* .benefits-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 4, 42, 0.8) 0%, rgba(10, 14, 63, 0.6) 100%);
  z-index: 2;
} */

.benefits-section .container {
  position: relative;
  z-index: 10;
}

.benefit-card {
  background: rgba(10, 14, 63, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary-navy);
}

.benefit-card h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.benefit-card p {
  color: rgba(229, 229, 229, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.benefit-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.metric-value {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(229, 229, 229, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ===== DOCUMENTATION SECTION ===== */
.documentation-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  position: relative;
  overflow: hidden;
}

.documentation-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.documentation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  z-index: 2;
}

.documentation-content {
  position: relative;
  z-index: 10;
  padding-top: 40px;
  padding-bottom: 40px;
}

.documentation-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 153, 255, 0.1);
  border: 1px solid var(--accent-blue, #0099ff);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-blue, #0099ff);
  animation: docPulse 2s ease-in-out infinite;
}

@keyframes docPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.documentation-badge i {
  margin-right: 8px;
}

.documentation-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.documentation-subtitle {
  font-size: 1.25rem;
  color: rgba(229, 229, 229, 0.7);
  margin-bottom: 50px;
}

.documentation-section h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.documentation-section ul {
  list-style: none;
  padding-left: 0;
}

.documentation-section li {
  margin-bottom: 6px;
  color: var(--platinum, #ccc);
  font-size: 0.95rem;
}


/* ===== URGENCY SECTION ===== */
.urgency-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  position: relative;
  overflow: hidden;
}

.urgency-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.urgency-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.urgency-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  z-index: 2;
}

.urgency-content {
  position: relative;
  z-index: 10;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid var(--error-red);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--error-red);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.urgency-badge i {
  margin-right: 8px;
}

.urgency-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.urgency-subtitle {
  font-size: 1.25rem;
  color: rgba(229, 229, 229, 0.7);
  margin-bottom: 60px;
}

.availability-counter {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.counter-item {
  text-align: center;
  background: rgba(10, 14, 63, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 30px 40px;
  min-width: 150px;
  transition: var(--transition-smooth);
}

.counter-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.counter-number {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 10px;
}

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

.urgency-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--platinum);
  font-weight: 500;
}

.feature-item i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--section-padding);
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}


.video-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
  color: white;
  text-align: center;
}

.video-wrapper {
  max-width: 960px;
  margin: 2rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  background-color: black;
}


.contact-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

/* .contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 4, 42, 0.9) 0%, rgba(10, 14, 63, 0.7) 100%);
  z-index: 2;
} */

.contact-content {
  position: relative;
  z-index: 10;
}

.contact-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 60px;
}

.contact-form-wrapper {
  background: rgba(10, 14, 63, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  margin-bottom: 40px;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(229, 229, 229, 0.2);
  border-radius: 0;
  padding: 15px 0;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
  background: transparent;
  border-color: var(--accent-gold);
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(229, 229, 229, 0.5);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.contact-form .form-control:focus + .form-line {
  width: 100%;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.form-actions .btn {
  padding: 18px 36px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #ffd700);
  border: none;
  color: var(--primary-navy);
}

.form-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  color: var(--primary-navy);
}

.form-actions .btn-outline-light {
  background: transparent;
  border: 2px solid var(--platinum);
  color: var(--platinum);
}

.form-actions .btn-outline-light:hover {
  background: var(--platinum);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.contact-security {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(229, 229, 229, 0.7);
  font-size: 0.9rem;
}

.security-item i {
  color: var(--accent-gold);
}

/* ===== FOOTER ===== */
.footer-section {
  background: rgba(2, 4, 42, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0 40px;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-brand .brand-logo {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(229, 229, 229, 0.7);
  line-height: 1.6;
}

.footer-links h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
}

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

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

.footer-links ul li a {
  color: rgba(229, 229, 229, 0.7);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(229, 229, 229, 0.1);
  padding-top: 40px;
  margin-top: 60px;
}

.footer-bottom p {
  color: rgba(229, 229, 229, 0.6);
  margin: 0;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  font-weight: 500;
}



/* ===== EMAIL STEALTH SECTION ===== */
.stealth-section {
  padding: var(--section-padding, 80px 0);
  background: linear-gradient(135deg, #0e1013, #0f1115); /* dark layered tone */
  color: #fff;
}

.stealth-section .section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.stealth-section .section-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.75);
}

.stealth-description h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stealth-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.stealth-description ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.stealth-description ul li i {
  font-size: 1.1rem;
}

/* ===== WHITE-HAT HACKER DEFENSE SECTION ===== */
.defense-section {
  padding: var(--section-padding, 80px 0);
  background: linear-gradient(135deg, #12161b, #101418);
  color: #fff;
}

.defense-section .section-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.defense-section .section-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.75);
}

.defense-panel,
.defense-map {
  background: rgba(15, 17, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease-in-out;
}

.defense-panel:hover,
.defense-map:hover {
  border-color: var(--accent-gold, #D4AF37);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.defense-panel h5,
.defense-map h5 {
  font-size: 1.3rem;
  font-weight: 600;
}

.attack-log p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.attack-log hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.defense-section ul.list-inline .badge {
  padding: 0.5em 0.75em;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  font-weight: 600;
}




/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-visual {
    height: 500px;
  }

  .server-network {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 30px;
  }

  .innovation-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .availability-counter {
    gap: 40px;
  }

  .urgency-features {
    gap: 30px;
  }

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-security {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .custom-cursor,
  .cursor-follower {
    display: none;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    text-align: center;
  }

  .cta-nav {
    margin: 20px 0 0 0 !important;
  }

  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }

  .server-network {
    width: 300px;
    height: 300px;
  }

  .problem-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .header-item,
  .feature-name,
  .feature-value {
    padding: 15px 10px;
  }

  .availability-counter {
    gap: 20px;
  }

  .counter-item {
    padding: 20px 30px;
    min-width: 120px;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .urgency-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 40px 20px;
  }

  .contact-security {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.8rem;
  }

  .feature-value {
    font-size: 1.2rem;
  }

  .availability-counter {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== ANIMATIONS & INTERACTIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s ease;
}

/* Loading Animation */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
