/* =========================================
   1. DESIGN TOKENS (COLORS, FONTS, SPACING)
   ========================================= */

:root {
  /* Backgrounds */
  --bg-page: #f4f8fc;
  --bg-page-2: #edf3f9;
  --bg-dark: #07111f;
  --bg-dark-2: #0d1728;
  --bg-dark-3: #12203a;

  /* Surfaces */
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --surface-3: #eef5fb;
  --surface-dark: rgba(255, 255, 255, 0.05);
  --surface-dark-2: rgba(255, 255, 255, 0.08);

  /* Text colors */
  --text: #0f172a;
  --text-soft: #475569;
  --text-dim: #64748b;
  --text-inverse: #f8fbff;
  --text-inverse-soft: #b5c1d4;
  --text-inverse-dim: #7f8da3;

  /* Borders / lines */
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-dark-strong: rgba(255, 255, 255, 0.14);

  /* Brand colors */
  --primary: #1fa2ff;
  --primary-2: #14d8b4;
  --accent: #5f6fff;
  --warning: #ffb84d;

  /* Gradients */
  --grad-main: linear-gradient(135deg, #1fa2ff 0%, #14d8b4 100%);
  --grad-dark: linear-gradient(180deg, #07111f 0%, #0d1728 100%);
  --grad-light: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  --grad-panel-dark: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);

  /* Shadows */
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 18px 48px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.14);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.28);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;

  /* Max widths */
  --container: 1240px;
  --content: 1080px;
  --content-narrow: 760px;

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-18: 4.5rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;

  /* Fonts */
  --font-heading: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.82rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 0.94rem);
  --text-md: clamp(1rem, 0.97rem + 0.16vw, 1.04rem);
  --text-lg: clamp(1rem, 0.98rem + 0.24vw, 1.1rem);
  --text-xl: clamp(1.08rem, 1rem + 0.38vw, 1.24rem);
  --text-2xl: clamp(1.35rem, 1.14rem + 0.85vw, 1.95rem);
  --text-3xl: clamp(1.82rem, 1.38rem + 1.55vw, 2.95rem);
  --text-4xl: clamp(2.05rem, 1.38rem + 2.35vw, 3.95rem);

  /* Default transition curve */
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ===========================
   2. RESET & GLOBAL ELEMENTS
   =========================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.68;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 162, 255, 0.05), transparent 28%),
    radial-gradient(circle at bottom right, rgba(20, 216, 180, 0.05), transparent 28%),
    linear-gradient(180deg, var(--bg-page) 0%, var(--bg-page-2) 100%);
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, h1, h2, h3, h4, h5, h6 { margin: 0; }


/* ===========================
   3. LAYOUT CONTAINERS & SECTIONS
   =========================== */

.container {
  width: min(100% - clamp(28px, 6vw, 110px), var(--container));
  margin-inline: auto;
}

.content-width {
  width: min(100% - clamp(28px, 7vw, 132px), var(--content));
  margin-inline: auto;
}

.content-narrow {
  width: min(100% - clamp(28px, 8vw, 150px), var(--content-narrow));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(3rem, 5.5vw, 5rem) 0;
}

.section-sm { padding: clamp(2.2rem, 3.5vw, 3.25rem) 0; }
.section-lg { padding: clamp(3.6rem, 6vw, 6rem) 0; }


/* ===========================
   4. TYPOGRAPHY & UTILITIES
   =========================== */

.section-title-wrap {
  max-width: 700px;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.section-title-wrap.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title-wrap.center .section-text { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: rgba(31, 162, 255, 0.08);
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(31, 162, 255, 0.14);
  margin-bottom: var(--space-5);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 0 6px rgba(20, 216, 180, 0.10);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-4);
  color: var(--text);
}

.section-text {
  color: var(--text-soft);
  font-size: var(--text-lg);
  max-width: 62ch;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 162, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--grad-main);
  color: #031019;
  box-shadow: 0 16px 36px rgba(20, 216, 180, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(31, 162, 255, 0.20);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.80);
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: rgba(31, 162, 255, 0.24);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-inverse-soft);
  border-color: var(--line-dark-strong);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-soft);
  font-size: var(--text-sm);
}

