/* ==========================================================================
   Nortech Recycling — Main Stylesheet
   ========================================================================== */

/* --- CSS Custom Properties (extracted from logo) --- */
:root {
  --primary: #0066B3;
  --primary-dark: #004D8C;
  --primary-light: #E8F4FC;
  --secondary: #6DB33F;
  --secondary-dark: #5A9A32;
  --secondary-light: #EDF7E6;
  --accent: #4A9FD4;
  --light: #F5F9FC;
  --hero-surface: #F8FBFF;
  --hero-mint: #E8F5E4;
  --hero-sky: #DCEEF9;
  --topbar-from: #003D6B;
  --topbar-mid: #0066B3;
  --topbar-to: #3D8B2E;
  --dark: #1E2A32;
  --dark-soft: #2D3E4A;
  --gray: #6B7C8A;
  --gray-light: #A8B5C0;
  --white: #FFFFFF;
  --black: #0D1117;

  /* Typography */
  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --topbar-height: 44px;
  --header-height: 76px;
  --site-top-height: calc(var(--topbar-height) + var(--header-height));
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 42, 50, 0.06);
  --shadow-md: 0 4px 20px rgba(30, 42, 50, 0.08);
  --shadow-lg: 0 8px 40px rgba(30, 42, 50, 0.12);
  --shadow-xl: 0 16px 60px rgba(30, 42, 50, 0.16);
  --shadow-glow: 0 0 40px rgba(0, 102, 179, 0.15);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: blur(16px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-top-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body.topbar-hidden,
body.topbar-away {
  --topbar-height: 0px;
  --site-top-height: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--dark-soft);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* --- Section Header --- */
.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

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

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: var(--space-md);
}

.section-title--sm {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
}

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

.section-desc {
  font-size: var(--text-lg);
  color: var(--gray);
  max-width: 600px;
}

.section-header--center .section-desc {
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  background: rgba(109, 179, 63, 0.12);
  color: var(--secondary-dark);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.badge--hero {
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(109, 179, 63, 0.14));
  border: 1px solid rgba(0, 102, 179, 0.12);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0, 102, 179, 0.08);
  padding: 0.55rem 1.15rem;
}

.badge--hero svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.badge--pulse {
  position: relative;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: badgeDotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(109, 179, 63, 0.5);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 102, 179, 0.3);
}

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

.btn--secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(109, 179, 63, 0.3);
}

.btn--secondary:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--outline-hero {
  border: 2px solid #003D6B;
  color: #003D6B;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.btn--outline-hero:hover {
  background: #003D6B;
  border-color: #003D6B;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 61, 107, 0.28);
  transform: translateY(-2px);
}

.btn--pill {
  border-radius: var(--radius-full);
  padding: 0.95rem 1.85rem;
}

.btn--pill:hover {
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--shine {
  position: relative;
  overflow: hidden;
}

.btn--shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

body.is-loading .site-chrome,
body.is-loading #main,
body.is-loading .footer,
body.is-loading .back-to-top {
  opacity: 0;
  visibility: hidden;
}

body.is-ready .site-chrome,
body.is-ready #main,
body.is-ready .footer,
body.is-ready .back-to-top {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  margin: 0 auto var(--space-md);
  animation: pulse 1.5s ease infinite;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  animation: loaderBar 1.2s ease infinite;
}

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- Top Bar --- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--topbar-height);
  background: linear-gradient(105deg, var(--topbar-from) 0%, var(--topbar-mid) 45%, var(--topbar-to) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.topbar__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.14) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: topbarShine 6s ease-in-out infinite;
  pointer-events: none;
}

.topbar.is-preload {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

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

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  padding-right: 2.5rem;
  z-index: 1;
}

.topbar__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.4;
}

.topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #A8E06C;
  flex-shrink: 0;
}

.topbar__message {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--white);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: all var(--transition-fast);
  letter-spacing: 0.02em;
}

.topbar__cta:hover {
  color: var(--primary-dark);
  background: #F0FFE8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.topbar__cta::after {
  content: '→';
  font-size: 1.15em;
  transition: transform var(--transition-fast);
}

.topbar__cta:hover::after {
  transform: translateX(3px);
}

.topbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.topbar__contact:hover {
  color: var(--white);
}

