:root {
  --orange: #E8721E;
  --orange-light: #ff8c3a;
  --dark-navy: #2C3E6B;
  --navy: #344270;
  --light-gray: #F5F6FA;
  --white: #ffffff;
  --text: #2d3748;
  --text-muted: #718096;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 26, 53, 0.95);
  backdrop-filter: blur(16px);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-bottom: 1px solid rgba(232, 114, 30, 0.15);
  animation: navSlideDown 0.6s ease forwards;
}

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-logo img {
  height: 52px;
  transition: transform 0.3s;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 4px;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-links a:hover::after {
  left: 15%;
  right: 15%;
}

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

.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: 4px;
  padding: 8px 22px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #d45e0a !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 114, 30, 0.4);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1628 0%, #1a2545 45%, #0f1a35 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(232, 114, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 114, 30, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 4s ease-in-out infinite alternate;
}

@keyframes gridPulse {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat linear infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 114, 30, 0.18), transparent 70%);
  top: -100px;
  right: -100px;
  animation-duration: 8s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(44, 62, 107, 0.5), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation-duration: 10s;
  animation-direction: reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 114, 30, 0.12), transparent 70%);
  top: 40%;
  left: 30%;
  animation-duration: 6s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 10px) scale(0.95);
  }
}

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

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  animation: particleDrift linear infinite;
  opacity: 0;
}

@keyframes particleDrift {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(30px);
    opacity: 0;
  }
}

.radar {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  z-index: 0;
  opacity: 0.1;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--orange);
  border-radius: 50%;
  animation: radarPulse 3s ease-out infinite;
}

.radar-ring:nth-child(1) {
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.radar-ring:nth-child(2) {
  width: 160px;
  height: 160px;
  animation-delay: 0.5s;
}

.radar-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  animation-delay: 1s;
}

.radar-ring:nth-child(4) {
  width: 320px;
  height: 320px;
  animation-delay: 1.5s;
}

@keyframes radarPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 114, 30, 0.12);
  border: 1px solid rgba(232, 114, 30, 0.35);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: badgePop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--orange);
}

@keyframes dotBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--orange);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 2px var(--orange);
  }
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 0;
}

.hero-headline .word {
  display: inline-block;
  animation: wordReveal 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-headline .word.orange {
  color: var(--orange);
}

.hero-headline .word:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-headline .word:nth-child(2) {
  animation-delay: 0.65s;
}

.hero-headline .word:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-headline .word:nth-child(4) {
  animation-delay: 0.95s;
}

.hero-headline .word:nth-child(5) {
  animation-delay: 1.1s;
}

.hero-headline .word:nth-child(6) {
  animation-delay: 1.25s;
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(40deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.headline-underline {
  height: 4px;
  width: 0;
  margin: 14px 0 24px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), transparent);
  border-radius: 2px;
  animation: underlineGrow 1s ease 1.4s forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 180px;
    opacity: 1;
  }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.8s ease 1.2s both;
}

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

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1.4s both;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: #d45e0a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 114, 30, 0.5);
}

.btn-arrow {
  transition: transform 0.3s;
  display: inline-block;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  background: rgba(232, 114, 30, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
  animation: fadeUp 0.8s ease 1.6s both;
}

.stat-item {
  text-align: center;
  padding: 22px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: default;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-item:hover {
  background: rgba(232, 114, 30, 0.08);
  transform: translateY(-4px);
  border-color: rgba(232, 114, 30, 0.3);
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  display: block;
  text-shadow: 0 0 20px rgba(232, 114, 30, 0.3);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: cardSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  opacity: 0;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 114, 30, 0.06), transparent);
  transition: left 0.5s;
}

.hero-card:hover::before {
  left: 150%;
}

.hero-card:hover {
  background: rgba(232, 114, 30, 0.08);
  border-color: rgba(232, 114, 30, 0.25);
  transform: translateX(-6px);
  box-shadow: 4px 0 20px rgba(232, 114, 30, 0.15);
}

.hero-card:nth-child(1) {
  animation-delay: 0.9s;
}

