﻿:root {
  --bg: #f0f3f8;
  --bg-alt: #e2eef0;
  --surface: #f7fafc;
  --card: #f9fcfd;
  --ink: #071a23;
  --ink-soft: #2f4652;
  --accent: #12d6c8;
  --accent-strong: #0fb0ad;
  --sun: #f5b64a;
  --shadow: 0 18px 40px rgba(8, 14, 20, 0.14);
  --border: rgba(18, 214, 200, 0.2);
  --chip: rgba(245, 182, 74, 0.2);
  --pill-text: #7a520f;
  --hero-glow: rgba(18, 214, 200, 0.2);
  --footer: #4c5f6a;
  --ring: rgba(18, 214, 200, 0.22);
  --ember: #ff7a59;
  --section-glow: rgba(18, 214, 200, 0.08);
  --sky: #64b5ff;
  --violet: #7b7dff;
  --neon: #6af3e7;
  --glow: 0 0 0 6px rgba(18, 214, 200, 0.14), 0 0 30px rgba(18, 214, 200, 0.25);
  --lime: #8df7a4;
  --magenta: #ff6bd6;
  --grid-line: rgba(18, 214, 200, 0.08);
  --grid-line-strong: rgba(123, 125, 255, 0.14);
  --heading-font: "Sora", "Manrope", system-ui, sans-serif;
  --hand-font: "Caveat", "Sora", cursive;
  --aqua: #36f5c2;
  --rose: #ff5fbf;
  --sunset: #ffb86b;
  --deep: #071a2a;
  --topbar-height: 86px;
}

html[data-theme="dark"] {
  --bg: #0a141b;
  --bg-alt: #101e27;
  --surface: #122733;
  --card: #142d3a;
  --ink: #e8f4f3;
  --ink-soft: #b1c7cf;
  --accent: #36e3d5;
  --accent-strong: #20c8be;
  --sun: #f3c06a;
  --shadow: 0 18px 40px rgba(3, 8, 12, 0.6);
  --border: rgba(54, 227, 213, 0.25);
  --chip: rgba(243, 192, 106, 0.18);
  --pill-text: #f3c06a;
  --hero-glow: rgba(54, 227, 213, 0.18);
  --footer: #8fa7af;
  --ring: rgba(54, 227, 213, 0.25);
  --ember: #f7a36b;
  --section-glow: rgba(54, 227, 213, 0.14);
  --sky: #2c7cc7;
  --violet: #6f77ff;
  --neon: #72fff0;
  --glow: 0 0 0 6px rgba(54, 227, 213, 0.14), 0 0 35px rgba(54, 227, 213, 0.3);
  --lime: #7cf0a0;
  --magenta: #ff75dc;
  --grid-line: rgba(54, 227, 213, 0.1);
  --grid-line-strong: rgba(111, 119, 255, 0.18);
  --heading-font: "Sora", "Manrope", system-ui, sans-serif;
  --hand-font: "Caveat", "Sora", cursive;
  --aqua: #4df7d3;
  --rose: #ff6ad0;
  --sunset: #ffc07a;
  --deep: #061420;
  --topbar-height: 86px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--bg-alt) 0%, var(--bg) 45%, var(--surface) 100%),
    radial-gradient(circle at 90% -10%, rgba(100, 181, 255, 0.22), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(123, 125, 255, 0.12), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 95, 191, 0.12), transparent 55%);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  padding-top: var(--topbar-height);
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite;
}

.page::before {
  top: 120px;
  left: -80px;
  background: radial-gradient(circle, rgba(18, 214, 200, 0.4), transparent 70%);
}

.page::after {
  bottom: 120px;
  right: -120px;
  background: radial-gradient(circle, rgba(123, 125, 255, 0.35), transparent 70%);
  animation-delay: -8s;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--rose), var(--sunset));
  z-index: 999;
  box-shadow: 0 0 12px rgba(123, 125, 255, 0.5);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(180deg, rgba(240, 243, 248, 0.92), rgba(240, 243, 248, 0.65) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 214, 200, 0.08);
  box-shadow: 0 10px 30px rgba(8, 14, 20, 0.08);
}

