/* Next Wave Soft v2 — cinematic brand system */

:root {
  --navy: #071528;
  --navy-deep: #030a14;
  --navy-mid: #0c2748;
  --royal: #0070f3;
  --royal-dark: #0056c7;
  --sky: #22b8ff;
  --sky-soft: #7dd3ff;
  --cyan: #00e0ff;
  --surface: #f4f7fb;
  --surface-soft: #e8eef7;
  --surface-card: #ffffff;
  --text: #071528;
  --text-muted: #4d6078;
  --line: rgba(7, 21, 40, 0.1);
  --shadow: 0 24px 64px rgba(7, 21, 40, 0.1);
  --shadow-lg: 0 32px 80px rgba(0, 112, 243, 0.2);
  --radius: 20px;
  --radius-sm: 14px;
  --font-ui: "Poppins", system-ui, sans-serif;
  --font-display: "Montserrat", "Poppins", sans-serif;
  --container: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

#main {
  overflow-x: hidden;
  max-width: 100%;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover { color: var(--royal-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 0.55em;
  color: var(--navy);
  font-weight: 700;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--sky), var(--royal), var(--cyan));
  box-shadow: 0 0 18px rgba(34, 184, 255, 0.6);
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
}
body.has-cursor .cursor-glow { opacity: 1; }

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 247, 251, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(7, 21, 40, 0.07);
}