.text-gradient {
  background: linear-gradient(135deg, #f8fbff 0%, #74d5ff 44%, #14d8b4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.muted { color: var(--text-soft); }
.dim   { color: var(--text-dim); }
.center { text-align: center; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.card-link:hover { gap: 10px; color: var(--primary-2); }
.card-link span { transition: transform var(--transition); }
.card-link:hover span { transform: translateX(3px); }

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #07111f;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  z-index: 9999;
  font-weight: 700;
}

.skip-link:focus { left: 20px; }


/* ===========================
   5. HEADER
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
}

.topbar {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(18px);
  color: var(--text-inverse);
}

.topbar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

.topbar-left, .topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-inverse-soft);
  font-size: 12px;
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--radius-full);
  background: rgba(20, 216, 180, 0.10);
  border: 1px solid rgba(20, 216, 180, 0.18);
  color: #86ffd8 !important;
  font-size: 12px;
  font-weight: 700;
}

.navbar {
  background: rgba(7, 17, 31, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled .navbar { box-shadow: var(--shadow-dark); }

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 162, 255, 0.20), rgba(20, 216, 180, 0.22));
  border: 1px solid rgba(31, 162, 255, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.brand-mark-core {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 22px rgba(31, 162, 255, 0.55);
}

.brand-mark-ring {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  animation: spinSlow 12s linear infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-inverse);
  letter-spacing: -0.03em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--text-inverse-dim);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  color: var(--text-inverse-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  transition: color var(--transition);
}

.nav-list > li > a:hover { color: var(--text-inverse); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  padding: 10px;
  background: #0f1b2f;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  display: grid;
  gap: 4px;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-inverse-soft);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-only { display: none !important; }

.mobile-toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 20px;
  background: var(--text-inverse);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(7, 17, 31, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-dark);
  max-height: calc(100dvh - 130px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  display: block;
  animation: fadeDown 0.35s ease;
}

.mobile-menu-inner {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding: 18px 0 28px;
  display: grid;
  gap: 6px;
}

.mobile-nav { display: grid; gap: 6px; }

.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  color: var(--text-inverse-soft);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--text-inverse);
  background: rgba(255,255,255,0.07);
  border-color: rgba(31, 162, 255, 0.24);
}

.mobile-nav-group {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.mobile-nav-group-label {
  display: block;
  padding: 0 16px 10px;
  color: var(--text-inverse-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.mobile-nav-sub a {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.05);
}

.mobile-nav-sub a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.mobile-nav-sub a:hover::before {
  opacity: 1;
  background: var(--primary-2);
}

.mobile-cta-group {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
}

.mobile-support-card {
  margin-top: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(31, 162, 255, 0.08), rgba(20, 216, 180, 0.06));
  border: 1px solid rgba(31, 162, 255, 0.14);
  display: grid;
  gap: 6px;
}

.mobile-support-label {
  color: #86ffd8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}


/* ===========================
   6. HERO SECTION
   =========================== */

.hero-enterprise {
  position: relative;
  overflow: hidden;
  padding: 38px 0 58px;
  background:
    radial-gradient(circle at top left, rgba(31, 162, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(20, 216, 180, 0.14), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #0d1829 100%);
  color: var(--text-inverse);
}

.hero-gridlines, .hero-orb { position: absolute; pointer-events: none; }

.hero-gridlines {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), transparent 92%);
  opacity: 0.45;
}

.hero-orb {
  width: min(28vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.22;
}

.hero-orb-1 { background: rgba(31, 162, 255, 0.34); top: 30px; left: -100px; }
.hero-orb-2 { background: rgba(20, 216, 180, 0.28); bottom: 10px; right: -90px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  align-items: start;
}

.hero-copy { max-width: 570px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  line-height: 0.99;
  letter-spacing: -0.045em;
  max-width: 11.5ch;
}

.hero-title .text-gradient { display: block; }

.hero-text {
  margin-top: 16px;
  max-width: 50ch;
  color: var(--text-inverse-soft);
  font-size: clamp(0.98rem, 0.95rem + 0.15vw, 1.05rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-stats {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}

.hero-stat span { color: var(--text-inverse-soft); font-size: 12px; line-height: 1.5; }

.hero-visual { position: relative; min-height: 460px; }

.hero-main-frame {
  position: relative;
  width: min(100%, 470px);
  margin-left: auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #101b2d;
  box-shadow: var(--shadow-dark);
}

.hero-main-frame img { width: 100%; aspect-ratio: 5 / 6.2; object-fit: cover; }

.floating-panel {
  position: absolute;
  padding: 14px;
  border-radius: 18px;
  background: rgba(14, 25, 42, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(18px);
  width: min(240px, 76%);
}

.floating-panel strong { display: block; margin-bottom: 6px; font-size: 14px; color: var(--text-inverse); }
.floating-panel p { color: var(--text-inverse-soft); font-size: 12px; line-height: 1.6; }
.panel-top { right: 8px; top: 18px; }
.panel-bottom { left: -10px; bottom: 24px; width: min(260px, 78%); }

.dashboard-card {
  position: absolute;
  right: 16px;
  bottom: -10px;
  width: min(220px, 72%);
  border-radius: 22px;
  overflow: hidden;
  background: #0b1524;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-dark);
}

.dashboard-card-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.dashboard-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 0 6px rgba(20, 216, 180, 0.10);
}

.dashboard-card-body { padding: 8px 0; }

.dashboard-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
}

.dashboard-row:last-child { border-bottom: none; }
.dashboard-row span { color: var(--text-inverse-soft); }
.dashboard-row strong { color: var(--text-inverse); }


/* ===========================
   7. TRUST STRIP
   =========================== */

.trust-strip {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-sm);
}

.trust-item { padding: 10px 2px; }

.trust-label {
  display: block;
  color: var(--text-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
}

.trust-item strong { font-size: 15px; color: var(--text); }


/* ===========================
   8. SERVICES
   =========================== */

.services-grid { display: grid; gap: 18px; }
.service-card { padding: 22px; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(31, 162, 255, 0.08);
  border: 1px solid rgba(31, 162, 255, 0.14);
  color: var(--primary);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.24rem);
  line-height: 1.24;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
}


/* ===========================
   9. ABOUT / DARK BAND
   =========================== */

.section-dark-band {
  background: linear-gradient(180deg, #0c1628 0%, #0a1321 100%);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-inverse);
}

.section-dark-band .section-title { color: var(--text-inverse); }
.section-dark-band .section-text { color: var(--text-inverse-soft); }

.section-dark-band .eyebrow {
  background: rgba(31, 162, 255, 0.12);
  border-color: rgba(31, 162, 255, 0.20);
  color: #9adfff;
}

.about-split, .supported-split { align-items: center; }

.about-points { display: grid; gap: 14px; margin-top: 22px; }

.about-point {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.05);
}

.about-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-family: var(--font-heading);
  color: var(--text-inverse);
}

.about-point span { color: var(--text-inverse-soft); font-size: 14px; }

.image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  padding: 0;
}

.image-panel img { width: 100%; height: 100%; object-fit: cover; }

.about-visual .image-panel,
.supported-visual .image-panel { height: 100%; min-height: 320px; }


/* ===========================
   10. VALUE PROPS
   =========================== */

.value-grid { display: grid; gap: 18px; }
.value-card { padding: 22px; min-height: 100%; }

.value-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.24rem);
  line-height: 1.24;
  margin-bottom: 12px;
  color: var(--text);
}

