/* =========================================================
   Lead Waves — Premium Glassmorphism Design System
   Palette: Navy blues, white, light grey  |  Fonts: Outfit + Inter
   ========================================================= */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --navy-900: #0038A8;
  --navy-800: #002d8a;
  --navy-700: #00246e;
  --navy-600: #003cbf;
  --navy-500: #0050d4;
  --navy-400: #2b6ee6;
  --navy-300: #5a94ff;
  --navy-200: #8ab4ff;
  --navy-100: #bdd4ff;
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.4);
  --white: #ffffff;
  --grey-50: #f0f4ff;
  --grey-100: #e0e8f5;
  --grey-200: #e8edf7;
  --grey-400: #cdd8ed;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-light: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-border-light: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(0, 20, 80, 0.35);
  --glass-blur: blur(18px);
  --glass-blur-heavy: blur(28px);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input {
  font-family: inherit;
}

/* ---------- UTILITY ---------- */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-200);
  margin-bottom: 12px;
}

.light-tag {
  color: var(--white);
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--grey-200);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- PARTICLE CANVAS ---------- */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}

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

/* ---------- GLASS UTILITIES ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card:hover {
  border-color: var(--glass-border-light);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.glass-card-dark {
  background: rgba(0, 40, 120, 0.45);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(138, 180, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glass-card-dark:hover {
  border-color: rgba(138, 180, 255, 0.3);
  box-shadow: 0 12px 48px rgba(0, 20, 80, 0.4), inset 0 0 40px rgba(90, 148, 255, 0.06);
}

/* ---------- GLASS INPUT ---------- */
.glass-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.glass-input::placeholder {
  color: var(--grey-200);
}

.glass-input:focus {
  border-color: var(--navy-300);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- CTA BUTTONS ---------- */
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.cta-button.glass-cta {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #111 !important;
  font-weight: 800;
}

.cta-button.glass-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
  background: #f0f4ff;
}

.cta-button.glass-cta.green-cta {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 20px var(--accent-green-glow);
  color: var(--white) !important;
  font-weight: 700;
}

.cta-button.glass-cta.green-cta:hover {
  box-shadow: 0 8px 36px rgba(34, 197, 94, 0.5);
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-button:hover .cta-glow {
  opacity: 1;
}

.cta-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 1px solid var(--glass-border-light);
  border-radius: 50px;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.35);
}

.glass-btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #111;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}

.glass-btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  background: #f0f4ff;
}

.nav-links a.nav-cta.glass-btn-sm {
  color: #111 !important;
  background: var(--white);
  font-weight: 700;
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  background: rgba(0, 56, 168, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.glass-nav.scrolled {
  background: rgba(0, 56, 168, 0.85);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(100, 140, 255, 0.3));
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(100, 140, 255, 0.3));
  }

  100% {
    filter: brightness(1.3) drop-shadow(0 0 16px rgba(100, 140, 255, 0.6));
  }
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-200);
  position: relative;
  transition: color var(--transition);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--navy-300);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 20px;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: blur(2px) brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 40, 120, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0, 56, 168, 0.4) 0%, var(--navy-900) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 0%, var(--navy-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--navy-200);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--grey-200);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.hero-trust .marquee-wrapper {
  flex: 1;
  min-width: 0;
  margin: 15px 0px;
}

.trust-logos {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
  flex-shrink: 0;
}

.trust-logo-text:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   HERO DIVIDER
   ========================================================= */
.hero-divider {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  margin-bottom: -2px;
  line-height: 0;
}

.hero-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  contain: layout style;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 56, 168, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 80, 212, 0.15) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-tile {
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-tile::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(100, 140, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 30%, var(--navy-100) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(138, 180, 255, 0.35));
}

.stat-prefix,
.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy-100);
}

.stat-label {
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--grey-200);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.4;
}

/* =========================================================
   FEATURED OFFER
   ========================================================= */
.offer-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  contain: layout style;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  min-height: 480px;
}

.offer-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(1);
}

.offer-book {
  position: relative;
  z-index: 2;
  width: 180px;
  padding: 32px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08) !important;
  transform: rotate(-3deg);
  transition: transform var(--transition);
}

.offer-book:hover {
  transform: rotate(0deg) scale(1.05);
}

.book-vertical-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  background: linear-gradient(180deg, var(--navy-200), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 auto 12px;
}

.book-title {
  font-size: 0.7rem;
  color: var(--grey-200);
  line-height: 1.5;
}

.offer-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.offer-content p {
  color: var(--grey-400);
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.offer-form .glass-input:nth-child(3),
.offer-form .glass-input:nth-child(4),
.offer-form .cta-button {
  grid-column: 1 / -1;
}

.offer-form .cta-button {
  justify-content: center;
  margin-top: 4px;
}

/* =========================================================
   CLIENT LOGOS
   ========================================================= */
.clients-section {
  position: relative;
  z-index: 1;
  padding: 56px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 400px;
}

/* --- Marquee / auto-scroll system --- */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

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

.marquee-large .marquee-track {
  animation-duration: 40s;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

.logos-marquee {
  gap: 0;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  margin: 0 8px;
  transition: all var(--transition);
}

.logo-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition), transform var(--transition);
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.logo-item:hover span {
  color: rgba(255, 255, 255, 0.85);
  transform: scale(1.05);
}



/* =========================================================
   SERVICES
   ========================================================= */
.services-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
  background:
    linear-gradient(180deg, rgba(0, 40, 120, 0.5) 0%, rgba(0, 30, 100, 0.85) 100%);
  border-top: 1px solid rgba(138, 180, 255, 0.08);
  border-bottom: 1px solid rgba(138, 180, 255, 0.08);
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 56, 168, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

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

.service-card {
  padding: 40px 24px;
  text-align: center;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: var(--navy-200);
}

.kinetic-shape {
  width: 100%;
  height: 100%;
  animation: kinetic-rotate 12s linear infinite;
}

@keyframes kinetic-rotate {
  to {
    transform: rotate(360deg);
  }
}

.service-card:nth-child(2) .kinetic-shape,
.service-card:nth-child(3) .kinetic-shape,
.service-card:nth-child(4) .kinetic-shape {
  animation: none;
}

.flip-shape {
  width: 100%;
  height: 100%;
  animation: flip-horizontal 6s ease-in-out infinite;
}

@keyframes flip-horizontal {

  0%,
  100% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(360deg);
  }
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--grey-400);
  line-height: 1.65;
}

