/* --------------------------------------------------------------------------
           01. CSS VARIABLES & SYSTEM DEFAULTS
           -------------------------------------------------------------------------- */
:root {
  --brand-dark-blue: #0c3b78;
  --brand-blue: #0084d6;
  --brand-sky-blue: #20b7ff;
  --brand-accent-orange: #ff5a00;
  --brand-accent-yellow: #f5b400;
  --neutral-soft-gray: #f4f4f4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-800);
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
           02. REUSABLE UTILITY CLASSES & LAYOUT SYSTEM
           -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* Grid Framework */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .grid-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .grid-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .col-span-lg-7 {
    grid-column: span 7 / span 7;
  }
  .col-span-lg-6 {
    grid-column: span 6 / span 6;
  }
  .col-span-lg-5 {
    grid-column: span 5 / span 5;
  }
  .col-span-lg-4 {
    grid-column: span 4 / span 4;
  }
  .col-span-lg-8 {
    grid-column: span 8 / span 8;
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.flex-col {
  flex-direction: column;
}

/* Typography */
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-black {
  font-weight: 800;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-dark-blue);
  line-height: 1.25;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  font-weight: 300;
  max-width: 48rem;
  margin-bottom: 2rem;
}

/* Glassmorphism Styles */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.glass-dark {
  background: rgba(12, 59, 120, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-lg {
  padding: 1rem 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-sky-blue) 0%, #ff7e00 100%);
  color: white;
  box-shadow: 0 10px 15px -3px rgba(255, 90, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(255, 90, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-dark {
  background: linear-gradient(
    135deg,
    var(--brand-dark-blue) 0%,
    var(--brand-blue) 100%
  );
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 132, 214, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 132, 214, 0.4);
}

/* --------------------------------------------------------------------------
           03. LAYOUT COMPONENT STYLE BLOCKS
           -------------------------------------------------------------------------- */

/* Top Utility Bar */
.utility-bar {
  background-color: var(--brand-dark-blue);
  color: white;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 50;
}

.utility-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.utility-left,
.utility-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-link:hover {
  color: var(--brand-sky-blue);
  transition: var(--transition-smooth);
}

.comptia-badge {
  background-color: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.comptia-badge .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #34d399;
  animation: pulse 2s infinite;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-crest {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    to top right,
    var(--brand-dark-blue),
    var(--brand-sky-blue)
  );
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.logo-wrap:hover .logo-crest {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
  line-height: 1;
}

.logo-subtext {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  background-color: var(--slate-100);
  color: var(--brand-dark-blue);
}

.nav-link.nav-security {
  color: #d97706;
  font-weight: 600;
}

.nav-link.nav-security:hover {
  background-color: #fef3c7;
}

.hamburger-btn {
  background: none;
  border: none;
  color: var(--slate-700);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: block;
  font-size: 30px;
}

.hamburger-btn:hover {
  background-color: var(--slate-100);
}

@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  background-color: white;
  border-top: 1px solid var(--slate-100);
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 50;
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
}

.mobile-link {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-link:hover {
  background-color: var(--slate-50);
  color: var(--brand-dark-blue);
}

/* Hero Section */
/* --- The Main Hero Section --- */
.hero {
  position: relative; /* Essential for overlay and positioning content */
  width: 100%;
  min-height: 100vh; /* Takes full viewport height */
  display: flex;
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */

  /* Background Image (Replace with your actual image path) */
  background-image: url("cable.jpg");
  background-size: cover; /* Cover the entire area */
  background-position: center center; /* Center the image */
  background-repeat: no-repeat;

  overflow: hidden;
  padding: 2rem; /* Minimum padding */
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 0;
  }
}
/* --- Dark Blue Gradient Overlay (Crucial for legibility) --- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Creates a subtle dark blue vignette */
  background: radial-gradient(
    circle,
    rgba(5, 10, 26, 0.6) 0%,
    rgba(5, 10, 26, 0.95) 100%
  );
  z-index: 1; /* Sits above image, below content */
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(32, 183, 255, 0.1);
  border: 1px solid rgba(32, 183, 255, 0.3);
  color: var(--brand-sky-blue);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .gradient-span {
  background: linear-gradient(to right, var(--brand-sky-blue), #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--slate-300);
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 640px) {
  .hero-metrics {
    text-align: left;
  }
}

.metric-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-sky-blue);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  display: block;
}

.hero-right {
  position: relative;
}

.hero-orbit-ring {
  position: absolute;
  inset: -1rem;
  border-radius: 50%;
  background: linear-gradient(
    to top right,
    var(--brand-sky-blue),
    var(--brand-sky-blue)
  );
  opacity: 0.2;
  filter: blur(24px);
  animation: spin 20s linear infinite;
}

.terminal {
  position: relative;
  background-color: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.terminal-header {
  background-color: var(--slate-900);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.dot-red {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ef4444;
}
.dot-yellow {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #eab308;
}
.dot-green {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #22c55e;
}

.terminal-title {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.terminal-status {
  font-size: 0.75rem;
  color: var(--brand-sky-blue);
  font-family: monospace;
}

.terminal-body {
  padding: 1.5rem;
  font-family: monospace;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .terminal-body {
    font-size: 0.875rem;
  }
}

.terminal-meta {
  color: var(--slate-400);
}

.terminal-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.terminal-cursor {
  color: #34d399;
  font-weight: 700;
}

.terminal-text {
  color: white;
}

.terminal-text span {
  color: var(--brand-sky-blue);
}

.terminal-text .status-excellent {
  color: #34d399;
  font-weight: 700;
}

.readiness-box {
  padding-top: 1rem;
}

.readiness-label {
  color: var(--slate-400);
  margin-bottom: 0.5rem;
}

.progress-bar-container {
  width: 100%;
  background-color: var(--slate-800);
  border-radius: 9999px;
  height: 0.75rem;
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  background: linear-gradient(
    to right,
    var(--brand-blue),
    var(--brand-sky-blue),
    var(--brand-accent-orange)
  );
  height: 100%;
  border-radius: 9999px;
  animation: widthGrow 2.5s ease-out forwards;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--slate-500);
  margin-top: 0.25rem;
}

.comptia-panel {
  background-color: var(--slate-900);
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate-300);
  margin-top: 0.5rem;
}

.comptia-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.comptia-inner i {
  color: var(--brand-sky-blue);
}

.comptia-status-badge {
  font-size: 0.625rem;
  background-color: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.hero-badge-overlay {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--brand-sky-blue);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 20rem;
  display: none;
}

@media (min-width: 640px) {
  .hero-badge-overlay {
    display: block;
  }
}

.badge-flex {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-icon {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.625rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  color: var(--brand-accent-yellow);
}

.badge-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-200);
}

.badge-desc {
  font-weight: 700;
  font-size: 0.875rem;
}

/* About Us Section */
.about-section {
  background-color: white;
}

.about-text {
  font-size: 1rem;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.7;
}

.about-text strong {
  font-weight: 600;
  color: var(--brand-dark-blue);
}

.about-highlight-panel {
  background-color: var(--slate-50);
  border-left: 4px solid var(--brand-blue);
  padding: 1.5rem;
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-highlight-title {
  font-weight: 700;
  color: var(--brand-dark-blue);
}

.about-highlight-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

@media (min-width: 640px) {
  .about-features {
    flex-direction: row;
  }
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-feat-icon {
  background-color: rgba(12, 59, 120, 0.1);
  color: var(--brand-dark-blue);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feat-item:last-child .about-feat-icon {
  background-color: rgba(255, 90, 0, 0.1);
  color: var(--brand-accent-orange);
}

.about-feat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
}

.about-feat-val {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--slate-800);
}

.about-right {
  position: relative;
}

.why-ways-panel {
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-2xl);
}

@media (min-width: 640px) {
  .why-ways-panel {
    padding: 2rem;
  }
}

.why-ways-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.why-ways-badge {
  background-color: var(--brand-accent-orange);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  font-family: monospace;
  font-weight: 700;
}

.why-ways-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.why-ways-sub {
  font-size: 0.75rem;
  color: var(--brand-sky-blue);
  font-family: monospace;
}

.why-ways-desc {
  font-size: 0.75rem;
  color: var(--slate-300);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.ways-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.way-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: var(--transition-smooth);
}

.way-card:hover {
  border-color: var(--brand-sky-blue);
}

.way-card-blue:hover {
  border-color: var(--brand-sky-blue);
}
.way-card-orange:hover {
  border-color: var(--brand-accent-orange);
}
.way-card-yellow:hover {
  border-color: var(--brand-accent-yellow);
}
.way-card-emerald:hover {
  border-color: #10b981;
}
.way-card-indigo:hover {
  border-color: #6366f1;
}
.way-card-purple:hover {
  border-color: #a855f7;
}

.way-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.way-label {
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 700;
  color: var(--brand-sky-blue);
}

.way-card-orange .way-label {
  color: var(--brand-accent-orange);
}
.way-card-yellow .way-label {
  color: var(--brand-accent-yellow);
}
.way-card-emerald .way-label {
  color: #34d399;
}
.way-card-indigo .way-label {
  color: #818cf8;
}
.way-card-purple .way-label {
  color: #c084fc;
}

.way-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  background-color: rgba(0, 132, 214, 0.2);
  color: var(--brand-sky-blue);
}

.way-card-blue:hover .way-num {
  background-color: var(--brand-blue);
  color: white;
}

.way-card-orange .way-num {
  background-color: rgba(255, 90, 0, 0.2);
  color: var(--brand-accent-orange);
}
.way-card-orange:hover .way-num {
  background-color: var(--brand-accent-orange);
  color: white;
}

.way-card-yellow .way-num {
  background-color: rgba(245, 180, 0, 0.2);
  color: var(--brand-accent-yellow);
}
.way-card-yellow:hover .way-num {
  background-color: var(--brand-accent-yellow);
  color: white;
}

.way-card-emerald .way-num {
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
}
.way-card-emerald:hover .way-num {
  background-color: #10b981;
  color: white;
}

.way-card-indigo .way-num {
  background-color: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}
.way-card-indigo:hover .way-num {
  background-color: #6366f1;
  color: white;
}

.way-card-purple .way-num {
  background-color: rgba(168, 85, 247, 0.2);
  color: #c084fc;
}
.way-card-purple:hover .way-num {
  background-color: #a855f7;
  color: white;
}

.way-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.way-desc {
  font-size: 0.6875rem;
  color: var(--slate-400);
  line-height: 1.5;
}

.why-ways-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.why-ways-footer-text {
  font-size: 0.6875rem;
  color: var(--slate-400);
  line-height: 1.4;
}

/* Vision, Mission, Goals & Core Values */
.values-section {
  background-color: var(--slate-100);
  position: relative;
  overflow: hidden;
}

.values-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.vmg-card {
  background-color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vmg-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.vmg-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  margin-bottom: 1rem;
}

.vmg-card-vision .vmg-icon-wrap {
  background-color: rgba(0, 132, 214, 0.1);
  color: var(--brand-blue);
}
.vmg-card-vision:hover .vmg-icon-wrap {
  background-color: var(--brand-blue);
  color: white;
}

.vmg-card-mission .vmg-icon-wrap {
  background-color: rgba(255, 90, 0, 0.1);
  color: var(--brand-accent-orange);
}
.vmg-card-mission:hover .vmg-icon-wrap {
  background-color: var(--brand-accent-orange);
  color: white;
}

.vmg-card-goal .vmg-icon-wrap {
  background-color: rgba(245, 180, 0, 0.1);
  color: var(--brand-accent-yellow);
}
.vmg-card-goal:hover .vmg-icon-wrap {
  background-color: var(--brand-accent-yellow);
  color: white;
}

.vmg-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
  margin-bottom: 0.75rem;
}

.vmg-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.6;
}