html[data-theme="dark"] .topbar {
  background: linear-gradient(180deg, rgba(10, 20, 27, 0.92), rgba(10, 20, 27, 0.65) 60%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

html[data-theme="dark"] .brand-title {
  color: #ffffff;
  -webkit-text-stroke: 0;
  text-shadow:
    1px 0 0 #ffffff,
    -1px 0 0 #ffffff,
    0 1px 0 #ffffff,
    0 -1px 0 #ffffff,
    0 6px 14px rgba(255, 124, 200, 0.2),
    0 10px 24px rgba(255, 184, 107, 0.2);
}

.brand-title {
  font-size: 1.8rem;
  font-weight: 425;
  color: #009999;
  font-family: "Rajdhani", "Sora", "Manrope", system-ui, sans-serif;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0.8px #000000;
  text-shadow:
    1px 0 0 #009999,
    -1px 0 0 #009999,
    0 1px 0 #009999,
    0 -1px 0 #009999,
    0 6px 14px rgba(255, 124, 200, 0.25),
    0 10px 24px rgba(255, 184, 107, 0.25);
  position: relative;
  display: inline-block;
}

.brand-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), var(--sunset));
}

.brand-divider {
  width: 100%;
  height: 1px;
  border-radius: 999px;
  margin: 6px 0 4px;
  background: linear-gradient(90deg, #009999, #ee7d00);
  transform: scaleX(0);
  transform-origin: center;
  animation: brandLine 1.5s ease forwards;
}

html[data-theme="dark"] .brand-divider {
  background: linear-gradient(90deg, var(--rose), var(--sunset));
}

.brand-sub {
  color: var(--ink-soft);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

.brand img {
  width: 54px;
  height: 63px;
}

.brand small {
  color: var(--ink-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-utility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  flex-wrap: nowrap;
  justify-content: flex-end;
  white-space: nowrap;
}

.nav a {
  transition: color 0.2s ease;
  position: relative;
  font-weight: 700;
}

.nav a:hover {
  color: var(--accent-strong);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--sunset), var(--accent), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a.is-active {
  color: var(--rose);
  text-shadow: 0 6px 18px rgba(18, 214, 200, 0.35);
}

.nav a.is-active::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.theme-toggle {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link-secondary {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(10, 20, 25, 0.12);
}

.nav-link-secondary.is-active {
  color: var(--rose);
  box-shadow: 0 10px 20px rgba(18, 214, 200, 0.2);
  border-color: rgba(255, 95, 191, 0.6);
}

.nav-link-secondary.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.theme-toggle i {
  color: var(--accent-strong);
}

.theme-toggle::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: var(--glow);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(10, 20, 25, 0.12);
}

.hero {
  padding: 24px 8vw 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 240px;
  background:
    linear-gradient(120deg, rgba(18, 214, 200, 0.2), rgba(123, 125, 255, 0.16), transparent),
    repeating-linear-gradient(90deg, var(--grid-line) 0 1px, transparent 1px 16px);
  opacity: 0.6;
  border-radius: 32px;
  z-index: -1;
  animation: pulseGlow 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 124, 200, 0.18), transparent 65%);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.8;
  z-index: -1;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero h1 .hand {
  font-size: 1.05em;
  text-shadow: 0 10px 24px rgba(255, 95, 191, 0.35);
}

h2,
h3 {
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-highlights div {
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 16px;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.5), rgba(255, 184, 107, 0.4), rgba(18, 214, 200, 0.35)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(12, 22, 28, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-highlights div::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 191, 0.18), transparent 70%);
  opacity: 0.8;
}

.hero-highlights strong {
  font-size: 0.95rem;
}

.hero-highlights span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--violet), var(--rose));
  color: #f8fbfb;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-actions .btn.btn-primary {
  background: linear-gradient(120deg, var(--accent-strong), var(--violet), var(--rose));
  color: #ffffff;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  box-shadow: 0 12px 24px rgba(12, 22, 28, 0.12);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover::after {
  opacity: 1;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.6), rgba(255, 184, 107, 0.5), rgba(18, 214, 200, 0.5)) border-box;
  backdrop-filter: blur(12px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--hero-glow);
  filter: blur(1px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 214, 200, 0.35), rgba(255, 124, 200, 0.25), rgba(123, 125, 255, 0.2));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.hero-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
}

