/* =================================================================
   CYBERGUARD - Custom Styles & Animations
   Tailwind CSS-based Landing Page
   ================================================================= */

/* ===============================================
   KEYFRAME ANIMATIONS
   =============================================== */

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeSlideIn {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

@keyframes shieldPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0 0 40px rgba(255, 193, 7, 0.4));
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    filter: drop-shadow(0 0 60px rgba(255, 193, 7, 0.6));
  }
}

@keyframes shieldSpin {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.1);
  }
  75% {
    transform: rotate(10deg) scale(1.1);
  }
}

@keyframes badgeShimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

@keyframes titleShimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes orbit1 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: translate(-50%, -50%) rotate(120deg) translateX(150px) rotate(-120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(480deg) translateX(150px) rotate(-480deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: translate(-50%, -50%) rotate(240deg) translateX(150px) rotate(-240deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(600deg) translateX(150px) rotate(-600deg);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 0.7;
  }
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* ===============================================
   NAVIGATION STYLES
   =============================================== */

.nav-link {
  color: #1A1F3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFC107;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #FFC107;
}

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

/* Dropdown */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-toggle::before {
  content: '▼';
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #1A1F3A;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 193, 7, 0.1);
  color: #FFC107;
  padding-left: 1.5rem;
}

/* ===============================================
   HERO SECTION STYLES
   =============================================== */

.bg-grid {
  background-image:
    linear-gradient(rgba(255, 193, 7, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 193, 7, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-radial-gold {
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 15s ease-in-out infinite;
}

.glow-orb-1 {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
  animation-delay: 0s;
}

.glow-orb-2 {
  bottom: 15%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
  animation-delay: 3s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFC107;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
  animation: badgeShimmer 3s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFC107 50%, #FFFFFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shield Container */
.shield-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 350px;
  max-height: 350px;
}

.main-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 210px;
  filter: drop-shadow(0 0 40px rgba(255, 193, 7, 0.4));
  animation: shieldPulse 3s ease-in-out infinite;
}

.orbit-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 70px;
  opacity: 0.6;
  filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.3));
}

.orbit-1 {
  animation: orbit1 12s linear infinite;
}

.orbit-2 {
  animation: orbit2 15s linear infinite;
}

.orbit-3 {
  animation: orbit3 18s linear infinite;
}

/* Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #FFC107;
  border-radius: 50%;
  opacity: 0.5;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 0.5s; }
.particle-3 { top: 30%; left: 10%; animation-delay: 1s; }
.particle-4 { top: 40%; left: 90%; animation-delay: 1.5s; }
.particle-5 { top: 50%; left: 15%; animation-delay: 2s; }
.particle-6 { top: 60%; left: 85%; animation-delay: 2.5s; }
.particle-7 { top: 70%; left: 25%; animation-delay: 3s; }
.particle-8 { top: 80%; left: 75%; animation-delay: 3.5s; }
.particle-9 { top: 15%; left: 50%; animation-delay: 0.75s; }
.particle-10 { top: 85%; left: 50%; animation-delay: 1.25s; }
.particle-11 { top: 45%; left: 5%; animation-delay: 1.75s; }
.particle-12 { top: 55%; left: 95%; animation-delay: 2.25s; }

/* ===============================================
   HOW IT WORKS CARDS
   =============================================== */

.how-it-works-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.how-it-works-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.how-it-works-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 213, 79, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  color: #FFC107;
  transition: all 0.3s ease;
}

.how-it-works-card:hover .how-it-works-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 213, 79, 0.15));
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* ===============================================
   MISSION & VISION IMAGE CONTAINERS
   =============================================== */

.mission-vision-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 193, 7, 0.15);
  transition: all 0.3s ease;
}

.mission-vision-image-container:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 193, 7, 0.25);
}

/* ===============================================
   SECTOR ITEMS
   =============================================== */

.sector-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sector-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.sector-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 213, 79, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  color: #FFC107;
  transition: all 0.3s ease;
}

.sector-item:hover .sector-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 213, 79, 0.2));
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.sector-name {
  font-weight: 600;
  color: #1A1F3A;
  font-size: 0.95rem;
  text-align: center;
}

/* ===============================================
   OBJECTIVE CARDS
   =============================================== */

