* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section {
    scroll-margin-top: 70px;

}

:root {
  --color-white: #ffffff;
  --color-secondary: #1a1a1a;
  --color-orange: #ff6f00;
  --color-subheading:#9ca3af;
  --bg-primary: #0a0a0f;
  --bg-card: linear-gradient(145deg, rgba(20, 20, 35, 0.8), rgba(10, 10, 20, 0.95));
  --bg-card-hover: linear-gradient(145deg, rgba(30, 30, 50, 0.9), rgba(15, 15, 30, 0.98));
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(100, 140, 255, 0.25);
  --text-primary: #e8e8f0;
  --text-secondary: #8a8a9e;
  --text-muted: #5a5a72;
  --accent-blue: #4a7cff;
  --accent-cyan: #00d4ff;
  --accent-purple: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;

  /* Added: used by feature-card glow variants */
  --glow-blue: rgba(74, 124, 255, 0.22);
  --glow-purple: rgba(139, 92, 246, 0.22);
  --glow-cyan: rgba(0, 212, 255, 0.22);
  --glow-emerald: rgba(16, 185, 129, 0.22);
  --glow-amber: rgba(245, 158, 11, 0.22);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #0a0f18;
  color: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
  background-repeat: no-repeat;
  min-height: 100vh;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: #ffffff;
  color: #0a0f18;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
label[role="button"]:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(10, 15, 24, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #a1a1aa;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-blue {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
}

.btn-blue:hover {
  background-color: #ff9012;
}

.btn-link {
  font-weight: 600;
  color: #f5f7fa;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 0.875rem 1.5rem;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  padding-top: 110px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden; /* fallback */
  overflow: clip;   /* hard-clips bg layers to hero bounds */
  isolation: isolate;
  contain: paint;
}

.hero-content {
  width: 100%;
  padding: 0 5%;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 700;
  color: #e6e8ee;
  letter-spacing: -0.02em;
  max-width: 850px;
  margin: 0.3em 0.2em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content span {
    color: var(--color-orange);
  }

.hero-content p {
  font-size: clamp(0.9375rem, 1vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-subheading);
  max-width: 600px;
  margin-left: 1.2em;
  margin-bottom: 2em;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  justify-content: left;
  gap: 16px;
  margin-left: 1em;
  margin-bottom: 60px;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Smooth fade */
}

.carousel-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Darken images for text contrast */
}

/* Mission Section */
.mission {
  padding: 100px 5% 96px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  background: linear-gradient(rgba(0, 12, 38, 0.367) 0%, transparent 90%);

}

.mission::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  pointer-events: none;
  /*   background: linear-gradient(to bottom, rgba(0, 6, 16, 0.6), rgba(0, 12, 38, 0.6)); */

}

.mission-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.mission-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.mission-header span {
  color: var(--color-orange);
}

.mission-eyebrow {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.mission-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.mission-header p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #9ca3af;
  max-width: 680px;
  line-height: 1.7;
}


/* Mobile Menu */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: 0.3s;
}