.topbar__contact svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
}

.topbar__close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.topbar__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* --- Header --- */
.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 102, 179, 0.06);
  transition: top var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

body.topbar-hidden .header {
  top: 0;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #000;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: #000;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xs);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  color: #000;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav__dropdown-menu a:hover {
  background: var(--primary-light);
  color: #000;
}

.header__cta {
  margin-left: var(--space-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span {
  background: var(--dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero (Premium Light Theme) --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--site-top-height));
  min-height: calc(100dvh - var(--site-top-height));
  display: flex;
  align-items: center;
  padding-top: var(--site-top-height);
  overflow-x: clip;
  overflow-y: visible;
  background: var(--hero-surface);
}

.hero--light {
  background: linear-gradient(
    145deg,
    #FFFFFF 0%,
    var(--hero-surface) 25%,
    var(--hero-mint) 55%,
    var(--hero-sky) 100%
  );
}

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

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(0, 102, 179, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(109, 179, 63, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 20%, rgba(74, 159, 212, 0.12) 0%, transparent 45%);
  animation: heroMeshPulse 8s ease-in-out infinite;
}

.hero__aurora {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 200deg at 60% 40%, transparent 0deg, rgba(0, 102, 179, 0.08) 60deg, transparent 120deg, rgba(109, 179, 63, 0.1) 200deg, transparent 280deg);
  animation: heroAuroraSpin 25s linear infinite;
  opacity: 0.7;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 100%
  );
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  animation: heroGridDrift 20s linear infinite;
}

.hero__bottom-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(160px, 28vw, 260px);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 61, 107, 0.03) 30%,
    rgba(0, 61, 107, 0.08) 60%,
    rgba(30, 42, 50, 0.12) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__particle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-md);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 102, 179, 0.1);
  backdrop-filter: blur(8px);
  animation: particleDrift 6s ease-in-out infinite;
}

.hero__particle--1 { top: 18%; left: 8%; animation-delay: 0s; }
.hero__particle--2 { top: 62%; left: 15%; animation-delay: 1s; color: var(--secondary); }
.hero__particle--3 { top: 28%; right: 12%; animation-delay: 2s; width: 36px; height: 36px; }
.hero__particle--4 { bottom: 22%; right: 22%; animation-delay: 0.5s; color: var(--secondary); }
.hero__particle--5 { top: 48%; left: 42%; animation-delay: 1.5s; width: 38px; height: 38px; opacity: 0.7; }
.hero__particle--6 { bottom: 35%; left: 28%; animation-delay: 2.5s; }

.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero__shape--1 {
  width: 520px;
  height: 520px;
  background: rgba(109, 179, 63, 0.28);
  top: -180px;
  right: -100px;
  animation: float 9s ease-in-out infinite;
}

.hero__shape--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 102, 179, 0.2);
  bottom: 5%;
  left: -120px;
  animation: float 11s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 280px;
  height: 280px;
  background: rgba(74, 159, 212, 0.25);
  top: 30%;
  right: 10%;
  animation: float 7s ease-in-out infinite;
}

.hero__shape--4 {
  width: 200px;
  height: 200px;
  background: rgba(109, 179, 63, 0.2);
  bottom: 25%;
  right: 35%;
  animation: float 5s ease-in-out infinite reverse;
}

.hero--unified {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: linear-gradient(
    110deg,
    #FFFFFF 0%,
    #FFFFFF 38%,
    var(--hero-surface) 52%,
    var(--hero-mint) 78%,
    var(--hero-sky) 100%
  );
  min-height: auto;
  padding-bottom: clamp(4rem, 9vw, 4rem);
  overflow-x: visible;
}

.hero--unified .hero__aurora {
  opacity: 0.35;
}

.hero--unified .hero__mesh {
  opacity: 0.65;
}

.hero--unified .hero__gradient {
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.45) 42%,
    transparent 68%
  );
}

.hero--unified .hero__shape--1 {
  opacity: 0.45;
}

.hero--unified .hero__shape--2 {
  opacity: 0.4;
}

.hero--unified .hero__shape--3 {
  opacity: 0.35;
}

