:root {
  --ink: #e2e8f0;
  --ink-soft: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --surface: #0a0e18;
  --surface-soft: #0d1220;
  --surface-tint: rgba(0, 85, 255, 0.06);
  --navy: #010408;
  --teal: #0f9f8f;
  --teal-dark: #0b7a6e;
  --blue: #0055FF;
  --blue-dark: #003DCC;
  --blue-light: #338AFF;
  --gold: #d4a74a;
  --rose: #e8688a;
  --purple: #8b7cff;
  --orange: #f09050;
  --accent: #0055FF;
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5), 0 8px 20px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
  --shadow-glow-blue: 0 8px 32px rgba(0, 85, 255, 0.2);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

.react-logo-grid-section {
  background: #010204;
  color: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #e2e8f0;
  font-family: "ABC Diatype", "Outfit", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  background-color: #010204;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-font-smoothing: antialiased;
}

.not-found-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 85, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(236, 72, 153, 0.12), transparent 24%),
    #010204;
}

.not-found-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 120px 20px 56px;
}

.not-found-card {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.86), rgba(1, 2, 4, 0.96)),
    #010204;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.not-found-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 0%, transparent 76%);
}

.not-found-orbit {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  margin: 0 auto 28px;
  border: 1px solid rgba(0, 85, 255, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(0, 85, 255, 0.22), 0 0 70px rgba(0, 85, 255, 0.2);
}

.not-found-orbit span {
  position: absolute;
  border-radius: 50%;
}

.not-found-orbit span:nth-child(1) {
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.not-found-orbit span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #0055ff;
  box-shadow: 0 0 28px rgba(0, 85, 255, 0.85);
  transform: translate(-50%, -50%);
}

.not-found-orbit span:nth-child(3) {
  top: 18px;
  right: 24px;
  width: 10px;
  height: 10px;
  background: #ec4899;
  box-shadow: 0 0 24px rgba(236, 72, 153, 0.65);
}

.not-found-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.not-found-card h1 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  color: #f8fafc;
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.not-found-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 22px auto 0;
  color: #a7b2c4;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.not-found-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 560px) {
  .not-found-page {
    padding-top: 96px;
  }

  .not-found-actions a {
    width: 100%;
    justify-content: center;
  }
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

.promo-bar {
  color: #94A3B8;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 10px clamp(18px, 5vw, 72px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.promo-btn {
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}

.promo-btn:hover {
  background: #5bb5ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(1, 2, 4, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px) saturate(1.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand-logo {
  width: clamp(138px, 13vw, 176px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--accent);
}

.main-nav a:not(.nav-cta):not(.nav-cta) {
  color: #cbd5e1;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px !important;
  color: #fff !important;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: var(--shadow-glow-blue);
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 85, 255, 0.35);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s;
}

.nav-toggle:hover {
  border-color: var(--accent);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #cbd5e1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-band,
.section-pad {
  padding-inline: clamp(18px, 5vw, 72px);
}

.section-pad {
  padding-block: clamp(76px, 9vw, 126px);
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 100%;
  min-height: 100vh;
  padding-block: clamp(58px, 8vw, 112px);
  background: #000;
}

.hero-dramatic {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(18px, 5vw, 72px);
}

.hero-dramatic-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-dramatic-title {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-dramatic-highlight {
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-dramatic-sub {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
}

.hero-dramatic-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 36px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-glow-blue);
  transition: transform 0.25s, box-shadow 0.25s;
}

.hero-dramatic-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.4);
}

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

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.hero-content h1 {
  color: #fff;
}

.hero-content .highlight-yellow,
.hero-content .highlight-green,
.hero-content .highlight-blue {
  -webkit-text-fill-color: #fff;
  background: none;
}

.hero-text {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow,
.sub-eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2.75rem, 5.8vw, 5.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.highlight-yellow,
.highlight-green,
.highlight-blue {
  background: #0055FF;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.hero-content .button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s;
}

.badge-item:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

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

.button.primary:hover {
  background: #5bb5ff;
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.35);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  border-color: var(--accent);
  background: #fff;
}

.button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.button.light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.badge-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 14px;
  color: #475569;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(203, 213, 225, 0.6);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  transition: border-color 0.2s;
}

.badge-item:hover {
  border-color: var(--accent);
}

.badge-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.badge-circle.basis {
  background: var(--rose);
}

.badge-circle.iso {
  background: var(--teal);
}

.badge-circle.ec {
  background: var(--blue);
}

.badge-circle.fintech {
  background: var(--gold);
}

.avatar-play-btn {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}

.avatar-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 56px rgba(7, 17, 31, 0.4);
}

.avatar-play-btn {
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--accent);
}

.section-heading,
.stats-header {
  max-width: 760px;
  margin: 0 auto 46px;
}

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

.section-heading h2,
.stats-header h2,
.space-copy h2,
.contact-info-panel h2 {
  color: #f1f5f9;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.sub-heading-text,
.space-copy p,
.contact-info-text {
  color: #94a3b8;
  font-size: 1.04rem;
  max-width: 640px;
  margin-inline: auto;
}

.stats-section {
  position: relative;
  margin-top: -24px;
  z-index: 2;
  overflow: hidden;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

/* ============================
   Clean Premium Stats Section
   ============================ */
.stats-section {
  position: relative;
  margin-top: -24px;
  z-index: 2;
  overflow: hidden;
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.stats-premium-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-premium-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.stats-premium-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0055FF;
  padding-bottom: 12px;
}

.stats-premium-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: #0055FF;
  border-radius: 999px;
}

.stats-premium-title {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.stats-premium-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 560px;
  margin-inline: auto;
}

.stats-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.stats-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(10, 14, 24, 0.6);
  border: 1px solid rgba(0, 85, 255, 0.1);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, background 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.stats-bento-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s;
}

.stats-bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 85, 255, 0.35);
  background: rgba(0, 85, 255, 0.04);
}

.stats-bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 85, 255, 0.1);
  color: #0055FF;
  transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bento-card:hover .stats-bento-icon {
  background: #0055FF;
  color: #fff;
  transform: scale(1.08);
}

.stats-bento-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stats-bento-meta strong {
  display: inline-block;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #ffffff;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bento-card:hover .stats-bento-meta strong {
  color: #0055FF;
  transform: translateX(2px);
}

.stats-bento-meta span {
  font-size: 0.92rem;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: -0.005em;
}

/* Featured card spans 2 cols */
.stats-bento-featured {
  grid-column: span 2;
  min-height: 220px;
  padding: 36px 32px;
  background: linear-gradient(135deg, #0055FF 0%, #003DCC 100%);
  border-color: transparent;
}

.stats-bento-featured .stats-bento-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px;
  height: 48px;
}

.stats-bento-featured:hover .stats-bento-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: scale(1.05);
}

.stats-bento-featured .stats-bento-meta {
  gap: 8px;
}

.stats-bento-featured .stats-bento-meta strong {
  font-size: clamp(3rem, 5vw, 4rem);
  color: #fff;
}

.stats-bento-featured:hover .stats-bento-meta strong {
  color: #fff;
  transform: none;
}

.stats-bento-featured .stats-bento-meta span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-bento-featured p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 380px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* CTA card */
.stats-bento-cta {
  background: rgba(0, 85, 255, 0.06);
  border-color: rgba(0, 85, 255, 0.25);
  text-decoration: none;
  color: #ffffff;
}

.stats-bento-cta:hover {
  background: #0055FF;
  border-color: #0055FF;
}

.stats-bento-cta-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: space-between;
}

.stats-bento-cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0055FF;
  transition: color 0.3s;
}

.stats-bento-cta:hover .stats-bento-cta-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.stats-bento-cta h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.stats-bento-cta svg {
  align-self: flex-end;
  color: #0055FF;
  transition: color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-bento-cta:hover svg {
  color: #fff;
  transform: translate(4px, -4px);
}

.stats-impact-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.35fr);
  gap: 18px;
  align-items: stretch;
}

