:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --text: #0b1a3a;
  --muted: #5a6b87;
  --primary: #1d4ed8;
  --primary-strong: #0f2d66;
  --accent: #f97316;
  --accent-strong: #ea580c;
  --teal: #0ea5b7;
  --dark: #0a1a44;
  --dark-2: #0b2563;
  --stroke: #e2e8f5;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(2, 10, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(13, 29, 77, 0.18);
  --shadow-soft: 0 14px 34px rgba(29, 78, 216, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* In-page anchors (e.g. #contact) land below the sticky header */
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #fbfcff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ---------- Background shapes ---------- */
.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: -2;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}

.shape-1 {
  width: 380px;
  height: 380px;
  background: #bfdbfe;
  top: -120px;
  left: -120px;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: #fcd9b6;
  top: 40%;
  right: -120px;
  animation: float 12s ease-in-out infinite 2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: #c7d2fe;
  bottom: -80px;
  left: 30%;
  animation: float 14s ease-in-out infinite 1s;
}

.bg-dots {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(#c7d2fe 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.6;
}

.dots-1 {
  top: 120px;
  right: 40px;
}

.dots-2 {
  bottom: 200px;
  left: 30px;
}

/* ---------- Container ---------- */
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 226, 240, 0.6);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-light {
  height: 76px;
  background: #fff;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  margin-left: auto;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--primary-strong);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 8px;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 1rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.45);
}

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

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

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 40px;
  overflow: hidden;
}

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

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(29, 78, 216, 0.12);
}

.ring-a {
  width: 120px;
  height: 120px;
  top: 120px;
  left: 8%;
  animation: spin 22s linear infinite;
}

.ring-b {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 15%;
  border-color: rgba(249, 115, 22, 0.35);
  animation: pulse 3s ease-in-out infinite;
}

.ring-c {
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: -60px;
  border-color: rgba(14, 165, 183, 0.2);
  animation: spin 30s linear infinite reverse;
}

.dot-grid {
  position: absolute;
  top: 160px;
  left: 3%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#1d4ed8 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.25;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eff4ff;
  color: var(--primary-strong);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  font-weight: 800;
  color: var(--primary-strong);
  letter-spacing: -0.02em;
}

.text-grad {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: var(--muted);
  font-weight: 600;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  margin-right: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  animation: floatY 4s ease-in-out infinite;
}

.float-card strong {
  display: block;
  color: var(--primary-strong);
}

.float-card small {
  color: var(--muted);
}

.card-a {
  top: 30px;
  left: -30px;
  animation-delay: 0.2s;
}

.card-b {
  bottom: 40px;
  right: -25px;
  animation-delay: 1.5s;
}

.float-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.float-card .ic.alt {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.dc-1 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  top: -18px;
  right: 40px;
  animation: floatY 5s ease-in-out infinite;
}

.dc-2 {
  width: 40px;
  height: 40px;
  background: var(--teal);
  bottom: 60px;
  left: -20px;
  animation: floatY 4s ease-in-out infinite 1s;
}

.deco-ring {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  opacity: 0.5;
  z-index: -1;
  animation: spin 16s linear infinite;
}

/* Stats ribbon */
.stats-bar {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #0a2a6b, #1d4ed8 70%, #0ea5b7);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.stat-item h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.stat-item p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #d6e4ff;
}

/* ---------- About ---------- */
.about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-accent {
  position: absolute;
  border-radius: 20px;
  z-index: 1;
}

.ac-1 {
  width: 85%;
  height: 85%;
  top: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  opacity: 0.9;
}

.ac-2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  bottom: -20px;
  right: 30px;
  background: var(--teal);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}

.about-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -30px;
  right: -20px;
  background-image: radial-gradient(var(--primary) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.35;
  z-index: 0;
}

.exp-badge {
  position: absolute;
  right: -20px;
  top: 30%;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  text-align: center;
  animation: floatY 5s ease-in-out infinite;
}