.hero__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero__left::before {
  content: '';
  position: absolute;
  inset: -1.25rem -1.5rem;
  background: radial-gradient(
    ellipse 130% 110% at 0% 45%,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.72) 50%,
    transparent 78%
  );
  z-index: -1;
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 0.5rem 0.95rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 102, 179, 0.14);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 61, 107, 0.08);
  backdrop-filter: blur(10px);
}

.hero__eyebrow-item {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #003D6B;
  line-height: 1.2;
}

.hero__eyebrow-dot {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.2);
}

.hero__title {
  margin: 0;
  font-size: clamp(1.45rem, 3.1vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.28;
  color: #000;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.hero__highlight--blue {
  color: #003D6B;
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.14) 0%, rgba(0, 102, 179, 0.06) 100%);
  border: 1px solid rgba(0, 102, 179, 0.2);
  box-shadow: 0 4px 14px rgba(0, 61, 107, 0.08);
}

.hero__highlight--green {
  color: #1B5A12;
  background: linear-gradient(135deg, rgba(109, 179, 63, 0.22) 0%, rgba(109, 179, 63, 0.1) 100%);
  border: 1px solid rgba(109, 179, 63, 0.28);
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.12);
}

.hero__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #000;
}

.hero__slogan {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: #000;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  perspective: 1200px;
  overflow: visible;
}

.hero__visual-backdrop {
  position: absolute;
  inset: 8% 4% 12%;
  background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(109, 179, 63, 0.12));
  border-radius: var(--radius-xl);
  z-index: 0;
}

.hero-visual-enter {
  opacity: 0;
  transform: translateY(20px);
}

body.is-ready .hero-visual-enter {
  animation: heroVisualIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.hero__collage {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.hero__collage-main {
  position: absolute;
  inset: 5% 6% 14% 6%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.hero__collage-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 61, 107, 0.3) 100%);
  pointer-events: none;
}

.hero__collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroImageKenBurns 20s ease-in-out infinite;
}

.hero__image-caption {
  display: none;
}

.hero__image-chips {
  display: none;
}

.hero__collage-circle {
  position: absolute;
  width: 32%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 3;
}

.hero__collage-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__collage-circle--top {
  top: 2%;
  right: 0;
  animation: float 6s ease-in-out infinite;
}

.hero__collage-circle--bottom {
  bottom: 16%;
  left: 0;
  animation: float 7s ease-in-out infinite reverse;
}

/* Merged trust strip — part of hero, not a separate section */
.hero__merge {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.hero__merge-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 14px 44px rgba(0, 61, 107, 0.09);
  backdrop-filter: blur(14px);
}

.hero__merge-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.hero__merge-intro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #000;
}

.hero__merge-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.5vw, 1rem);
}

.hero__merge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 118px;
  padding: clamp(1rem, 2vw, 1.35rem) clamp(0.65rem, 1.2vw, 0.85rem);
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 102, 179, 0.07);
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.hero__merge-stat:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 61, 107, 0.1);
}

.hero__merge-stat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.hero__merge-stat-body strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero__merge-stat-body span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.35;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--gray);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--transition-fast);
  z-index: 1;
}

.scroll-indicator:hover {
  color: var(--primary);
}

.scroll-indicator__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(0, 102, 179, 0.25);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator__mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollWheel 2s ease infinite;
}

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  color: var(--white);
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  width: 100%;
  height: clamp(70px, 10vw, 90px);
  display: block;
}

/* Hero floating service badges — anchored to image */
.hero__floats {
  position: absolute;
  inset: -4% -12%;
  z-index: 5;
  pointer-events: none;
}

.hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 102, 179, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 61, 107, 0.12);
  text-decoration: none;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  max-width: min(210px, 46vw);
  white-space: nowrap;
  animation: heroFloatBob 5s ease-in-out infinite;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.hero__float:hover {
  animation-play-state: paused;
  box-shadow: 0 14px 36px rgba(0, 61, 107, 0.16);
  transform: translateY(-3px);
}

/* Right side — 3 badges */
.hero__float--right.hero__float--1 { top: 2%; right: 0; left: auto; animation-delay: 0s; }
.hero__float--right.hero__float--3 { top: 36%; right: -4%; left: auto; animation-delay: 1.4s; }
.hero__float--right.hero__float--5 { top: 70%; right: 0; left: auto; animation-delay: 2.8s; }

