/* ════════════════════════════════════════════════════════════════════
   PARADIGM3D — GLOBAL DESIGN SYSTEM
   Premium 3D Manufacturing Website
   ════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ───────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────────────── */
:root {
  /* Colors */
  --navy: #020A2E;
  --navy-2: #07154D;
  --navy-3: #0B1D5E;
  --blue: #2F5BFF;
  --blue-hover: #1A45E0;
  --blue-soft: rgba(47, 91, 255, 0.08);
  --blue-glow: rgba(47, 91, 255, 0.25);
  --orange: #FF6A2A;
  --orange-hover: #E8551A;
  --orange-soft: rgba(255, 106, 42, 0.08);

  --bg: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-grid: #F0F3F9;
  --surface: #FFFFFF;
  --surface-2: #FAFBFD;

  --text-dark: #111827;
  --text: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  --border: #E5EAF2;
  --border-strong: #D1D9E6;

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Layout */
  --maxw: 1200px;
  --radius: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.05), 0 24px 56px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 8px 24px rgba(47, 91, 255, 0.25);
  --shadow-orange: 0 8px 24px rgba(255, 106, 42, 0.25);

  /* Header */
  --header-h: 82px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 700;
}

/* ── Container ──────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography Scale ───────────────────────────────────────────────── */
.h1 {
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.06;
  font-weight: 700;
}

.h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 16px;
}

.h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.h4 {
  font-size: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.center .eyebrow::before,
.text-center .eyebrow::before {
  display: none;
}

.lead {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 640px;
}

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

/* ── Sections ───────────────────────────────────────────────────────── */
.section {
  padding: 110px 0;
  position: relative;
}

.section--sm {
  padding: 80px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--light {
  background: var(--bg-light);
}

.section--navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: #fff;
}

.section--navy .eyebrow {
  color: var(--orange);
}

.section--navy .eyebrow::before {
  background: var(--orange);
}

.section--navy .lead {
  color: rgba(255, 255, 255, 0.65);
}

.section-head {
  max-width: 700px;
  margin-bottom: 56px;
}

.section-head.center,
.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Blueprint Grid Background ──────────────────────────────────────── */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 91, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.grid-bg>* {
  position: relative;
  z-index: 1;
}

.grid-bg-navy::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Radial Glow ────────────────────────────────────────────────────── */
.glow {
  position: relative;
}

.glow::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 12px 32px rgba(47, 91, 255, 0.3);
}

.btn--orange {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.btn--orange:hover {
  background: var(--orange-hover);
}

.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-dark);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--white {
  background: #fff;
  color: var(--blue);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.btn--white:hover {
  background: var(--bg-light);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn .arrow {
  transition: transform 0.2s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ── Badge ──────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(47, 91, 255, 0.12);
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 91, 255, 0.15);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(47, 91, 255, 0.15);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(47, 91, 255, 0.05);
  }
}

/* ── Header ─────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__left {
  display: flex;
  align-items: center;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.brand__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.brand__text em {
  font-style: normal;
  color: var(--blue);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 48px;
}

.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}

.nav__link:hover {
  color: var(--text-dark);
  background: var(--bg-light);
}

.nav__link--active {
  color: var(--blue);
}

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

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
  z-index: 50;
}

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

.nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: all 0.15s var(--ease);
}

.nav__dropdown-link:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Social Icons Header */
.header__socials {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-light);
  transition: color 0.15s var(--ease);
}

.header__socials a:hover {
  color: var(--blue);
}

.header__cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 4px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  animation: slideDown 0.25s var(--ease);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 32px;
}

.mobile-menu__link {
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.mobile-menu__link:hover {
  color: var(--text-dark);
}

.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 60px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero h1 {
  margin-top: 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero__sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background: none;
  border: none;
}

.hero__play-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s var(--ease);
}

.hero__play:hover .hero__play-icon {
  transform: scale(1.08);
}

.hero__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  border-radius: var(--radius);
  max-height: 560px;
  width: 100%;
  object-fit: contain;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow__slide--active {
  opacity: 1;
  visibility: visible;
}

.hero-slideshow__image {
  border-radius: var(--radius);
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}

.hero-slideshow__indicators {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-slideshow__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.hero-slideshow__indicator--active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}