.exp-badge h4 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 800;
}

.exp-badge p {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 120px;
}

.script-title {
  font-family: "Dancing Script", cursive;
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  color: var(--primary-strong);
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.mini-features>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: #fff;
}

.mf-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: var(--primary);
}

.mini-features p {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.mini-features small {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------- Section base ---------- */
.section {
  padding: 90px 0;
  position: relative;
}

.section-alt {
  background: #f5f8ff;
}

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

.section-head.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-head.between {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  color: var(--primary-strong);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-head .lead {
  color: var(--muted);
  margin-top: 14px;
  font-size: 1.02rem;
}

.kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
  position: relative;
  padding-left: 36px;
}

.kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.kicker.light {
  color: #fbbf24;
}

.kicker.light::before {
  background: #fbbf24;
}

/* ---------- Drives grid ---------- */
.section-drives {
  background: linear-gradient(180deg, #fbfcff, #eef4ff);
}

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

.drive-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--stroke);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.drive-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(249, 115, 22, 0.08), transparent 70%);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

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

.drive-card:hover::before {
  transform: scale(1.5);
}

.drive-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}

.drive-card:hover .drive-icon {
  transform: rotate(-6deg) scale(1.05);
}

.drive-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px dashed rgba(29, 78, 216, 0.18);
  border-radius: 24px;
}

.grad-a {
  background: linear-gradient(135deg, #1d4ed8, #0ea5b7);
}

.grad-b {
  background: linear-gradient(135deg, #f97316, #fbbf24);
}

.grad-c {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.drive-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--primary-strong);
}

.drive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Services dark ---------- */
.services-dark {
  background: linear-gradient(135deg, #0a1a44 0%, #1e1b4b 50%, #312e81 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.g-1 {
  width: 400px;
  height: 400px;
  background: #6366f1;
  top: -100px;
  left: -100px;
}

.g-2 {
  width: 360px;
  height: 360px;
  background: #0ea5b7;
  bottom: -120px;
  right: -80px;
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.services-head h2 {
  color: #fff;
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  max-width: 640px;
}

.services-lead {
  margin: 14px 0 0;
  max-width: 620px;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.7;
}

.tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 32px;
}

.tab {
  background: transparent;
  border: none;
  color: #cbd5e1;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}

.tab-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tab-panel.active {
  display: grid;
  animation: fadeUp 0.45s ease;
}

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

.svc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 26px 22px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.svc-card:hover::before {
  left: 100%;
}

.svc-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  margin-bottom: 16px;
}

.svc-card h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.1rem;
}

.svc-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.92rem;
}

/* ---------- Clients Carousel ---------- */
.clients-section {
  padding: 80px 0 90px;
  overflow: hidden;
  position: relative;
}

.clients-bg-accent {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}

.clients-carousel-wrap {
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
}