/* Left side — 2 badges */
.hero__float--left.hero__float--2 { top: 20%; left: 0; right: auto; animation-delay: 0.7s; }
.hero__float--left.hero__float--4 { top: 54%; left: -4%; right: auto; animation-delay: 2.1s; }

.hero__float-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.hero__float-title {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.25;
}

/* --- About --- */
.about {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

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

.about__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(0, 102, 179, 0.1);
  text-align: center;
}

.about__header-text {
  flex: 1;
  min-width: 0;
  margin: 0 auto;
}

.about__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.about__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #000;
}

.about__subtitle {
  margin: 0.85rem auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__visual {
  position: relative;
  border-radius: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0, 61, 107, 0.14);
}

.about__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 61, 107, 0.15) 100%);
  pointer-events: none;
}

.about__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(109, 179, 63, 0.35);
}

.about__badge svg {
  color: var(--white);
  flex-shrink: 0;
}

.about__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.about__feature-bar {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  min-height: 92px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 61, 107, 0.12);
  backdrop-filter: blur(12px);
  overflow: hidden;
  z-index: 2;
}

.about__feature-bar-items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about__bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 0.55rem;
  text-align: center;
  border-left: 1px solid rgba(0, 102, 179, 0.08);
  transition: background var(--transition-base);
}

.about__bar-item:hover {
  background: rgba(0, 102, 179, 0.03);
}

.about__bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary-dark);
}

.about__bar-item strong {
  font-family: var(--font-heading);
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  font-weight: 800;
  /* letter-spacing: 0.03em; */
  line-height: 1.35;
  color: #000;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__slogan {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: #000;
}

.about__lead {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.about__text {
  margin: 0 0 1.25rem;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

.about__list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 16px;
  line-height: 1.55;
  color: #000;
}

.about__list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(109, 179, 63, 0.2) 0%, rgba(109, 179, 63, 0.1) 100%);
  color: var(--secondary-dark);
  border: 1px solid rgba(109, 179, 63, 0.25);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.5rem;
  padding: 1rem;
  background: var(--light);
  border: 1px solid rgba(0, 102, 179, 0.08);
  border-radius: var(--radius-md);
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  padding: 0.25rem 0.5rem;
}

.about__stat:not(:last-child) {
  border-right: 1px solid rgba(0, 102, 179, 0.1);
}

.about__stat strong {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: #000;
}

.about__stat span {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: #000;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.about__content .btn {
  align-self: flex-start;
  margin-top: 0;
  box-shadow: 0 8px 24px rgba(0, 102, 179, 0.28);
}

.about__secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--transition-base), color var(--transition-base);
}

.about__secondary-link:hover {
  gap: 0.55rem;
  color: #003D6B;
}

/* --- Services --- */
.services {
  position: relative;
  margin-top: 3rem;
  background: linear-gradient(
    165deg,
    #071018 0%,
    #0a1628 28%,
    var(--dark) 55%,
    #0d2137 100%
  );
  overflow: hidden;
  isolation: isolate;
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.services__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(0, 102, 179, 0.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(109, 179, 63, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(0, 61, 107, 0.25), transparent 50%);
}

.services__grid-texture {
  position: absolute;
  inset: -1px;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
}

.services__noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.services__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.services__orb--1 {
  top: -8%;
  right: 8%;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  background: rgba(0, 102, 179, 0.35);
}

.services__orb--2 {
  bottom: 5%;
  left: -4%;
  width: clamp(140px, 18vw, 260px);
  height: clamp(140px, 18vw, 260px);
  background: rgba(109, 179, 63, 0.22);
}

.services__orb--3 {
  top: 42%;
  left: 48%;
  width: clamp(100px, 12vw, 180px);
  height: clamp(100px, 12vw, 180px);
  background: rgba(0, 102, 179, 0.18);
  opacity: 0.35;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 5px,
    rgba(255, 255, 255, 0.012) 5px,
    rgba(255, 255, 255, 0.012) 6px
  );
  pointer-events: none;
  z-index: 0;
}

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

.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(109, 179, 63, 0.35);
}