.hero-card:nth-child(2) {
  animation-delay: 1.1s;
}

.hero-card:nth-child(3) {
  animation-delay: 1.3s;
}

.hero-card:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--orange), #c55c0a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(232, 114, 30, 0.3);
}

.hero-card-icon svg {
  width: 24px;
  height: 24px;
}

.hero-card:hover .hero-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(232, 114, 30, 0.5);
}

.hero-card-text h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-card-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-top: 3px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0, 200, 100, 0.12);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #00c864;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.08em;
}

.live-dot {
  width: 5px;
  height: 5px;
  background: #00c864;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* ── SECTIONS ── */
section {
  padding: 90px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── ABOUT ── */
#about {
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.15;
}

.about-text h2 span {
  color: var(--orange);
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: white;
  border-radius: 8px;
  border-left: 3px solid var(--orange);
  transition: all 0.3s;
  cursor: default;
}

.about-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.about-feature-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 0;
}

.about-image-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: white;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  cursor: default;
}

.about-card:first-child {
  grid-column: 1/-1;
  background: var(--dark-navy);
}

.about-card:first-child .about-card-num {
  color: var(--orange);
}

.about-card:first-child .about-card-label {
  color: rgba(255, 255, 255, 0.65);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.about-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark-navy);
  display: block;
}

.about-card-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* ── CLIENTS SECTION ── */
#clients {
  background: white;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.client-card {
  background: var(--light-gray);
  border: 1px solid #e8ecf5;
  border-radius: 12px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: default;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(44, 62, 107, 0.1);
  border-color: var(--orange);
}

.client-logo {
  max-width: 120px;
  max-height: 60px;
  filter: grayscale(0.3);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0);
  opacity: 1;
}

/* ── SERVICES ── */
#services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid #e8ecf5;
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: auto;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232, 114, 30, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none; 
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 62, 107, 0.14);
  border-color: transparent;
}

.service-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--dark-navy), #1a2545);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 14px rgba(44, 62, 107, 0.25);
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(44, 62, 107, 0.4);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: var(--orange);
}

/* ── SERVICE DESCRIPTION — 6-line clamp ── */
.service-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* ── READ MORE LINK ── */
.service-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  position: relative;
  width: fit-content;
}

.service-read-more::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.25s;
}

.service-read-more:hover::after {
  width: 100%;
}

.service-read-more:hover {
  color: #d45e0a;
  gap: 8px;
}

.service-tag {
  display: inline-block;
  background: rgba(232, 114, 30, 0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
  width: fit-content;        
  align-self: flex-start;   
}

/* ── WHY ── */
#why {
  background: var(--dark-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232, 114, 30, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 114, 30, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

#why .section-title {
  color: white;
}

#why .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-card {
  padding: 32px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  text-align: center;
  transition: all 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 114, 30, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  border-color: rgba(232, 114, 30, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}

.why-icon svg {
  width: 38px;
  height: 38px;
  transition: transform 0.4s;
}

.why-card:hover .why-icon svg {
  transform: scale(1.2) rotate(-10deg);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── SECTORS ── */
#sectors {
  background: var(--light-gray);
}

.sectors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.sector-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: white;
  border: 2px solid #e8ecf5;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-navy);
  transition: all 0.3s;
  cursor: default;
}

.sector-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(232, 114, 30, 0.18);
}

.s-icon {
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.sector-chip:hover .s-icon {
  transform: scale(1.2) rotate(-10deg);
}

/* ── CONTACT ── */
#contact {
  background: white;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.contact-info h2 span {
  color: var(--orange);
}

.contact-info>p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s;
  cursor: default;
}

.contact-item:hover {
  background: rgba(232, 114, 30, 0.06);
  transform: translateX(6px);
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.1) rotate(-5deg);
}

.contact-item-text h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.95rem;
  color: var(--dark-navy);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-top: 2px;
}

.contact-item-text a:hover {
  color: var(--orange);
}

.contact-form {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 36px;
}

.contact-form h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #dde3ef;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: all 0.25s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 114, 30, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.form-submit:hover::before {
  transform: translateX(100%);
}