.objective-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: white;
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FFC107, #FFD54F);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.objective-card:hover::before {
  transform: scaleX(1);
}

.objective-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 20px 50px rgba(255, 193, 7, 0.2);
}

.objective-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 193, 7, 0.1);
  line-height: 1;
  transition: all 0.3s ease;
}

.objective-card:hover .objective-badge {
  color: rgba(255, 193, 7, 0.2);
  transform: scale(1.1);
}

.objective-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 213, 79, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 16px;
  color: #FFC107;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

/* ===============================================
   PERFORMANCE BARS
   =============================================== */

.bar-container {
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bar-fill-traditional {
  height: 100%;
  background: linear-gradient(90deg, #9CA3AF, #6B7280);
  border-radius: 12px;
  animation: barGrow 2s ease-out forwards;
  transition: width 0.5s ease;
}

.bar-fill-ai {
  height: 100%;
  background: linear-gradient(90deg, #FFC107, #FFD54F);
  border-radius: 12px;
  animation: barGrow 2s ease-out 0.5s forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
}

.bar-fill-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s ease-in-out 2s infinite;
}

/* ===============================================
   METRIC CARDS
   =============================================== */

.metric-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 193, 7, 0.5);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.metric-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 213, 79, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  color: #FFC107;
  transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* ===============================================
   HEXAGON FRAMEWORK
   =============================================== */

.hexagon-container {
  position: relative;
}

.hexagon-bg-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  opacity: 0.3;
  pointer-events: none;
}

.hexagon-connections {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 700px;
  pointer-events: none;
}

.framework-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFC107;
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat 5s ease-in-out infinite;
}

.framework-particle-1 { top: 10%; left: 30%; animation-delay: 0s; }
.framework-particle-2 { top: 20%; right: 30%; animation-delay: 1s; }
.framework-particle-3 { top: 50%; left: 10%; animation-delay: 2s; }
.framework-particle-4 { top: 50%; right: 10%; animation-delay: 3s; }
.framework-particle-5 { bottom: 20%; left: 35%; animation-delay: 4s; }
.framework-particle-6 { bottom: 10%; right: 35%; animation-delay: 5s; }

.hexagon {
  position: absolute;
  width: 180px;
  height: 200px;
  background: white;
  border: 3px solid rgba(255, 193, 7, 0.4);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.hexagon:hover {
  transform: scale(1.1);
  border-color: #FFC107;
  border-width: 4px;
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
  z-index: 10;
}

.hexagon-content {
  padding: 1.5rem 1.2rem;
  text-align: center;
  max-width: 140px;
}

.hexagon-number {
  font-size: 0.875rem;
  font-weight: 800;
  color: #FFC107;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
}

.hexagon-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1A1F3A;
  line-height: 1.4;
}

/* Hexagon Positions */
.hexagon-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 220px;
  z-index: 2;
}

.hexagon-center:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hexagon-top {
  top: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hexagon-top:hover {
  transform: translate(-50%, 0) scale(1.1);
}

.hexagon-top-right {
  top: 180px;
  right: 80px;
}

.hexagon-top-right:hover {
  transform: scale(1.1);
}

.hexagon-bottom-right {
  bottom: 180px;
  right: 80px;
}

.hexagon-bottom-right:hover {
  transform: scale(1.1);
}

.hexagon-bottom {
  bottom: 50px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hexagon-bottom:hover {
  transform: translate(-50%, 0) scale(1.1);
}

.hexagon-bottom-left {
  bottom: 180px;
  left: 80px;
}

.hexagon-bottom-left:hover {
  transform: scale(1.1);
}

.hexagon-top-left {
  top: 180px;
  left: 80px;
}

.hexagon-top-left:hover {
  transform: scale(1.1);
}

/* ===============================================
   ACTIVITY CARDS
   =============================================== */

.activity-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.activity-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 213, 79, 0.1));
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  color: #FFC107;
  transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 213, 79, 0.15));
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

/* ===============================================
   PARTNER LOGOS
   =============================================== */

.partner-logo {
  display: inline-block;
  padding: 1rem;
  transition: all 0.3s ease;
  opacity: 0.7;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

.partner-logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.partner-logo-light {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.05), rgba(15, 19, 41, 0.08));
  border: 1px solid rgba(255, 193, 7, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}