.services__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.services__subtitle {
  margin: 0.85rem auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(109, 179, 63, 0.07) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.service-card:hover {
  border-color: rgba(109, 179, 63, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

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

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

.service-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  transition: color 0.35s ease;
}

.service-card:hover .service-card__num {
  color: rgba(109, 179, 63, 0.45);
}

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  margin-bottom: 1.15rem;
  box-shadow: 0 8px 20px rgba(109, 179, 63, 0.35);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.service-card:hover .service-card__icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 26px rgba(109, 179, 63, 0.45);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #000;
  margin-bottom: 0.65rem;
}

.service-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
  margin-bottom: 1.1rem;
}

.service-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding: 0.45rem 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-card__link svg {
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__link {
  gap: 0.65rem;
  color: var(--secondary-dark);
}

.service-card:hover .service-card__link svg {
  transform: translateX(3px);
}

.services__actions {
  display: flex;
  justify-content: center;
  margin-top: 0.25rem;
}

.services__actions .btn {
  box-shadow: 0 8px 28px rgba(109, 179, 63, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- Why Choose Us --- */
.why {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    var(--hero-surface) 50%,
    var(--hero-mint) 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

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

.why__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 20%, rgba(0, 102, 179, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 80%, rgba(109, 179, 63, 0.08), transparent 50%);
}

.why__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

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

.why__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.why__intro {
  position: sticky;
  top: calc(var(--site-top-height) + 1.5rem);
  align-self: start;
  z-index: 2;
}

.why__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.why__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.why__subtitle {
  margin: 0.85rem 0 1.25rem;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.why__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.why__highlight {
  display: inline-flex;
  padding: 0.42rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #003D6B;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 102, 179, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 61, 107, 0.06);
}

.why__highlight:last-child {
  color: #1B5A12;
  border-color: rgba(109, 179, 63, 0.28);
  background: rgba(237, 247, 230, 0.9);
}

.why__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px rgba(0, 61, 107, 0.06);
}

.why__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.25rem 0.35rem;
}

.why__stat:not(:last-child) {
  border-right: 1px solid rgba(0, 102, 179, 0.1);
}

.why__stat strong {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 800;
  color: #003D6B;
  line-height: 1.2;
}

.why__stat span {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-soft);
}

.why__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.why-card {
  position: relative;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  border-color: rgba(109, 179, 63, 0.4);
  box-shadow: 0 12px 32px rgba(0, 61, 107, 0.12);
  transform: translateY(-4px);
}

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

.why-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.1);
  transition: color 0.35s ease;
}

.why-card:hover .why-card__num {
  color: rgba(109, 179, 63, 0.45);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.3);
  transition: transform 0.35s ease;
}

.why-card:hover .why-card__icon {
  transform: translateY(-2px) scale(1.05);
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #000;
}

.why-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
}

/* --- Request Service CTA --- */
.request-cta {
  background: var(--white);
}

.request-cta__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  border-radius: 30px;
  background: var(--dark);
}

.request-cta__content {
  flex: 1;
  max-width: 60%;
  min-width: min(100%, 22rem);
}

.request-cta__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.request-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}

.request-cta__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
}

.request-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
}

.request-cta__btn {
  padding: 0.9375rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(109, 179, 63, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.request-cta__btn:hover {
  color: var(--white);
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(109, 179, 63, 0.5);
}

.request-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.request-cta__phone:hover {
  color: var(--white);
  opacity: 0.85;
}

/* --- Process --- */
.process {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--hero-mint) 0%,
    var(--white) 45%,
    var(--hero-surface) 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

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

.process__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 15%, rgba(109, 179, 63, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 85%, rgba(0, 102, 179, 0.06), transparent 50%);
}

.process__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
}

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

.process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.process__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

.process__highlight {
  display: inline-flex;
  padding: 0.42rem 0.9rem;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #003D6B;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 102, 179, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 61, 107, 0.06);
}

.process__highlight:last-child {
  color: #1B5A12;
  border-color: rgba(109, 179, 63, 0.28);
  background: rgba(237, 247, 230, 0.9);
}

.process__body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

.process__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.process__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.process__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