.form-submit:hover {
  background: #d45e0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 114, 30, 0.4);
}

/* ── FOOTER ── */
footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 40px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-col h4 {
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.86rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  transition: transform 0.2s;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-col ul li a:hover::before {
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom span {
  color: var(--orange);
}

/* ── FLOATING CALL BUTTON ── */
.phone-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 114, 30, 0.5);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.phone-float::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(232, 114, 30, 0.5);
  animation: phoneRing 2.5s ease-out infinite;
}

@keyframes phoneRing {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.phone-float:hover {
  transform: scale(1.12);
  background: #d45e0a;
  box-shadow: 0 8px 28px rgba(232, 114, 30, 0.65);
}

.phone-float svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  nav {
    padding: 0 20px;
  }

  /* nav-links is handled by the smart nav block below — do NOT set display:none here */
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .hero-content {
    padding: 60px 20px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ═══════════════════════════════════════════════
   CUSTOM SCROLLBAR — SecureHub
   Add this to your service-page.css or style.css
═══════════════════════════════════════════════ */

/* ── Firefox ── */
* {
  scrollbar-width: thin;
  scrollbar-color: #e8721e rgba(15, 24, 48, 0.95);
}

/* ── Chrome / Edge / Safari ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 24, 48, 0.95);
  border-left: 1px solid rgba(232, 114, 30, 0.08);
}

::-webkit-scrollbar-thumb {
  background: #e8721e;
  border-radius: 10px;
  border: 2px solid rgba(15, 24, 48, 0.95);
  transition: background 0.3s ease, border-width 0.3s ease, box-shadow 0.3s ease;
}

/* ── Idle state (not scrolling) ── */
::-webkit-scrollbar-thumb:not(:active) {
  background: #e8721e;
  box-shadow: none;
}

/* ── Hover state ── */
::-webkit-scrollbar-thumb:hover {
  background: #ff9a4d;
  border-width: 1px;
  box-shadow:
    0 0 8px #e8721e,
    0 0 18px rgba(232, 114, 30, 0.5);
}

/* ── Active / dragging state ── */
::-webkit-scrollbar-thumb:active {
  background: #ff6a00;
  border-width: 1px;
  box-shadow:
    0 0 12px #e8721e,
    0 0 28px rgba(232, 114, 30, 0.7);
}

::-webkit-scrollbar-corner {
  background: rgba(15, 24, 48, 0.95);
}

/* ══════════════════════════════════════════════
   SCROLL-TRIGGERED GLOW ANIMATION
   The .is-scrolling class is toggled by JS below.
   The scrollbar thumb glows orange while scrolling
   and fades back when the user stops.
══════════════════════════════════════════════ */
body.is-scrolling::-webkit-scrollbar-thumb {
  background: #ff9a4d;
  border-width: 1px;
  box-shadow:
    0 0 10px #e8721e,
    0 0 22px rgba(232, 114, 30, 0.65),
    0 0 40px rgba(232, 114, 30, 0.25);
  transition: background 0.1s ease, box-shadow 0.1s ease;
}

/* ── Scrollbar track glow while scrolling ── */
body.is-scrolling::-webkit-scrollbar-track {
  border-left: 1px solid rgba(232, 114, 30, 0.25);
  transition: border-color 0.1s ease;
}
/* ── SMART NAV — override everything ── */
nav {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s ease,
              background 0.4s ease !important;
}

nav.nav--hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

nav.nav--scrolled {
  background: rgba(6, 12, 26, 0.95) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5) !important;
  border-bottom-color: rgba(232, 114, 30, 0.1) !important;
}

nav.nav--hidden,
nav.nav--scrolled {
  animation: none !important;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: none;
  border: none;
  transition: background 0.2s;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: all 0.35s ease;
}

/* Animated X when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 12, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 18px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(232, 114, 30, 0.2);
    z-index: 999;
    /* Hidden by default */
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover {
    background: rgba(232, 114, 30, 0.08);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center !important;
    border-bottom: none !important;
  }
}