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

:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-head: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 68px;
  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --shadow-sm:
    0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.1);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--blue-300);
  border-radius: 2px;
}

/* ─── UTILITY ─── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-500);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.section-title .hl {
  background: linear-gradient(130deg, var(--blue-600), var(--sky-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 15.5px;
  color: var(--gray-500);
  line-height: 1.78;
  max-width: 520px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a6cff;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(10, 108, 255, 0.25);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.28);
}

.btn-primary i {
  width: 15px;
  height: 15px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--white);
  color: var(--blue-600);
  padding: 11px 22px;
  border-radius: var(--r-2xl);
  border: 1.5px solid var(--blue-200);
  transition: all 0.22s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--blue-400);
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-secondary i {
  width: 15px;
  height: 15px;
}

/* ─── ICON WRAPPER SYSTEM ─── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  flex-shrink: 0;
}

.icon-box.sm {
  width: 36px;
  height: 36px;
}

.icon-box.md {
  width: 44px;
  height: 44px;
}

.icon-box.lg {
  width: 52px;
  height: 52px;
}

.icon-box.xl {
  width: 64px;
  height: 64px;
  border-radius: var(--r-xl);
}

/* Blue bg → white icon */
.icon-box.blue {
  background: var(--blue-600);
}

.icon-box.blue i {
  color: var(--white);
}

/* Light bg → blue icon */
.icon-box.light {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
}

.icon-box.light i {
  color: var(--blue-600);
}

/* Gradient bg → white icon */
.icon-box.grad {
  color: var(--white);

  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
}

.icon-box.grad i {
  color: var(--white);
}

.icon-box i {
  width: 20px;
  height: 20px;
}

.icon-box.sm i {
  width: 15px;
  height: 15px;
}

.icon-box.lg i {
  width: 22px;
  height: 22px;
}

.icon-box.xl i {
  width: 26px;
  height: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.btn-mob {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
  padding: 6px;
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 88px 24px;
  position: relative;
  overflow: hidden;
}

.si {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric bg pattern */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 20%,
      rgba(59, 130, 246, 0.07) 0%,
      transparent 50%),
    radial-gradient(circle at 20% 80%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 45%);
}

/* Grid lines */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,
      black 30%,
      transparent 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: fadeUp 0.5s ease both;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 8px var(--sky-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--gray-900);
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.08s ease both;
}

.hero-title .hl {
  background: linear-gradient(130deg, var(--blue-600) 0%, var(--sky-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--gray-500);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 0;
  animation: fadeUp 0.5s 0.32s ease both;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 4px;
  width: fit-content;
}

.hs {
  padding: 14px 24px;
  text-align: center;
  position: relative;
}

.hs:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--gray-200);
}

.hs-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(130deg, var(--blue-700), var(--sky-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hs-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeRight 0.6s 0.15s ease both;
}

.hero-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 28px;
  width: 100%;
  max-width: 430px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.hc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.hc-sub {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 3px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--r);
  padding: 11px 13px;
  transition: all 0.2s;
  cursor: default;
}

.svc-row:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
  transform: translateX(3px);
}

.svc-name {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  flex: 1;
}

.svc-arr i {
  width: 13px;
  height: 13px;
  color: var(--gray-300);
}

.hc-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  gap: 6px;
}

.hc-pill {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
}

.hc-pill.blue {
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
}

.hc-pill.sky {
  background: rgba(14, 165, 233, 0.08);
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

/* Float chips */
.float-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  z-index: 3;
}

.float-chip.top {
  top: -30px;
  right: -20px;
  animation: floatY 3.8s ease-in-out infinite;
}

.float-chip.bot {
  bottom: -36px;
  left: -24px;
  animation: floatY 3.8s 1.9s ease-in-out infinite;
}

@keyframes floatY {

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

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

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip-dot.green {
  background: #22c55e;
  box-shadow: 0 0 7px rgba(34, 197, 94, 0.5);
}

.chip-dot.blue {
  background: var(--sky-500);
  box-shadow: 0 0 7px rgba(14, 165, 233, 0.5);
}

.chip-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-900);
}

.chip-sub {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
}

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

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

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