.vmg-footer-link {
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: var(--transition-smooth);
}

.vmg-card-vision .vmg-footer-link {
  color: var(--brand-blue);
}
.vmg-card-mission .vmg-footer-link {
  color: var(--brand-accent-orange);
}
.vmg-card-goal .vmg-footer-link {
  color: var(--brand-accent-yellow);
}

.values-panel {
  background-color: var(--brand-dark-blue);
  color: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

@media (min-width: 640px) {
  .values-panel {
    padding: 3rem;
  }
}

.values-panel-glow {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(32, 183, 255, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.values-panel-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .values-panel-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.values-panel-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-sky-blue);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.values-panel-title {
  font-size: 1.5rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .values-panel-title {
    font-size: 1.875rem;
  }
}

.values-panel-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-family: monospace;
  width: fit-content;
}

.core-values-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .core-values-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.core-value-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.core-value-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--brand-sky-blue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.core-value-card:hover .core-value-icon {
  background-color: var(--brand-sky-blue);
  color: var(--brand-dark-blue);
}

.core-value-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.core-value-desc {
  font-size: 0.75rem;
  color: var(--slate-300);
  font-weight: 300;
  line-height: 1.6;
}

/* Core Services Hub */
.services-section {
  background-color: white;
}

.services-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.service-card {
  background-color: var(--slate-50);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
}

.service-card-blue:hover {
  border-color: var(--brand-sky-blue);
}
.service-card-orange:hover {
  border-color: var(--brand-accent-orange);
}
.service-card-yellow:hover {
  border-color: var(--brand-accent-yellow);
}
.service-card-emerald:hover {
  border-color: #10b981;
}
.service-card-pink:hover {
  border-color: #ec4899;
}
.service-card-cyan:hover {
  border-color: #06b6d4;
}

.service-icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: var(--transition-smooth);
  margin-bottom: 1rem;
}