.clients-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.clients-fade-left {
  left: 0;
  background: linear-gradient(90deg, #fbfcff 0%, #fbfcff 30%, transparent 100%);
}

.clients-fade-right {
  right: 0;
  background: linear-gradient(270deg, #fbfcff 0%, #fbfcff 30%, transparent 100%);
}

.clients-carousel {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.clients-marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clientsScroll 50s linear infinite;
  will-change: transform;
}

.clients-carousel-wrap:hover .clients-marquee {
  animation-play-state: paused;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 0 0 auto;
  padding: 0 12px;
}

.client-logo {
  flex: 0 0 auto;
  min-width: 180px;
  height: 100px;
  padding: 0 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
  border: 1.5px solid var(--stroke);
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(11, 26, 58, 0.06), 0 1px 3px rgba(11, 26, 58, 0.03);
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}

.client-logo:hover::before {
  left: 100%;
}

.client-logo img {
  max-height: 70px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
}

.client-logo .logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.client-logo:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.15), 0 2px 6px rgba(11, 26, 58, 0.08);
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .clients-marquee {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 16px;
  }

  .clients-carousel-wrap {
    padding: 0 16px;
  }

  .clients-fade {
    display: none;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 0 70px;
  }

  .clients-fade {
    width: 80px;
  }

  .clients-fade-left {
    background: linear-gradient(90deg, #fbfcff 0%, #fbfcff 40%, transparent 100%);
  }

  .clients-fade-right {
    background: linear-gradient(270deg, #fbfcff 0%, #fbfcff 40%, transparent 100%);
  }
}

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

  .client-logo {
    min-width: 160px;
    height: 110px;
    font-size: 1rem;
    padding: 0 24px;
    border-radius: 16px;
    gap: 12px;
  }

  .client-logo img {
    max-height: 52px;
    max-width: 140px;
  }

  .clients-fade {
    width: 60px;
  }

  .clients-track {
    gap: 20px;
    padding: 0 8px;
  }

  .clients-carousel-wrap {
    margin-top: 36px;
    padding: 8px 0;
  }
}

/* ---------- Stand Out ---------- */
.stand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stand-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

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

.stand-ic {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: var(--primary);
  transition: all 0.3s ease;
}

.stand-card:hover .stand-ic {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  transform: rotate(6deg);
}

.stand-card h3 {
  margin: 0 0 8px;
  color: var(--primary-strong);
  font-size: 1.1rem;
}

.stand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.blog-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.blog-body {
  padding: 22px;
}

.blog-body .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 8px;
}

.blog-body h3 {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 1.2rem;
}

.blog-body p {
  color: var(--muted);
  margin: 0 0 12px;
}

.read-more {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s ease;
  display: inline-flex;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 40px 0 90px;
}

.cta-wrap {
  position: relative;
  background: linear-gradient(135deg, #0a1a44 0%, #1e3a8a 60%, #1d4ed8 100%);
  border-radius: calc(var(--radius-lg) + 8px);
  padding: 50px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-wrap h2 {
  color: #fff;
  margin: 12px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.cta-wrap p {
  color: #cbd5e1;
  margin: 0;
  max-width: 60ch;
}

.cta-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  top: -40px;
  right: 30%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}

.cta-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  bottom: -100px;
  border: 30px solid rgba(249, 115, 22, 0.3);
  border-radius: 50%;
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: #081433;
  color: #c4d0ea;
  padding: 70px 0 20px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.2), transparent 70%);
  pointer-events: none;
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.foot-copy {
  color: #94a3b8;
  margin: 18px 0;
  font-size: 0.9rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  padding: 6px 0;
}

.site-footer ul a {
  color: #94a3b8;
  transition: color 0.2s;
}

.site-footer ul a:hover {
  color: var(--accent);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.ft-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.subscribe {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.subscribe input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.subscribe input::placeholder {
  color: #64748b;
}

.subscribe input:focus {
  border-color: var(--accent);
}

.sub-foot {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #64748b;
}

.sub-foot p {
  margin: 0;
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 40;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-4px);
}

/* ---------- Animations ---------- */
.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.visible,
.reveal-delay.visible {
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delay.visible {
  animation-delay: 0.2s;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes float {

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

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

@keyframes floatY {

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

  50% {
    transform: translateY(-12px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tab-panel.active {
    grid-template-columns: repeat(2, 1fr);
  }

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

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--stroke);
    box-shadow: 0 14px 30px rgba(2, 10, 34, 0.08);
    gap: 14px;
    display: none;
  }

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

  .main-nav a {
    padding: 6px 0;
  }

  .mobile-cta {
    display: inline-flex;
    margin-top: 6px;
    justify-content: center;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .desktop-only {
    display: none !important;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 20px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .drives-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

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

  .exp-badge {
    right: -10px;
  }

  .float-card.card-a {
    left: -10px;
  }

  .float-card.card-b {
    right: -5px;
  }
}

@media (max-width: 520px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .stand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mini-features {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  .section,
  .about {
    padding: 60px 0;
  }
}