/* Transparent over hero */
.site-header-hero:not(.is-scrolled) {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header-hero:not(.is-scrolled) .nav-list a,
.site-header-hero:not(.is-scrolled) .btn-ghost {
  color: #fff;
}

.site-header-hero:not(.is-scrolled) .nav-list a:hover {
  color: var(--sky-soft);
  background: rgba(255, 255, 255, 0.1);
}

.site-header-hero:not(.is-scrolled) .brand-logo {
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0.25rem 0.45rem;
}

.site-header-hero:not(.is-scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.site-header-hero:not(.is-scrolled) .nav-toggle span { background: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  transition: transform 0.35s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.04); }

.brand-logo-footer {
  height: 64px;
  background: #fff;
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  position: relative;
  color: var(--navy);
  font-weight: 650;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .is-active > a {
  color: var(--royal);
  background: rgba(0, 112, 243, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(7, 21, 40, 0.06);
  border: 1px solid var(--line);
  gap: 2px;
}

.currency-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s, box-shadow 0.25s;
}

.currency-btn.is-active {
  background: linear-gradient(135deg, var(--royal), #1aa0ff);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 112, 243, 0.3);
}

.currency-toggle-header {
  margin-right: 0.15rem;
}

.site-header-hero:not(.is-scrolled) .currency-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header-hero:not(.is-scrolled) .currency-btn {
  color: rgba(255, 255, 255, 0.85);
}

.site-header-hero:not(.is-scrolled) .currency-btn.is-active {
  background: #fff;
  color: var(--royal);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.currency-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.currency-toggle-wrap-top {
  margin: 0 0 2rem;
}

.currency-toggle-wrap-hero {
  margin-top: 1.5rem;
  justify-content: flex-start;
}

.currency-toggle-wrap-hero .currency-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.currency-toggle-wrap-hero .currency-btn {
  color: rgba(255, 255, 255, 0.85);
}

.currency-toggle-wrap-hero .currency-btn.is-active {
  background: #fff;
  color: var(--royal);
}

/* Dual currency price display — QAR default */
.nws-price .price-usd { display: none; }
.nws-price .price-qar { display: inline; }

body[data-currency="usd"] .nws-price .price-qar { display: none; }
body[data-currency="usd"] .nws-price .price-usd { display: inline; }

.nws-price.service-price {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--royal);
  font-size: 0.92rem;
}

.package-price .nws-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.price-tag .nws-price {
  font-weight: 800;
  color: var(--royal);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== Buttons ========== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 750;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.btn > span { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-3px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.84rem; }

.btn-primary {
  background: linear-gradient(135deg, #1aa0ff 0%, var(--royal) 50%, #0047b8 100%);
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 112, 243, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 112, 243, 0.5);
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.5), transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn-glow:hover::before { transform: translateX(130%); }

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(7, 21, 40, 0.12);
  box-shadow: 0 10px 28px rgba(7, 21, 40, 0.06);
}
.btn-secondary:hover {
  color: var(--royal);
  border-color: rgba(0, 112, 243, 0.35);
}

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { color: var(--royal); }

.btn-on-dark {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.btn-on-dark:hover { color: var(--royal); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cta-group { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-group-center { justify-content: center; }

/* ========== BANNER — two-column ========== */
.banner {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #04101f;
}

.banner-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.banner-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 35%, rgba(34, 184, 255, 0.32), transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 70%, rgba(0, 112, 243, 0.4), transparent 50%),
    linear-gradient(145deg, #020914 0%, #0a1f3d 42%, #0b4a9a 78%, #0680d8 100%);
  animation: bannerGlow 12s ease-in-out infinite alternate;
}

.banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.banner-glow-a {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.35), transparent 70%);
  animation: floatA 9s ease-in-out infinite;
}

.banner-glow-b {
  width: 320px;
  height: 320px;
  bottom: 15%;
  right: 8%;
  background: radial-gradient(circle, rgba(0, 112, 243, 0.4), transparent 70%);
  animation: floatB 11s ease-in-out infinite;
}

.banner-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 15%, transparent 75%);
  opacity: 0.3;
}

.banner-wave-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.banner-wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.banner-wave path { fill: #f4f7fb; }

.banner-wave-1 {
  opacity: 0.25;
}

.banner-wave-2 {
  opacity: 0.45;
  height: 85%;
}

.banner-wave-3 {
  opacity: 1;
  height: 70%;
}

.banner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 7.5rem 0 7rem;
}

.banner-copy {
  text-align: left;
  max-width: 560px;
}

.banner-signature {
  margin: 0 0 1.35rem;
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.banner-signature .sig-next,
.banner-signature .sig-wave {
  color: #fff;
}

.banner-signature .sig-soft {
  color: var(--sky-soft);
  margin-left: 0.12em;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 0 0 1.1rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.banner-text {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  margin: 0 0 1.85rem;
  line-height: 1.75;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.banner-media {
  position: relative;
}

.banner-media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 16 / 11;
}

.banner-media-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 70% 30%, rgba(34, 184, 255, 0.35), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.banner-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.banner-media-frame:hover .banner-media-img {
  transform: scale(1.06);
}

.banner-pixels {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 10px);
  gap: 6px;
}

.banner-pixels i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #22b8ff;
  box-shadow: 0 0 10px rgba(34, 184, 255, 0.55);
}

.banner-pixels i:nth-child(2) { background: #5cc8ff; opacity: 0.85; }
.banner-pixels i:nth-child(3) { background: #8fd7ff; opacity: 0.65; }
.banner-pixels i:nth-child(4) { background: #b8e6ff; opacity: 0.4; }
.banner-pixels i:nth-child(5) { opacity: 0.7; }
.banner-pixels i:nth-child(6) { opacity: 0.35; }
.banner-pixels i:nth-child(7) { opacity: 0.5; }
.banner-pixels i:nth-child(8) { opacity: 0.22; }

.banner-in {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes bannerGlow {
  from { filter: saturate(1) brightness(1); }
  to { filter: saturate(1.12) brightness(1.06); }
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(16px, -20px); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, 14px); }
}

@keyframes waveSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-3%); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes auroraShift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 2%) scale(1.06); }
}

/* ========== Sections ========== */
.section {
  padding: 6.5rem 0;
  position: relative;
  overflow-x: clip;
}

.section-bg-blob {
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  top: 10%;
  right: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.12), transparent 65%);
  pointer-events: none;
  transform: translateX(30%);
}