.stats-impact-featured {
  grid-column: auto;
  min-height: 100%;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 85, 255, 0.92), rgba(15, 159, 143, 0.78)),
    #0055ff;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 85, 255, 0.22);
}

.stats-impact-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 36px 36px;
}

.stats-impact-featured-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(34px, 6vw, 80px);
}

.stats-impact-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stats-impact-featured .stats-bento-meta,
.stats-impact-featured p {
  position: relative;
  z-index: 1;
}

.stats-impact-featured .stats-bento-meta strong {
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.85;
  letter-spacing: 0;
}

.stats-impact-featured .stats-bento-meta span {
  margin-top: 8px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.08em;
}

.stats-impact-featured p {
  max-width: 460px;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.stats-impact-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.stats-impact-metric {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.94), rgba(1, 2, 4, 0.96)),
    #010204;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.stats-impact-metric:hover {
  transform: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(1, 2, 4, 0.98)),
    #010204;
  box-shadow: inset 0 0 0 1px rgba(0, 85, 255, 0.36);
}

.stats-impact-metric .stats-bento-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.stats-impact-metric .stats-bento-meta strong {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0;
}

.stats-impact-metric .stats-bento-meta span {
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 800;
}

.stats-impact-cta {
  grid-column: 1 / -1;
  min-height: 132px;
  padding: 24px 28px;
  background:
    linear-gradient(90deg, rgba(0, 85, 255, 0.12), rgba(15, 159, 143, 0.08)),
    rgba(10, 14, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.stats-impact-cta .stats-bento-cta-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.stats-impact-cta .stats-bento-cta-eyebrow {
  grid-column: 1;
}

.stats-impact-cta h3 {
  grid-column: 1;
  max-width: 560px;
  font-size: clamp(1.45rem, 2.6vw, 2.4rem);
  font-weight: 900;
}

.stats-impact-cta svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: #fff;
  background: #0055ff;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .stats-bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stats-bento-featured {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .stats-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bento-featured {
    grid-column: span 2;
    padding: 28px 24px;
  }
  .stats-bento-featured .stats-bento-meta strong {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .stats-bento-grid {
    grid-template-columns: 1fr;
  }
  .stats-bento-featured {
    grid-column: span 1;
  }
  .stats-bento-card {
    min-height: 180px;
  }
}

@media (max-width: 1180px) {
  .stats-impact-grid {
    grid-template-columns: 1fr;
  }

  .stats-impact-featured {
    grid-column: 1;
    min-height: 380px;
  }

  .stats-impact-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .stats-premium-header {
    text-align: left;
    margin-bottom: 34px;
  }

  .stats-premium-eyebrow::after {
    left: 0;
    transform: none;
  }

  .stats-impact-grid,
  .stats-impact-featured {
    grid-column: 1;
  }

  .stats-impact-featured {
    min-height: 340px;
    border-radius: 14px;
  }

  .stats-impact-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 14px;
  }

  .stats-impact-metric {
    min-height: 160px;
    padding: 20px;
  }

  .stats-impact-cta {
    min-height: 118px;
    border-radius: 14px;
  }
}

@media (max-width: 520px) {
  .stats-premium-wrapper {
    padding: 0 16px;
  }

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

  .stats-impact-featured {
    min-height: 300px;
    padding: 24px;
  }

  .stats-impact-featured-top {
    margin-bottom: 42px;
  }

  .stats-impact-metric {
    min-height: 124px;
  }

  .stats-impact-cta .stats-bento-cta-content {
    grid-template-columns: 1fr;
  }

  .stats-impact-cta svg {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

.stats-grid,
.solutions-grid,
.industry-grid,
.demand-grid,
.client-cards-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 18px;
}

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

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

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

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

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

.stat-item,
.solution-card,
.ind-card,
.demand-card,
.client-card,
.contact-form-card,
.contact-info-panel {
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.stat-item {
  position: relative;
  min-height: 200px;
  padding: 32px 20px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: #0055FF;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 20px 50px -12px rgba(0, 85, 255, 0.3);
}

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

.stat-item-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 85, 255, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}

.stat-item:hover .stat-item-glow {
  opacity: 1;
}

.stat-item .stat-icon-wrap,
.stat-item > *:not(.stat-item-glow) {
  position: relative;
  z-index: 1;
}

.stat-icon-wrap,
.sol-icon-wrap,
.ind-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #0055FF;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px -6px rgba(0, 85, 255, 0.5);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.solution-card.is-featured .sol-icon-wrap {
  background: linear-gradient(135deg, #0055FF 0%, #003DCC 100%);
  box-shadow: 0 12px 32px -8px rgba(0, 85, 255, 0.7);
  width: 56px;
  height: 56px;
}

.solution-card:hover .sol-icon-wrap {
  transform: scale(1.08) rotate(-5deg);
}

.stat-item:hover .stat-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.stat-item strong {
  display: block;
  color: #f1f5f9;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .stat-value {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-item .stat-label,
.client-card-region {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.readymade-section,
.custom-demand-section,
.global-section {
  background: #010204;
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.products-section {
  position: relative;
  background: linear-gradient(180deg, rgba(1, 2, 4, 0.0) 0%, rgba(0, 85, 255, 0.04) 100%);
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.products-section > * {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s, border-color 0.3s;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 85, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.product-card.accent-blue { --product-accent: #0055FF; --product-accent-soft: rgba(0, 85, 255, 0.14); }
.product-card.accent-teal { --product-accent: #0f9f8f; --product-accent-soft: rgba(15, 159, 143, 0.14); }
.product-card.accent-purple { --product-accent: #8b7cff; --product-accent-soft: rgba(139, 124, 255, 0.14); }
.product-card.accent-pink { --product-accent: #e8688a; --product-accent-soft: rgba(232, 104, 138, 0.14); }
.product-card.accent-yellow { --product-accent: #d4a74a; --product-accent-soft: rgba(212, 167, 74, 0.14); }
.product-card.accent-indigo { --product-accent: #6366F1; --product-accent-soft: rgba(99, 102, 241, 0.14); }

.product-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--product-accent-soft, rgba(0, 85, 255, 0.12)), rgba(255, 255, 255, 0.02));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  color: #fff;
  background: var(--product-accent, var(--accent));
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 24px 24px 26px;
}

.product-body h3 {
  margin: 0;
  color: #f1f5f9;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-body p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 11px 20px;
  color: #fff;
  background: linear-gradient(135deg, #25D366, #1ebe5b);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, gap 0.2s ease;
}

.product-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1ebe5b, #18a54e);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.25);
  gap: 12px;
}

.product-cta:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 3px;
}

.product-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.product-cta-arrow {
  transition: transform 0.2s ease;
}

.product-cta:hover .product-cta-arrow {
  transform: translateX(2px);
}

/* ============================
   Premium Solutions Header
   ============================ */
.solutions-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(0, 85, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(0, 85, 255, 0.05) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.solutions-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: left;
}

.solutions-header-text {
  max-width: 720px;
}

.solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.solutions-eyebrow-line {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #0055FF 100%);
}

.solutions-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #60a5fa;
}

.solutions-title {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions-subtitle {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 600px;
}

.solutions-header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  background: rgba(0, 85, 255, 0.05);
  border: 1px solid rgba(0, 85, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(12px);
}

.solutions-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solutions-meta-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0055FF;
  line-height: 1;
  letter-spacing: -0.02em;
}

.solutions-meta-item span {
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.solutions-meta-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 85, 255, 0.3) 50%, transparent 100%);
}

.solutions-tabs-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 42px;
  z-index: 1;
}

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
}

.tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 18px;
  color: #94a3b8;
  background: rgba(0, 85, 255, 0.04);
  border: 1px solid rgba(0, 85, 255, 0.12);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s;
}

.tab-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 85, 255, 0.15);
  color: #60a5fa;
  font-size: 0.7rem;
  font-weight: 700;
}

.tab-pill.active,
.tab-pill:hover {
  color: #fff;
  background: #0055FF;
  border-color: #0055FF;
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.35);
}

