/* ==========================================================================
   Drakos Systems — Main Stylesheet v3
   Visual refresh: light-dominant professional B2B theme with navy, teal and amber accents
   WCAG 2.1 AA compliant | Core Web Vitals optimised | Mobile-first | Light theme
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */

:root {
  /* Core colour palette */
  --dark-primary:    #F7F9FB;
  --dark-secondary:  #EEF2F6;
  --dark-card:       #FFFFFF;
  --electric-blue:   #173B57;
  --bright-blue:     #0F766E;
  --cyan-glow:       #0F766E;
  --blue-light:      #173B57;
  --text-white:      #111827;
  --text-gray:       #4B5563;
  --text-muted:      #6B7280;
  --border-dark:     #D1D5DB;

  /* Secondary accents */
  --green-secure:    #0F766E;
  --amber-warning:   #f59e0b;

  /* Gradients */
  --gradient-blue:   linear-gradient(135deg, #173B57 0%, #0F766E 100%);
  --gradient-dark:   linear-gradient(180deg, #EEF2F6 0%, #F7F9FB 100%);
  --gradient-hero:   linear-gradient(135deg, #173B57 0%, #0F3D5E 50%, #173B57 100%);

  /* Glassmorphism */
  --glass-bg:        rgba(255,255,255,0.92);
  --glass-border:    rgba(23,59,87,0.15);

  /* Border radii */
  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-pill:     50px;

  /* Shadows */
  --shadow-glow:        0 4px 24px rgba(23,59,87,0.18);
  --shadow-glow-strong: 0 8px 32px rgba(23,59,87,0.25);
  --shadow-card:        0 4px 16px rgba(0,0,0,0.07);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
  line-height: 1.7;
  background: var(--dark-primary);
  color: var(--text-white);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  opacity: 1;
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1rem 2rem;
  background: var(--electric-blue);
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 1rem;
}

/* Layout container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */

.header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #D1D5DB;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  /* Animated gradient sweep on load */
  background-image: none;
  background-size: 200% 100%;
  animation: none;
}

@keyframes header-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  color: var(--text-white);
  text-transform: uppercase;
  display: block;
}

/* Navigation links */
.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: #0F766E;
  background: #EEF2F6;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: #0F766E;
  background: #EEF2F6;
}

.nav-dropdown-toggle svg {
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  min-width: 0;
  min-height: auto;
}

.nav-dropdown-menu a:hover {
  background: #EEF2F6;
  color: #0F766E;
}

.nav-dropdown-menu a span.dd-title {
  color: #173B57;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.nav-dropdown-menu a span.dd-sub {
  color: #6B7280;
  font-size: 0.78rem;
  margin-top: 1px;
}

.nav-dropdown-menu a:hover span.dd-title {
  color: #0F766E;
}

/* Header phone CTA */
.header-contact {
  margin-left: auto;
}

.header-contact .phone-link {
  color: #111827;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  background: #F59E0B;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
  border: none;
}

.header-contact .phone-link:hover {
  transform: translateY(-2px);
  background: #C2410C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(194,65,12,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #173B57;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Primary button — amber */
.btn-primary {
  background: #F59E0B;
  color: #111827;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  background: #C2410C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(194,65,12,0.3);
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-secondary {
  background: transparent;
  color: #173B57;
  border: 2px solid #173B57;
}

.btn-secondary:hover {
  background: #173B57;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   5. HERO SECTION — SPLIT LAYOUT
   ========================================================================== */

.hero {
  background: #173B57;
  /* Subtle grid pattern */
  background-image: radial-gradient(ellipse at 65% 50%, rgba(15,118,110,0.18) 0%, transparent 60%);
  background-size: 100% 100%;
  color: var(--text-white);
  padding: 4rem 0 6rem;
  position: relative;
  overflow: visible;
}

/* Radial glow overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(15,118,110,0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Split grid layout — stacked by default, side-by-side on desktop */
.hero-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Left column — content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* Desktop: side-by-side layout */
@media (min-width: 1024px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }

  .hero-content {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .hero-visual {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0;
  }

  .hero-split .hero-buttons {
    justify-content: flex-start;
  }

  .hero-split .trust-badges {
    justify-content: flex-start;
  }

  .hero p {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}

/* Eyebrow label */
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan-glow);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

/* Main headline */
.hero h1, .hero .hero-content h1 {
  color: #fff !important;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
}

/* Gradient text highlight */
.hero-highlight {
  color: #14B8A6 !important;
  background: none;
  -webkit-text-fill-color: #14B8A6;
  background-clip: unset;
}

/* Subtext */
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Button row */
.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.trust-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
}

.trust-badge:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   6. HERO VISUAL — ANIMATED ORB, RINGS & PARTICLES
   ========================================================================== */

/* Right column — decorative visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Central glowing orb */
.hero-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.35) 0%,
    rgba(23,59,87,0.1) 45%,
    transparent 70%
  );
  animation: pulse-orb 4s ease-in-out infinite;
  position: absolute;
  box-shadow: 0 0 80px rgba(15,118,110,0.12);
}

/* Rotating rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23,59,87,0.2);
  animation: rotate-ring linear infinite;
}

.hero-ring-1 {
  width: 260px;
  height: 260px;
  animation-duration: 20s;
  border-color: rgba(0, 212, 255, 0.25);
  border-style: dashed;
}

.hero-ring-2 {
  width: 360px;
  height: 360px;
  animation-duration: 30s;
  animation-direction: reverse;
  border-color: rgba(23,59,87,0.12);
}

.hero-ring-3 {
  width: 460px;
  height: 460px;
  animation-duration: 45s;
  border-color: rgba(23,59,87,0.08);
  border-style: dashed;
}

/* Floating particles */
.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-glow);
  animation: float-particle 6s ease-in-out infinite;
  box-shadow: 0 0 12px var(--cyan-glow);
}

