/*
Theme Name: IT Ventures - Shield Wall
Theme URI: https://itventures.com.au
Author: IT Ventures
Author URI: https://itventures.com.au
Description: A modern, MSP-first WordPress theme for IT Ventures — featuring the Shield Wall design system with deep navy backgrounds, electric blue accents, and bold typography.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: itventures
Tags: one-column, custom-menu, featured-images, translation-ready, blog
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ============================================
   SHIELD WALL DESIGN SYSTEM
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Navy Palette */
  --navy-950: #0a1628;
  --navy-900: #0f1d33;
  --navy-800: #162642;
  --navy-700: #1f3356;

  /* Accent Colors */
  --electric: #3b82f6;
  --electric-light: #60a5fa;
  --secure: #10b981;
  --secure-dark: #059669;
  --destructive: #ef4444;

  /* Foreground */
  --foreground: #e8eaf0;
  --foreground-70: rgba(232, 234, 240, 0.7);
  --foreground-80: rgba(232, 234, 240, 0.8);
  --muted-foreground: #8b92a8;
  --border-color: #1f3356;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-950);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, a[href], select, input[type="checkbox"], input[type="radio"] {
  cursor: pointer;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient-blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-blue {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 60px rgba(59, 130, 246, 0.1);
}

.border-glow {
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.border-glow:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Grid pattern background */
.grid-pattern {
  background-image: linear-gradient(rgba(59, 130, 246, 0.5) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(59, 130, 246, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.03;
}

.grid-pattern-sm {
  background-image: linear-gradient(rgba(59, 130, 246, 0.5) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(59, 130, 246, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.02;
}

/* Animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.84s; opacity: 1; transform: translateY(0); }

/* Pulse animation */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--navy-700); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2a4070; }

/* ============================================
   NAVBAR
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-logo img {
  height: 5rem;
  width: auto;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-logo img {
    height: 6rem;
  }
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-70);
  font-family: var(--font-body);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 75%;
}

.nav-ctas {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-ctas {
    display: flex;
  }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  transition: color 0.2s ease;
}

.nav-phone:hover {
  color: #ffffff;
}

.nav-phone svg {
  width: 1rem;
  height: 1rem;
}

/* Mobile toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  display: block;
}

.mobile-menu nav {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground-80);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  color: #ffffff;
  background: rgba(15, 29, 51, 0.5);
}

.mobile-menu-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: 0.5rem;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--electric);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--electric-light);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(232, 234, 240, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(59, 130, 246, 0.4);
}

.btn-full {
  width: 100%;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.hero-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-carousel-slide.active img {
  transform: scale(1);
}

.hero-carousel .hero-overlay-lr,
.hero-carousel .hero-overlay-bt {
  z-index: 3;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-dot {
  width: 3rem;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}

.carousel-dot-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--electric);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.carousel-dot.active .carousel-dot-progress {
  animation: carouselProgress 6s linear forwards;
}

@keyframes carouselProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.5));
}

.hero-overlay-bt {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-950), transparent, rgba(10, 22, 40, 0.3));
}

.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 9rem;
  padding-bottom: 10rem;
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
}

.hero-inner {
  max-width: 54rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--secure);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--electric-light);
  font-family: var(--font-mono);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3.25rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 5rem; }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--foreground-70);
  max-width: 40rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-family: var(--font-body);
}

@media (min-width: 1024px) {
  .hero-sub { font-size: 1.3rem; }
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

/* Stats Bar */
.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 46rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

@media (min-width: 1024px) {
  .hero-stats { margin-top: 5rem; }  
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-icon.blue svg { color: var(--electric); }
.stat-icon.green svg { color: var(--secure); }

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-mono);
}

@media (min-width: 1024px) {
  .stat-number { font-size: 1.875rem; }
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero diagonal */
.hero-diagonal {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 7rem;
  background: var(--navy-950);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-by {
  position: relative;
  padding: 3rem 0;
  background: var(--navy-950);
  border-top: 1px solid rgba(31, 51, 86, 0.5);
  border-bottom: 1px solid rgba(31, 51, 86, 0.5);
}

.trusted-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trusted-inner {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.trusted-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.trusted-icons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 640px) {
  .trusted-icons { gap: 3rem; }
}

.trusted-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(139, 146, 168, 0.4);
  transition: color 0.2s ease;
}

.trusted-item:hover {
  color: rgba(139, 146, 168, 0.7);
}

.trusted-item svg {
  width: 1rem;
  height: 1rem;
}

.trusted-item span {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-body);
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .section { padding: 8rem 0; }
}

.section-dark { background: var(--navy-950); }
.section-alt { background: var(--navy-900); }

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--electric);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  display: block;
}

.section-label.green {
  color: var(--secure);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .section-title { font-size: 3rem; }
}

.section-title-lg {
  font-size: 1.875rem;
}

@media (min-width: 1024px) {
  .section-title-lg { font-size: 2.5rem; }
}

.section-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Diagonal dividers */
.diagonal-top {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 7rem;
  background: var(--navy-950);
}