/* ─── ABOUT ─── */
#about {
  background: var(--gray-50);
}

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

.about-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-md);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.about-stat {
  background: var(--blue-50);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: 18px;
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(130deg, var(--blue-600), var(--sky-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.about-stat-lbl {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-400);
  margin-top: 5px;
}

.tech-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 12px 14px;
}

.tech-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
}

.tech-sub {
  font-size: 11.5px;
  color: var(--gray-400);
  margin-top: 2px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-600);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-blue);
}

.about-badge-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.about-badge-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  margin-top: 3px;
}

.ap-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 26px;
}

.ap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 16px;
  transition: all 0.22s;
  box-shadow: var(--shadow-sm);
}

.ap:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.ap-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.68;
}

/* ─── GOALS ─── */
#goals {
  background: var(--white);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.goal-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.goal-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--sky-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

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

.goal-card:hover::after {
  transform: scaleX(1);
}

.goal-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-200);
}

.goal-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 16px 0 8px;
}

.goal-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── VISION ─── */
#vision {
  background: linear-gradient(150deg, var(--blue-700) 0%, var(--blue-900) 100%);
  overflow: hidden;
  position: relative;
}

#vision::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

#vision::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(56, 189, 248, 0.12) 0%,
      transparent 70%);
}

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

.vision-tag {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky-400);
  margin-bottom: 14px;
}

.vision-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 14px;
}

.vision-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.78;
}

.vision-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.vision-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 20px;
  transition: all 0.22s;
}

.vision-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.vb-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--white);
}

.vb-icon i {
  width: 17px;
  height: 17px;
  color: var(--white);
}

.vb-title {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.vb-text {
  font-size: 12px;
  color: var(--white);
  line-height: 1.65;
}

/* ─── STATS ─── */
#stats {
  background: var(--gray-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
  border-color: var(--blue-300);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(130deg, var(--blue-700), var(--sky-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 14px 0 6px;
}

.stat-lbl {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.ss-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ss-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-xl);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.22s;
}

.ss-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.ss-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.ss-icon i {
  width: 22px;
  height: 22px;
  color: #fff;
}

.ss-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.ss-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ─── PRODUCTS ─── */
#products {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.prod-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.prod-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--sky-400));
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-300);
}

.prod-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid var(--blue-200);
}

.prod-logo {
  height: 36px;
  display: flex;
  align-items: center;
}

.prod-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

.prod-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-600);
  transition: gap 0.2s;
}

.prod-cta i {
  width: 13px;
  height: 13px;
}

.prod-card:hover .prod-cta {
  gap: 10px;
}

/* ─── PRIVACY ─── */
#privacy {
  background: var(--gray-50);
}

.privacy-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-md);
}

.privacy-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.privacy-text {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.78;
}

/* ─── CTA BANNER ─── */
#cta-banner {
  background: var(--blue-600);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

#cta-banner::after {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 70%);
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-desc {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  background: #fff;
  color: var(--blue-700);
  padding: 12px 24px;
  border-radius: var(--r-2xl);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  color: var(--blue-700);
}

.btn-white i {
  width: 15px;
  height: 15px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--r-2xl);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost i {
  width: 15px;
  height: 15px;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger>* {
  transition-delay: calc(var(--i) * 80ms);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

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

@media (max-width: 768px) {
  #header {
    padding: 0 20px;
  }

  nav ul {
    display: none;
  }

  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px;
    border-bottom: 1px solid #dde6f5;
    box-shadow: 0 8px 24px rgba(10, 50, 120, 0.08);
  }

  .mobile-toggle {
    display: flex;
  }

  #hero {
    padding: 100px 20px 60px;
  }

  .container {
    padding: 0 20px;
  }

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

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

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* ─── MODAL ─── */
.m-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.m-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.q-modal {
  background: var(--white);
  border-radius: var(--r-2xl);
  width: 100%;
  max-width: 560px;
  max-height: 700px;
  height: 100%;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.2);
  transform: scale(0.94) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1.5px solid var(--gray-200);
}

.m-overlay.open .q-modal {
  transform: scale(1) translateY(0);
}