/* Vertical zigzag timeline */
.process-timeline {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.process-timeline__spine {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(0, 102, 179, 0.12);
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}

.process-timeline__progress {
  display: block;
  width: 100%;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 3px;
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(0.85rem, 2vw, 1.35rem) 0;
}

.process-step__node {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.process-step__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(109, 179, 63, 0.35);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease;
}

.process-step.active .process-step__ring {
  opacity: 1;
  animation: processRingPulse 2.2s ease-out infinite;
}

@keyframes processRingPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70%,
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.process-step__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  border: 3px solid rgba(0, 102, 179, 0.15);
  box-shadow: 0 4px 16px rgba(0, 61, 107, 0.1);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.process-step.active .process-step__icon,
.process-step:hover .process-step__icon {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(109, 179, 63, 0.4);
  transform: scale(1.06);
}

.process-step__card {
  position: relative;
  width: 100%;
  max-width: min(560px, 100%);
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  overflow: hidden;
  text-align: left;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.process-step__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step__card::after {
  content: '';
  position: absolute;
  top: 50%;
  width: clamp(1.25rem, 3vw, 2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: translateY(-50%);
  opacity: 0.55;
}

.process-step--left .process-step__card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.process-step--left .process-step__card::after {
  right: calc(-1 * clamp(1.25rem, 3vw, 2rem));
}

.process-step--right .process-step__card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.process-step--right .process-step__card::after {
  left: calc(-1 * clamp(1.25rem, 3vw, 2rem));
}

.process-step.active .process-step__card,
.process-step:hover .process-step__card {
  border-color: rgba(109, 179, 63, 0.35);
  box-shadow: 0 12px 32px rgba(0, 61, 107, 0.12);
  transform: translateY(-3px);
}

.process-step.active .process-step__card::before,
.process-step:hover .process-step__card::before {
  transform: scaleX(1);
}

.process-step__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
}

.process-step__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.process-step__card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
  color: #000;
}

.process-step__lead {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.process-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.process-step__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 15px;
  line-height: 1.55;
  color: #000;
}

.process-step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(109, 179, 63, 0.2);
}

/* --- Industries --- */
.industries {
  position: relative;
  background: linear-gradient(
    165deg,
    #071018 0%,
    #0a1628 28%,
    var(--dark) 55%,
    #0d2137 100%
  );
  overflow: hidden;
  isolation: isolate;
}

.industries__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.industries__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(0, 102, 179, 0.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(109, 179, 63, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(0, 61, 107, 0.25), transparent 50%);
}

.industries__grid-lines {
  position: absolute;
  inset: -1px;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
}

.industries__noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

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

.industries__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.industries__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(109, 179, 63, 0.35);
}

.industries__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.industries__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.25vw, 1rem);
}

.industry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 148px;
  padding: clamp(1.25rem, 2vw, 1.65rem) clamp(1rem, 2vw, 1.25rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover {
  border-color: rgba(109, 179, 63, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

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

.industry-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.75rem;
  line-height: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237, 247, 230, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(109, 179, 63, 0.22);
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover .industry-card__icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(109, 179, 63, 0.28);
}

.industry-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #000;
}

/* --- Statistics --- */
.stats {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--dark-soft) 100%);
  z-index: -1;
}

.stats__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-card__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card h3 {
  font-size: var(--text-lg);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.stat-card p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* --- Certifications --- */
.certifications {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--hero-mint) 0%,
    var(--white) 40%,
    var(--hero-surface) 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

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

.certifications__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(109, 179, 63, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 70%, rgba(0, 102, 179, 0.06), transparent 50%);
}

.certifications__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
}

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

.certifications__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.certifications__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.certifications__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.certifications__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.certifications__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.cert-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.15rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cert-card:hover {
  border-color: rgba(109, 179, 63, 0.35);
  box-shadow: 0 12px 32px rgba(0, 61, 107, 0.12);
  transform: translateY(-4px);
}

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

.cert-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.1);
  transition: color 0.35s ease;
}

.cert-card:hover .cert-card__num {
  color: rgba(109, 179, 63, 0.45);
}

.cert-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cert-card:hover .cert-card__badge {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(109, 179, 63, 0.4);
}

.cert-card__badge-text {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
}

.cert-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #000;
}

.cert-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #000;
}

/* --- Clients / Trusted Partners --- */
.clients {
  position: relative;
  background: linear-gradient(
    165deg,
    #071018 0%,
    #0a1628 28%,
    var(--dark) 55%,
    #0d2137 100%
  );
  overflow: hidden;
  isolation: isolate;
}