.hero-particle-1 { top: 18%; left: 18%; animation-delay: 0s; }
.hero-particle-2 { top: 62%; left: 72%; animation-delay: 1.5s; }
.hero-particle-3 { top: 78%; left: 28%; animation-delay: 3s; }
.hero-particle-4 { top: 28%; left: 78%; animation-delay: 4.5s; }

/* Keyframes */
@keyframes pulse-orb {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0)    scale(1);   opacity: 0.6; }
  50%       { transform: translateY(-22px) scale(1.5); opacity: 1;   }
}

/* ==========================================================================
   7. STATS BAR
   ========================================================================== */

.stats-bar {
  background: #fff;
  padding: 4rem 0;
  border-top: 1px solid #D1D5DB;
  border-bottom: 1px solid #D1D5DB;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  position: relative;
}

/* Thin gradient line above each number */
.stat-item::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg,#173B57,#0F766E);
  margin: 0 auto 1rem;
  border-radius: var(--radius-pill);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #173B57;
  background: none;
  -webkit-text-fill-color: #173B57;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #4B5563;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   8. VIDEO SECTION (hidden until video is ready)
   ========================================================================== */

.video-section {
  display: none; /* Remove this line when video is ready */
  padding: 7rem 0;
  background: var(--dark-primary);
  text-align: center;
}

.video-section.active {
  display: block;
}

.video-section h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.video-section p {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(23,59,87,0.2);
  border: 1px solid rgba(23,59,87,0.12);
}

.video-container video,
.video-container iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
}

/* ==========================================================================
   9. SERVICES GRID — SECTION DIVIDER & CARD REDESIGN
   ========================================================================== */

.services-grid {
  padding: 7rem 0;
  background: #F7F9FB;
  /* Diagonal top cut */
  padding-bottom: 5rem;
}

.services-grid h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #173B57;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.services-grid h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-blue);
  margin: 1.5rem auto 0;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Service card */
.service-card {
  background: #fff;
  padding: 0;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #D1D5DB;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* Gradient left border on hover via pseudo-element */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
  border-radius: 0 0 0 16px;
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #173B57;
  box-shadow: 0 8px 32px rgba(23,59,87,0.14);
}

/* Service image with gradient overlay */
.service-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--dark-primary);
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
  opacity: 1;
}

/* Gradient overlay at bottom of image */
.service-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark-card) 0%, transparent 100%);
  pointer-events: none;
}

.service-card .icon {
  font-size: 3.5rem;
  margin: 2rem 0 1.25rem;
  display: inline-block;
  transition: var(--transition);
}

.service-card:hover .icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 20px rgba(15,118,110,0.35));
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #173B57;
  font-weight: 800;
  padding: 0 2rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #4B5563;
  line-height: 1.8;
  padding: 0 2rem;
  font-size: 1rem;
}

.service-card .link {
  color: #0F766E;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  padding-bottom: 2.5rem;
  transition: var(--transition);
}

.service-card .link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left var(--transition);
}

.service-card:hover .link {
  color: #173B57;
}

.service-card:hover .link::after {
  margin-left: 1rem;
}

/* ==========================================================================
   10. WHY CHOOSE US — FEATURE CARDS
   ========================================================================== */

.why-choose {
  padding: 7rem 0;
  background: #EEF2F6;
  /* Diagonal bottom cut */
}


.why-choose h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #173B57;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.why-choose h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient-blue);
  margin: 1.5rem auto 0;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

/* Feature card */
.feature {
  text-align: left;
  padding: 2.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid #D1D5DB;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: #173B57;
  box-shadow: 0 8px 24px rgba(23,59,87,0.12);
}

.feature:hover::after {
  transform: scaleX(1);
}

/* Icon container — 64px circle */
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(15,118,110,0.1);
  border: 1px solid rgba(15,118,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  background: rgba(15,118,110,0.12);
  box-shadow: 0 0 20px rgba(15,118,110,0.18);
  transform: scale(1.05);
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.875rem;
  color: #173B57;
  font-weight: 800;
}

.feature h3 a {
  color: #173B57;
  text-decoration: none;
}

.feature h3 a:hover {
  color: #0F766E;
}

.feature p {
  color: #4B5563;
  line-height: 1.8;
  font-size: 1rem;
}

/* ==========================================================================
   11. CONTENT SECTIONS (generic)
   ========================================================================== */

.content-section {
  padding: 5rem 0;
  background: #fff;
}

.content-section h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: #173B57;
  font-weight: 800;
  text-align: center;
}

.content-section h3 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: #0F766E;
  font-weight: 700;
}

.content-section p {
  margin-bottom: 1.25rem;
  line-height: 1.9;
  font-size: 1.05rem;
  color: #4B5563;
}

.content-section ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.content-section ul li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: #4B5563;
  font-size: 1.05rem;
}

.content-section ul li::marker {
  color: #0F766E;
}

.content-section a {
  color: #173B57;
  text-decoration: none;
  transition: var(--transition);
}

.content-section a:hover {
  color: #0F766E;
}

/* ==========================================================================
   12. CTA SECTION
   ========================================================================== */