.diagonal-top-lr {
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.diagonal-top-rl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  background: var(--navy-900);
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 2rem;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .service-card { padding: 2.5rem; }
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  opacity: 0.03;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-card-bg {
  opacity: 0.06;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.service-icon.blue svg { color: var(--electric); }
.service-icon.green svg { color: var(--secure); }

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .service-card h3 { font-size: 1.5rem; }
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.service-feature-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  background: var(--navy-800);
  color: rgba(232, 234, 240, 0.6);
  border: 1px solid var(--border-color);
  font-family: var(--font-mono);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.service-link.blue { color: var(--electric); }
.service-link.blue:hover { color: var(--electric-light); }
.service-link.green { color: var(--secure); }
.service-link.green:hover { color: var(--secure); }

.service-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HOW WE WORK SECTION
   ============================================ */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-card {
  position: relative;
  background: var(--navy-950);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.step-watermark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono);
  transition: color 0.5s ease;
}

.step-card:hover .step-watermark {
  color: rgba(59, 130, 246, 0.08);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--electric);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.step-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(59, 130, 246, 0.7);
  font-family: var(--font-mono);
  margin-bottom: 0.75rem;
}

.step-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* How We Work CTA Banner */
.hww-cta {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.hww-cta img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hww-cta img { height: 16rem; }
}

.hww-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 0.6));
}

.hww-cta-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hww-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .hww-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hww-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .hww-cta h3 { font-size: 1.5rem; }
}

.hww-cta p {
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.reasons-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

.reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.reason-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--electric);
}

.reason-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.reason-item p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Partners strip */
.partners-strip {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--navy-950);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}

.partners-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: rgba(139, 146, 168, 0.5);
}

.partners-logos span {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

/* ============================================
   CYBER SECTION
   ============================================ */
.cyber-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cyber-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.cyber-image-wrapper {
  position: relative;
}

.cyber-image {
  border-radius: 0.5rem;
  overflow: hidden;
}

.cyber-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.cyber-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent);
}

.cyber-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--navy-950);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .cyber-badge {
    bottom: 1.5rem;
    right: -1.5rem;
  }
}

.cyber-badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--electric);
}

.cyber-badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-sans);
}

.cyber-badge-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secure);
  font-family: var(--font-mono);
}

.capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.capability-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secure);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.capability-item span {
  color: var(--foreground-80);
  font-family: var(--font-body);
}

/* ============================================
   ESSENTIAL EIGHT SECTION
   ============================================ */
.e8-bg {
  position: absolute;
  inset: 0;
}

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

.e8-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.9);
}

.e8-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .e8-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .e8-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.e8-card {
  position: relative;
  background: rgba(15, 29, 51, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.e8-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.e8-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.e8-card:hover .e8-card-icon {
  background: rgba(59, 130, 246, 0.2);
}

.e8-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--electric);
}

.e8-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.e8-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
}

.e8-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.1);
  font-family: var(--font-mono);
  transition: color 0.3s ease;
}

.e8-card:hover .e8-number {
  color: rgba(59, 130, 246, 0.2);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-bg {
  position: absolute;
  inset: 0;
}

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

.testimonials-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  position: relative;
  background: rgba(15, 29, 51, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-quote-icon {
  width: 2rem;
  height: 2rem;
  color: rgba(59, 130, 246, 0.3);
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--foreground-80);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-sans);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.testimonial-company {
  font-size: 0.75rem;
  color: rgba(59, 130, 246, 0.6);
  font-family: var(--font-mono);
  margin-top: 0.25rem;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), var(--navy-900), rgba(16, 185, 129, 0.1));
}

.cta-banner-grid {
  position: absolute;
  inset: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--navy-950);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-input { height: 3rem; }

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(139, 146, 168, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(59, 130, 246, 0.5);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

/* Contact details */
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-detail-icon.green {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-detail-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-detail-icon.blue svg { color: var(--electric); }
.contact-detail-icon.green svg { color: var(--secure); }

.contact-detail h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail a {
  font-size: 1.125rem;
  font-family: var(--font-mono);
  transition: color 0.2s ease;
}

.contact-detail a.blue { color: var(--electric); }
.contact-detail a.blue:hover { color: var(--electric-light); }
.contact-detail a.green { color: var(--secure); }

.contact-detail .detail-sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  margin-top: 0.25rem;
}

/* Emergency box */
.emergency-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--navy-950);
  border-radius: 0.5rem;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.emergency-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: var(--destructive);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.emergency-box h3 {
  font-size: 1rem;
  font-weight: 700;
}

.emergency-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  margin-bottom: 0.75rem;
}

.emergency-box a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--destructive);
  font-family: var(--font-mono);
  transition: opacity 0.2s ease;
}

.emergency-box a:hover {
  opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-family: var(--font-body);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 5rem;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--navy-800);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  color: var(--electric);
  border-color: rgba(59, 130, 246, 0.3);
}

.footer-social a svg {
  width: 1rem;
  height: 1rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-family: var(--font-body);
}

.footer-bottom .footer-location {
  font-size: 0.75rem;
  color: rgba(139, 146, 168, 0.5);
  font-family: var(--font-mono);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--electric);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-to-top.visible {
  display: flex;
}

.scroll-to-top:hover {
  background: var(--electric-light);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.scroll-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image img { border-radius: 0.5rem; }
.aligncenter { text-align: center; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