.clients__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.clients__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 15%, rgba(0, 102, 179, 0.2), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(109, 179, 63, 0.12), transparent 55%);
}

.clients__grid-lines {
  position: absolute;
  inset: -1px;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
}

.clients__noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

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

.clients__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.clients__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(109, 179, 63, 0.35);
}

.clients__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.clients__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.clients__slider {
  position: relative;
  z-index: 1;
  padding-bottom: 0.5rem;
}

.logo-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-slider__track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  animation: logoScroll 35s linear infinite;
  width: max-content;
  padding: 0.25rem 0;
}

.logo-slider:hover .logo-slider__track {
  animation-play-state: paused;
}

.logo-slider__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(160px, 14vw, 200px);
  min-height: 72px;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.logo-slider__item:hover {
  border-color: rgba(109, 179, 63, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.logo-slider__item span {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #003D6B;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.logo-slider__item:hover span {
  color: var(--secondary-dark);
}

/* --- Gallery --- */
.gallery {
  position: relative;
  background: var(--white);
  overflow-x: clip;
  overflow-y: visible;
}

.gallery__bg {
  display: none;
}

.gallery__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(109, 179, 63, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 80%, rgba(0, 102, 179, 0.06), transparent 50%);
}

.gallery__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
}

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

.gallery__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.gallery__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.gallery__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.gallery__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 61, 107, 0.16);
  outline: none;
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
  transform: scaleX(1);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.06);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(180deg, rgba(0, 30, 53, 0.15) 0%, rgba(0, 30, 53, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-visible .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.4);
}

.gallery-card__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

/* Gallery modal */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 8vw, 5rem) clamp(4rem, 10vw, 6rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-modal__panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(1100px, 100%);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-modal.is-open .gallery-modal__panel {
  transform: scale(1);
}

.gallery-modal__img {
  display: block;
  width: 100%;
  max-width: min(1000px, 100%);
  max-height: min(78vh, 760px);
  max-height: min(78dvh, 760px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.gallery-modal__close,
.gallery-modal__nav {
  position: fixed;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(30, 42, 50, 0.75);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-modal__close:hover,
.gallery-modal__nav:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.gallery-modal__close {
  top: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  width: 44px;
  height: 44px;
}

.gallery-modal__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.gallery-modal__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.gallery-modal__nav--prev {
  left: clamp(0.75rem, 3vw, 1.5rem);
}

.gallery-modal__nav--next {
  right: clamp(0.75rem, 3vw, 1.5rem);
}

body.gallery-modal-open {
  overflow: hidden;
}

/* --- Testimonials --- */
.testimonials {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--hero-mint) 0%,
    var(--white) 40%,
    var(--hero-surface) 100%
  );
  overflow-x: clip;
  overflow-y: visible;
}

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

.testimonials__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 30%, rgba(109, 179, 63, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 70%, rgba(0, 102, 179, 0.06), transparent 50%);
}

.testimonials__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
}

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

.testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
}

.testimonials__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.testimonials__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.testimonials__subtitle {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.testimonial-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  --slides-per-view: 3;
  --total-slides: 6;
  --slide-gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.testimonial-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider__track {
  display: flex;
  gap: var(--slide-gap);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.15rem, 2vw, 1.5rem);
  margin: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  position: relative;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card:hover {
  border-color: rgba(109, 179, 63, 0.35);
  box-shadow: 0 12px 32px rgba(0, 61, 107, 0.12);
  transform: translateY(-4px);
}

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

.testimonial-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover .testimonial-card__icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 24px rgba(109, 179, 63, 0.4);
}

.testimonial-card__stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0;
  flex: 1;
}

.testimonial-card blockquote p {
  margin: 0 0 1rem;
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  color: #000;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 102, 179, 0.08);
  width: 100%;
}

.testimonial-card footer strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  line-height: 1.35;
}

.testimonial-card footer span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
}

.testimonial-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.testimonial-slider__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0, 102, 179, 0.12);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 61, 107, 0.08);
  color: var(--primary);
  transition: all 0.3s ease;
}

.testimonial-slider__btn:hover:not(:disabled) {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.35);
}