.cta-section {
  background: #173B57;
  color: var(--text-white);
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(23,59,87,0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
}

.cta-section p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */

.faq-item {
  background: #F7F9FB;
  border: 1px solid #D1D5DB;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #0F766E;
  box-shadow: 0 4px 12px rgba(15,118,110,0.12);
}

.faq-item summary {
  padding: 1.75rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  color: #173B57;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 2rem;
  font-weight: 300;
  color: #0F766E;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item div {
  padding: 0 2rem 2rem;
  color: #4B5563;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* ==========================================================================
   14. TESTIMONIALS — REDESIGNED WITH QUOTE DECORATION
   ========================================================================== */

.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--electric-blue);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Large decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 8rem;
  line-height: 1;
  color: rgba(23,59,87,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  transform: translateX(8px);
  border-left-width: 6px;
  box-shadow: var(--shadow-glow);
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4B5563;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #173B57;
}

/* Testimonial carousel */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 200px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-align: center;
  padding: 2rem;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.carousel-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
}

/* Decorative quote marks on carousel */
.carousel-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: rgba(23,59,87,0.12);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -1.5rem;
  margin-right: 0.25rem;
}

.carousel-author {
  font-weight: 700;
  color: var(--cyan-glow);
  font-size: 1.05rem;
}

.carousel-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23,59,87,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  position: relative;
}

.carousel-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-dot.active {
  background: var(--electric-blue);
}

/* ==========================================================================
   15. PAGE HEADER (inner pages)
   ========================================================================== */

.page-header {
  background: #173B57;
  color: var(--text-white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated gradient sweep */
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(23,59,87,0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.05),
    transparent
  );
  animation: page-header-sweep 4s ease-in-out infinite;
}

@keyframes page-header-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
}

.page-header p {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.82);
  max-width: 700px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #14B8A6;
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* ==========================================================================
   16. CONTACT FORM
   ========================================================================== */

.contact-form {
  max-width: 650px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(23,59,87,0.12);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  transition: var(--transition);
  font-family: inherit;
  background: var(--dark-card);
  color: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(23,59,87,0.1);
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.footer {
  background: var(--dark-primary);
  color: var(--text-gray);
  padding: 5rem 0 2rem;
  position: relative;
}

/* Animated gradient top border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  background-size: 200% 100%;
  animation: footer-border 4s ease-in-out infinite alternate;
  box-shadow: 0 0 20px rgba(23,59,87,0.25);
}

@keyframes footer-border {
  0%   { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1.75rem;
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.875rem;
}

.footer-col a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  padding: 0.25rem 0;
  min-height: 48px;
  line-height: 48px;
}

.footer-col a:hover {
  color: var(--cyan-glow);
  transform: translateX(4px);
}

.footer-col p {
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(23,59,87,0.08);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--cyan-glow);
}

/* ==========================================================================
   18. BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(23,59,87,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   19. SCROLL ANIMATIONS
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Carousel slide */
.carousel-slide {
  will-change: transform, opacity;
}

/* ==========================================================================
   20. FOCUS STATES — ACCESSIBILITY
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 2px;
}

/* ==========================================================================
   21. SECTION DIVIDER UTILITY CLASSES
   ========================================================================== */

.section-wave-top {
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.section-wave-bottom {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
}

/* ==========================================================================
   22. RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */

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

  .services-grid h2,
  .why-choose h2,
  .cta-section h2 {
    font-size: 3rem;
  }

  .hero-ring-3 {
    width: 380px;
    height: 380px;
  }
}

/* ==========================================================================
   23. RESPONSIVE — MOBILE (max-width: 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Header */
  .hamburger {
    display: flex;
    order: 2;
  }

  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .logo { order: 1; }

  .header-contact {
    order: 3;
    margin-left: 0;
  }

  .header-contact .phone-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Mobile nav drawer */
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-primary);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    border-right: 2px solid var(--electric-blue);
  }

  .nav.active {
    left: 0;
  }

  .nav a {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(23,59,87,0.08);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Mobile dropdown */
  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(23,59,87,0.08);
    font-size: 1rem;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(23,59,87,0.08);
    box-shadow: none;
    background: rgba(23,59,87,0.04);
    padding: 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a {
    padding: 0.85rem 2rem;
    border-radius: 0;
    border-bottom: 1px solid #D1D5DB;
  }

  .nav a:hover {
    background: rgba(23,59,87,0.08);
    transform: translateX(5px);
  }

  /* Hero — stack vertically */
  .hero {
    padding: 6rem 0 5rem;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-visual {
    display: flex;
    height: auto;
    margin-top: 0;
    max-width: 100%;
  }

  .hero-video-wrap {
    max-width: 100%;
    width: 100%;
  }

  .hero-split .trust-badges {
    justify-content: center;
  }

  .hero-split .hero-buttons {
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }

  /* Remove clip-path on mobile to avoid overflow issues */
  .services-grid,
  .why-choose {
    clip-path: none;
    padding-bottom: 7rem;
    padding-top: 7rem;
  }

  /* Section headings */
  .services-grid h2,
  .why-choose h2,
  .cta-section h2 {
    font-size: 2.25rem;
  }

  /* Grids */
  .grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  /* Feature cards — centre on mobile */
  .feature {
    text-align: center;
  }

  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   24. RESPONSIVE — SMALL PHONES (max-width: 640px)
   ========================================================================== */

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
    letter-spacing: -1px;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .trust-badges {
    gap: 0.5rem;
  }

  .trust-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   25. RESPONSIVE — EXTRA SMALL (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-network-video {
    display: none;
  }

  .hero-network-poster {
    display: block;
  }

  .hero-video-wrap {
    border-radius: 12px;
    max-width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 2rem;
  }

  .header-contact .phone-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cta-section h2 {
    font-size: 1.9rem;
  }
}

/* ==========================================================================
   26. REDUCED MOTION — ACCESSIBILITY
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-slide {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-orb,
  .hero-ring,
  .hero-particle {
    animation: none !important;
  }

  .header,
  .page-header::after,
  .footer::before {
    animation: none !important;
  }
}

/* ==========================================================================
   CONTACT FORM — DARK THEME
   ========================================================================== */

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--dark-card) !important;
  border: 1px solid var(--border-dark) !important;
  color: var(--text-white) !important;
  padding: 0.85rem 1rem !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  width: 100% !important;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--cyan-glow) !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted) !important;
}