/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stat {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat__value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-stat__value em {
  font-style: normal;
  color: var(--blue);
}

.hero-stat__label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Grids ──────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

/* ── Split Layout ───────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse>* {
  direction: ltr;
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}

.card--navy {
  background: var(--navy);
  border-color: var(--navy-2);
  color: rgba(255, 255, 255, 0.85);
}

.card--navy h3 {
  color: #fff;
}

.card--navy p {
  color: rgba(255, 255, 255, 0.65);
}

.card--navy:hover {
  border-color: var(--navy-3);
  box-shadow: 0 12px 40px rgba(2, 10, 46, 0.3);
}

.card--navy .card__icon {
  background: rgba(47, 91, 255, 0.15);
  color: var(--blue);
}

.card--navy .card__link {
  color: var(--orange);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 20px;
}

.card__icon--orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  transition: gap 0.2s var(--ease);
}

.card__link:hover {
  gap: 10px;
}

/* ── Trust Feature Cards (dark navy row) ────────────────────────────── */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

/* ── Media Frame ────────────────────────────────────────────────────── */
.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

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

/* ── Project Cards ──────────────────────────────────────────────────── */
.project-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.project-card:hover .project-card__image {
  transform: scale(1.05);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2, 10, 46, 0.85) 100%);
  z-index: 1;
}

.project-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.project-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(47, 91, 255, 0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

.project-card__title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.project-card__desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s var(--ease);
}

.project-card__link:hover {
  gap: 10px;
}

/* ── Testimonials ───────────────────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
}

.testimonial-card__quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.testimonial-card__role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Stat Cards / Counter ───────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.stat-card__value em {
  font-style: normal;
  color: var(--orange);
}

.stat-card__label {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── FAQ Accordion ──────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq-item--open {
  border-color: var(--blue);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s var(--ease);
  font-family: var(--font-body);
}

.faq-item__trigger:hover {
  background: var(--bg-light);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.3s var(--ease), background 0.2s var(--ease);
}

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

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-item--open .faq-item__body {
  max-height: 300px;
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA Banner ─────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  padding: 64px;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 91, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.1), transparent 60%);
  pointer-events: none;
}

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

.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  max-width: 600px;
}

.cta-banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  font-size: 16px;
}

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

/* ── Logo Strip ─────────────────────────────────────────────────────── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 56px;
  padding: 20px 0;
}

.logo-strip__item {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0.6;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
  user-select: none;
}

.logo-strip__item:hover {
  opacity: 1;
  color: var(--text-muted);
}

.logo-strip__item span {
  color: var(--blue);
}

/* ── Material Chips ─────────────────────────────────────────────────── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border-strong);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

/* ── Process Steps ──────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 28px 16px;
}

.process-step__num {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
}

.process-step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.process-step__connector {
  position: absolute;
  top: 52px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--border-strong);
}

.process-step:last-child .process-step__connector {
  display: none;
}

/* ── Page Hero ──────────────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero--navy {
  background: var(--navy);
  border-bottom: none;
}

.page-hero--navy h1 {
  color: #fff;
}

.page-hero--navy .lead {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero--navy .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero--navy .breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-hero h1 {
  font-size: clamp(36px, 4.8vw, 56px);
  margin-top: 16px;
}

.page-hero .lead {
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  color: var(--text-light);
}

/* ── Forms ──────────────────────────────────────────────────────────── */
.form {
  display: grid;
  gap: 20px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.field label .required {
  color: var(--orange);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-light);
}

.field--error input,
.field--error select,
.field--error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field__error {
  font-size: 13px;
  color: #EF4444;
}

.field__helper {
  font-size: 13px;
  color: var(--text-muted);
}

.form-success {
  padding: 48px 32px;
  text-align: center;
  border: 2px dashed var(--blue);
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.form-success h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.file-upload:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.file-upload__text {
  font-size: 14px;
  color: var(--text-muted);
}

.file-upload__text strong {
  color: var(--blue);
}

.file-upload input {
  display: none;
}

/* ── Contact Info Cards ─────────────────────────────────────────────── */
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.info-card__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}

.info-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-card p,
.info-card a {
  font-size: 14px;
  color: var(--text-muted);
}

.info-card a:hover {
  color: var(--blue);
}

/* ── Pricing Cards ──────────────────────────────────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.pricing-card__tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card__price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__amount {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.pricing-card__label {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__features {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}

.pricing-card__feature svg {
  color: var(--blue);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: 28px;
  justify-content: center;
  width: 100%;
}

/* ── Comparison Table ───────────────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.comparison-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border);
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── Filter Tabs ────────────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
}

.filter-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.filter-tab--active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Blog Cards ─────────────────────────────────────────────────────── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-grid));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card__category {
  padding: 3px 10px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-card__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
  transition: gap 0.2s var(--ease);
}

.blog-card__read:hover {
  gap: 10px;
}

/* ── Featured Blog Card ─────────────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 0;
}

.blog-featured__image {
  height: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-grid));
  overflow: hidden;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__body {
  padding: 40px;
}

/* ── Team Cards ─────────────────────────────────────────────────────── */
.team-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue-soft), var(--bg-grid));
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  border: 3px solid var(--border);
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.team-card__role {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 4px;
}