.service-list {
  list-style: none;
  text-align: left;
  margin-top: 16px;
  padding: 0;
}

.service-list li {
  font-size: 0.85rem;
  color: var(--grey-200);
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--navy-300);
  font-size: 0.7rem;
  top: 2px;
}

.services-cta {
  text-align: center;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonial-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(3px) brightness(0.5);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, rgba(0, 56, 168, 0.85) 50%, var(--navy-900) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.testimonial-card {
  padding: 36px;
}

blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey-200);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-300), var(--navy-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(138, 180, 255, 0.25), 0 0 16px rgba(90, 148, 255, 0.2);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--grey-200);
}

.testimonial-logos {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
  white-space: nowrap;
}

.testimonial-logos span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.testimonial-logos span:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-section {
  position: relative;
  z-index: 1;
  padding: 48px 24px 32px;
}

.footer-cta-banner {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-800) 100%) !important;
  border: 1px solid rgba(138, 180, 255, 0.2) !important;
}

.footer-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-cta-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(90, 148, 255, 0.5));
}

.footer-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
}

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

.footer-cta-actions .glass-input {
  width: 260px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(90, 148, 255, 0.4));
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--grey-400);
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--grey-400);
  transition: all var(--transition);
}

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

.social-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--grey-400);
}

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 40, 130, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

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

  .nav-links a {
    padding: 14px 32px;
    width: 100%;
    font-size: 0.9rem;
  }

  .nav-links .nav-cta {
    margin: 12px 32px;
    width: auto;
    text-align: center;
  }

  /* -- Hero mobile -- */
  .hero-section {
    padding: 100px 20px 24px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.12;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-left: 6.5rem;
    margin-right: 6.5rem;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .cta-button-outline {
    padding: 12px 24px;
    font-size: 0.82rem;
  }

  .hero-trust {
    gap: 10px;
  }

  .trust-label {
    font-size: 0.7rem;
  }

  .trust-logo-text {
    font-size: 0.85rem;
  }

  /* -- Sections mobile -- */
  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-header p {
    font-size: 0.88rem;
  }

  .section-tag {
    font-size: 0.68rem;
    letter-spacing: 2px;
  }

  /* -- Stats mobile -- */
  .stats-section {
    padding: 48px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-tile {
    padding: 24px 14px;
  }

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

  .stat-prefix,
  .stat-suffix {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* -- Offer mobile -- */
  .offer-section {
    padding: 48px 0;
  }

  .offer-panel {
    grid-template-columns: 1fr;
  }

  .offer-visual {
    min-height: 220px;
  }

  .offer-content {
    padding: 28px 20px;
  }

  .offer-content h2 {
    font-size: 1.4rem;
  }

  .offer-content p {
    font-size: 0.88rem;
  }

  .offer-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .glass-input {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  /* -- Clients mobile -- */
  .clients-section {
    padding: 40px 0;
  }

  .logo-item {
    padding: 20px 22px;
  }

  .logo-item span {
    font-size: 0.85rem;
  }

  /* -- Services mobile -- */
  .services-section {
    padding: 48px 0;
  }

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

  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.82rem;
  }

  /* -- Testimonials mobile -- */
  .testimonials-section {
    padding: 48px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  blockquote {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .author-info strong {
    font-size: 0.85rem;
  }

  .author-info span {
    font-size: 0.72rem;
  }

  /* -- Footer mobile -- */
  .footer-section {
    padding: 40px 16px 28px;
  }

  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .footer-cta-content {
    flex-direction: column;
  }

  .footer-cta-content h2 {
    font-size: 1.2rem;
  }

  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-actions .glass-input {
    width: 100%;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-legal {
    font-size: 0.7rem;
  }

  /* -- Divider mobile -- */
  .hero-divider svg {
    height: 24px;
  }

  /* -- Back to top mobile -- */
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

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

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

  .cta-button {
    padding: 11px 20px;
    font-size: 0.78rem;
  }

  .cta-button-outline {
    padding: 11px 20px;
    font-size: 0.78rem;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .offer-content h2 {
    font-size: 1.25rem;
  }
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 56, 168, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(138, 180, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, box-shadow 0.35s, background 0.35s;
  box-shadow: 0 4px 20px rgba(0, 20, 80, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0, 80, 212, 0.85);
  box-shadow: 0 6px 28px rgba(0, 80, 212, 0.5);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  he
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    padding: 0 8px;
  }

  .hero-desc {
    padding: 0 20px;
    font-size: 0.95rem;
  }
}