.features-section {
  position: relative;
  z-index: 2;
  padding: 100px 24px 120px;
  max-width: 1320px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  background:var(--text-primary); /*linear-gradient(135deg, #ff7b00 0%, var(--color-orange) 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title span {
  background:var(--color-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-subheading);
  max-width: 640px;
  margin: 0 auto;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ===== FEATURE CARD ===== */
.feature-card {
  position: relative;
  padding: 44px 36px 40px;
  border-radius: 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);

  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: background 0.45s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.feature-card:hover::after {
  opacity: 1;
}

/* Individual card glow colors */
.feature-card--cloud:hover { border-color: rgba(74, 124, 255, 0.3); }
.feature-card--cloud::after { background: radial-gradient(ellipse at top left, var(--glow-blue), transparent 60%); }
.feature-card--cloud:hover::after { opacity: 1; }

.feature-card--enterprise:hover { border-color: rgba(139, 92, 246, 0.3); }
.feature-card--enterprise::after { background: radial-gradient(ellipse at top left, var(--glow-purple), transparent 60%); }

.feature-card--zerotrust:hover { border-color: rgba(0, 212, 255, 0.3); }
.feature-card--zerotrust::after { background: radial-gradient(ellipse at top left, var(--glow-cyan), transparent 60%); }

.feature-card--physical:hover { border-color: rgba(16, 185, 129, 0.3); }
.feature-card--physical::after { background: radial-gradient(ellipse at top left, var(--glow-emerald), transparent 60%); }

.feature-card--monitoring:hover { border-color: rgba(245, 158, 11, 0.3); }
.feature-card--monitoring::after { background: radial-gradient(ellipse at top left, var(--glow-amber), transparent 60%); }

/* Span cards across bottom row */
.feature-card--physical {
  grid-column: 1 / 2;
}
.feature-card--monitoring {
  grid-column: 2 / 4;
}

/* ===== CARD CONTENT ===== */
.card-content {
  position: relative;
  z-index: 1;
}

.card-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .card-icon-wrap {
  transform: scale(1.08);
}

.card-icon-wrap i {
  font-size: 26px;
  position: relative;
  z-index: 1;
}


/* Icon themes */
.card-icon-wrap--blue {
  background: linear-gradient(135deg, rgba(74, 124, 255, 0.15), rgba(74, 124, 255, 0.05));
  border: 1px solid rgba(74, 124, 255, 0.2);
}
.card-icon-wrap--blue i { color: var(--accent-blue); }
.feature-card:hover .card-icon-wrap--blue {
  box-shadow: 0 0 30px rgba(74, 124, 255, 0.2);
}

.card-icon-wrap--purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.card-icon-wrap--purple i { color: var(--accent-purple); }
.feature-card:hover .card-icon-wrap--purple {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.card-icon-wrap--cyan {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.card-icon-wrap--cyan i { color: var(--accent-cyan); }
.feature-card:hover .card-icon-wrap--cyan {
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.card-icon-wrap--emerald {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.card-icon-wrap--emerald i { color: var(--accent-emerald); }
.feature-card:hover .card-icon-wrap--emerald {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.card-icon-wrap--amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.card-icon-wrap--amber i { color: var(--accent-amber); }
.feature-card:hover .card-icon-wrap--amber {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  color: #f0f0f8;
}

.card-description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* ===== FEATURE BULLETS ===== */
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.feature-card:hover .card-features li {
  color: var(--text-primary);
}

.card-features li .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.check-icon--blue { background: rgba(74, 124, 255, 0.15); color: var(--accent-blue); }
.check-icon--purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }
.check-icon--cyan { background: rgba(0, 212, 255, 0.15); color: var(--accent-cyan); }
.check-icon--emerald { background: rgba(16, 185, 129, 0.15); color: var(--accent-emerald); }
.check-icon--amber { background: rgba(245, 158, 11, 0.15); color: var(--accent-amber); }

/* ===== VISUAL DECORATIONS ===== */
.card-visual {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  transition: opacity 0.4s ease;
}

.feature-card:hover .card-visual {
   opacity: 0.08;
}

.card-visual i {
  font-size: 160px;
  position: absolute;
  bottom: -30px;
  right: -20px;
}

/* ===== MONITORING CARD SPECIAL LAYOUT ===== */
.feature-card--monitoring .card-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.feature-card--monitoring .card-text {
  flex: 1;
}

.feature-card--monitoring .card-visual-inline {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

/* Mini dashboard visual */
.mini-dashboard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.4s ease;
}

.feature-card--monitoring:hover .mini-dashboard {
  border-color: rgba(245, 158, 11, 0.2);
}

.mini-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mini-dashboard-header span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}

.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--accent-amber), rgba(245, 158, 11, 0.3));
  animation: barGrow 2s ease-in-out infinite alternate;
}

.mini-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.mini-bar:nth-child(2) { height: 85%; animation-delay: 0.15s; }
.mini-bar:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.mini-bar:nth-child(4) { height: 95%; animation-delay: 0.45s; }
.mini-bar:nth-child(5) { height: 70%; animation-delay: 0.6s; }
.mini-bar:nth-child(6) { height: 55%; animation-delay: 0.75s; }
.mini-bar:nth-child(7) { height: 80%; animation-delay: 0.9s; }

@keyframes barGrow {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0.5); }
}