.service-card-blue .service-icon-wrap {
  background-color: rgba(12, 59, 120, 0.1);
  color: var(--brand-dark-blue);
}
.service-card-blue:hover .service-icon-wrap {
  background-color: var(--brand-dark-blue);
  color: white;
}

.service-card-orange .service-icon-wrap {
  background-color: rgba(255, 90, 0, 0.1);
  color: var(--brand-accent-orange);
}
.service-card-orange:hover .service-icon-wrap {
  background-color: var(--brand-accent-orange);
  color: white;
}

.service-card-yellow .service-icon-wrap {
  background-color: rgba(245, 180, 0, 0.1);
  color: var(--brand-accent-yellow);
}
.service-card-yellow:hover .service-icon-wrap {
  background-color: var(--brand-accent-yellow);
  color: white;
}

.service-card-emerald .service-icon-wrap {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.service-card-emerald:hover .service-icon-wrap {
  background-color: #10b981;
  color: white;
}

.service-card-pink .service-icon-wrap {
  background-color: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}
.service-card-pink:hover .service-icon-wrap {
  background-color: #ec4899;
  color: white;
}

.service-card-cyan .service-icon-wrap {
  background-color: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}
.service-card-cyan:hover .service-icon-wrap {
  background-color: #06b6d4;
  color: white;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.75rem;
  color: var(--slate-600);
  font-weight: 300;
  line-height: 1.6;
}

.service-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-tag {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.service-tag-proactive {
  background-color: #d1fae5;
  color: #065f46;
}
.service-tag-secure {
  background-color: rgba(255, 90, 0, 0.1);
  color: var(--brand-accent-orange);
}
.service-tag-custom {
  background-color: #e0e7ff;
  color: #3730a3;
}
.service-tag-strategic {
  background-color: #f3e8ff;
  color: #6b21a8;
}
.service-tag-procure {
  background-color: #dbeafe;
  color: #1e40af;
}
.service-tag-cloud {
  background-color: #e0f2fe;
  color: #0369a1;
}
.service-tag-internet {
  background-color: #e0f7fa;
  color: #006064;
}
.service-tag-recovery {
  background-color: #fce7f3;
  color: #9d174d;
}

.service-inquire-btn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  transition: var(--transition-smooth);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-inquire-btn:hover {
  color: var(--brand-dark-blue);
}

/* Why Choose Us & Industries */
.choose-section {
  position: relative;
  background-color: var(--slate-900);
  color: white;
  padding: 5rem 0;
}

.choose-section-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    var(--brand-dark-blue),
    var(--slate-950)
  );
  opacity: 0.9;
}