.section-services {
  background: var(--surface);
  overflow: hidden;
}

.section-process {
  background: linear-gradient(180deg, #e4ecf6 0%, #dce6f2 100%);
  overflow: hidden;
}

.section-industries { background: var(--surface); overflow: hidden; }

.section-packages {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34, 184, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #e8eef7, #f4f7fb);
  overflow: hidden;
}

.section-why {
  background: var(--surface);
  overflow: hidden;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.25rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.9rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--royal));
  box-shadow: 0 0 0 5px rgba(0, 112, 243, 0.14);
  animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0, 112, 243, 0.14); }
  50% { box-shadow: 0 0 0 10px rgba(0, 112, 243, 0.04); }
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-bottom: 0.9rem;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0;
  font-weight: 500;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service-link {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.55rem 1.55rem;
  border-radius: var(--radius);
  background: var(--surface-card);
  border: 1px solid var(--line);
  color: inherit;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(7, 21, 40, 0.04);
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s var(--ease);
}

.service-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.7) 48%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}

.service-link:hover {
  color: inherit;
  transform: translateY(-10px);
  border-color: rgba(0, 112, 243, 0.3);
  box-shadow: var(--shadow-lg);
}

.service-link:hover .service-shine { transform: translateX(130%); }

.service-link:hover .service-icon {
  transform: scale(1.1) rotate(-6deg);
  background: linear-gradient(135deg, var(--royal), var(--sky));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 112, 243, 0.35);
}

.service-link:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.service-index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(7, 21, 40, 0.25);
  letter-spacing: 0.04em;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e4f1ff, #c8e0ff);
  color: var(--royal);
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, box-shadow 0.4s;
}

.service-link h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-link p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.service-price {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--royal);
  font-size: 0.92rem;
}

.service-arrow {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  opacity: 0;
  transform: translateX(-10px);
  color: var(--royal);
  font-weight: 700;
  font-size: 1.2rem;
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

/* Process */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal), var(--sky), transparent);
  opacity: 0.3;
}

.process-step {
  position: relative;
  padding: 1.6rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(7, 21, 40, 0.06);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease);
}

.process-step:hover { transform: translateY(-8px); }

.process-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--sky));
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 112, 243, 0.3);
}

.process-step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.process-step p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* Marquee + industries */
.marquee {
  margin: 0 0 2.75rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(7, 21, 40, 0.04);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.15rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff, #f0f5fb);
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.industry-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 112, 243, 0.3);
  box-shadow: 0 16px 40px rgba(0, 112, 243, 0.12);
}

.industry-mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--sky), var(--royal));
  flex-shrink: 0;
}

.industry-item span:last-child {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}

/* Packages */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
  padding: 0.75rem 0.35rem;
}

.package {
  position: relative;
  padding: 2.1rem 1.7rem 1.7rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.package:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.package-featured {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(155deg, var(--sky), var(--royal), #0047b8) border-box;
  border: 2px solid transparent;
  box-shadow: 0 28px 70px rgba(0, 112, 243, 0.18);
  transform: scale(1.04);
  z-index: 1;
}

.package-featured:hover {
  transform: scale(1.04) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: -0.8rem;
  left: 1.4rem;
  background: linear-gradient(135deg, var(--royal), #00a8ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 112, 243, 0.4);
  animation: badgeFloat 2.8s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.package h3 { font-size: 1.45rem; margin-bottom: 0.35rem; }

.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.4rem;
  letter-spacing: -0.04em;
}

.package-price .currency {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.package-price .plus {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.package ul { flex: 1; margin-bottom: 1.65rem; }

.package li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--sky), var(--royal));
}

.package-fit {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.45rem;
}

.package-featured .package-fit {
  color: var(--royal);
}

.package li.is-bonus {
  color: var(--royal);
  font-weight: 600;
}

.package-bonus {
  margin: 0 0 1.35rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #eef6ff, #e4f0ff);
  border: 1px solid rgba(0, 112, 243, 0.15);
}

.package-bonus strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.55rem;
}

.package-bonus ul { margin: 0; }

.package-bonus li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.section-launch-offer { padding-top: 3.5rem; }

.launch-offer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at top right, rgba(34, 184, 255, 0.2), transparent 45%),
    linear-gradient(145deg, #061830, #0c3a78 55%, #0870c8);
  color: #fff;
  box-shadow: 0 30px 70px rgba(6, 24, 48, 0.3);
}