.value-card p { color: var(--text-soft); font-size: 14px; line-height: 1.65; margin: 0; }


/* ===========================
   11. PROCESS
   =========================== */

.process-section {
  position: relative;
  background: linear-gradient(180deg, #08121f 0%, #0d1728 100%);
  color: var(--text-inverse);
}

.process-section .section-title { color: var(--text-inverse); }
.process-section .section-text { color: var(--text-inverse-soft); }

.process-section .eyebrow {
  background: rgba(31, 162, 255, 0.12);
  border-color: rgba(31, 162, 255, 0.20);
  color: #9adfff;
}

.process-grid { display: grid; gap: 18px; }

.process-card {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.process-step {
  display: inline-flex;
  min-width: 50px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  background: rgba(31, 162, 255, 0.08);
  border: 1px solid rgba(31, 162, 255, 0.14);
  color: #9adfff;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1rem + 0.28vw, 1.24rem);
  line-height: 1.24;
  margin-bottom: 12px;
  color: var(--text-inverse);
}

.process-card p { color: var(--text-inverse-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.process-card ul { display: grid; gap: 8px; margin-top: 14px; }

.process-card li {
  color: var(--text-inverse-soft);
  position: relative;
  padding-left: 16px;
  font-size: 13px;
}

.process-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
  position: absolute;
  left: 0;
  top: 9px;
}


/* ===========================
   12. SUPPORTED PLATFORMS
   =========================== */

.brand-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.brand-cloud .badge {
  background: rgba(31, 162, 255, 0.06);
  border-color: rgba(31, 162, 255, 0.14);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  padding: 0 14px;
  min-height: 38px;
}


/* ===========================
   13. FAQ PREVIEW
   =========================== */

.faq-preview-grid { display: grid; gap: 18px; }
.faq-preview-card { padding: 22px; }

.faq-preview-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-preview-card p { color: var(--text-soft); font-size: 14px; line-height: 1.65; margin: 0; }
.section-cta { margin-top: 24px; }


/* ===========================
   14. BLOG PREVIEW
   =========================== */

.blog-preview-grid { display: grid; gap: 18px; }
.blog-card { overflow: hidden; padding: 0; }
.blog-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

.blog-card-body { padding: 20px; display: grid; gap: 10px; }
.blog-card-body .badge { width: fit-content; font-size: 12px; }

.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.18rem);
  line-height: 1.24;
  color: var(--text);
}

.blog-card-body p { color: var(--text-soft); font-size: 14px; line-height: 1.6; margin: 0; }


/* ===========================
   15. FINAL CTA
   =========================== */

.cta-section { padding-top: 0; background: transparent; }

.cta-panel {
  padding: 28px;
  display: grid;
  gap: 18px;
  background: linear-gradient(135deg, #0c1627 0%, #13213a 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.cta-panel .eyebrow {
  background: rgba(31, 162, 255, 0.12);
  border-color: rgba(31, 162, 255, 0.20);
  color: #9adfff;
}

.cta-panel .section-title { color: var(--text-inverse); }
.cta-panel .section-text { color: var(--text-inverse-soft); }

.cta-panel .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse-soft);
  border-color: var(--line-dark-strong);
}