.choose-container {
  position: relative;
  z-index: 10;
}

.choose-factors {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.factor-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  transition: var(--transition-smooth);
}

.factor-card:hover {
  border-color: var(--brand-sky-blue);
}

.factor-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.factor-card:nth-child(1) .factor-icon-wrap {
  background-color: rgba(0, 132, 214, 0.2);
  color: var(--brand-sky-blue);
}
.factor-card:nth-child(2) .factor-icon-wrap {
  background-color: rgba(32, 183, 255, 0.2);
  color: var(--brand-sky-blue);
}
.factor-card:nth-child(3) .factor-icon-wrap {
  background-color: rgba(245, 180, 0, 0.2);
  color: var(--brand-accent-yellow);
}
.factor-card:nth-child(4) .factor-icon-wrap {
  background-color: rgba(255, 90, 0, 0.2);
  color: var(--brand-accent-orange);
}
.factor-card:nth-child(5) .factor-icon-wrap {
  background-color: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}
.factor-card:nth-child(6) .factor-icon-wrap {
  background-color: rgba(16, 185, 129, 0.2);
  color: #a7f3d0;
}

.factor-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}

.factor-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.25rem;
}

.industry-card {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-4px);
}

.industry-card-blue:hover {
  border-color: var(--brand-blue);
}
.industry-card-orange:hover {
  border-color: var(--brand-accent-orange);
}
.industry-card-yellow:hover {
  border-color: var(--brand-accent-yellow);
}
.industry-card-sky:hover {
  border-color: var(--brand-sky-blue);
}
.industry-card-pink:hover {
  border-color: #ec4899;
}
.industry-card-indigo:hover {
  border-color: #6366f1;
}

.industry-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
}

.industry-card-blue .industry-icon {
  background-color: var(--brand-blue);
  color: white;
}
.industry-card-orange .industry-icon {
  background-color: var(--brand-accent-orange);
  color: white;
}
.industry-card-yellow .industry-icon {
  background-color: var(--brand-accent-yellow);
  color: var(--slate-900);
}
.industry-card-sky .industry-icon {
  background-color: var(--brand-sky-blue);
  color: var(--slate-950);
}
.industry-card-pink .industry-icon {
  background-color: #ec4899;
  color: white;
}
.industry-card-indigo .industry-icon {
  background-color: #6366f1;
  color: white;
}

.industry-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.industry-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  margin-top: 0.5rem;
}

/* 14-Step Methodology Section */
.methodology-section {
  background-color: white;
  overflow: hidden;
}

.orbit-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 18rem;
  width: 18rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .orbit-wrapper {
    height: 24rem;
    width: 24rem;
  }
}

.orbit-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.orbit-circle-dashed {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  border: 1px dashed var(--slate-300);
  animation: spin 30s linear infinite;
}