.launch-offer .eyebrow { color: var(--sky-soft); }
.launch-offer .section-title { color: #fff; }
.launch-offer .section-lead { color: rgba(255, 255, 255, 0.82); }

.launch-bonus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  margin: 1.35rem 0 1.75rem;
}

.launch-bonus-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

.launch-bonus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--sky), #fff);
}

.launch-offer-aside {
  padding: 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  text-align: center;
}

.launch-from-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-soft);
}

.launch-from-price {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.launch-from-price .nws-price {
  color: #fff;
  font-size: inherit;
  font-weight: inherit;
}

.launch-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.addon-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 112, 243, 0.28);
  box-shadow: 0 12px 30px rgba(0, 112, 243, 0.08);
}

.addon-name {
  font-weight: 650;
  color: var(--navy);
  font-size: 0.95rem;
}

.nws-price.addon-price {
  font-weight: 800;
  color: var(--royal);
  font-size: 0.9rem;
  white-space: nowrap;
}

.audit-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.4rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #eef5ff);
  border: 1px solid rgba(0, 112, 243, 0.15);
  box-shadow: var(--shadow);
}

.audit-banner .section-title { margin-bottom: 0.5rem; }
.audit-banner .section-lead { margin: 0; max-width: 52ch; }

@media (max-width: 980px) {
  .launch-offer {
    grid-template-columns: 1fr;
  }
  .launch-bonus-list,
  .addon-grid {
    grid-template-columns: 1fr;
  }
  .audit-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.why-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.why-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f3f7fc);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.why-point:hover {
  transform: translateX(8px);
  border-color: rgba(0, 112, 243, 0.28);
  box-shadow: 0 12px 32px rgba(0, 112, 243, 0.08);
}

.why-icon {
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--sky), var(--royal));
  box-shadow: 0 0 0 5px rgba(0, 112, 243, 0.12);
}

.why-point h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.why-point p { margin: 0; color: var(--text-muted); font-size: 0.94rem; }

.why-panel {
  position: relative;
  padding: 2.6rem;
  border-radius: 28px;
  background: linear-gradient(155deg, #061830, #0c3a78 55%, #0870c8);
  color: #fff;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(6, 24, 48, 0.4);
}

.why-panel-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -50px;
  right: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.5), transparent 70%);
  animation: auroraShift 10s ease-in-out infinite alternate;
}

.why-panel-kicker {
  position: relative;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-soft);
  margin-bottom: 0.8rem;
}

.why-panel h3 {
  position: relative;
  color: #fff;
  font-size: 1.75rem;
}

.why-panel p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.tech-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.tech-row span {
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.25s, transform 0.25s;
}

.tech-row span:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* CTA */
.cta-band {
  position: relative;
  text-align: center;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(145deg, #02060e, #0a274e 45%, #0a58a8);
  color: #fff;
}

.cta-band-bg { position: absolute; inset: 0; pointer-events: none; }

.cta-band-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-cta-1 {
  width: 420px;
  height: 420px;
  top: -25%;
  left: 0;
  transform: translateX(-25%);
  background: radial-gradient(circle, rgba(34, 184, 255, 0.35), transparent 70%);
  animation: auroraShift 12s ease-in-out infinite;
}

.orb-cta-2 {
  width: 360px;
  height: 360px;
  bottom: -30%;
  right: 0;
  transform: translateX(20%);
  background: radial-gradient(circle, rgba(0, 112, 243, 0.4), transparent 70%);
  animation: auroraShift 14s ease-in-out infinite reverse;
}

.cta-band h2 {
  position: relative;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  max-width: 14ch;
  margin-inline: auto;
}

.cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  max-width: 44ch;
  margin: 0 auto 2rem;
  font-weight: 500;
}