.tab-pill.active .tab-pill-count,
.tab-pill:hover .tab-pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.solution-card,
.demand-card {
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.3s, opacity 0.3s;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 360px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(0, 85, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 14, 24, 0.85) 0%, rgba(10, 14, 24, 0.6) 100%);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s, opacity 0.3s;
}

.solution-card-pattern {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at center, rgba(0, 85, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}

.solution-card-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 85, 255, 0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}

.solution-card:hover .solution-card-glow,
.solution-card:hover .solution-card-pattern {
  opacity: 1;
}

.solution-card > *:not(.solution-card-glow):not(.solution-card-pattern) {
  position: relative;
  z-index: 1;
}

.solution-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sol-icon-orbit {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(0, 85, 255, 0.5);
  border-radius: 16px;
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity 0.5s, transform 1.2s linear;
  pointer-events: none;
}

.solution-card:hover .sol-icon-orbit {
  opacity: 1;
  transform: rotate(90deg);
}

.solution-card.is-featured {
  background: linear-gradient(180deg, rgba(0, 85, 255, 0.12) 0%, rgba(10, 14, 24, 0.85) 100%);
  border-color: rgba(0, 85, 255, 0.3);
  box-shadow: 0 16px 50px -16px rgba(0, 85, 255, 0.4);
}

.solution-card.is-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 85, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.solution-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(0, 85, 255, 0.12);
  border: 1px solid rgba(0, 85, 255, 0.25);
  color: #93c5fd;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-card.is-featured .solution-card-badge {
  background: #0055FF;
  border-color: #0055FF;
  color: #fff;
}

.solution-card-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.solution-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.solution-card-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.solution-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

.solution-card-features svg {
  flex-shrink: 0;
  color: #0055FF;
  background: rgba(0, 85, 255, 0.12);
  border-radius: 50%;
  padding: 3px;
  width: 18px;
  height: 18px;
}

.solution-card.is-featured .solution-card-features svg {
  background: rgba(0, 85, 255, 0.2);
}

.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 85, 255, 0.1);
  margin-top: auto;
}

.solution-card.is-featured .solution-card-footer {
  border-top-color: rgba(0, 85, 255, 0.2);
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, gap 0.25s;
}

.solution-card.is-featured .solution-card-link {
  color: #fff;
}

.solution-card-link:hover {
  color: #fff;
  gap: 12px;
}

.solution-card-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 85, 255, 0.15);
  border: 1px solid rgba(0, 85, 255, 0.3);
  transition: background 0.2s, transform 0.3s;
}

.solution-card.is-featured .solution-card-link-arrow {
  background: #fff;
  border-color: #fff;
  color: #0055FF;
}

.solution-card-link:hover .solution-card-link-arrow {
  background: #0055FF;
  color: #fff;
  transform: translateX(2px);
}

.solution-card.is-featured .solution-card-link:hover .solution-card-link-arrow {
  background: #fff;
  color: #0055FF;
}

.solution-card.is-featured .solution-card-link:hover {
  color: #fff;
}

.solution-card:hover,
.demand-card:hover,
.ind-card:hover,
.client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 85, 255, 0.4);
  box-shadow: 0 24px 60px -16px rgba(0, 85, 255, 0.4);
}

.solution-card[style*="display: none"],
.solution-card.is-hidden {
  display: none;
}

.solution-card h3,
.demand-card h3 {
  margin: 0;
  color: #f1f5f9;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.solution-card.is-featured h3 {
  font-size: 1.4rem;
}

.solution-card p,
.demand-card p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .solutions-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .solutions-header-meta {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .solution-card {
    min-height: 320px;
    padding: 24px 22px 22px;
  }
  .solution-card-features {
    gap: 6px;
  }
}

.space-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(36px, 6vw, 78px);
}

.space-img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.industry-grid {
  gap: 14px;
}