@media (min-width: 640px) {
  .orbit-circle-dashed {
    width: 20rem;
    height: 20rem;
  }
}

.inner-orbit-ring {
  position: relative;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 2px solid rgba(12, 59, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--slate-50);
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .inner-orbit-ring {
    width: 24rem;
    height: 24rem;
  }
}

.inner-orbit-content {
  text-align: center;
  padding: 2rem;
  z-index: 10;
  max-width: 15rem;
}

.inner-orbit-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.inner-orbit-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.inner-orbit-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.inner-orbit-badge {
  display: inline-block;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-family: monospace;
  letter-spacing: 0.05em;
  color: var(--brand-blue);
  background-color: rgba(0, 132, 214, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-weight: 700;
}

#orbitalNodesContainer {
  position: absolute;
  inset: 0;
}

.node-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  margin-top: -1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  z-index: 15;
  outline: none;
}

@media (min-width: 640px) {
  .node-btn {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -1.25rem;
    margin-top: -1.25rem;
    font-size: 0.875rem;
  }
}

.node-btn-inactive {
  background-color: white;
  color: var(--brand-dark-blue);
}

.node-btn-inactive:hover {
  background-color: var(--slate-100);
  transform: scale(1.05);
}

.node-btn-active {
  background: linear-gradient(to right, var(--brand-accent-orange), #f59e0b);
  color: white;
  transform: scale(1.1);
  z-index: 20;
}

.detail-panel {
  background-color: var(--slate-50);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 1rem;
}

.detail-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-blue);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.detail-steps-indicator {
  font-size: 0.75rem;
  color: var(--slate-400);
}

.detail-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
  margin-bottom: 0.5rem;
}

.detail-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
  font-weight: 300;
}

.detail-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--slate-200);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.btn-step-prev {
  background-color: white;
  color: var(--slate-700);
  border: 1px solid var(--slate-300);
  font-size: 0.75rem;
  font-weight: 700;
}

.btn-step-prev:hover {
  background-color: var(--slate-100);
}

.btn-step-next {
  background-color: var(--brand-dark-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.btn-step-next:hover {
  background-color: var(--brand-blue);
}

.execution-tracker {
  background-color: var(--slate-50);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.execution-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.execution-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--brand-accent-orange);
}

.execution-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-700);
}

.execution-bar-track {
  flex: 1;
  max-width: 20rem;
  background-color: var(--slate-200);
  height: 0.5rem;
  border-radius: 9999px;
  overflow: hidden;
}

.execution-bar-fill {
  background: linear-gradient(
    to right,
    var(--brand-blue),
    var(--brand-sky-blue)
  );
  height: 100%;
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

.execution-percent {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
}

/* Cybersecurity & CompTIA ISAO Section */
.security-section {
  background-color: var(--slate-950);
  color: white;
  position: relative;
  overflow: hidden;
}

.security-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.comptia-isao-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .comptia-isao-header {
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
  }
}

.security-header-left {
  grid-column: span 12;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .security-header-left {
    grid-column: span 8;
  }
}

.security-header-right {
  grid-column: span 12;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .security-header-right {
    grid-column: span 4;
    justify-content: flex-end;
  }
}

.security-tag-badge {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.security-title {
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .security-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .security-title {
    font-size: 3rem;
  }
}

.security-title span {
  background: linear-gradient(to right, #34d399, #5eead4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.security-desc {
  font-size: 1rem;
  color: var(--slate-400);
  font-weight: 300;
  line-height: 1.6;
  max-width: 56rem;
}

.security-desc strong {
  font-weight: 600;
  color: white;
}

.seal-card {
  position: relative;
  background-color: var(--slate-900);
  border: 2px solid rgba(16, 185, 129, 0.4);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 20rem;
  width: 100%;
  transition: var(--transition-smooth);
}

.seal-card:hover {
  border-color: #34d399;
}

.seal-icon-wrap {
  width: 4rem;
  height: 4rem;
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-lg);
}

.seal-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.02em;
}

.seal-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--slate-400);
  font-weight: 600;
  margin-top: 0.25rem;
  display: block;
}