/* Page hero */
.page-hero {
  position: relative;
  padding: 6rem 0 4.5rem;
  background: linear-gradient(145deg, #02060e, #0a274e 50%, #0a58a8);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(34, 184, 255, 0.4), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  pointer-events: none;
}

.page-hero-compact { padding: 4rem 0 3rem; }
.page-hero .eyebrow { color: var(--sky-soft); }

.page-title {
  position: relative;
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin: 0;
  max-width: 13ch;
}

.page-hero .page-lead {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  max-width: 48ch;
  margin: 1rem 0 0;
  font-weight: 500;
}

/* Services detail / contact / footer (shared) */
.service-detail { display: grid; gap: 1.5rem; }

.service-block {
  padding: 1.85rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(7, 21, 40, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.service-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-block h2 { font-size: 1.5rem; margin: 0; }
.service-block .price-tag { font-weight: 800; color: var(--royal); font-size: 0.95rem; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  margin-top: 1.15rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--royal);
}

.audience { margin-top: 0.9rem; font-size: 0.9rem; color: var(--text-muted); }
.audience strong { color: var(--navy); }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-channels { display: grid; gap: 0.9rem; }

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f3f7fc);
  color: inherit;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.contact-channel:hover {
  color: inherit;
  border-color: rgba(0, 112, 243, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 112, 243, 0.12);
}

.contact-channel strong { font-family: var(--font-display); color: var(--navy); }
.contact-channel span { color: var(--text-muted); font-size: 0.92rem; }

.contact-form {
  padding: 2.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--surface-soft));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 1.05rem; }

.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--royal);
  box-shadow: 0 0 0 4px rgba(0, 112, 243, 0.15);
  transform: translateY(-1px);
}

.form-row textarea { min-height: 140px; resize: vertical; }

.form-notice {
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
}
.form-notice.success { background: #e8f8ef; color: #0d6b3a; }
.form-notice.error { background: #fdeeee; color: #a32020; }

.site-footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4.75rem 0 1.75rem;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: auto -10% 25% 25%;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 184, 255, 0.25), transparent 65%);
  pointer-events: none;
  animation: auroraShift 14s ease-in-out infinite;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-tagline {
  max-width: 36ch;
  margin-top: 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-col h3 { color: #fff; font-size: 0.95rem; margin-bottom: 1rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
  font-weight: 500;
}

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

.footer-col li + li { margin-top: 0.5rem; }

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

.whatsapp-float {
  position: fixed;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  bottom: max(1.15rem, env(safe-area-inset-bottom, 0px));
  left: auto;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: #128c7e;
  border: 1px solid rgba(18, 140, 126, 0.18);
  box-shadow: 0 12px 32px rgba(7, 21, 40, 0.14);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.whatsapp-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(18, 140, 126, 0.35);
}

.whatsapp-float-icon svg {
  display: block;
}

.whatsapp-float-label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  padding-right: 0.25rem;
}

.whatsapp-float:hover {
  color: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 21, 40, 0.18);
  background: #f7fffa;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: none;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.07s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ========== People photos ========== */
.section-people {
  background: linear-gradient(180deg, #f4f7fb 0%, #eaf0f7 100%);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.people-grid-about {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.people-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.people-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: #d7e2ef;
  box-shadow: 0 18px 40px rgba(7, 21, 40, 0.1);
}

.people-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 21, 40, 0.18) 100%);
  pointer-events: none;
}

.people-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s var(--ease);
}