.cta-panel .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.24);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}


/* ===========================
   16. FOOTER
   =========================== */

.site-footer {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-inverse);
  overflow: hidden;
}

/* ---- Footer Top / Grid ---- */

.footer-top {
  padding: clamp(2.5rem, 4.5vw, 4rem) 0 clamp(2rem, 3.5vw, 3rem);
  border-bottom: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* ---- Footer Brand ---- */

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-logo .brand-mark { width: 40px; height: 40px; border-radius: 14px; }
.footer-logo .brand-text strong { font-size: 16px; }
.footer-logo .brand-text small { font-size: 9px; }

.footer-brand-desc {
  margin: 0;
  color: var(--text-inverse-soft);
  line-height: 1.75;
  font-size: 14px;
  max-width: 32ch;
}

/* ---- Footer Contact Card ---- */

.footer-contact-card {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(31, 162, 255, 0.06), rgba(20, 216, 180, 0.04)),
    var(--grad-panel-dark);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-dark);
}

.footer-contact-card-large {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(31, 162, 255, 0.10);
  border: 1px solid rgba(31, 162, 255, 0.16);
  color: #86ffd8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer-contact-head h4 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
  margin-bottom: 6px;
}

.footer-contact-head p {
  margin: 0;
  color: var(--text-inverse-soft);
  font-size: 13px;
  line-height: 1.65;
  max-width: 42ch;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-inverse-dim);
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--text-inverse-soft);
  font-size: 13px;
  line-height: 1.55;
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: #86ffd8; }

