/* ============================================================
   NOVASHIELD IT — THEME 1: DARK NAVY
   Deep navy background, electric blue & cyan accents
   ============================================================ */
:root {
  /* Core palette */
  --bg-primary: #080d26;
  --bg-secondary: #0e1434;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(46, 110, 247, 0.07);

  /* Brand colours */
  --color-primary: #2e6ef7;
  --color-secondary: #7b5cff;
  --color-accent: #00d4ff;
  --color-green: #00c878;
  --color-orange: #ff8232;
  --color-rose: #ff5078;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #8895b3;
  --text-muted: rgba(136, 149, 179, 0.6);

  /* Borders & shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-brand: rgba(46, 110, 247, 0.28);
  --shadow-sm: 0 4px 24px rgba(46, 110, 247, 0.4);
  --shadow-lg: 0 8px 40px rgba(46, 110, 247, 0.55);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --transition: 0.25s ease;

  /* Gradient helpers */
  --grad-primary: linear-gradient(135deg, #2e6ef7, #7b5cff);
  --grad-accent: linear-gradient(90deg, #2e6ef7, #00d4ff);
  --grad-cta: linear-gradient(135deg, #1a4fbd 0%, #0a2a80 50%, #7b5cff 100%);
}

/* ── FONTS ── */
@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'DMSans';
  src: url('fonts/DMSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DMSans', 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  line-height: 1.15;
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
}

::selection {
  background: rgba(46, 110, 247, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity .5s, visibility .5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.preloader-logo span {
  color: var(--color-accent);
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 2px;
  animation: preload 1.4s ease forwards;
}

@keyframes preload {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  transform: translateY(12px);
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-3px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(8, 13, 38, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 13, 38, 0.97);
  padding: 12px 5%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo img {
  height: 36px;
}

.navbar-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.navbar-logo-text span {
  color: var(--color-accent);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  transition: color var(--transition), border-color var(--transition);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: transform .3s, opacity .3s, width .3s;
}

.hamburger span:nth-child(2) {
  width: 70%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8, 13, 38, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 5% 28px;
  z-index: 99;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform .3s, opacity .3s;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

.mobile-menu .btn-primary {
  margin-top: 20px;
  display: block;
  text-align: center;
}

/* ── THEME SWITCHER ── */
.theme-switcher {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.theme-btn {
  width: 36px;
  height: 36px;
  border: none;
  cursor: pointer;
  transition: width var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  writing-mode: horizontal-tb;
  position: relative;
  overflow: hidden;
}

.theme-btn:first-child {
  border-radius: 8px 0 0 0;
}

.theme-btn:last-child {
  border-radius: 0 0 0 8px;
}

.theme-btn:hover {
  width: 80px;
  transform: translateX(-44px);
}

.theme-btn .btn-label {
  display: none;
  white-space: nowrap;
  font-size: .65rem;
}

.theme-btn:hover .btn-label {
  display: inline;
}

.theme-btn.active {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.theme-btn[data-theme="dark-navy"] {
  background: #2e6ef7;
}

.theme-btn[data-theme="cyber-green"] {
  background: #00b96b;
}

.theme-btn[data-theme="solar-orange"] {
  background: #e85d04;
}

.theme-btn[data-theme="light-pro"] {
  background: #1e3a5f;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .96rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .96rem;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  background: rgba(0, 212, 255, 0.07);
  color: var(--color-accent);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--color-primary);
  padding: 14px 36px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.28);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
  color: var(--color-primary);
}

.btn-sm {
  padding: 9px 20px;
  font-size: .85rem;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 100px 5%;
}

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

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -.6px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  color: var(--text-secondary);
  font-size: .97rem;
  max-width: 560px;
  line-height: 1.78;
}

.gradient-text {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .18s
}

.d3 {
  transition-delay: .28s
}

.d4 {
  transition-delay: .38s
}

.d5 {
  transition-delay: .48s
}

.d6 {
  transition-delay: .58s
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hero-bg.svg');
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 45%, rgba(46, 110, 247, .18) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(46, 110, 247, 0.14);
  border: 1px solid rgba(46, 110, 247, 0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 9px var(--color-accent);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .2
  }
}

.hero h1 {
  font-size: clamp(2.7rem, 5.8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
  animation: fadeUp .7s .12s ease both;
}

.hero p.hero-sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp .7s .24s ease both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp .7s .36s ease both;
}

.hero-orb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .9s .2s ease both;
}

.hero-orb img {
  width: 420px;
  max-width: 100%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 56px;
  animation: fadeUp .7s .5s ease both;
}

.hero-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  padding: 8px 15px;
  font-size: .83rem;
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.hero-chip:hover {
  border-color: var(--color-accent);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  color: var(--text-secondary);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeUp 1s .8s ease both;
  z-index: 1;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  80% {
    transform: translateY(10px);
    opacity: 0
  }

  100% {
    transform: translateY(0);
    opacity: 0
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

/* ── CLIENTS STRIP ── */
.clients-strip {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 44px 5%;
  overflow: hidden;
}

.clients-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 28px;
}

.clients-track-wrap {
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 24px;
  align-items: center;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

.clients-track img {
  height: 44px;
  opacity: .65;
  filter: grayscale(30%);
  transition: opacity var(--transition);
}

.clients-track img:hover {
  opacity: 1;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── STATS ── */
.stats-section {
  padding: 80px 5%;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
}

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

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-lbl {
  font-size: .84rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

/* ── ABOUT ── */
.about {
  background: var(--bg-secondary);
}

.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-brand);
  position: relative;
}

.about-img-wrap img {
  width: 100%;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46, 110, 247, .14), transparent 70%);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(8, 13, 38, .88);
  border: 1px solid var(--border-brand);
  border-radius: var(--r-md);
  padding: 14px 18px;
  backdrop-filter: blur(12px);
}

.about-badge .badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-badge .badge-lbl {
  font-size: .78rem;
  color: var(--text-secondary);
  margin-top: 3px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: .93rem;
  color: var(--text-secondary);
}

.check-list li:last-child {
  border-bottom: none;
}

.chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(0, 212, 255, .12);
  border: 1px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: .65rem;
}

/* ── SERVICES ── */
.services {
  padding: 100px 5%;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

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

.s-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  margin-bottom: 20px;
  overflow: hidden;
}

.s-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.72;
}

.s-feat-list li {
  font-size: .83rem;
  color: var(--text-secondary);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-feat-list li::before {
  content: '›';
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1rem;
}

.s-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition), gap var(--transition);
}

.s-learn:hover {
  color: var(--color-accent);
  gap: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.extra-services-strip {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}

.extra-services-label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.extra-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.extra-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 110, 247, .08);
  border: 1px solid var(--border-brand);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: .83rem;
  color: var(--text-secondary);
  transition: color var(--transition), border-color var(--transition);
}

.extra-chip:hover {
  color: var(--text-primary);
  border-color: var(--color-accent);
}

/* ── PROCESS ── */
.process {
  background: var(--bg-secondary);
}

.process-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 22px 14px;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  transition: background var(--transition);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:hover {
  background: rgba(46, 110, 247, .05);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  min-width: 48px;
  transition: color var(--transition);
}

.process-step:hover .step-num {
  color: var(--color-primary);
}

.step-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-body p {
  font-size: .88rem;
  color: var(--text-secondary);
  margin: 0;
}

.process-cta-card {
  background: linear-gradient(140deg, rgba(46, 110, 247, .15), rgba(123, 92, 255, .12));
  border: 1px solid var(--border-brand);
  border-radius: var(--r-xl);
  padding: 44px 38px;
  position: sticky;
  top: 90px;
}

.process-cta-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.process-cta-card p {
  font-size: .92rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
}

.mini-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mini-feature h6 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.mini-feature p {
  font-size: .78rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ── WHY US ── */
.why-us {
  padding: 100px 5%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 30px 24px;
  transition: transform var(--transition), border-color var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-brand);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .87rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg-secondary);
  padding: 100px 5%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-4px);
}