.ind-card {
  min-height: 146px;
  padding: 24px 14px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.ind-card h4 {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

/* --- Modern Industry Section --- */
.industry-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.industry-modern-card {
  position: relative;
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(10, 14, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-modern-card:hover {
  transform: translateY(-6px);
  border-color: var(--industry-accent, #0055FF);
  box-shadow: 0 18px 50px -10px rgba(0, 0, 0, 0.5),
              0 0 0 1px var(--industry-accent, #0055FF),
              0 0 40px -10px var(--industry-accent, #0055FF);
}

.industry-modern-card-bg {
  position: absolute;
  inset: 0;
  background: var(--industry-gradient, linear-gradient(135deg, #0055FF 0%, #338AFF 100%));
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.industry-modern-card:hover .industry-modern-card-bg {
  opacity: 0.18;
}

.industry-modern-card-pattern {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--industry-gradient, linear-gradient(135deg, #0055FF 0%, #338AFF 100%));
  opacity: 0.08;
  filter: blur(20px);
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.industry-modern-card:hover .industry-modern-card-pattern {
  opacity: 0.3;
  transform: scale(1.2);
}

.industry-modern-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.industry-modern-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #0055FF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px -6px var(--industry-accent, #0055FF);
  margin-bottom: 6px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-modern-card:hover .industry-modern-icon {
  transform: scale(1.1) rotate(-5deg);
}

.industry-modern-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.industry-modern-divider {
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: #0055FF;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-modern-card:hover .industry-modern-divider {
  width: 64px;
}

.industry-modern-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
}

.industry-modern-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0055FF;
}

.industry-modern-stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.industry-modern-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.industry-modern-card:hover .industry-modern-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: #0055FF;
  color: #fff;
  border-color: #0055FF;
}

.industry-section {
  position: relative;
  overflow: hidden;
  background: #010204;
}

.industry-modern-grid {
  max-width: 1180px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.industry-modern-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.32fr) 54px;
  align-items: center;
  min-height: 132px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 14, 24, 0.96), rgba(1, 2, 4, 0.98)),
    #010204;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.industry-modern-card:hover {
  transform: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--industry-accent, #0055ff) 12%, rgba(10, 14, 24, 0.98)), rgba(1, 2, 4, 0.98)),
    #010204;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--industry-accent, #0055ff) 42%, transparent);
}

.industry-modern-card-bg,
.industry-modern-card-pattern,
.industry-modern-divider {
  display: none;
}

.industry-modern-card-content {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}

.industry-modern-index {
  grid-column: 1 / -1;
  order: -2;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.industry-modern-icon {
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--industry-accent, #0055ff);
  border-radius: 14px;
  box-shadow: 0 0 0 8px color-mix(in srgb, var(--industry-accent, #0055ff) 12%, transparent);
}

.industry-modern-card:hover .industry-modern-icon {
  transform: scale(1.04);
}

.industry-modern-title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.industry-modern-stat {
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-modern-stat-value {
  color: #f8fafc;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: 0;
}

.industry-modern-stat-label {
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.industry-modern-arrow {
  position: static;
  justify-self: center;
  width: 38px;
  height: 38px;
  opacity: 1;
  transform: none;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.industry-modern-card:hover .industry-modern-arrow {
  background: var(--industry-accent, #0055ff);
  border-color: var(--industry-accent, #0055ff);
}

@media (max-width: 640px) {
  .industry-modern-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  .industry-modern-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
  }

  .industry-modern-card-content {
    grid-template-columns: 58px 1fr;
    padding: 22px 20px 12px;
  }

  .industry-modern-stat {
    padding: 0 20px 20px 98px;
    border-left: 0;
  }

  .industry-modern-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

.border-pink {
  border-top: 3px solid var(--rose);
}

.border-purple {
  border-top: 3px solid var(--purple);
}

.border-green {
  border-top: 3px solid var(--teal);
}

.border-dark {
  border-top: 3px solid #475569;
}

.border-blue {
  border-top: 3px solid var(--accent);
}

.demand-card.highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #0a0e18, #0f1a30);
  border-color: rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--accent);
}

.demand-card.highlight-card h3 {
  color: #f1f5f9;
}

.demand-card.highlight-card .button {
  align-self: flex-start;
}

.testimonials-section {
  background: transparent;
  padding-top: clamp(76px, 9vw, 126px);
  padding-bottom: clamp(76px, 9vw, 126px);
}

.section-pad.testimonials-section {
  padding-block: clamp(76px, 9vw, 126px);
}

.testimonial-slider-container {
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card-wrap {
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: rgba(10, 14, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.testimonial-card-wrap.active {
  display: grid;
}

.testimonial-video {
  position: relative;
  min-height: 390px;
  background: #010408;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-avatar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.86));
}

.avatar-play-btn {
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--accent);
}

.avatar-name strong,
.testimonial-author strong {
  display: block;
  font-weight: 900;
}

.avatar-name span,
.testimonial-author span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.avatar-name span {
  color: #64748b;
}

.testimonial-quote-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.quote-stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.16em;
}

.testimonial-quote-wrap p {
  color: #e2e8f0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.42;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.global-network-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(0, 85, 255, 0.22), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(236, 72, 153, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(7, 12, 24, 0.98), rgba(1, 2, 4, 0.98) 58%, rgba(0, 4, 12, 0.98)),
    #010204;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.global-network-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 82%);
}

.global-network-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  overflow: hidden;
  margin-top: 28px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.global-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.global-stat strong {
  color: #f8fafc;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0;
}

.global-stat span {
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 700;
}

.global-network-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.global-network-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(8px, 1.5vw, 16px) 0;
}

.global-network-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #f8fafc;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.global-network-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 22px;
  color: #a7b2c4;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8;
}

.global-route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.global-route-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.world-connections-wrap {
  min-width: 0;
}

.world-map-container {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  height: 100%;
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 85, 255, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(6, 11, 22, 0.96), rgba(1, 2, 4, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.36);
}

.world-map-container::after {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 18px;
}

.global-map-root {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.world-map-container .maplibregl-map,
.world-map-container .maplibregl-canvas {
  font-family: "ABC Diatype", "Outfit", system-ui, -apple-system, sans-serif;
}

.world-map-container .maplibregl-control-container {
  display: block;
}

.world-map-container .maplibregl-ctrl-attrib {
  display: none;
}

.global-map-controls > div {
  background: rgba(1, 2, 4, 0.78) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #f8fafc;
  backdrop-filter: blur(16px);
}

.global-map-controls button {
  color: #f8fafc;
}

.global-map-actions {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.global-map-actions button {
  min-height: 36px;
  padding: 0 13px;
  color: #f8fafc;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(0, 85, 255, 0.24);
  border: 1px solid rgba(59, 130, 246, 0.44);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.global-map-actions button:hover {
  transform: translateY(-2px);
  background: rgba(0, 85, 255, 0.36);
  border-color: rgba(147, 197, 253, 0.7);
}

.global-map-legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 220px);
  padding: 8px;
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(1, 2, 4, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.global-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
}

.global-map-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.global-map-legend .hq {
  background: #0055ff;
  box-shadow: 0 0 18px rgba(0, 85, 255, 0.85);
}

.global-map-legend .destinations {
  background: #ec4899;
}

.global-map-legend .route {
  width: 18px;
  height: 2px;
  background: #3b82f6;
  border-radius: 999px;
}

.world-map-container .maplibregl-popup-content {
  padding: 0;
  color: #f8fafc;
  background: rgba(1, 2, 4, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.world-map-container .maplibregl-popup-tip {
  border-top-color: rgba(1, 2, 4, 0.88);
}

.world-map-label {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 3;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-map-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: contain;
  object-position: center;
  opacity: 0.54;
  filter: brightness(0.92) saturate(0.85) contrast(1.1);
}

.client-dots-container {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.client-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.client-dot-ring,
.client-dot-core {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
}

.client-dot-ring {
  width: 30px;
  height: 30px;
  margin: -15px;
  border: 2px solid var(--accent);
  animation: pulse 1.8s infinite;
}

.client-dot-core {
  width: 11px;
  height: 11px;
  margin: -5.5px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(1, 2, 4, 0.86), 0 0 22px currentColor;
}

.client-dot-tooltip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-width: 132px;
  padding: 10px 12px;
  color: #e2e8f0;
  background: rgba(1, 2, 4, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-dot:hover .client-dot-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.client-dot-tooltip strong,
.client-dot-tooltip span {
  display: block;
  font-size: 0.8rem;
}

.client-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 15px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7), rgba(10, 14, 24, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.client-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(10, 14, 24, 0.98));
  border-color: color-mix(in srgb, var(--accent) 48%, rgba(255, 255, 255, 0.12));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), 0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}

.client-card-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--accent);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.client-card-info {
  min-width: 0;
}

.client-card-name {
  margin: 0;
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 900;
}

.client-card-region {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 0.84rem;
  font-weight: 700;
}

.cta-banner-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(135deg, #060a12 0%, #0f1a30 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.matrix-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.cta-content {
  position: relative;
  max-width: 650px;
}

.cta-content h2 {
  margin-bottom: 12px;
  color: #f1f5f9;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.04;
}

.cta-content p {
  margin-bottom: 0;
  color: #94a3b8;
  font-size: 1.05rem;
}

.contact-section {
  background: transparent;
}

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

.contact-info-panel,
.contact-form-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-weight: 600;
}

.contact-form-card {
  display: grid;
  gap: 18px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: #e2e8f0;
  background: rgba(1, 2, 4, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.1);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Minimal Footer ===== */
.footer-minimal {
  position: relative;
  padding: clamp(48px, 6vw, 80px) clamp(18px, 5vw, 72px) 0;
  color: #94a3b8;
  font-family: "ABC Diatype", "Outfit", system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.footer-minimal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(35% 80% at 30% 0%, rgba(255, 255, 255, 0.06), transparent);
}

.footer-minimal-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-minimal-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-minimal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 40px 32px;
}

@media (min-width: 768px) {
  .footer-minimal-grid {
    grid-template-columns: 4fr 1fr 1fr;
    padding: 48px 40px;
    gap: 40px;
  }
}

.footer-minimal-logo {
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-minimal-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-minimal-logo:hover .footer-minimal-logo-img {
  opacity: 0.85;
}

.footer-minimal-desc {
  max-width: 360px;
  font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
  margin-bottom: 20px;
}

.footer-minimal-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-minimal-social-btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #64748b;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  transition: all 0.2s;
}

.footer-minimal-social-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-minimal-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-minimal-col-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-minimal-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 0;
  width: max-content;
  transition: color 0.2s;
}

.footer-minimal-col a:hover {
  color: #e2e8f0;
  text-decoration: underline;
}

.footer-minimal-bottom {
  text-align: center;
  padding: 12px 32px 28px;
}

.footer-minimal-bottom p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 300;
  color: #475569;
}

.footer-minimal-bottom a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

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

.scroll-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 20;
  display: none;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow-blue);
  transition: transform 0.2s;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-top.visible {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(1, 2, 4, 0.92);
  backdrop-filter: blur(24px);
}

.modal.open {
  display: grid;
}

.modal-panel {
  width: min(880px, 100%);
  padding: 18px;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.modal-panel [data-video-close] {
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-weight: 800;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  color: #e2e8f0;
  background: #010408;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
}

.text-green,
.text-teal {
  color: var(--teal);
}

.text-blue,
.text-indigo {
  color: var(--accent);
}

.text-yellow,
.text-orange {
  color: var(--gold);
}

.text-red,
.text-pink {
  color: var(--rose);
}

.text-purple {
  color: var(--purple);
}

.text-dark {
  color: #cbd5e1;
}

.text-white {
  color: #fff;
}

.bg-soft-green,
.bg-soft-teal,
.bg-light-green,
.bg-light-teal {
  background: rgba(15, 159, 143, 0.08);
}

.bg-soft-blue,
.bg-light-blue {
  background: rgba(0, 85, 255, 0.08);
}

.bg-soft-yellow,
.bg-soft-orange,
.bg-light-yellow {
  background: rgba(212, 167, 74, 0.08);
}

.bg-soft-pink,
.bg-soft-red,
.bg-light-red {
  background: rgba(232, 104, 138, 0.08);
}

.bg-light-purple {
  background: rgba(139, 124, 255, 0.08);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger>* {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-stagger.visible>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 0.04s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 0.08s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 0.12s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 0.16s;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 0.2s;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.7);
  }

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

@media (max-width: 1100px) {

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

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

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

  .global-network-layout {
    grid-template-columns: 1fr;
  }

  .global-network-layout .client-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .main-nav {
    position: fixed;
    inset: 76px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    background: rgba(10, 14, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    justify-content: center;
  }

  .hero,
  .space-grid,
  .contact-layout,
  .testimonial-card-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100vh;
    text-align: center;
    justify-content: center;
  }

  .section-heading,
  .stats-header {
    margin-inline: auto;
  }

  .cta-banner-card {
    align-items: flex-start;
    flex-direction: column;
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 680px) {
  .promo-container {
    flex-direction: column;
    gap: 8px;
  }

  .section-pad {
    padding-block: 58px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.55rem);
  }

  .hero-dramatic-title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .hero-dramatic-sub {
    max-width: 100%;
  }

  .hero-dramatic-cta {
    width: 100%;
  }

  .stats-grid,
  .solutions-grid,
  .industry-grid,
  .demand-grid,
  .client-cards-grid,
  .products-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .global-network-shell {
    padding: 14px;
    border-radius: 14px;
  }

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

  .global-stat {
    justify-content: space-between;
    min-height: 58px;
    padding: 14px;
  }

  .global-network-layout .client-cards-grid {
    grid-template-columns: 1fr;
  }

  .solutions-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }

  .tab-pill {
    flex: 0 0 auto;
  }

  .solution-card,
  .demand-card,
  .contact-form-card,
  .contact-info-panel {
    padding: 24px;
  }

  .product-body {
    padding: 20px 20px 22px;
  }

  .product-cta {
    width: 100%;
    justify-content: center;
  }

  .world-map-container {
    min-height: 300px;
  }

  .world-map-bg {
    min-height: 260px;
  }

  .world-map-label {
    top: 14px;
    left: 16px;
  }

  .client-dots-container {
    inset: 0;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  background: #1ebe5b;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
  flex-shrink: 0;
  display: block;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsapp-pulse 2.4s infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-features li {
  font-size: 0.8rem;
  color: #94a3b8;
  padding-left: 16px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    padding: 12px;
  }
  .whatsapp-float-label {
    display: none;
  }
}

/* ============================
   Testimonial Bento Grid
   ============================ */
.testimonials-bento-section {
  position: relative;
  overflow: hidden;
}

.testimonial-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  max-width: 1200px;
  margin: 12px auto 0;
}

.testimonial-bento-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.testimonial-bento-card {
  position: relative;
  border-radius: 18px;
  padding: 24px 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
}

.testimonial-bento-card.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}

.testimonial-bento-card:hover {
  transform: translateY(-4px);
}

.testimonial-bento-light {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.08);
}

.testimonial-bento-light:hover {
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.15);
}

.testimonial-bento-dark {
  background: linear-gradient(135deg, #0a0e18 0%, #111827 100%);
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-bento-dark:hover {
  border-color: rgba(0, 85, 255, 0.3);
  box-shadow: 0 18px 40px -12px rgba(0, 85, 255, 0.25);
}

.testimonial-bento-blue {
  background: linear-gradient(135deg, #0055FF 0%, #0066FF 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-bento-blue:hover {
  box-shadow: 0 18px 40px -12px rgba(0, 85, 255, 0.5);
}

.testimonial-bento-tall {
  flex: 7;
}

.testimonial-bento-tall + .testimonial-bento-card {
  flex: 3;
}

.testimonial-bento-col-2 .testimonial-bento-card {
  flex: 1;
}

.testimonial-bento-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.testimonial-bento-stars {
  color: #0055FF;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-bento-light .testimonial-bento-stars {
  color: #0055FF;
}

.testimonial-bento-blue .testimonial-bento-stars {
  color: #fff;
}

.testimonial-bento-quote {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  flex-grow: 1;
}

.testimonial-bento-tall .testimonial-bento-quote {
  font-size: 1rem;
  line-height: 1.5;
}

.testimonial-bento-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.testimonial-bento-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial-bento-author-info strong {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-bento-author-info span {
  font-size: 0.72rem;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-bento-light .testimonial-bento-author-info span {
  color: #475569;
}

.testimonial-bento-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-bento-tall .testimonial-bento-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.testimonial-bento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-bento-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 50px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .testimonial-bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-bento-col-3 {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .testimonial-bento-col-3 .testimonial-bento-card {
    flex: 1;
  }
}

@media (max-width: 680px) {
  .testimonial-bento-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-bento-col-3 {
    flex-direction: column;
  }
  .testimonial-bento-card {
    padding: 20px 18px;
  }
}

/* ============================
   Feature Grid Cards
   ============================ */
.feature-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 14, 24, 0.4);
}

.feature-card {
  position: relative;
  padding: 28px 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border-right: 1px dashed rgba(255, 255, 255, 0.08);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-8px);
}

.feature-card.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}

.feature-card:hover {
  background: rgba(0, 85, 255, 0.04);
}

.feature-card:nth-child(3n) {
  border-right: none;
}

.feature-card:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-card-pattern {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -8px;
  width: calc(100% + 160px);
  height: 100%;
  pointer-events: none;
  color: rgba(148, 163, 184, 0.4);
  -webkit-mask-image: linear-gradient(white, transparent);
  mask-image: linear-gradient(white, transparent);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.feature-card:hover .feature-card-pattern {
  opacity: 1;
}

.feature-card-pattern > div,
.feature-card-pattern svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-card-pattern svg {
  display: block;
}

.feature-card-icon {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 85, 255, 0.08);
  color: #0055FF;
  margin-bottom: 24px;
  transition: transform 0.3s, background 0.3s;
}

.feature-card:hover .feature-card-icon {
  transform: scale(1.08);
  background: rgba(0, 85, 255, 0.15);
}

.feature-card-icon-accent {
  background: rgba(0, 85, 255, 0.12);
  color: #0055FF;
}

.feature-card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.feature-card-description {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #94a3b8;
  font-weight: 400;
  flex-grow: 1;
}

.feature-card-cta {
  background: rgba(0, 85, 255, 0.08);
}

.feature-card-cta:hover {
  background: rgba(0, 85, 255, 0.14);
}

.feature-card-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: #0055FF;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card-button:hover {
  box-shadow: 0 8px 24px rgba(0, 85, 255, 0.35);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card {
    border-right: 1px dashed rgba(255, 255, 255, 0.08);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  }
  .feature-card:nth-child(3n) {
    border-right: 1px dashed rgba(255, 255, 255, 0.08);
  }
  .feature-card:nth-child(2n) {
    border-right: none;
  }
  .feature-card:nth-last-child(-n+3) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  }
  .feature-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    border-right: none !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08) !important;
    min-height: 180px;
    padding: 24px 22px;
  }
  .feature-card:last-child {
    border-bottom: none !important;
  }
}

/* ============================
   Editorial Stats Layout (legacy - removed)
   Replaced by Premium Bento Grid above
   ============================ */
/* Blog */
.blog-section {
  background: #010204;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
}

.blog-card {
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: #f1f5f9;
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0 0 10px;
}

.blog-card p {
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 18px;
}

.blog-card-link,
.blog-back-link {
  color: #338aff;
  font-weight: 800;
  text-decoration: none;
}

.blog-detail-page {
  min-height: 100vh;
  background: #010204;
  padding: 40px 20px 80px;
}

.blog-detail {
  max-width: 860px;
  margin: 24px auto 0;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.blog-back-link {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.blog-detail h1 {
  color: #f1f5f9;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.blog-detail-meta {
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 26px;
}

.blog-detail-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
}

.blog-rich-content {
  color: #cbd5e1;
  font-size: 1.04rem;
  line-height: 1.8;
}

.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4 {
  color: #f1f5f9;
  line-height: 1.25;
  margin-top: 1.6em;
}

.blog-rich-content a {
  color: #0055ff;
  font-weight: 700;
}

/* Blog listing page */
.blog-listing-page {
  min-height: 100vh;
  background: #010204;
  padding: 100px 20px 80px;
}

.blog-listing-page .blog-back-link {
  display: block;
  max-width: 1120px;
  margin: 0 auto 24px;
}

.blog-listing-header {
  max-width: 1120px;
  margin: 0 auto 36px;
  text-align: center;
}

.blog-listing-header h1 {
  color: #f1f5f9;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.blog-listing-header .sub-heading-text {
  color: #94a3b8;
  margin: 0;
}

.blog-listing-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-listing-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
  font-size: 1.1rem;
}

.blog-view-all {
  text-align: center;
  margin-top: 28px;
}

/* Blog detail enhancements */
.blog-detail-page {
  min-height: 100vh;
  background: #010204;
  padding: 100px 20px 80px;
}

.blog-detail-page .blog-back-link {
  display: block;
  max-width: 860px;
  margin: 0 auto;
}

.blog-related {
  max-width: 860px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-related h2 {
  color: #f1f5f9;
  font-size: 1.6rem;
  margin: 0 0 24px;
}

.blog-related .blog-card-grid {
  width: 100%;
  margin: 0;
}

/* Blog CTA section */
.blog-cta-section {
  max-width: 860px;
  margin: 60px auto 0;
}

.blog-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  background: linear-gradient(135deg, #060a12 0%, #0f1a30 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.blog-cta-content {
  position: relative;
  text-align: center;
}

.blog-cta-content h2 {
  color: #f1f5f9;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 12px;
}

.blog-cta-content p {
  color: #94a3b8;
  margin: 0 0 28px;
  font-size: 1.08rem;
}

.blog-cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #0055ff;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.blog-cta-btn:hover {
  background: #003dcc;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .blog-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Professional Blog Detail Page */
.article-page {
  min-height: 100vh;
  background: #010204;
  color: #e2e8f0;
}

/* Hero */
.article-hero {
  position: relative;
  min-height: clamp(360px, 45vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 2, 4, 0.3) 0%, rgba(1, 2, 4, 0.7) 50%, rgba(1, 2, 4, 1) 100%);
}

.article-hero-content {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 60px) clamp(20px, 4vw, 40px);
  z-index: 2;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.article-back:hover {
  color: #fff;
}

.article-category {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 85, 255, 0.2);
  border: 1px solid rgba(0, 85, 255, 0.3);
  border-radius: 6px;
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: #fff;
}

.article-excerpt {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 680px;
}

.article-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055ff, #338aff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.article-author-name {
  display: block;
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.92rem;
}

.article-author-meta {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Layout */
.article-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 780px);
  gap: 48px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.article-toc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.article-toc-label {
  color: #475569;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.article-toc-line {
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 1px;
}

.article-sidebar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 85, 255, 0.08);
  border: 1px solid rgba(0, 85, 255, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.article-sidebar-cta:hover {
  background: rgba(0, 85, 255, 0.14);
  border-color: rgba(0, 85, 255, 0.3);
}

/* Body */
.article-body {
  min-width: 0;
}

.article-content {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.85;
}

.article-content h2 {
  color: #f1f5f9;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.article-content h3 {
  color: #f1f5f9;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 12px;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content img {
  border-radius: 14px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.article-content blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: rgba(0, 85, 255, 0.06);
  border-left: 3px solid #0055ff;
  border-radius: 0 12px 12px 0;
  color: #e2e8f0;
  font-style: italic;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: #60a5fa;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.88em;
}

.article-content pre {
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  overflow-x: auto;
  margin: 28px 0;
}

.article-content pre code {
  background: none;
  padding: 0;
}

/* Author Card */
.article-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding: 28px;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.article-author-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055ff, #338aff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.article-author-card-label {
  display: block;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.article-author-card-name {
  display: block;
  color: #f1f5f9;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.article-author-card-desc {
  display: block;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Related */
.article-related {
  margin-top: 80px;
  padding: 64px 24px;
  background: #0a0e18;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.article-related-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.article-related-eyebrow {
  display: inline-block;
  color: #338aff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.article-related-header h2 {
  color: #f1f5f9;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 32px;
}

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

.article-related-card {
  background: #0d1220;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.article-related-card:hover {
  border-color: rgba(0, 85, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.article-related-image {
  overflow: hidden;
}

.article-related-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.article-related-card:hover .article-related-image img {
  transform: scale(1.06);
}

.article-related-body {
  padding: 22px;
}

.article-related-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0, 85, 255, 0.1);
  color: #60a5fa;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.article-related-body h3 {
  color: #f1f5f9;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}

.article-related-body p {
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0 0 14px;
}

.article-related-meta {
  display: flex;
  gap: 12px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
}

/* CTA */
.article-cta {
  padding: 80px 24px;
}

.article-cta-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px);
  background: linear-gradient(135deg, #060a14, #0c1528);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
}

.article-cta-glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.article-cta-eyebrow {
  display: inline-block;
  position: relative;
  padding: 4px 12px;
  background: rgba(0, 85, 255, 0.12);
  border-radius: 6px;
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.article-cta-inner h2 {
  position: relative;
  color: #f1f5f9;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
}

.article-cta-inner p {
  position: relative;
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.article-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #0055ff;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.article-cta-btn:hover {
  background: #003dcc;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 85, 255, 0.35);
}

/* Responsive */
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .article-sidebar {
    display: none;
  }

  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-hero {
    min-height: 420px;
  }

  .article-hero-content {
    padding: 28px 20px;
  }

  .article-content {
    font-size: 1rem;
  }

  .article-author-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .article-related {
    padding: 48px 20px;
  }

  .article-cta {
    padding: 48px 16px;
  }
}

.blog-index-hero,
.blog-featured-wrap,
.blog-index-feed,
.blog-show-hero,
.blog-content-shell,
.blog-related-premium,
.blog-cta-section {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-back-link:hover {
  color: #338aff;
}

.blog-index-hero-grid,
.blog-show-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 22px;
  align-items: stretch;
}

.blog-index-hero-copy,
.blog-show-copy,
.blog-index-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.88), rgba(1, 2, 4, 0.94)),
    #010204;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.blog-index-hero-copy,