.testimonial-slider__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonial-slider__dots {
  display: flex;
  gap: 8px;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 102, 179, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-slider__dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: var(--radius-full);
}

/* --- FAQ --- */
.faq {
  position: relative;
  background: var(--white);
  overflow-x: clip;
  overflow-y: visible;
}

.faq__bg {
  display: none;
}

.faq__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(109, 179, 63, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 80%, rgba(0, 102, 179, 0.06), transparent 50%);
}

.faq__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 102, 179, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 179, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 25%, transparent 78%);
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.faq__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.faq__title {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000;
}

.faq__desc {
  margin: 0.85rem 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
}

.faq__cta {
  margin-top: 1.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 0.9rem);
}

.accordion__item {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 102, 179, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 61, 107, 0.07);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.accordion__item.active {
  border-color: rgba(109, 179, 63, 0.35);
  box-shadow: 0 12px 32px rgba(0, 61, 107, 0.12);
}

.accordion__item.active::before {
  transform: scaleX(1);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.1rem, 2vw, 1.35rem);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-align: left;
  transition: color 0.3s ease;
}

.accordion__trigger::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.3);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.accordion__item.active .accordion__trigger::after {
  transform: rotate(45deg);
  box-shadow: 0 6px 18px rgba(109, 179, 63, 0.4);
}

.accordion__trigger:hover {
  color: var(--primary);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item.active .accordion__panel {
  max-height: 320px;
  padding-bottom: clamp(1rem, 2vw, 1.2rem);
}

.accordion__panel p {
  margin: 0;
  padding: 0 clamp(1.1rem, 2vw, 1.35rem);
  font-size: 16px;
  line-height: 1.65;
  color: #000;
}

/* --- Contact --- */
.contact {
  background: var(--light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
}

.contact__form {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(107, 124, 138, 0.2);
  border-radius: var(--radius-md);
  background: var(--light);
  color: var(--dark);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.1);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
}

.contact-card h4 {
  font-size: var(--text-sm);
  margin-bottom: 0.15rem;
}

.contact-card a,
.contact-card p {
  font-size: var(--text-sm);
  color: var(--gray);
  margin: 0;
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.contact__cta {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.contact__cta h4 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact__cta p {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-bottom: var(--space-md);
}

/* --- Footer --- */
.footer {
  position: relative;
  background: linear-gradient(
    165deg,
    #071018 0%,
    #0a1628 28%,
    var(--dark) 55%,
    #0d2137 100%
  );
  color: rgba(255, 255, 255, 0.75);
  padding: 0 0 var(--space-lg);
  overflow: hidden;
  isolation: isolate;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
  z-index: 2;
}

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

.footer__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 20% 10%, rgba(0, 102, 179, 0.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 85% 75%, rgba(109, 179, 63, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(0, 61, 107, 0.25), transparent 50%);
}

.footer__grid-lines {
  position: absolute;
  inset: -1px;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 45%, #000 25%, transparent 80%);
}

.footer .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

/* CTA strip */
.footer__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(109, 179, 63, 0.4), rgba(0, 102, 179, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.footer__cta-tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--secondary);
  border-radius: var(--radius-full);
  line-height: 1.2;
}

.footer__cta-title {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--white);
}

.footer__cta-text {
  margin: 0.45rem 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  max-width: 42ch;
}

.footer__cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer__cta-btn {
  white-space: nowrap;
}

.footer__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.footer__cta-phone:hover {
  color: var(--secondary);
}

/* Main grid */
.footer__main {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer__logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.footer__logo img {
  display: block;
  height: 48px;
  width: auto;
}

.footer__tagline {
  margin: 0 0 1rem;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 34ch;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.footer__badge {
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(109, 179, 63, 0.12);
  border: 1px solid rgba(109, 179, 63, 0.28);
  border-radius: var(--radius-full);
}

.footer__social {
  display: flex;
  gap: 0.6rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.footer__social a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 179, 0.35);
}

.footer__heading {
  position: relative;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1.15rem;
  padding-bottom: 0.65rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Contact list */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer__contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(109, 179, 63, 0.25);
}

.footer__contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.footer__contact-item a {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--secondary);
}

.footer__contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* Nav columns */
.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__col a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--secondary);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

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

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