.hero-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-card li i {
  color: var(--accent);
  min-width: 18px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.trust-strip {
  margin: 28px 8vw 44px;
  padding: 18px 22px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  background:
    linear-gradient(120deg, rgba(18, 214, 200, 0.12), rgba(123, 125, 255, 0.12), rgba(255, 122, 89, 0.08), rgba(255, 124, 200, 0.1));
  border: 1px solid rgba(123, 125, 255, 0.2);
  box-shadow: 0 18px 40px rgba(8, 14, 20, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), rgba(255, 95, 191, 0.08));
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(18, 214, 200, 0.18);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .trust-item {
  background: rgba(18, 39, 51, 0.6);
}

.trust-item i {
  color: var(--accent);
}

.hero-image-frame {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 214, 200, 0.25), rgba(123, 125, 255, 0.18), rgba(15, 29, 36, 0.85));
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(123, 125, 255, 0.25);
  opacity: 0.6;
  pointer-events: none;
}

html[data-theme="dark"] .hero-image-frame {
  background: linear-gradient(135deg, rgba(54, 227, 213, 0.25), rgba(111, 119, 255, 0.18), rgba(15, 29, 36, 0.92));
}

.hero-image-frame img {
  border-radius: 18px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 24px 50px rgba(5, 10, 14, 0.4);
}

.hero-badges {
  display: grid;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.45), rgba(123, 125, 255, 0.4), rgba(18, 214, 200, 0.35)) border-box;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(12, 22, 28, 0.1);
  animation: rise 0.9s ease both;
  backdrop-filter: blur(10px);
}

.badge i {
  color: var(--accent);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(12, 22, 28, 0.06);
}

.feature-list i {
  color: var(--accent);
  font-size: 1.2rem;
}

.feature-list strong {
  display: block;
  font-size: 1rem;
}

.feature-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill-row span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--chip);
  color: var(--pill-text);
  font-weight: 600;
  font-size: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(18, 214, 200, 0.2), rgba(123, 125, 255, 0.18), rgba(255, 124, 200, 0.18));
  color: var(--pill-text);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
  border: 1px solid rgba(123, 125, 255, 0.2);
}

.section {
  padding: 70px 8vw;
  position: relative;
  scroll-margin-top: var(--topbar-height);
}

.clients-section {
  padding: 90px 8vw;
}

.section::after {
  content: "";
  position: absolute;
  left: 8vw;
  bottom: 30px;
  width: 160px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--aqua), var(--violet), var(--magenta), transparent);
  opacity: 0.35;
}

.section-alt {
  background:
    linear-gradient(transparent, transparent) padding-box,
    linear-gradient(120deg, rgba(18, 214, 200, 0.4), rgba(255, 184, 107, 0.35), rgba(123, 125, 255, 0.35)) border-box,
    radial-gradient(circle at top left, var(--section-glow), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(91, 183, 255, 0.12), transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 22px, var(--grid-line-strong) 22px 23px);
  border-radius: 36px;
  margin: 0 6vw 70px;
  padding: 70px 6vw;
  border: 1px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(123, 125, 255, 0.08);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  margin: 0 0 12px;
}

.section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--rose), var(--ember), var(--sunset));
}

.section h2 .hand {
  font-family: var(--hand-font);
  font-size: 1.3em;
  color: var(--rose);
  margin-left: 8px;
}

.hand {
  font-family: var(--hand-font);
  color: var(--rose);
}

.section p.lead {
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(12, 22, 28, 0.08);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(18, 214, 200, 0.5), rgba(123, 125, 255, 0.45), rgba(255, 95, 191, 0.4)) border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(12, 22, 28, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 214, 200, 0.4), rgba(123, 125, 255, 0.3), transparent 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 214, 200, 0.2), rgba(123, 125, 255, 0.2), rgba(255, 95, 191, 0.22));
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.accent {
  background: linear-gradient(120deg, rgba(18, 214, 200, 0.14), rgba(123, 125, 255, 0.12), rgba(255, 122, 89, 0.12));
  border-radius: 36px;
  padding: 50px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}