.blog-show-copy {
  padding: clamp(30px, 5vw, 58px);
}

.blog-index-hero-copy h1,
.blog-show-copy h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #f8fafc;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.blog-index-hero-copy p:not(.eyebrow),
.blog-show-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #94a3b8;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.blog-index-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  min-height: 260px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 85, 255, 0.18), rgba(15, 159, 143, 0.08)),
    #0a0e18;
}

.blog-index-hero-panel span {
  color: #338aff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-index-hero-panel strong {
  color: #f8fafc;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.1;
}

.blog-featured-wrap {
  margin-top: 24px;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  overflow: hidden;
  color: inherit;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.blog-featured-media {
  min-height: 430px;
  overflow: hidden;
  background: #010204;
}

.blog-featured-media img,
.blog-show-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 0.45s ease;
}

.blog-featured-card:hover .blog-featured-media img,
.blog-card:hover .blog-card-image {
  transform: scale(1.04);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.blog-featured-content h2 {
  margin: 18px 0 14px;
  color: #f8fafc;
  font-size: clamp(1.8rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.blog-featured-content p {
  color: #94a3b8;
  line-height: 1.75;
}

.blog-premium-link {
  margin-top: 20px;
  color: #338aff;
  font-weight: 900;
}

.blog-index-feed {
  margin-top: clamp(44px, 6vw, 74px);
}

.blog-index-feed-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.blog-index-feed-head h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
}

.blog-premium-grid {
  width: 100%;
  margin-top: 0;
}

.blog-premium-card {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(1, 2, 4, 0.94)),
    #0a0e18;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.blog-premium-card:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 138, 255, 0.34);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.blog-card-image-link {
  display: block;
  overflow: hidden;
  background: #010204;
}

.blog-premium-card .blog-card-image {
  height: 220px;
  transition: transform 0.45s ease;
}

.blog-card-meta {
  flex-wrap: wrap;
}

.blog-card-meta span:first-child {
  color: #338aff;
}

.blog-card h3 a {
  color: inherit;
}

.blog-show-hero-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.58fr);
}

