:root {
  --brand-navy: #1e2736;
  --brand-navy-dark: #151b26;
  --brand-teal: #109db9;
  --brand-teal-light: #eefafc;
  --brand-teal-hover: #0c8aa3;
  --brand-red: #d93636;
  --text-main: #2c3e50;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --card-radius: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #fff;
  overflow-x: hidden;
}

/* --- TYPOGRAPHY UTILS --- */
.fw-800 { font-weight: 800; }
.text-teal { color: var(--brand-teal) !important; }
.text-navy { color: var(--brand-navy) !important; }
    
/* --- BUTTONS --- */
.btn {
  padding: 12px 28px;
  border-radius: 50px; /* Pill shape is more modern */
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary-glow {
  background: linear-gradient(135deg, var(--brand-teal) 0%, #0a7c94 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(16, 157, 185, 0.3);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 157, 185, 0.4);
  color: white;
}

.btn-outline-light-custom {
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
}
    
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}

.navbar {
  background-color: rgba(30, 39, 54, 0.95); /* Brand navy with slight transparency */
  backdrop-filter: blur(10px);
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
    
.navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7) !important;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-teal) !important;
}

.hero-section {
  background-color: var(--brand-navy);
  /* Subtle gradient mesh background effect */
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(16, 157, 185, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(217, 54, 54, 0.05) 0%, transparent 40%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

/* Abstract Dashboard Graphic (CSS Only) */
.hero-graphic-wrapper {
  position: relative;
  perspective: 1000px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* --- FEATURES --- */
.feature-card {
  padding: 2.5rem;
  background: white;
  border-radius: var(--card-radius);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
  border-color: var(--brand-teal-light);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: var(--brand-teal-light);
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* --- PRICING --- */
.pricing-section {
  background-color: var(--bg-light);
}
    
.pricing-card {
  border: none;
  border-radius: 24px;
  background: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: scale(1.02);
}

.pricing-card.highlighted {
  border: 2px solid var(--brand-teal);
  box-shadow: 0 20px 40px rgba(16, 157, 185, 0.15);
}

.badge-popular {
  background-color: var(--brand-teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* --- CONTACT / FORM --- */
.form-control-modern {
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
}
    
.form-control-modern:focus {
  background-color: white;
  box-shadow: 0 0 0 3px rgba(16, 157, 185, 0.15);
  border-color: var(--brand-teal);
}

.grecaptcha-badge { 
  visibility: hidden !important;
}

.fs-7 {
  font-size: 0.75rem; /* Equivalent to 12px */
}

.legal-header {
  background-color: white;
  padding: 80px 0 60px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: -30px; /* Overlap effect */
  border: 1px solid #f1f5f9;
}

.legal-content h2 {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  font-weight: 600;
  color: var(--brand-navy);
  margin-top: 1.5rem;
  font-size: 1.25rem;
}

.legal-content p { color: var(--text-main); margin-bottom: 1rem; }
.legal-content ul { color: var(--text-main); margin-bottom: 1.5rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }

.callout-warning {
  background-color: #fff5f5;
  border-left: 4px solid #e53e3e;
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 4px;
}

.table-custom {
  margin-top: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
}
.table-custom th { background-color: var(--brand-navy); color: white; border: none; padding: 12px; }
.table-custom td { padding: 12px; border-bottom: 1px solid #e2e8f0; }

.mission-card {
            border: none;
            background: var(--bg-light);
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .mission-card:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        /* --- TIMELINE / ORIGIN STORY --- */
        .timeline-section {
            position: relative;
            padding: 80px 0;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e2e8f0;
            transform: translateX(-50%);
        }

        .timeline-item {
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            position: relative;
            z-index: 2;
        }
        
        .timeline-dot {
            width: 20px;
            height: 20px;
            background: var(--brand-teal);
            border: 4px solid white;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            z-index: 3;
            box-shadow: 0 0 0 4px rgba(16, 157, 185, 0.2);
        }

        @media (max-width: 768px) {
            .timeline-line { left: 20px; }
            .timeline-dot { left: 20px; }
            .timeline-content { margin-left: 50px; }
        }

        /* --- DEFENCE GRAPHIC --- */
        .defence-layer {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 10px;
            background: white;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0.5;
            transition: all 0.3s;
        }
        
        .defence-layer.active {
            opacity: 1;
            border-color: var(--brand-teal);
            box-shadow: 0 5px 15px rgba(16, 157, 185, 0.1);
            transform: scale(1.02);
        }
        
        .layer-icon {
            width: 40px; height: 40px;
            background: var(--brand-teal-light);
            color: var(--brand-teal);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
        }