.signal-stats {
  background: linear-gradient(120deg, rgba(18, 214, 200, 0.12), rgba(123, 125, 255, 0.12), rgba(255, 124, 200, 0.1));
  border-radius: 28px;
  padding: 26px;
  border: 1px solid rgba(123, 125, 255, 0.18);
  box-shadow: 0 18px 40px rgba(8, 14, 20, 0.12);
}

.stat {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(12, 22, 28, 0.08);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--ink);
}

.stat::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 214, 200, 0.2), transparent 65%);
  opacity: 0.7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.industry-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(18, 214, 200, 0.4), rgba(255, 184, 107, 0.35), rgba(123, 125, 255, 0.35)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(12, 22, 28, 0.06);
  font-weight: 600;
}

.industry-grid i {
  color: var(--accent);
}

.timeline {
  background: linear-gradient(135deg, rgba(15, 176, 173, 0.08), rgba(245, 182, 74, 0.08));
  border-radius: 36px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.timeline-grid div {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.4), rgba(18, 214, 200, 0.35), rgba(123, 125, 255, 0.35)) border-box;
  box-shadow: 0 12px 24px rgba(12, 22, 28, 0.08);
}

.timeline-grid strong {
  display: block;
  margin-bottom: 8px;
}

.timeline-grid p {
  color: var(--ink-soft);
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq-grid div {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(18, 214, 200, 0.35), rgba(123, 125, 255, 0.35), rgba(255, 95, 191, 0.35)) border-box;
  box-shadow: 0 12px 24px rgba(12, 22, 28, 0.06);
}

.faq-grid h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.faq-grid p {
  color: var(--ink-soft);
}

.testimonials-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.testimonials-grid.is-duo {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.testimonial-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.45), rgba(255, 184, 107, 0.35), rgba(18, 214, 200, 0.35)) border-box;
  box-shadow: 0 18px 30px rgba(12, 22, 28, 0.08);
  display: none;
  gap: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: rgba(123, 125, 255, 0.18);
  border-radius: 50%;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(18, 214, 200, 0.4), rgba(255, 122, 89, 0.25), transparent 65%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.testimonial-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--violet));
  display: grid;
  place-items: center;
  color: #0f1d24;
  font-weight: 700;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
}

.testimonial-role {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.testimonial-card.is-active {
  display: grid;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: fadeIn 0.6s ease both;
}

.clients-marquee {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(9, 20, 28, 0.85), rgba(9, 20, 28, 0.85)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.5), rgba(255, 184, 107, 0.4), rgba(18, 214, 200, 0.4)) border-box;
  padding: 18px;
}

#client-logos {
  display: grid;
  gap: 16px;
}

.clients-row {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
}


.clients-row.is-animated {
  animation: marquee-left 28s linear infinite;
}

.clients-row.is-animated.is-right {
  animation-name: marquee-right;
}

@media (hover: hover) and (pointer: fine) {
  .clients-marquee:hover .clients-row.is-animated {
    animation-play-state: paused;
  }
}

.client-logo {
  background: var(--card);
  border-radius: 16px;
  padding: 10px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  min-height: 92px;
  min-width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  filter: grayscale(20%);
  position: relative;
  overflow: hidden;
}

.client-logo::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(18, 214, 200, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(12, 22, 28, 0.12);
  filter: grayscale(0%);
}

.client-logo:hover::after {
  opacity: 1;
}

.client-logo img {
  height: 82px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}

.contact-actions {
  margin-bottom: 16px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--ink-soft);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(18, 214, 200, 0.12), rgba(123, 125, 255, 0.12), rgba(255, 124, 200, 0.1)),
    radial-gradient(circle at top left, rgba(18, 214, 200, 0.2), transparent 60%);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.45), rgba(18, 214, 200, 0.35), rgba(123, 125, 255, 0.35)) border-box,
    radial-gradient(circle at top left, rgba(18, 214, 200, 0.2), transparent 60%);
  box-shadow: 0 18px 40px rgba(8, 14, 20, 0.12);
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 600;
}