.seal-badge {
  font-size: 0.625rem;
  color: #34d399;
  font-family: monospace;
  background-color: rgba(16, 185, 129, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  margin-top: 0.75rem;
  display: inline-block;
  font-weight: 700;
}

.security-stat-card {
  background-color: var(--slate-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.security-stat-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.security-stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.security-stat-tag {
  font-size: 0.75rem;
  font-family: monospace;
  color: #f87171;
}

.security-stat-header i {
  color: #f87171;
}

.security-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.security-stat-desc {
  font-size: 0.75rem;
  color: var(--slate-300);
  font-weight: 300;
  line-height: 1.6;
}

.security-stat-source {
  font-size: 0.625rem;
  color: var(--slate-500);
  font-family: monospace;
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.security-pillars-panel {
  background-color: rgba(15, 23, 42, 0.5);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4rem;
}

.sec-pillar-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sec-pillar-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.sec-pillar-icon {
  width: 2rem;
  height: 2rem;
  background-color: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.sec-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.sec-pillar-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.6;
  font-weight: 300;
}

/* Procurement simplified tab showcase */
.products-section {
  background-color: white;
}

.products-tabs-row {
  display: inline-flex;
  background-color: var(--slate-100);
  padding: 0.25rem;
  border-radius: 1rem;
  border: 1px solid var(--slate-200);
  margin-top: 1.5rem;
}

.product-tab-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.625rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
  color: var(--slate-600);
}

.product-tab-btn:hover {
  color: var(--slate-950);
}

.product-tab-btn.btn-active {
  background-color: var(--brand-dark-blue);
  color: white;
  box-shadow: var(--shadow-md);
}

.product-tab-content {
  margin-top: 3rem;
}

.product-grid-card {
  background-color: var(--slate-50);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.product-grid-card:hover {
  box-shadow: var(--shadow-lg);
}

.prod-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.product-grid-card:nth-child(1) .prod-icon {
  background-color: rgba(244, 63, 94, 0.1);
  color: #f43f5e;
}
.product-grid-card:nth-child(1):hover .prod-icon {
  background-color: #f43f5e;
  color: white;
}

.product-grid-card:nth-child(2) .prod-icon {
  background-color: rgba(0, 132, 214, 0.1);
  color: var(--brand-blue);
}
.product-grid-card:nth-child(2):hover .prod-icon {
  background-color: var(--brand-blue);
  color: white;
}

.product-grid-card:nth-child(3) .prod-icon {
  background-color: rgba(245, 180, 0, 0.1);
  color: var(--brand-accent-yellow);
}
.product-grid-card:nth-child(3):hover .prod-icon {
  background-color: var(--brand-accent-yellow);
  color: white;
}

.product-grid-card:nth-child(4) .prod-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.product-grid-card:nth-child(4):hover .prod-icon {
  background-color: #10b981;
  color: white;
}

.product-grid-card:nth-child(5) .prod-icon {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.product-grid-card:nth-child(5):hover .prod-icon {
  background-color: #6366f1;
  color: white;
}

.product-grid-card:nth-child(6) .prod-icon {
  background-color: rgba(6, 182, 212, 0.1);
  color: #06b6d4;
}
.product-grid-card:nth-child(6):hover .prod-icon {
  background-color: #06b6d4;
  color: white;
}

.product-grid-card:nth-child(7) .prod-icon {
  background-color: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.product-grid-card:nth-child(7):hover .prod-icon {
  background-color: #8b5cf6;
  color: white;
}

.product-grid-card:nth-child(8) .prod-icon {
  background-color: rgba(255, 90, 0, 0.1);
  color: var(--brand-accent-orange);
}
.product-grid-card:nth-child(8):hover .prod-icon {
  background-color: var(--brand-accent-orange);
  color: white;
}

.prod-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
}

.prod-card-desc {
  font-size: 0.6875rem;
  color: var(--slate-500);
  font-weight: 300;
}

.prod-tab-cloud-card {
  background-color: var(--slate-50);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.prod-tab-cloud-card:hover {
  box-shadow: var(--shadow-lg);
}

.cloud-prod-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  font-size: 1.875rem;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.prod-tab-cloud-card:nth-child(1) .cloud-prod-icon {
  background-color: rgba(255, 90, 0, 0.15);
  color: var(--brand-accent-orange);
}
.prod-tab-cloud-card:nth-child(1):hover .cloud-prod-icon {
  background-color: var(--brand-accent-orange);
  color: white;
}

.prod-tab-cloud-card:nth-child(2) .cloud-prod-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.prod-tab-cloud-card:nth-child(2):hover .cloud-prod-icon {
  background-color: #3b82f6;
  color: white;
}

.prod-tab-cloud-card:nth-child(3) .cloud-prod-icon {
  background-color: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}
.prod-tab-cloud-card:nth-child(3):hover .cloud-prod-icon {
  background-color: #0ea5e9;
  color: white;
}

.prod-tab-cloud-card:nth-child(4) .cloud-prod-icon {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.prod-tab-cloud-card:nth-child(4):hover .cloud-prod-icon {
  background-color: #f59e0b;
  color: white;
}

.cloud-prod-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark-blue);
}

.cloud-prod-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 300;
  margin-top: 0.5rem;
}

.prod-banner-notice {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .prod-banner-notice {
    flex-direction: row;
  }
}

.prod-notice-text {
  font-size: 0.75rem;
  color: var(--slate-600);
  max-width: 42rem;
}

/* Technology Partners & Clients section */
.partners-section {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}

.partners-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.partner-grid-item {
  background-color: white;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.partner-grid-item:hover {
  box-shadow: var(--shadow-lg);
}

.partner-grid-item i {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.partner-grid-item:nth-child(1):hover {
  border-color: var(--brand-accent-orange);
}
.partner-grid-item:nth-child(1) i {
  color: var(--brand-accent-orange);
}

.partner-grid-item:nth-child(2):hover {
  border-color: #10b981;
}
.partner-grid-item:nth-child(2) i {
  color: #10b981;
}

.partner-grid-item:nth-child(3):hover {
  border-color: #3b82f6;
}
.partner-grid-item:nth-child(3) i {
  color: #3b82f6;
}

.partner-grid-item:nth-child(4):hover {
  border-color: #0ea5e9;
}
.partner-grid-item:nth-child(4) i {
  color: #0ea5e9;
}

.partner-grid-item:nth-child(5):hover {
  border-color: #f43f5e;
}
.partner-grid-item:nth-child(5) i {
  color: #f43f5e;
}

.partner-grid-item:nth-child(6):hover {
  border-color: #ef4444;
}
.partner-grid-item:nth-child(6) i {
  color: #ef4444;
}

.partner-grid-item:nth-child(7):hover {
  border-color: #f59e0b;
}
.partner-grid-item:nth-child(7) i {
  color: #f59e0b;
}

.partner-grid-item:nth-child(8):hover {
  border-color: var(--brand-dark-blue);
}
.partner-grid-item:nth-child(8) i {
  color: var(--brand-dark-blue);
}

.partner-grid-item:nth-child(9):hover {
  border-color: var(--brand-accent-orange);
}
.partner-grid-item:nth-child(9) i {
  color: var(--brand-accent-orange);
}

.partner-grid-item:nth-child(10):hover {
  border-color: var(--slate-800);
}
.partner-grid-item:nth-child(10) i {
  color: var(--slate-800);
}

.partner-grid-item:nth-child(11):hover {
  border-color: #8b5cf6;
}
.partner-grid-item:nth-child(11) i {
  color: #8b5cf6;
}

.partner-grid-item:nth-child(12):hover {
  border-color: #ef4444;
}
.partner-grid-item:nth-child(12) i {
  color: #ef4444;
}

.partner-grid-item:nth-child(13):hover {
  border-color: #0ea5e9;
}
.partner-grid-item:nth-child(13) i {
  color: #0ea5e9;
}

.partner-grid-item:nth-child(14):hover {
  border-color: #ef4444;
}
.partner-grid-item:nth-child(14) i {
  color: #ef4444;
}

.partner-grid-item:nth-child(15):hover {
  border-color: #10b981;
}
.partner-grid-item:nth-child(15) i {
  color: #10b981;
}

.partner-grid-item:nth-child(16):hover {
  border-color: #3b82f6;
}
.partner-grid-item:nth-child(16) i {
  color: #3b82f6;
}

.partner-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-800);
}

.partner-desc {
  font-size: 0.5625rem;
  color: var(--slate-400);
  margin-top: 0.125rem;
}

.client-logo-card {
  background-color: white;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.client-icon-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.client-logo-card:nth-child(1) .client-icon-badge {
  background-color: #d1fae5;
  color: #065f46;
}
.client-logo-card:nth-child(2) .client-icon-badge {
  background-color: #dbeafe;
  color: #1e40af;
}
.client-logo-card:nth-child(3) .client-icon-badge {
  background-color: #fee2e2;
  color: #991b1b;
}
.client-logo-card:nth-child(4) .client-icon-badge {
  background-color: #ccfbf1;
  color: #0f766e;
}
.client-logo-card:nth-child(5) .client-icon-badge {
  background-color: #f3e8ff;
  color: #6b21a8;
}
.client-logo-card:nth-child(6) .client-icon-badge {
  background-color: #ffedd5;
  color: #9a3412;
}
.client-logo-card:nth-child(7) .client-icon-badge {
  background-color: #e0e7ff;
  color: #3730a3;
}
.client-logo-card:nth-child(8) .client-icon-badge {
  background-color: #fef3c7;
  color: #92400e;
}

.client-name {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--slate-800);
}

.client-desc {
  font-size: 0.5625rem;
  color: var(--slate-400);
}

/* Contact Hub & Form */
.contact-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-left {
  position: relative;
  background: linear-gradient(
    to top right,
    var(--brand-dark-blue),
    var(--brand-blue)
  );
  color: white;
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-left {
    padding: 2.5rem;
  }
}

.contact-left-glow {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  background-color: rgba(32, 183, 255, 0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.contact-left-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-left-tag {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--brand-sky-blue);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  width: fit-content;
}

.contact-left-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-left-desc {
  font-size: 0.875rem;
  color: var(--slate-200);
  font-weight: 300;
  line-height: 1.6;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}

.contact-link-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-link-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--brand-sky-blue);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-300);
}

.contact-link-val {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.125rem;
  display: block;
}

.contact-link-sub {
  font-size: 0.75rem;
  color: var(--slate-300);
  display: block;
}

.contact-left-footer {
  position: relative;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-left-footer-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
}

.contact-left-footer-inner i {
  color: #34d399;
}

.contact-left-footer-tag {
  font-size: 0.625rem;
  background-color: var(--brand-sky-blue);
  color: var(--brand-dark-blue);
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.contact-right {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-right {
    padding: 2.5rem;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
}

.contact-form-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  font-weight: 300;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-col-span-2 {
    grid-column: span 2 / span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-700);
}

.form-label span {
  color: var(--brand-accent-orange);
}

.form-input {
  width: 100%;
  background-color: white;
  border: 1px solid var(--slate-300);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px rgba(0, 132, 214, 0.2);
}

/* Luxurious Footer */
.footer {
  background-color: var(--slate-950);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-desc {
  font-size: 0.75rem;
  color: var(--slate-400);
  line-height: 1.6;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-soc-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.footer-soc-link:hover {
  background-color: var(--brand-blue);
  color: white;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--slate-200);
  text-transform: uppercase;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list-link {
  font-size: 0.75rem;
  color: var(--slate-400);
  font-weight: 300;
  transition: var(--transition-smooth);
}

.footer-list-link:hover {
  color: var(--brand-sky-blue);
}

.emergency-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-200);
}

.emergency-num {
  color: var(--brand-sky-blue);
  font-size: 0.875rem;
  font-weight: 800;
  display: block;
  margin-top: 0.25rem;
}

.emergency-num:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--slate-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copy-left {
  text-align: center;
}

@media (min-width: 640px) {
  .footer-copy-left {
    text-align: left;
  }
}

.footer-slogan {
  font-size: 0.625rem;
  color: var(--slate-600);
  margin-top: 0.25rem;
  display: block;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link:hover {
  color: var(--brand-sky-blue);
}

/* --------------------------------------------------------------------------
           04. INTERACTIVE WIDGETS (Chat & Modal)
           -------------------------------------------------------------------------- */
.widget-stack {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.chat-window {
  width: 20rem;
  background-color: var(--slate-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chat-header {
  background-color: var(--brand-dark-blue);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-header-dot {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #34d399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-header-title {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: monospace;
}

.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chat-close-btn:hover {
  color: white;
}

.chat-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 16rem;
  overflow-y: auto;
  font-family: monospace;
  font-size: 0.75rem;
}

.chat-bubble-agent {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: var(--slate-300);
  max-width: 85%;
  margin-right: auto;
}

.chat-bubble-user {
  background-color: var(--brand-blue);
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: white;
  max-width: 85%;
  margin-left: auto;
  text-align: right;
}

.chat-body-prompt {
  font-size: 0.625rem;
  color: var(--slate-500);
}

.chat-footer {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-input {
  background-color: var(--slate-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  flex: 1;
  outline: none;
  color: white;
}

.chat-send-btn {
  background-color: var(--brand-blue);
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.chat-send-btn:hover {
  background-color: var(--brand-sky-blue);
}

.chat-trigger-btn {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(
    to right,
    var(--brand-accent-orange),
    var(--brand-accent-yellow)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  outline: none;
}

.chat-trigger-btn:hover {
  transform: scale(1.05);
}

.whatsapp-badge {
  background-color: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: var(--transition-smooth);
}

.whatsapp-badge:hover {
  background-color: #059669;
}

/* Inquiry Modal popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(4px);
}

.modal-panel {
  background-color: white;
  border-radius: 1.5rem;
  max-width: 32rem;
  width: 100%;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-2xl);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--slate-800);
}

.modal-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-tag {
  font-size: 0.75rem;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  text-transform: uppercase;
  display: block;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-dark-blue);
}

.modal-title span {
  background: linear-gradient(
    to right,
    var(--brand-blue),
    var(--brand-sky-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-desc {
  font-size: 0.75rem;
  color: var(--slate-500);
  line-height: 1.6;
  font-weight: 300;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-form-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--slate-700);
}

.modal-form-input {
  width: 100%;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  outline: none;
  transition: var(--transition-smooth);
}

.modal-form-input:focus {
  border-color: var(--brand-blue);
  background-color: white;
  box-shadow: 0 0 0 2px rgba(0, 132, 214, 0.2);
}

.modal-submit-btn {
  background-color: var(--brand-dark-blue);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.modal-submit-btn:hover {
  background-color: var(--brand-blue);
}

/* State Helpers */
.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
           05. NATIVE CSS ANIMATION KEYFRAMES
           -------------------------------------------------------------------------- */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes widthGrow {
  from {
    width: 0%;
  }
  to {
    width: 94%;
  }
}