.people-card:hover .people-card-media img {
  transform: scale(1.045);
}

.people-card figcaption {
  padding: 0 0.15rem;
}

.people-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.people-card figcaption span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ========== Testimonials ========== */
.section-testimonials {
  background: var(--surface);
}

.stars,
.testimonial-stars {
  color: #e8b923;
  letter-spacing: 0.08em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 45, 80, 0.08);
  box-shadow: 0 16px 40px rgba(7, 21, 40, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-stars {
  font-size: 0.95rem;
}

.testimonial-quote {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
}

.testimonial-company {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

/* ========== FAQ ========== */
.section-faq {
  background: linear-gradient(180deg, #f7fafc 0%, #eef4fa 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(15, 45, 80, 0.1);
  border-radius: 14px;
  padding: 0 1.15rem;
  box-shadow: 0 8px 24px rgba(7, 21, 40, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.75rem 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(34, 184, 255, 0.12);
  color: var(--royal, #1a6cff);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 0 1.15rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== About ========== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-mission {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 0.5rem 0 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid #22b8ff;
}

.about-story-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 21, 40, 0.14);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-value {
  padding: 1.5rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 45, 80, 0.08);
}

.about-value h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
}

.about-value p {
  margin: 0;
  color: var(--text-muted);
}

.section-about-values {
  background: var(--surface);
}

.content-narrow { max-width: 760px; }
.prose p { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2.4rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .banner-in,
  .reveal,
  .marquee-track,
  .banner-gradient,
  .banner-glow,
  .banner-wave,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .package-badge {
    animation: none !important;
    transition: none !important;
  }
  .banner-in,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-track::before { display: none; }
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 6.5rem 0 5.5rem;
  }
  .banner-copy {
    max-width: 640px;
    text-align: center;
    margin-inline: auto;
  }
  .banner-signature { text-align: center; }
  .banner-title { margin-inline: auto; }
  .banner-text { margin-inline: auto; }
  .banner-actions { justify-content: center; }
}

@media (max-width: 980px) {
  .service-grid,
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .package-featured { transform: none; }
  .package-featured:hover { transform: translateY(-10px); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid,
  .contact-layout,
  .footer-grid,
  .faq-layout,
  .about-story-grid { grid-template-columns: 1fr; }
  .testimonial-grid,
  .about-values-grid { grid-template-columns: 1fr; }
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .people-grid-about {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.6rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(7, 21, 40, 0.12);
  }

  body.nav-open .primary-nav { display: flex; }

  .site-header-hero:not(.is-scrolled) .primary-nav {
    background: rgba(8, 24, 48, 0.96);
  }
  .site-header-hero:not(.is-scrolled) .primary-nav .nav-list a { color: #fff; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0.35rem; }
  .nav-actions { flex-direction: column; align-items: stretch; }

  .banner-grid { padding: 6rem 0 5rem; gap: 2rem; }
  .banner-signature { font-size: 40px; }
  .banner-wave-stack { height: 110px; }
  .banner-glow-a,
  .banner-glow-b {
    width: 180px;
    height: 180px;
  }
  .section-bg-blob { display: none; }
  .package-grid { padding: 0; }

  .whatsapp-float {
    min-height: 48px;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    gap: 0.45rem;
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float-icon {
    width: 36px;
    height: 36px;
  }

  .whatsapp-float-icon svg {
    width: 18px;
    height: 18px;
  }

  .whatsapp-float-label {
    font-size: 0.8rem;
  }

  .whatsapp-float:hover,
  .whatsapp-float:active {
    transform: none;
  }

  .service-grid,
  .package-grid,
  .industry-grid,
  .feature-list,
  .process-track,
  .testimonial-grid,
  .about-values-grid,
  .people-grid,
  .people-grid-about { grid-template-columns: 1fr; }

  .section { padding: 4.5rem 0; }
  .brand-logo { height: 44px; }
  .cursor-glow { display: none; }
}