.qm-top {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.qm-logo {
  width: 120px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.qm-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.qm-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.qm-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.qm-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
  flex-shrink: 0;
}

.qm-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.qm-close i {
  width: 15px;
  height: 15px;
}

.qm-body {
  padding: 24px;
}

.qm-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-100);
}

.qm-section-title {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 10px;
}

.qm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.qm-stat {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r);
  padding: 14px;
  text-align: center;
}

.qm-stat-n {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(130deg, var(--blue-600), var(--sky-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.qm-stat-l {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.qm-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}

.qm-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--gray-700);
  font-weight: 500;
}

.qm-feat i {
  width: 13px;
  height: 13px;
  color: var(--blue-600);
  flex-shrink: 0;
}

.qm-actions {
  display: flex;
  gap: 10px;
}

/* ─── CHAT ─── */
.chat-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 600;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--sky-500));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37, 99, 235, 0.35),
    0 0 0 4px rgba(37, 99, 235, 0.1);
  cursor: pointer;
  transition: all 0.22s;
}

.chat-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

.chat-btn i {
  width: 22px;
  height: 22px;
  color: #fff;
}

.chat-notif {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 800;
  color: #fff;
}

.chat-win {
  position: fixed;
  bottom: 88px;
  right: 22px;
  z-index: 600;
  width: 350px;
  background: var(--white);
  border-radius: var(--r-2xl);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transform: scale(0.88) translateY(14px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-win.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cw-hd {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.cw-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-av i {
  width: 18px;
  height: 18px;
  color: #fff;
}

.cw-name {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.cw-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.cw-sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px rgba(34, 197, 94, 0.7);
}

.cw-close-btn {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.18s;
}

.cw-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cw-close-btn i {
  width: 14px;
  height: 14px;
}

.cw-msgs {
  padding: 16px;
  height: 230px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-50);
}

.cw-msgs::-webkit-scrollbar {
  width: 2px;
}

.cw-msgs::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 1px;
}

.msg {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  max-width: 88%;
}

.msg.bot {
  align-self: flex-start;
}

.msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 800;
}

.msg.bot .msg-av {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: #fff;
}

.msg.user .msg-av {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: #fff;
}

.msg-bub {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.52;
}

.msg.bot .msg-bub {
  background: var(--white);
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
  border-radius: 3px 12px 12px 12px;
}

.msg.user .msg-bub {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: #fff;
  border-radius: 12px 3px 12px 12px;
}

.msg-t {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 3px;
  padding: 0 3px;
}

.typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 12px;
  background: var(--white);
  border-radius: 3px 12px 12px 12px;
  border: 1px solid var(--gray-200);
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
  animation: td 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes td {

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

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

.cw-quick {
  padding: 10px 14px 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.cw-quick button {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 14px;
  padding: 5px 11px;
  cursor: pointer;
  transition: all 0.18s;
}

.cw-quick button:hover {
  background: var(--blue-100);
  border-color: var(--blue-400);
}

.cw-inp-row {
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--gray-100);
  background: var(--white);
}

.cw-inp {
  flex: 1;
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 9px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.18s;
}

.cw-inp:focus {
  border-color: var(--blue-500);
  background: var(--white);
}

.cw-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
  transition: transform 0.18s;
  flex-shrink: 0;
  align-self: center;
}

.cw-send:hover {
  transform: scale(1.1);
}

.cw-send i {
  width: 14px;
  height: 14px;
  color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {

  .hero-inner,
  .about-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-visual,
  .float-chip {
    display: none;
  }

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

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-sub,
  .section-desc {
    max-width: 100%;
  }

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

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

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

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

  nav.desktop {
    display: none;
  }

  .btn-mob {
    display: flex;
  }

  .about-grid .stag,
  .about-grid .section-title,
  .about-grid .section-desc {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 8px;
  }

  .products-grid,
  .goals-grid,
  .ss-inner {
    grid-template-columns: 1fr;
  }

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

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

  .privacy-box {
    flex-direction: column;
    padding: 24px;
  }

  .chat-win {
    width: calc(100vw - 44px);
  }

  .qm-feats {
    grid-template-columns: 1fr;
  }
}