.contact-highlights div {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(18, 214, 200, 0.18);
}

html[data-theme="dark"] .contact-highlights div {
  background: rgba(18, 39, 51, 0.6);
}

.contact-highlights i {
  color: var(--accent);
}

.contact-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(120deg, rgba(255, 95, 191, 0.55), rgba(123, 125, 255, 0.45), rgba(18, 214, 200, 0.45)) border-box;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(123, 125, 255, 0.18), transparent 60%),
    radial-gradient(circle at bottom left, rgba(255, 124, 200, 0.12), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.contact-card h3 {
  font-family: var(--hand-font);
  font-size: 3rem;
  color: var(--rose);
  margin-top: 0;
  text-shadow: 0 10px 26px rgba(255, 95, 191, 0.45);
}

.contact-card p {
  font-size: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-list i {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(18, 214, 200, 0.2), rgba(123, 125, 255, 0.2), rgba(255, 95, 191, 0.22));
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-actions .btn {
  background: linear-gradient(120deg, rgba(18, 214, 200, 0.15), rgba(123, 125, 255, 0.2));
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.socials a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--accent-strong);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.4);
}

html[data-theme="dark"] .socials a {
  background: rgba(18, 39, 51, 0.6);
}

.socials a i {
  margin-right: 8px;
}

.socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(12, 22, 28, 0.12);
}

footer {
  padding: 40px 8vw 60px;
  color: var(--footer);
  font-size: 0.95rem;
}

.fade-in {
  animation: fadeIn 0.9s ease both;
}

.stagger > * {
  animation: rise 0.9s ease both;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.15s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.25s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.35s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.05);
  }
}

@keyframes brandLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 18px;
  }

  .nav {
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link-secondary {
    order: 2;
    padding: 6px 10px;
    font-size: 0.88rem;
  }

  .nav-actions {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-strip {
    margin: 10px 6vw 40px;
  }

  :root {
    --topbar-height: 170px;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 10px 2vw;
    gap: 10px;
    transform: none;
  }

  .page {
    padding-top: 168px;
  }

  .nav-actions {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .nav {
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    padding: 10px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    background:
      linear-gradient(rgba(9, 20, 28, 0.9), rgba(9, 20, 28, 0.9)) padding-box,
      linear-gradient(120deg, var(--rose), var(--sunset), var(--accent), var(--violet)) border-box;
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    font-size: 0.84rem;
    color: #ffffff;
    white-space: nowrap;
    font-weight: 600;
  }

  .theme-toggle {
    padding: 6px 10px;
  }

  .hero {
    padding: 16px 6vw 60px;
  }

  .section {
    padding: 60px 6vw;
    scroll-margin-top: 160px;
  }

  .accent {
    padding: 36px;
  }

  .section-alt {
    margin: 0 4vw 60px;
    padding: 60px 4vw;
  }

  .trust-strip {
    margin: 10px 4vw 40px;
    padding: 16px;
  }

  .theme-toggle .label {
    display: none;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .topbar {
    padding: 14px 6vw;
    gap: 14px;
    flex-wrap: wrap;
  }

  :root {
    --topbar-height: 200px;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .nav {
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    width: auto;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    background:
      linear-gradient(rgba(9, 20, 28, 0.9), rgba(9, 20, 28, 0.9)) padding-box,
      linear-gradient(120deg, var(--rose), var(--sunset), var(--accent), var(--violet)) border-box;
  }

  .nav a {
    font-size: 0.9rem;
    color: #ffffff;
  }

  .nav-utility {
    order: 2;
    justify-content: center;
    margin-left: 10px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .nav-link-secondary {
    order: 2;
  }

  .theme-toggle {
    order: 1;
  }

  .page {
    --topbar-height: 200px;
  }

  .section {
    --topbar-height: 200px;
  }

  .theme-toggle .label {
    display: none !important;
  }

  .theme-toggle {
    padding: 6px 8px;
  }

  .nav-link-secondary {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}


@media (max-width: 900px) {
  .testimonials-grid.is-duo {
    grid-template-columns: 1fr;
  }
}