.team-card__bio {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-card__social {
  margin-top: 16px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all 0.15s var(--ease);
}

.team-card__social:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ── Dark Video CTA ─────────────────────────────────────────────────── */
.video-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.video-cta__bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  object-fit: cover;
}

.video-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 40%, rgba(2, 10, 46, 0.6) 100%);
}

.video-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.video-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 40px);
}

.video-cta p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
  font-size: 16px;
}

.video-cta__play {
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.play-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.play-btn svg {
  color: #fff;
  margin-left: 3px;
}

/* ── 404 Page ───────────────────────────────────────────────────────── */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.page-404__content {
  max-width: 540px;
}

.page-404__code {
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 0;
}

.page-404 h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3vw, 40px);
}

.page-404 p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 17px;
}

.page-404__actions {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ── Floating Cube Animation (404) ──────────────────────────────────── */
.floating-cube {
  width: 60px;
  height: 60px;
  margin: 0 auto 32px;
  position: relative;
  animation: float-cube 4s ease-in-out infinite;
  z-index: 1;
}

.floating-cube__face {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blue-soft), rgba(47, 91, 255, 0.15));
  border: 1.5px solid rgba(47, 91, 255, 0.3);
  border-radius: 12px;
}

.floating-cube__face--front {
  transform: translateZ(30px);
}

.floating-cube__face--back {
  transform: rotateY(180deg) translateZ(30px);
}

@keyframes float-cube {

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

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.footer>* {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer .brand {
  color: #fff;
}

.footer .brand__text em {
  color: var(--blue);
}

.footer__about {
  margin-top: 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: grid;
  gap: 14px;
}

.footer__links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s var(--ease);
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
}

.footer__contact-line .ic-sm {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.15s var(--ease);
}

.footer__socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s var(--ease);
}

.footer__bottom-links a:hover {
  color: #fff;
}

.footer__bottom-socials {
  display: flex;
  gap: 12px;
}

.footer__bottom-socials a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.15s var(--ease);
}

.footer__bottom-socials a:hover {
  color: #fff;
}

/* ── Scroll Reveal Animation ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

.reveal--delay-4 {
  transition-delay: 0.4s;
}

/* ── Rating Block ───────────────────────────────────────────────────── */
.rating-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-block__score {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
}

.rating-block__stars {
  display: flex;
  gap: 3px;
  color: #FBBF24;
}

.rating-block__text {
  font-size: 14px;
  color: var(--text-muted);
}

/* ── Tabs ───────────────────────────────────────────────────────────── */
.tab-list {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
}

.tab-btn:hover {
  color: var(--text-dark);
}

.tab-btn--active {
  background: #fff;
  color: var(--text-dark);
  box-shadow: var(--shadow-xs);
  font-weight: 600;
}

/* ── Newsletter ─────────────────────────────────────────────────────── */
.newsletter {
  display: flex;
  gap: 12px;
}

.newsletter input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  font-family: inherit;
}

.newsletter input:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── Misc Utilities ─────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-0 {
  margin-bottom: 0;
}

/* Overlapping avatars */
.avatar-group {
  display: flex;
}

.avatar-group__item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-left: -8px;
}

.avatar-group__item:first-child {
  margin-left: 0;
}

/* Check list */
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue);
}

/* Map placeholder */
.map-placeholder {
  height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(47, 91, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 91, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, var(--bg-light), var(--bg-grid));
  background-size: 40px 40px, 40px 40px, 100% 100%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 15px;
}

/* Blog image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-grid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  min-height: 200px;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav {
    gap: 2px;
    margin-left: 24px;
  }

  .nav__link {
    padding: 8px 10px;
    font-size: 14px;
  }

  .hero__grid {
    gap: 40px;
  }

  .split {
    gap: 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header__cta {
    display: none;
  }

  .header__socials {
    display: none;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__image {
    order: -1;
  }

  .split,
  .blog-featured,
  .video-cta__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .trust-cards {
    grid-template-columns: 1fr;
    margin-top: -40px;
  }

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

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

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .cta-banner {
    padding: 48px 32px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .process-step__connector {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter {
    flex-direction: column;
  }

  .tab-list {
    flex-wrap: nowrap;
  }
}

@media (max-width: 420px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }
}