.mini-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.4s ease;
}

.feature-card--monitoring:hover .mini-stat {
  border-color: rgba(245, 158, 11, 0.15);
}

.mini-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.mini-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-emerald);
}

.mini-stat-value--warn {
  color: var(--accent-amber);
}

/* ===== GRID LINE DECORATION ===== */
.grid-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image:
      linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== SCROLL ANIMATION ===== */
.feature-card {
  opacity: 0;
  transform: translateY(40px);
  animation: cardReveal 0.7s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardReveal {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.section-header {
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.7s ease forwards;
}

.why-us-grid {
  grid-template-columns: repeat(2, 1fr);
}


 @media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card--physical {
        grid-column: auto;
    }

    .feature-card--monitoring {
        grid-column: 1 / -1;
    }

    .section-title {
        font-size: 42px;
    }
}

/* Media Queries */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.25rem 3%;
  }

  .nav-links {
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}

 @media (max-width: 850px) {
    .features-section {
        padding: 70px 20px 90px;
    }

    .section-header {
        margin-bottom: 56px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 36px 28px 32px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-description {
        font-size: 14px;
    }

    .feature-card--monitoring .card-content {
        flex-direction: column;
        gap: 28px;
    }

    .feature-card--monitoring .card-visual-inline {
        width: 100%;
        flex-direction: row;
    }

    .mini-dashboard, .mini-stat {
        flex: 1;
    }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 4%;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content {
    margin-top: 50px;

  }
  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content,
  .hero-media {
    padding: 0 4%;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgb(10, 15, 24);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .menu-toggle:checked ~ .nav-menu {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .mission {
    padding: 72px 4% 72px;
  }

}

 @media (max-width: 680px) {
      .features-grid {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .feature-card--monitoring {
          grid-column: auto;
      }

      .section-title {
          font-size: 32px;
      }

      .section-subtitle {
          font-size: 15px;
      }

      .card-icon-wrap {
          width: 56px;
          height: 56px;
          border-radius: 14px;
          margin-bottom: 22px;
      }

      .card-icon-wrap i {
          font-size: 22px;
      }

      .bg-orb--1 { width: 300px; height: 300px; }
      .bg-orb--2 { width: 250px; height: 250px; }
      .bg-orb--3 { width: 200px; height: 200px; }
  }

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 5%;
    height: 64px;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 36px;
  }

  .hero-content,
  .hero-media {
    padding: 0 5%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .btn-blue {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .nav-menu {
    padding: 1.5rem;
    gap: 2rem;
  }

  .nav-links {
    gap: 1.25rem;
  }
  .mission {
    padding: 56px 5% 56px;
  }

  .mission-inner {
    gap: 40px;
  }

  .pillar {
    padding: 24px 20px;
  }
}

@media (max-width: 420px) {
  .features-section {
      padding: 50px 14px 70px;
  }

  .section-badge {
      font-size: 11px;
      padding: 6px 16px;
  }

  .section-title {
      font-size: 26px;
      letter-spacing: -0.5px;
  }

  .section-subtitle {
      font-size: 14px;
      line-height: 1.6;
  }

  .section-header {
      margin-bottom: 40px;
  }

  .feature-card {
      padding: 28px 22px 26px;
      border-radius: 16px;
  }

  .card-title {
      font-size: 18px;
  }

  .card-description {
      font-size: 13px;
      margin-bottom: 22px;
  }

  .card-features li {
      font-size: 13px;
  }

  .feature-card--monitoring .card-visual-inline {
      flex-direction: column;
  }
}

/* ===== CONTACT FORM ===== */
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-help {
    font-size: 12px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background: rgba(10, 15, 24, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    border: none;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: rgba(5, 8, 15, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 40px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