.t-stars {
  color: #f5a623;
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.t-quote {
  font-size: .92rem;
  color: #aab4cc;
  line-height: 1.78;
  margin-bottom: 22px;
  font-style: italic;
}

.t-quote::before {
  content: '"';
  color: var(--color-accent);
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -.3em;
  margin-right: 3px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.t-author h6 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.t-author span {
  font-size: .78rem;
  color: var(--text-secondary);
}

/* ── FAQ ── */
.faq-section {
  padding: 100px 5%;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open,
.faq-item:hover {
  border-color: var(--border-brand);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  gap: 20px;
  background: var(--bg-card);
  transition: color var(--transition);
  user-select: none;
}

.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--color-accent);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(46, 110, 247, .12);
  border: 1px solid rgba(46, 110, 247, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  transition: background var(--transition), transform .35s;
}

.faq-item.open .faq-toggle {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 5%;
  background-image: url('images/cta-bg.svg');
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 38px;
  line-height: 1.7;
}

.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ── CONTACT ── */
.contact {
  background: var(--bg-secondary);
  padding: 100px 5%;
}

.contact-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 20px;
}

.contact-highlight-item p {
  font-size: .88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 50px 44px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  background: rgba(46, 110, 247, .14);
  border: 1px solid var(--border-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info-item h6 {
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-info-item p {
  font-size: .93rem;
  color: var(--text-primary);
  margin: 0;
}

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

.form-label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
  letter-spacing: .04em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: 'DMSans', sans-serif;
  font-size: .92rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(46, 110, 247, .07);
}

.form-control::placeholder {
  color: rgba(136, 149, 179, .5);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238895b3' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* ── FOOTER ── */
footer {
  background: #04071a;
  border-top: 1px solid var(--border-subtle);
  padding: 0px 5% 32px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand-name span {
  color: var(--color-accent);
}

.footer-desc {
  font-size: .86rem;
  color: var(--text-secondary);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-secondary);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.footer-socials a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(0, 212, 255, .08);
}

.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: .86rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.footer-newsletter p {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-size: .86rem;
  outline: none;
  transition: border-color var(--transition);
}

.footer-newsletter-form input:focus {
  border-color: var(--color-primary);
}

.footer-newsletter-form input::placeholder {
  color: rgba(136, 149, 179, .45);
}

.footer-newsletter-form button {
  padding: 10px 18px;
  background: var(--grad-primary);
  border: none;
  border-radius: var(--r-sm);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
  transition: opacity var(--transition);
}

.footer-newsletter-form button:hover {
  opacity: .88;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-bottom p {
  font-size: .81rem;
  color: var(--text-secondary);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-accent);
}

/* ── COLOUR HELPERS ── */
.bg-blue-faint {
  background: rgba(46, 110, 247, .2);
}

.bg-teal-faint {
  background: rgba(0, 212, 255, .15);
}

.bg-purple-faint {
  background: rgba(123, 92, 255, .2);
}

.bg-green-faint {
  background: rgba(0, 200, 120, .15);
}

.bg-orange-faint {
  background: rgba(255, 130, 50, .15);
}

.bg-rose-faint {
  background: rgba(255, 80, 120, .15);
}

/* ── GRID LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 36px 28px;
  }

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

  .navbar-links,
  .navbar-actions .btn-ghost {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-orb {
    display: none;
  }
}

@media(max-width:640px) {
  section {
    padding: 70px 4%;
  }

  .hero {
    padding: 110px 4% 60px;
  }

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

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

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

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

  .footer {
    padding: 50px 4% 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner {
    padding: 70px 4%;
  }
}

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

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

  .hero-chips {
    gap: 8px;
  }

  .hero-btns {
    flex-direction: column;
  }
}