.contact-form label {
  color: var(--text-gray) !important;
  font-weight: 500;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form select option {
  background: var(--dark-primary);
  color: var(--text-white);
}

/* ==========================================================================
   LOCAL CONFIDENCE BLOCK
   ========================================================================== */

.local-confidence {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  text-align: center;
}

.local-confidence p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.8;
}

.local-confidence strong {
  color: var(--cyan-glow);
}

/* ==========================================================================
   PREMIUM GRAPHICS — SCROLL REVEALS AND MOTION
   Lightweight: CSS-only transitions triggered by IntersectionObserver
   ========================================================================== */

/* Scroll reveal base state — only activates when JS adds .js-enabled to html */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — only with JS */
.js-enabled .reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.js-enabled .reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Service card hover lift */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(23,59,87,0.12);
  border-color: var(--electric-blue);
}

/* Hero image subtle parallax on load */
.hero-visual img {
  animation: heroReveal 1s ease forwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 0.85; transform: scale(1); }
}

/* Stats bar number glow */
.stat-number {
  text-shadow: 0 0 20px rgba(15,118,110,0.18);
}

/* Page hero image reveal */
.page-hero-image img {
  animation: pageImageReveal 0.8s ease forwards;
  opacity: 0;
}

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

/* CTA block subtle pulse on border */
@keyframes ctaPulse {
  0%, 100% { border-left-color: var(--electric-blue); }
  50% { border-left-color: var(--cyan-glow); }
}

.content-section [style*="border-left: 4px solid var(--electric-blue)"] {
  animation: ctaPulse 4s ease infinite;
}

/* Trust badge subtle shimmer */
.trust-badge {
  position: relative;
  overflow: hidden;
}

.trust-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: badgeShimmer 6s ease infinite;
}

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