.blog-show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: #94a3b8;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-show-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.blog-show-media {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #0a0e18;
}

.blog-content-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  gap: 28px;
  align-items: start;
  justify-content: center;
  margin-top: 28px;
}

.blog-content-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  color: #94a3b8;
  background: rgba(10, 14, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.blog-content-rail span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-content-rail strong {
  color: #f8fafc;
}

.blog-content-rail a {
  margin-top: 12px;
  color: #338aff;
  font-weight: 900;
}

.blog-detail-premium {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.92), rgba(1, 2, 4, 0.96)),
    #0a0e18;
}

.blog-rich-content {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.blog-rich-content img {
  border-radius: 14px;
  margin: 28px 0;
}

.blog-rich-content blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  color: #f8fafc;
  background: rgba(0, 85, 255, 0.08);
  border-left: 3px solid #338aff;
  border-radius: 12px;
}

.blog-related-premium {
  max-width: 1180px;
  border-top: 0;
}

@media (max-width: 980px) {
  .blog-index-hero-grid,
  .blog-featured-card,
  .blog-show-hero-grid,
  .blog-content-shell {
    grid-template-columns: 1fr;
  }

  .blog-index-hero-panel {
    min-height: 180px;
  }

  .blog-featured-media,
  .blog-show-media {
    min-height: 300px;
  }

  .blog-content-rail {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .blog-index-premium,
  .blog-show-premium {
    padding: 86px 16px 64px;
  }

  .blog-index-hero-copy,
  .blog-show-copy,
  .blog-featured-content,
  .blog-detail-premium {
    padding: 24px;
    border-radius: 14px;
  }

  .blog-index-hero-copy h1,
  .blog-show-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .blog-featured-media,
  .blog-show-media {
    min-height: 230px;
    border-radius: 14px;
  }

  .blog-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .blog-content-rail {
    display: none;
  }
}

/* ============================
   Responsive Hardening Pass
   ============================ */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
header,
footer {
  min-width: 0;
}

.section-pad,
.section-band {
  overflow-x: clip;
}

.button,
.nav-cta,
.hero-dramatic-cta,
.product-cta,
.product-story-cta,
.cta-banner-card .button {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.section-heading h2,
.stats-premium-title,
.hero-dramatic-title,
.solutions-title,
.cta-content h2,
.blog-index-title,
.blog-show-title {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .products-grid,
  .feature-grid,
  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-grid,
  .testimonial-card-wrap,
  .contact-layout,
  .about-preview-card,
  .solutions-header {
    grid-template-columns: 1fr;
  }

  .readymade-section .section-heading,
  .industry-section .section-heading,
  .custom-demand-section .section-heading,
  .blog-section .section-heading {
    max-width: 760px;
  }

  .global-network-layout {
    grid-template-columns: 1fr;
  }

  .global-network-copy h2,
  .global-network-copy p:not(.eyebrow) {
    max-width: 780px;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(128px, 36vw, 156px);
  }

  .main-nav {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .main-nav a {
    padding: 10px 4px;
  }

  .nav-cta {
    min-height: 44px;
  }

  .hero {
    min-height: min(100svh, 820px);
  }

  .hero-dramatic-content {
    padding-inline: 18px;
  }

  .hero-dramatic-title {
    line-height: 1;
  }

  .solutions-tabs {
    scrollbar-width: thin;
  }

  .solutions-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .cta-banner-card {
    gap: 22px;
  }

  .cta-banner-card .button {
    width: 100%;
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .section-pad {
    padding-block: 64px;
    padding-inline: 18px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .stats-premium-title,
  .solutions-title,
  .cta-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
    line-height: 1.08;
  }

  .sub-heading-text,
  .stats-premium-subtitle,
  .solutions-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .stats-section {
    margin-top: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .stats-impact-metrics,
  .global-network-stats,
  .global-network-layout .client-cards-grid,
  .products-grid,
  .feature-grid,
  .blog-card-grid,
  .demand-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .stats-impact-featured .stats-bento-meta strong {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .solutions-header-meta {
    align-items: stretch;
    width: 100%;
  }

  .solutions-meta-item {
    min-width: 0;
  }

  .solution-card,
  .feature-card,
  .blog-card,
  .contact-form-card,
  .contact-info-panel {
    border-radius: 14px;
  }

  .world-map-container {
    min-height: 480px;
  }

  .global-map-legend {
    right: 14px;
    left: 14px;
    bottom: 66px;
    max-width: none;
    border-radius: 18px;
  }

  .global-map-actions {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: flex-start;
  }

  .global-map-actions button {
    flex: 1 1 auto;
  }

  .world-map-bg {
    min-height: 230px;
  }

  .client-dot-tooltip {
    left: 10px;
    bottom: 10px;
    min-width: 110px;
    max-width: 170px;
  }

  .testimonial-bento-grid,
  .testimonial-bento-col-3 {
    grid-template-columns: 1fr;
  }

  .testimonial-bento-col-3 {
    flex-direction: column;
  }

  .footer-minimal-grid {
    padding-inline: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .main-nav {
    inset: 68px 12px auto;
    padding: 14px;
    border-radius: 14px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 72px;
  }

  .hero-dramatic-title {
    font-size: clamp(1.75rem, 11vw, 2.65rem);
  }

  .hero-dramatic-sub {
    font-size: 0.98rem;
  }

  .stats-premium-wrapper,
  .global-network-shell,
  .contact-form-card,
  .contact-info-panel,
  .cta-banner-card {
    padding-inline: 16px;
  }

  .stats-impact-featured,
  .stats-impact-cta,
  .global-network-shell,
  .world-map-container,
  .client-card,
  .industry-modern-card,
  .solution-card,
  .feature-card,
  .testimonial-bento-card,
  .blog-card {
    border-radius: 12px;
  }

  .industry-modern-title {
    padding-right: 42px;
    font-size: clamp(1.2rem, 7vw, 1.65rem);
  }

  .industry-modern-stat {
    padding-left: 20px;
  }

  .global-stat {
    align-items: center;
    gap: 12px;
  }

  .world-map-container {
    overflow: visible;
  }

  .client-dot-tooltip {
    display: none;
  }

  .cta-content h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .whatsapp-float {
    right: 14px;
    bottom: 16px;
  }
}

/* Careers page */
.careers-page {
  min-height: 100vh;
  background: #010204;
  padding: 100px 20px 80px;
}

.careers-header {
  max-width: 1120px;
  margin: 0 auto 48px;
  text-align: center;
}

.careers-header h1 {
  color: #f1f5f9;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 14px;
}

.careers-header .sub-heading-text {
  color: #94a3b8;
  margin: 0;
}

.careers-empty {
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.careers-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 26px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.careers-card:hover {
  border-color: rgba(0, 85, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.careers-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.careers-card-type {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0, 85, 255, 0.12);
  color: #338aff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 6px;
}

.careers-card-location {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
}

.careers-card h2 {
  color: #f1f5f9;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.careers-card-dept {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}

.careers-card-salary {
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0;
}

.careers-card-desc {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.careers-card-link {
  color: #338aff;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: auto;
}

/* Careers detail page */
.careers-detail-page {
  min-height: 100vh;
  background: #010204;
  padding: 100px 20px 80px;
}

.careers-detail-page .blog-back-link {
  display: block;
  max-width: 860px;
  margin: 0 auto 24px;
}

.careers-success {
  max-width: 860px;
  margin: 0 auto 32px;
  padding: 24px 28px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 10px;
  color: #34d399;
  font-weight: 600;
  text-align: center;
}

.careers-success a {
  color: #338aff;
  text-decoration: underline;
  font-weight: 700;
}

.careers-detail {
  max-width: 860px;
  margin: 0 auto;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.careers-detail-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.careers-detail h1 {
  color: #f1f5f9;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.careers-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.careers-detail-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #475569;
}

.careers-detail-section {
  margin-bottom: 32px;
}

.careers-detail-section h2 {
  color: #f1f5f9;
  font-size: 1.3rem;
  margin: 0 0 12px;
}

.careers-rich-content {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.75;
}

.careers-rich-content h2,
.careers-rich-content h3 {
  color: #f1f5f9;
}

.careers-rich-content ul,
.careers-rich-content ol {
  padding-left: 20px;
  margin: 8px 0;
}

.careers-rich-content li {
  margin-bottom: 6px;
}

/* Careers apply form */
.careers-apply-section {
  max-width: 860px;
  margin: 48px auto 0;
}

.careers-apply-card {
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 48px);
}

.careers-apply-card h2 {
  color: #f1f5f9;
  font-size: 1.5rem;
  margin: 0 0 8px;
}

.careers-apply-card > p {
  color: #94a3b8;
  margin: 0 0 28px;
}

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

.careers-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.careers-field-full {
  grid-column: 1 / -1;
}

.careers-field label {
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 700;
}

.careers-field input,
.careers-field textarea,
.careers-field select {
  padding: 12px 14px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s;
}

.careers-field input:focus,
.careers-field textarea:focus,
.careers-field select:focus {
  outline: none;
  border-color: #0055ff;
}

.careers-field input[type="file"] {
  padding: 10px;
  background: #1e293b;
  cursor: pointer;
}

.careers-field-hint {
  color: #64748b;
  font-size: 0.76rem;
}

.careers-field-error {
  color: #f87171;
  font-size: 0.78rem;
  font-weight: 600;
}

.careers-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 36px;
  background: #0055ff;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.careers-submit-btn:hover {
  background: #003dcc;
  transform: translateY(-2px);
}

.careers-resume-link {
  color: #338aff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.85rem;
}

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.admin-modal-card {
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.admin-modal-card h3 {
  color: #f1f5f9;
  margin: 0 0 16px;
  font-size: 1.2rem;
}

.admin-modal-card p {
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0 0 20px;
}

.admin-inline-form select {
  padding: 6px 10px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

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

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

/* Professional Blog Page */
.blog-page {
  min-height: 100vh;
  background: #010204;
  color: #e2e8f0;
  padding: 100px 0 80px;
}

.blog-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-page-header {
  text-align: center;
  margin-bottom: 56px;
}

.blog-page-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 85, 255, 0.2);
  border-radius: 999px;
  color: #338aff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.blog-page-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-page-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Featured Post */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.blog-featured:hover {
  border-color: rgba(0, 85, 255, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.blog-featured-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

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

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, #0a0e18);
}

.blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  gap: 16px;
}

.blog-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: rgba(0, 85, 255, 0.12);
  color: #338aff;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-featured-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #f1f5f9;
}

.blog-featured-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.blog-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #475569;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #338aff;
  font-weight: 800;
  font-size: 0.88rem;
  margin-top: 8px;
  transition: gap 0.2s;
}

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

.blog-card-pro {
  display: flex;
  flex-direction: column;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.blog-card-pro:hover {
  border-color: rgba(0, 85, 255, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.blog-card-pro-image {
  position: relative;
  overflow: hidden;
}

.blog-card-pro-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card-pro-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: rgba(1, 2, 4, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #e2e8f0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-pro-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
  gap: 10px;
}

.blog-card-pro-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f1f5f9;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-pro-desc {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-pro-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card-pro-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-card-pro-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055ff, #338aff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.blog-card-pro-name {
  display: block;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-card-pro-date {
  display: block;
  color: #475569;
  font-size: 0.7rem;
  font-weight: 600;
}

.blog-card-pro-read {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    min-height: 220px;
  }

  .blog-featured-overlay {
    background: linear-gradient(180deg, transparent 50%, #0a0e18);
  }

  .blog-featured-content {
    padding: 28px 24px;
  }

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

/* Premium video hero */
/* Hero V2 — Premium Modern */
.hero-v2 {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #010204;
}

.hero-v2-video {
  position: absolute;
  inset: 0;
}

.hero-v2-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.6);
  transform: scale(1.05);
}

.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(1, 2, 4, 0.5), transparent),
    linear-gradient(180deg, rgba(1, 2, 4, 0.3) 0%, rgba(1, 2, 4, 0.6) 50%, #010204 100%);
}

.hero-v2-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  padding: 0 clamp(20px, 4vw, 40px);
  text-align: center;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
}

.hero-v2-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-v2-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #f8fafc;
  margin: 0 0 24px;
}

.hero-v2-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 40%, #f472b6 80%, #fb923c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v2-sub {
  max-width: 600px;
  margin: 0 auto 36px;
  color: #94a3b8;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

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

.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #0055ff;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 0 rgba(0, 85, 255, 0);
}

.hero-v2-btn-primary:hover {
  background: #0044dd;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 85, 255, 0.35), 0 0 0 4px rgba(0, 85, 255, 0.15);
}

.hero-v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 14px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.hero-v2-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-v2-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-v2-stat {
  padding: 20px 32px;
  text-align: center;
}

.hero-v2-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-v2-stat strong {
  display: block;
  color: #f8fafc;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.hero-v2-stat span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-v2-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-v2-scroll span {
  color: #475569;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-v2-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, #475569, transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@media (max-width: 768px) {
  .hero-v2-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-v2-stats {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .hero-v2-stat {
    width: 100%;
    padding: 16px 20px;
  }

  .hero-v2-stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero-v2-scroll {
    display: none;
  }
}

/* Glance Section — Premium Modern */
.glance-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 24px;
  background: #010204;
  overflow: hidden;
}

.glance-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.glance-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.glance-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.glance-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 85, 255, 0.1);
  border: 1px solid rgba(0, 85, 255, 0.2);
  border-radius: 999px;
  color: #60a5fa;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.glance-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 18px;
}

.glance-subtitle {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

/* Featured card */
.glance-featured {
  position: relative;
  padding: clamp(40px, 6vw, 64px);
  background: linear-gradient(135deg, #0055ff 0%, #003d99 50%, #002266 100%);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.glance-featured-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.glance-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.glance-featured-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.glance-featured-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.glance-featured-number {
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: #fff;
}

.glance-featured-word {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.glance-featured-desc {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 480px;
}

/* Stats row */
.glance-stats-row {
  display: flex;
  align-items: center;
  background: #0a0e18;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 24px;
}

.glance-stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  transition: background 0.3s;
}

.glance-stat-item:hover {
  background: rgba(0, 85, 255, 0.06);
}

.glance-stat-number {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.glance-stat-label {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.glance-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* CTA */
.glance-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: rgba(0, 85, 255, 0.06);
  border: 1px solid rgba(0, 85, 255, 0.15);
  border-radius: 18px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.glance-cta:hover {
  background: rgba(0, 85, 255, 0.1);
  border-color: rgba(0, 85, 255, 0.3);
  transform: translateY(-2px);
}

.glance-cta-eyebrow {
  display: block;
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.glance-cta-title {
  display: block;
  color: #f1f5f9;
  font-size: 1.3rem;
  font-weight: 800;
}

.glance-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0055ff;
  border-radius: 14px;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.glance-cta:hover .glance-cta-icon {
  transform: translate(4px, -4px);
}

@media (max-width: 768px) {
  .glance-stats-row {
    flex-direction: column;
  }

  .glance-stat-divider {
    width: 100%;
    height: 1px;
  }

  .glance-stat-item {
    width: 100%;
    padding: 20px;
  }

  .glance-featured-number {
    font-size: clamp(4rem, 15vw, 7rem);
  }
}