.footer-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.footer-contact-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.footer-contact-actions .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse-soft);
  border-color: var(--line-dark-strong);
}

.footer-contact-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.24);
}

/* ---- Footer Link Groups ---- */

.footer-links-group h4 {
  font-family: var(--font-heading);
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--text-inverse);
  letter-spacing: -0.01em;
}

.footer-links-group ul { display: grid; gap: 10px; }
.footer-links-group li { line-height: 1.4; }

.footer-links-group a {
  color: var(--text-inverse-soft);
  font-size: 14px;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links-group a:hover {
  color: #86ffd8;
  padding-left: 6px;
}

/* ---- Footer Bottom Bar ---- */

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 18px 0;
}

.footer-bottom-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: var(--text-inverse-dim);
  line-height: 1.7;
}


/* ===========================
   17. ANIMATIONS
   =========================== */

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}


/* ===========================
   18. RESPONSIVE
   =========================== */

/* 480px+ */
@media (min-width: 480px) {
  .footer-contact-grid { grid-template-columns: 1fr 1fr; }
}

/* 640px+ */
@media (min-width: 640px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .faq-preview-grid, .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-bottom-wrap { grid-template-columns: auto 1fr; gap: 20px; }
}

/* 768px+ */
@media (min-width: 768px) {
  .topbar-wrap { flex-direction: row; justify-content: space-between; align-items: center; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-panel { grid-template-columns: 1.15fr auto; align-items: center; }
  .footer-grid { grid-template-columns: 1.3fr 1.7fr 0.8fr 0.8fr; gap: 2rem; }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .desktop-nav { display: block; }
  .desktop-only { display: inline-flex !important; }
  .mobile-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .blog-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Below 1200px */
@media (max-width: 1199px) {
  .hero-visual { min-height: auto; }
  .hero-main-frame { margin-inline: auto; }
  .panel-top { right: 0; }
  .dashboard-card { right: 8px; }
}

/* Below 1024px */
@media (max-width: 1023px) {
  .hero-copy { max-width: 100%; }
  .hero-title { max-width: 11ch; }
  .hero-main-frame { width: min(100%, 560px); }
}

/* Mobile */
@media (max-width: 767px) {
  .container, .content-width, .content-narrow { width: min(100% - 24px, 100%); }
  .section { padding: 2.8rem 0; }
  .section-lg { padding: 3.8rem 0; }
  .hero-enterprise { padding: 2.2rem 0 3.2rem; }
  .hero-text, .section-text { font-size: 15px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn, .btn-primary, .btn-outline { width: 100%; }
  .hero-visual { min-height: 0; }
  .panel-top, .panel-bottom, .dashboard-card { position: static; width: 100%; margin-top: 12px; }
  .hero-main-frame { width: 100%; }
  .hero-stats, .trust-strip, .services-grid, .value-grid,
  .faq-preview-grid, .blog-preview-grid, .process-grid,
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-card, .value-card, .faq-preview-card, .process-card, .cta-panel { padding: 20px; }
}

/* Footer mobile */
@media (max-width: 639px) {
  .footer-top { padding: 2rem 0 1.8rem; }
  .footer-grid { gap: 2rem; }
  .footer-contact-grid { grid-template-columns: 1fr; }
  .footer-contact-actions { width: 100%; }
  .footer-contact-actions .btn { flex: 1; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom-wrap { text-align: center; }
}

/* Below 480px */
@media (max-width: 479px) {
  .topbar { display: none; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .topbar-wrap { padding: 6px 0; gap: 4px; }
  .topbar-item { font-size: 11px; }
  .topbar-badge { padding: 5px 10px; font-size: 11px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}