/* Local confidence block accent */
.local-confidence {
  border-top: 1px solid rgba(23,59,87,0.12);
  border-bottom: 1px solid rgba(23,59,87,0.12);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .hero-visual img,
  .page-hero-image img {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .trust-badge::after {
    animation: none !important;
  }
  .content-section [style*="border-left: 4px solid var(--electric-blue)"] {
    animation: none !important;
  }
}

/* ==========================================================================
   TYPOGRAPHY UPGRADE — Space Grotesk for headings
   ========================================================================== */

h1, h2, h3, .hero-content h1, .stat-number, .logo-text {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1 { letter-spacing: -0.02em; }
h2 { letter-spacing: -0.01em; }

/* Improved body spacing */
.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-section h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   COMPARISON TABLE STYLING — Premium polish
   ========================================================================== */

.content-section table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.content-section table thead tr {
  background: rgba(23,59,87,0.06);
}

.content-section table th {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.content-section table td,
.content-section table th {
  padding: 0.85rem 1.1rem;
}

/* ==========================================================================
   CTA BLOCK — Stronger visual presence
   ========================================================================== */

.btn-primary {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(23,59,87,0.2);
}

.btn-secondary {
  transition: transform 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   LOCAL CONFIDENCE — Enhanced visual
   ========================================================================== */

.local-confidence {
  background: #EEF2F6;
  border: 1px solid rgba(23,59,87,0.1);
  padding: 2rem;
}

.local-confidence p {
  font-size: 1.05rem;
}

/* ==========================================================================
   BLOG CARD THUMBNAILS
   ========================================================================== */

.blog-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  display: block;
}

/* ==========================================================================
   SERVICE DIAGRAM CONTAINER
   ========================================================================== */

.service-diagram {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.service-diagram svg {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   MOBILE TABLE STACKING
   ========================================================================== */

@media (max-width: 640px) {
  .content-section table {
    font-size: 0.85rem;
  }

  .content-section table td,
  .content-section table th {
    padding: 0.6rem 0.75rem;
  }
}

/* ==========================================================================
   BLOG CATEGORY BADGES
   ========================================================================== */

.blog-category-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-category-badge--it { background: rgba(23,59,87,0.1); color: var(--electric-blue); }
.blog-category-badge--voip { background: rgba(0, 212, 255, 0.12); color: var(--cyan-glow); }
.blog-category-badge--cctv { background: rgba(52, 211, 153, 0.12); color: var(--green-secure); }
.blog-category-badge--wifi { background: rgba(99, 102, 241, 0.12); color: #818cf8; }
.blog-category-badge--broadband { background: rgba(245, 158, 11, 0.12); color: var(--amber-warning); }
.blog-category-badge--security { background: rgba(239, 68, 68, 0.12); color: #f87171; }
.blog-category-badge--cabling { background: rgba(156, 163, 175, 0.12); color: #9ca3af; }
.blog-category-badge--ni { background: rgba(52, 211, 153, 0.08); color: var(--green-secure); }

/* ==========================================================================
   STAT ITEM EXPLAINER TEXT
   ========================================================================== */

.stat-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* ==========================================================================
   HERO NETWORK VIDEO
   ========================================================================== */

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

#drakos-network-canvas {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: transparent;
  border-radius: 0;
}

.hero-network-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-network-poster {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {
  .hero-network-video {
    display: none;
  }

  .hero-network-poster {
    display: block;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Catch-all for stagger items beyond nth-child(10) */
.js-enabled .reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Canvas animation — reduced motion and mobile */
@media (prefers-reduced-motion: reduce) {
  #drakos-network-canvas {
    display: none;
  }
  .hero-network-poster {
    display: block;
  }
}

@media (max-width: 768px) {
  #drakos-network-canvas {
    display: none;
  }
  .hero-network-poster {
    display: block;
  }
}


/* ==========================================================================
   MOBILE CONTACT BAR — sticky bottom bar on small screens
   Appears only on mobile. Hidden on desktop where the header CTA is visible.
   ========================================================================== */

.mobile-contact-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-contact-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-card);
    border-top: 2px solid #0F766E;
    box-shadow: 0 -4px 20px rgba(23,59,87,0.2);
  }

  .mobile-contact-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
    min-height: 52px;
  }

  .mobile-contact-bar a:first-child {
    background: var(--gradient-blue);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .mobile-contact-bar a:last-child {
    background: transparent;
    color: #14B8A6;
  }

  .mobile-contact-bar a:active {
    opacity: 0.85;
  }

  /* Add bottom padding to body so content is not obscured by the bar */
  body {
    padding-bottom: 56px;
  }
}

/* ── v4 Additional Overrides ─────────────────────────── */
body { background: #F7F9FB; color: #111827; }

/* Footer explicit colours */
.footer { background: #0F3D5E !important; }
.footer h3, .footer h4 { color: #fff !important; }
.footer p  { color: rgba(255,255,255,0.7) !important; }
.footer a  { color: rgba(255,255,255,0.65) !important; transition: color 0.2s; }
.footer a:hover { color: #14B8A6 !important; }
.footer-bottom p { color: rgba(255,255,255,0.4) !important; }
.footer-bottom a { color: rgba(255,255,255,0.4) !important; }

/* Local confidence strip */
.local-confidence { background: #EEF2F6 !important; border-top: 1px solid #D1D5DB !important; }
.local-confidence p { color: #173B57 !important; }
.local-confidence strong { color: #173B57 !important; }

/* Mobile nav overlay */
@media (max-width: 768px) {
  .nav.active { background: #fff !important; border-top: 1px solid #D1D5DB !important; box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important; }
  .nav a { color: #111827 !important; }
  .nav a:hover { background: #EEF2F6 !important; color: #0F766E !important; }
  .mobile-contact-bar a:first-child { background: #F59E0B !important; color: #111827 !important; border-right: 1px solid rgba(0,0,0,0.08) !important; }
  .mobile-contact-bar a:last-child  { color: #14B8A6 !important; background: #173B57 !important; }
}

/* Service card icon SVG strokes — teal */
.service-card .icon svg { stroke: #0F766E !important; }

/* h2 underline in service/why-choose sections */
.services-grid h2::after,
.why-choose h2::after {
  background: linear-gradient(135deg,#173B57,#0F766E) !important;
  box-shadow: none !important;
}

/* Hero page — all inner text white */
.hero .hero-content h1 { color: #fff !important; }
.hero .hero-content p  { color: rgba(255,255,255,0.82) !important; }
.hero .hero-eyebrow    { color: #14B8A6 !important; }
.hero .hero-highlight  { color: #14B8A6 !important; -webkit-text-fill-color: #14B8A6 !important; background: none !important; }

/* Testimonials page */
.testimonial-card { background: #fff !important; border: 1px solid #D1D5DB !important; }
.testimonial-card::before { color: rgba(23,59,87,0.08) !important; }

/* Blog page styling */
article { color: #4B5563; }
article h2, article h3 { color: #173B57; }

/* v4 new component classes (from index-v4.html) */


/* ==========================================================================
   V4 HOMEPAGE COMPONENTS
   Classes used by index.html and the new design system
   ========================================================================== */

/* Design tokens (v4 palette) */
:root {
  --navy:         #173B57;
  --navy-dark:    #0F3D5E;
  --teal:         #0F766E;
  --teal-light:   #14B8A6;
  --amber:        #F59E0B;
  --amber-dark:   #C2410C;
  --bg:           #F7F9FB;
  --bg-section:   #EEF2F6;
  --surface:      #FFFFFF;
  --txt:          #111827;
  --txt-muted:    #4B5563;
  --border:       #D1D5DB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-card:  0 4px 16px rgba(0,0,0,0.07);
  --shadow-navy:  0 4px 24px rgba(23,59,87,0.18);
  --t:            0.2s ease;
}

/* --- V4 HEADER ---------------------------------------------------------- */
.v4-header {
  background: #fff;
  border-bottom: 1px solid #D1D5DB;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.v4-header .container {
  display: flex; align-items: center; gap: 1rem;
  height: 68px; padding: 0 24px;
}
.v4-logo {
  font-size: 1.25rem; font-weight: 800; color: #173B57;
  text-decoration: none; letter-spacing: 0.02em; white-space: nowrap;
}
.v4-logo:hover { color: #0F766E; }

.v4-nav { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.v4-nav a {
  color: #111827; font-size: 0.9rem; font-weight: 600; text-decoration: none;
  padding: 0.5rem 0.75rem; border-radius: 6px; transition: background 0.2s, color 0.2s;
}
.v4-nav a:hover { background: #EEF2F6; color: #173B57; }
.v4-nav .v4-nav-cta {
  background: #F59E0B; color: #111827; padding: 0.5rem 1.25rem;
  border-radius: 999px; font-weight: 700; margin-left: 0.5rem;
}
.v4-nav .v4-nav-cta:hover { background: #C2410C; color: #fff; }
.v4-header-phone {
  font-weight: 800; font-size: 0.95rem; color: #173B57;
  text-decoration: none; white-space: nowrap; margin-left: 0.75rem;
}
.v4-header-phone:hover { color: #0F766E; }

/* Dropdown */
.v4-dropdown { position: relative; }
.v4-dropdown-toggle {
  background: none; border: none; cursor: pointer; font-family: inherit;
  color: #111827; font-size: 0.9rem; font-weight: 600;
  padding: 0.5rem 0.75rem; border-radius: 6px;
  display: flex; align-items: center; gap: 0.3rem; transition: background 0.2s;
}
.v4-dropdown-toggle:hover { background: #EEF2F6; color: #173B57; }
.v4-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid #D1D5DB; border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); min-width: 280px; padding: 0.5rem; z-index: 200;
}
.v4-dropdown:hover .v4-dropdown-menu,
.v4-dropdown.open .v4-dropdown-menu { display: block; }
.v4-dropdown-menu a {
  display: flex; flex-direction: column; padding: 0.6rem 0.9rem;
  border-radius: 6px; text-decoration: none; transition: background 0.2s;
}
.v4-dropdown-menu a:hover { background: #EEF2F6; }
.v4-dd-title { font-size: 0.88rem; font-weight: 700; color: #173B57; }
.v4-dd-sub   { font-size: 0.78rem; color: #6B7280; margin-top: 1px; }

/* Hamburger */
.v4-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.v4-hamburger span { display: block; width: 24px; height: 2px; background: #173B57; border-radius: 2px; transition: all 0.25s; }
.v4-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.v4-hamburger.active span:nth-child(2) { opacity: 0; }
.v4-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 900px) {
  .v4-hamburger { display: flex; }
  .v4-header-phone { display: none; }
  .v4-nav {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-top: 1px solid #D1D5DB; padding: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); z-index: 999;
  }
  .v4-nav.active { display: flex; }
  .v4-nav a, .v4-dropdown-toggle { padding: 0.75rem 1rem; width: 100%; }
  .v4-dropdown-menu { position: static; border: none; box-shadow: none; background: #EEF2F6; margin-top: 0.25rem; }
  .v4-nav .v4-nav-cta { text-align: center; }
}

/* --- V4 BUTTONS --------------------------------------------------------- */
.btn-v4-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: 2px solid #F59E0B; cursor: pointer;
  background: #F59E0B; color: #111827;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-v4-primary:hover { background: #C2410C; border-color: #C2410C; color: #fff; transform: translateY(-1px); }

.btn-v4-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: 2px solid #173B57; cursor: pointer;
  background: transparent; color: #173B57;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-v4-secondary:hover { background: #173B57; color: #fff; transform: translateY(-1px); }

.btn-v4-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.45); cursor: pointer;
  background: transparent; color: #fff;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-v4-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }

.btn-v4-teal {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700;
  text-decoration: none; border: 2px solid #0F766E; cursor: pointer;
  background: #0F766E; color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.btn-v4-teal:hover { background: #0e6560; transform: translateY(-1px); }

/* --- V4 SECTION HELPERS ------------------------------------------------- */
.v4-section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #0F766E; margin-bottom: 0.75rem;
}
.v4-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85);
}
.v4-badge svg { flex-shrink: 0; }

/* --- V4 HERO ------------------------------------------------------------ */
.v4-hero {
  background: #173B57;
  background-image: radial-gradient(ellipse at 65% 50%, rgba(15,118,110,0.18) 0%, transparent 60%);
  color: #fff; padding: 4.5rem 0 5rem;
}
.v4-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.v4-hero h1 { color: #fff; margin-bottom: 1.25rem; font-size: clamp(2.1rem,5vw,3.8rem); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; }
.v4-hero-highlight { color: #14B8A6; }
.v4-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.7; }
.v4-hero-trust { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 1rem; }
.v4-hero-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }
.v4-hero-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* Hero visual panel */
.v4-hero-visual {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 2rem;
}
.v4-hero-contact-card h3 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.v4-hero-contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem; border-radius: 10px;
  background: rgba(255,255,255,0.08); margin-bottom: 0.75rem;
  text-decoration: none; transition: background 0.2s;
}
.v4-hero-contact-item:hover { background: rgba(255,255,255,0.14); }
.v4-ci-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #F59E0B; flex-shrink: 0;
}
.v4-ci-icon svg { color: #111827; }
.v4-ci-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.v4-ci-value { font-size: 1rem; font-weight: 700; color: #fff; }
.v4-hero-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.75rem; }
.v4-hero-service-pill {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.7rem; border-radius: 6px;
  background: rgba(255,255,255,0.06); font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 600;
}
.v4-hero-service-pill::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #14B8A6; flex-shrink: 0;
}

@media (max-width: 768px) {
  .v4-hero-grid { grid-template-columns: 1fr; }
  .v4-hero-visual { margin-top: 2rem; }
  .v4-hero { padding: 3rem 0 3.5rem; }
}

/* --- V4 STATS ----------------------------------------------------------- */
.v4-stats { background: #fff; border-bottom: 1px solid #D1D5DB; padding: 2rem 0; }
.v4-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.v4-stat-num { font-size: 2rem; font-weight: 800; color: #173B57; line-height: 1; }
.v4-stat-label { font-size: 0.82rem; color: #4B5563; margin-top: 0.3rem; font-weight: 600; }

@media (max-width: 600px) { .v4-stats-grid { grid-template-columns: repeat(2,1fr); } }

/* --- V4 PROBLEMS -------------------------------------------------------- */
.v4-problems { background: #EEF2F6; padding: 5rem 0; }
.v4-section-heading { margin-bottom: 0.75rem; color: #173B57; }
.v4-section-sub { color: #4B5563; font-size: 1.05rem; max-width: 640px; margin-bottom: 2.5rem; }
.v4-problem-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1rem; }
.v4-problem-card {
  background: #fff; border: 1px solid #D1D5DB; border-radius: 10px;
  padding: 1.25rem 1.5rem; text-decoration: none;
  display: flex; gap: 0.875rem; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.v4-problem-card:hover { border-color: #0F766E; box-shadow: 0 2px 8px rgba(15,118,110,0.1); transform: translateY(-2px); }
.v4-problem-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,118,110,0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.v4-problem-icon svg { color: #0F766E; }
.v4-problem-card h3 { font-size: 0.92rem; font-weight: 700; color: #173B57; margin-bottom: 0.2rem; }
.v4-problem-card p  { font-size: 0.82rem; color: #4B5563; line-height: 1.5; }
.v4-problems-cta { margin-top: 2rem; text-align: center; }

/* --- V4 SERVICE CARDS --------------------------------------------------- */
.v4-services { background: #fff; padding: 5rem 0; }
.v4-services-header { text-align: center; margin-bottom: 3rem; }
.v4-services-header h2 { color: #173B57; }
.v4-services-header p  { max-width: 640px; margin: 0.75rem auto 0; color: #4B5563; }
.v4-service-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }
.v4-service-card {
  background: #F7F9FB; border: 1px solid #D1D5DB; border-radius: 16px;
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.v4-service-card:hover { box-shadow: 0 8px 32px rgba(23,59,87,0.14); transform: translateY(-3px); border-color: #173B57; }
.v4-service-card-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #EEF2F6; }
.v4-service-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.v4-service-card:hover .v4-service-card-img img { transform: scale(1.04); }
.v4-service-card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg,#173B57 0%,#0F3D5E 100%);
  display: flex; align-items: center; justify-content: center;
}
.v4-service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.v4-service-card-icon {
  width: 40px; height: 40px; border-radius: 6px;
  background: rgba(15,118,110,0.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.875rem;
}
.v4-service-card-icon svg { color: #0F766E; }
.v4-service-card-body h3 { font-size: 1.1rem; color: #173B57; margin-bottom: 0.6rem; }
.v4-service-card-body p  { font-size: 0.9rem; color: #4B5563; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.v4-service-card-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.v4-service-link {
  font-size: 0.82rem; font-weight: 700; color: #0F766E; text-decoration: none;
  padding: 0.35rem 0.6rem; border-radius: 6px; background: rgba(15,118,110,0.08);
  transition: background 0.2s, color 0.2s;
}
.v4-service-link:hover { background: #0F766E; color: #fff; }

/* --- V4 ONE CONTACT (NAVY) ---------------------------------------------- */
.v4-one-contact { background: #173B57; padding: 5rem 0; }
.v4-one-contact h2, .v4-one-contact h3 { color: #fff; }
.v4-one-contact p { color: rgba(255,255,255,0.75); }
.v4-one-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.v4-suppliers-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; }
.v4-supplier-list, .v4-drakos-list { display: flex; flex-direction: column; gap: 0.5rem; }
.v4-supplier-chip {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 0.5rem 0.85rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.6); text-align: center;
}
.v4-drakos-chip {
  background: rgba(15,118,110,0.25); border: 1px solid rgba(20,184,166,0.35);
  border-radius: 6px; padding: 0.5rem 0.85rem;
  font-size: 0.82rem; font-weight: 700; color: #14B8A6; text-align: center;
}
.v4-vs-label {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; font-size: 0.78rem; font-weight: 800;
  color: rgba(255,255,255,0.5); flex-shrink: 0; align-self: center;
}

@media (max-width: 768px) {
  .v4-one-contact-grid { grid-template-columns: 1fr; }
  .v4-suppliers-vs { grid-template-columns: 1fr; }
  .v4-vs-label { display: none; }
}

/* --- V4 HUMAN RISK SUITE (DEEP NAVY) ------------------------------------ */
.v4-human-risk { background: #0F3D5E; padding: 5rem 0; }
.v4-human-risk h2, .v4-human-risk h3 { color: #fff; }
.v4-human-risk p { color: rgba(255,255,255,0.72); }
.v4-human-risk-header { text-align: center; margin-bottom: 3rem; }
.v4-risk-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.25rem; }
.v4-risk-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.5rem; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.v4-risk-card:hover { background: rgba(255,255,255,0.09); border-color: #14B8A6; transform: translateY(-2px); }
.v4-risk-card-icon {
  width: 40px; height: 40px; border-radius: 6px;
  background: rgba(20,184,166,0.2); display: flex; align-items: center;
  justify-content: center; margin-bottom: 0.875rem;
}
.v4-risk-card-icon svg { color: #14B8A6; }
.v4-risk-card-brand { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #14B8A6; margin-bottom: 0.35rem; }
.v4-risk-card h3 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; }
.v4-risk-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.v4-risk-cta { text-align: center; margin-top: 2.5rem; }

/* --- V4 WHAT HAPPENS NEXT (LIGHT) --------------------------------------- */
.v4-next { background: #EEF2F6; padding: 5rem 0; }
.v4-next-header { text-align: center; margin-bottom: 3rem; }
.v4-next-header h2 { color: #173B57; }
.v4-steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative; counter-reset: step;
}
.v4-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(to right, #0F766E 0%, #14B8A6 100%); z-index: 0;
}
.v4-step { text-align: center; padding: 0 0.75rem; position: relative; z-index: 1; }
.v4-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: #0F766E; color: #fff; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 0 0 6px #EEF2F6;
}
.v4-step:last-child .v4-step-num { background: #F59E0B; color: #111827; }
.v4-step h3 { font-size: 0.88rem; color: #173B57; margin-bottom: 0.35rem; }
.v4-step p  { font-size: 0.8rem; color: #4B5563; }
.v4-next-cta { text-align: center; margin-top: 2.5rem; }

@media (max-width: 700px) {
  .v4-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .v4-steps::before { display: none; }
  .v4-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .v4-step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; }
}

/* --- V4 TRUST (NAVY) ---------------------------------------------------- */
.v4-trust { background: #173B57; padding: 4.5rem 0; }
.v4-trust h2 { color: #fff; text-align: center; margin-bottom: 0.75rem; }
.v4-trust-sub { color: rgba(255,255,255,0.7); text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.v4-trust-points { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 1rem; margin-bottom: 2.5rem; }
.v4-trust-point {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: rgba(255,255,255,0.06); border-radius: 10px; padding: 1rem 1.1rem;
}
.v4-trust-point-tick {
  width: 28px; height: 28px; border-radius: 50%; background: #0F766E;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.v4-trust-point-tick svg { color: #fff; }
.v4-trust-point p { font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 600; margin: 0; }
.v4-trust-cta { text-align: center; }

/* --- V4 INDUSTRIES (WHITE) ---------------------------------------------- */
.v4-industries { background: #fff; padding: 4rem 0; }
.v4-industries-header { text-align: center; margin-bottom: 2rem; }
.v4-industries-header h2 { color: #173B57; font-size: clamp(1.4rem,2.5vw,2rem); }
.v4-industries-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 0.875rem; }
.v4-industry-card {
  background: #F7F9FB; border: 1px solid #D1D5DB; border-radius: 10px;
  padding: 1.25rem 1rem; text-align: center; text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.v4-industry-card:hover { border-color: #0F766E; box-shadow: 0 2px 8px rgba(15,118,110,0.1); transform: translateY(-2px); }
.v4-industry-card svg { color: #0F766E; margin-bottom: 0.6rem; }
.v4-industry-card h3 { font-size: 0.85rem; color: #173B57; margin-bottom: 0.25rem; }
.v4-industry-card p  { font-size: 0.75rem; color: #4B5563; }

/* --- V4 FINAL CTA (NAVY) ------------------------------------------------ */
.v4-final-cta { background: #173B57; padding: 5rem 0; text-align: center; }
.v4-final-cta h2 { color: #fff; margin-bottom: 1rem; }
.v4-final-cta p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.v4-final-cta-buttons { display: flex; gap: 0.875rem; justify-content: center; flex-wrap: wrap; }
.v4-final-trust { margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* --- V4 FOOTER (DEEP NAVY) ---------------------------------------------- */
.v4-footer { background: #0F3D5E; color: rgba(255,255,255,0.7); padding: 3rem 0 1.5rem; }
.v4-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.v4-footer h4 { color: #fff; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.875rem; }
.v4-footer p  { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
.v4-footer ul { list-style: none; padding: 0; }
.v4-footer ul li { margin-bottom: 0.4rem; }
.v4-footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.v4-footer ul li a:hover { color: #14B8A6; }
.v4-footer-brand { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.v4-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.v4-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.v4-footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.v4-footer-bottom a:hover { color: #14B8A6; }
.v4-footer-areas { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
.v4-footer-areas a { color: rgba(255,255,255,0.35); text-decoration: none; }
.v4-footer-areas a:hover { color: #14B8A6; }
.v4-footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.v4-footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.v4-footer-social a:hover { color: #14B8A6; }

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

@media (max-width: 480px) { .v4-footer-grid { grid-template-columns: 1fr; } }

/* --- V4 MOBILE CONTACT BAR --------------------------------------------- */
@media (max-width: 768px) {
  .mobile-contact-bar {
    background: #173B57 !important;
    border-top: 2px solid #0F766E !important;
  }
  .mobile-contact-bar a:first-child {
    background: #F59E0B !important; color: #111827 !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
  }
  .mobile-contact-bar a:last-child { color: #14B8A6 !important; background: transparent !important; }
}

/* --- UTILITY ------------------------------------------------------------ */
.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 0.75rem 1.5rem; background: #F59E0B; color: #111827;
  font-weight: 700; border-radius: 6px; text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Missing class additions */
.v4-hero-content { position: relative; z-index: 1; }
.v4-one-contact-text p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