.partner-logo-light:hover {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.08), rgba(15, 19, 41, 0.12));
  border-color: rgba(255, 193, 7, 0.3);
}

/* ===============================================
   USE CASE CARDS
   =============================================== */

.use-case-card {
  padding: 2rem;
  background: white;
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.use-case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 15px 40px rgba(255, 193, 7, 0.15);
}

.use-case-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 193, 7, 0.15);
  line-height: 1;
}

.use-case-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 213, 79, 0.05));
  border: 2px solid rgba(255, 193, 7, 0.2);
  border-radius: 12px;
  color: #FFC107;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 213, 79, 0.1));
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

/* ===============================================
   DELIVERABLES TABLE
   =============================================== */

.deliverables-table {
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.deliverables-table thead {
  background: linear-gradient(135deg, #1A1F3A, #0F1329);
}

.deliverables-table th {
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFC107;
  border-bottom: 3px solid rgba(255, 193, 7, 0.3);
}

.deliverables-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.deliverables-table tbody tr:hover {
  background: rgba(255, 193, 7, 0.03);
  transform: scale(1.001);
}

.deliverables-table tbody tr:last-child {
  border-bottom: none;
}

.deliverables-table td {
  padding: 1.25rem 1.5rem;
  color: #374151;
  font-size: 0.95rem;
}

.deliverables-table td:first-child {
  font-weight: 700;
  color: #1A1F3A;
  font-size: 0.875rem;
}

.access-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.access-badge.access-public {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.access-badge.access-sensitive {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.coming-soon {
  color: #FFC107;
  font-weight: 600;
  font-size: 0.85rem;
}

.not-available {
  color: #9ca3af;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Responsive table */
@media (max-width: 768px) {
  .deliverables-table {
    font-size: 0.85rem;
  }

  .deliverables-table th,
  .deliverables-table td {
    padding: 1rem;
  }

  .deliverables-table th {
    font-size: 0.75rem;
  }

  /* Hexagon Framework Mobile */
  .hexagon-container {
    height: 1000px !important;
  }

  .hexagon {
    width: 140px;
    height: 160px;
  }

  .hexagon-center {
    width: 150px;
    height: 170px;
  }

  .hexagon-content {
    padding: 1rem 0.8rem;
    max-width: 110px;
  }

  .hexagon-number {
    font-size: 0.75rem;
  }

  .hexagon-text {
    font-size: 0.7rem;
  }

  .hexagon-top {
    top: 30px;
  }

  .hexagon-top-right {
    top: 200px;
    right: 20px;
  }

  .hexagon-bottom-right {
    bottom: 200px;
    right: 20px;
  }

  .hexagon-bottom {
    bottom: 30px;
  }

  .hexagon-bottom-left {
    bottom: 200px;
    left: 20px;
  }

  .hexagon-top-left {
    top: 200px;
    left: 20px;
  }

  .hexagon-bg-shield {
    width: 500px;
    height: 500px;
  }

  .hexagon-connections {
    width: 600px;
    height: 600px;
  }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 768px) {
  .hero-visual {
    width: 300px !important;
    height: 300px !important;
  }

  .shield-container {
    max-width: 250px;
    max-height: 250px;
  }

  .main-shield {
    width: 140px;
    height: 160px;
  }

  .orbit-shield {
    width: 45px;
    height: 50px;
  }

  .hexagon-container {
    min-height: 1200px !important;
  }

  .hexagon {
    width: 140px;
    height: 160px;
  }

  .hexagon-center {
    width: 160px;
    height: 180px;
    top: 10%;
  }

  .hexagon-top {
    top: 0;
    left: 50%;
  }

  .hexagon-top-left {
    top: 20%;
    left: 5%;
  }

  .hexagon-top-right {
    top: 20%;
    right: 5%;
  }

  .hexagon-bottom-left {
    bottom: 20%;
    left: 5%;
  }

  .hexagon-bottom-right {
    bottom: 20%;
    right: 5%;
  }

  .hexagon-bottom {
    bottom: 0;
    left: 50%;
  }

  .hexagon-text {
    font-size: 0.7rem;
  }

  .hexagon-number {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .objective-badge {
    font-size: 2rem;
  }

  .sector-item {
    padding: 1.5rem;
  }

  .metric-card {
    padding: 1.5rem 1rem;
  }
}
