/* =========================================================
   FulfilmentUp — Global Stylesheet
   Brand colors: Indigo / Lime / Coral on clean white
   ========================================================= */

:root {
  --indigo-900: #0b1437;
  --indigo-800: #131c4a;
  --indigo-700: #1f2a6b;
  --indigo-100: #e7e9f5;
  --lime-500: #22d87c;
  --lime-600: #18bd68;
  --lime-100: #dffbe9;
  --coral-500: #ff6b6b;
  --amber-500: #ffc857;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #eaeaea;
  /* --slate-100: #f1f5f9; */
  --bg: #f7f9fc;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 20, 55, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 20, 55, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 20, 55, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1360px;
  --font:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--slate-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--indigo-700);
  text-decoration: none;
}
a:hover {
  color: var(--lime-600);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top Promo Strip ---------- */
.promo-strip {
  background: var(--indigo-900);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.2px;
}
.promo-strip strong {
  color: var(--lime-500);
}

/* ---------- Navigation ---------- */
.nav {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(11, 20, 55, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition:
    padding 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}
.nav.scrolled {
  padding: 0;
  box-shadow: 0 8px 24px rgba(11, 20, 55, 0.06);
  background: rgba(255, 255, 255, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav.scrolled .nav-inner {
  padding: 12px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--indigo-900);
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: transform 240ms ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
}
.nav.scrolled .brand-logo {
  height: 38px;
}
.footer .brand-logo {
  height: 54px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--indigo-900) 0%,
    var(--indigo-700) 60%,
    var(--lime-500) 100%
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.brand-up {
  color: var(--lime-600);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-menu a {
  color: var(--slate-700);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease;
  position: relative;
}
.nav-menu a:hover {
  color: var(--indigo-900);
  background: var(--lime-100);
}
.nav-menu a.active {
  color: var(--indigo-900);
  background: var(--slate-100);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms ease;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--lime-500);
  color: #fff;
  border-color: var(--lime-500);
}
.btn-primary:hover {
  background: var(--lime-600);
  border-color: var(--lime-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.btn-dark {
  background: var(--indigo-900);
  color: #fff;
}
.btn-dark:hover {
  background: var(--indigo-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--indigo-900);
  border-color: var(--slate-300);
}
.btn-ghost:hover {
  border-color: var(--indigo-900);
  color: var(--indigo-900);
}
.btn-light {
  background: #fff;
  color: var(--indigo-900);
}
.btn-light:hover {
  background: var(--lime-100);
  color: var(--indigo-900);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo-900);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(34, 216, 124, 0.18),
    transparent 70%
  );
  top: -120px;
  right: -120px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(31, 42, 107, 0.12),
    transparent 70%
  );
  bottom: -120px;
  left: -100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-100);
  color: var(--indigo-900);
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--lime-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 216, 124, 0.25);
}
.h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--indigo-900);
  margin-bottom: 18px;
}
.h1 .accent {
  color: var(--lime-600);
}
.h1 .accent-coral {
  color: var(--coral-500);
}
.lead {
  font-size: 18px;
  color: var(--slate-700);
  max-width: 560px;
  margin-bottom: 20px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--slate-500);
  font-size: 14px;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--slate-300);
  border: 2px solid #fff;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
}
.avatars span:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-100);
}
.dash-title {
  font-weight: 700;
  color: var(--indigo-900);
}
.dash-pill {
  background: var(--lime-100);
  color: var(--indigo-900);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.dash-stat {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
}
.dash-stat .num {
  font-size: 22px;
  font-weight: 800;
  color: var(--indigo-900);
}
.dash-stat .lbl {
  font-size: 12px;
  color: var(--slate-500);
}
.float-card {
  margin-top: -30px;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 200px;
  padding: 12px 6px;
  background: var(--bg);
  border-radius: 12px;
}
.dash-bars div {
  flex: 1;
  background: linear-gradient(180deg, var(--lime-500), var(--indigo-700));
  border-radius: 6px 6px 2px 2px;
}
.float-card {
  position: absolute;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo-900);
  border: 1px solid var(--slate-100);
}
.float-card .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lime-100);
  color: var(--lime-600);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.float-card.tl {
  top: -22px;
  left: -22px;
}
.float-card.br {
  bottom: -22px;
  right: -22px;
}

/* ---------- Section base ---------- */
section {
  padding: 80px 0;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime-600);
  margin-bottom: 12px;
}
.h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--indigo-900);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-sub {
  color: var(--slate-700);
  font-size: 17px;
}

/* ---------- Logo strip ---------- */
.logos {
  background: #fff;
  padding: 36px 0;
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}
.logos-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-around;
}
.logo-pill {
  font-weight: 700;
  font-size: 18px;
  color: var(--slate-500);
  letter-spacing: -0.5px;
  opacity: 0.85;
}
.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 220ms ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--lime-500);
}
.card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lime-100);
  color: var(--lime-600);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 800;
}
.card h3 {
  font-size: 19px;
  color: var(--indigo-900);
  margin-bottom: 10px;
  font-weight: 700;
}
.card p {
  color: var(--slate-500);
  font-size: 15px;
  margin-bottom: 16px;
}
.card .arrow {
  color: var(--indigo-900);
  font-weight: 700;
  font-size: 14px;
}
.card .arrow:hover {
  color: var(--lime-600);
}

/* ---------- Two-col feature blocks ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature.reverse > div:first-child {
  order: 2;
}
.feature h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--indigo-900);
  margin-bottom: 18px;
  line-height: 1.18;
}
.feature p {
  color: var(--slate-700);
  margin-bottom: 18px;
}
.feature ul {
  list-style: none;
  margin-bottom: 26px;
}
.feature ul li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  color: var(--slate-700);
  font-weight: 500;
}
.feature ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.feature-img {
  background: linear-gradient(135deg, var(--indigo-900), var(--indigo-700));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.feature-img.type_1 {
  aspect-ratio: 4/4;
}
.feature-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}
.step {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo-900);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin: 0 auto 18px;
  font-size: 17px;
}
.step h4 {
  font-size: 18px;
  color: var(--indigo-900);
  margin-bottom: 8px;
}
.step p {
  color: var(--slate-500);
  font-size: 14px;
}

/* ---------- Stats ---------- */
.stats-band {
  background: var(--indigo-900);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 100%,
      rgba(34, 216, 124, 0.15),
      transparent 50%
    ),
    radial-gradient(circle at 90% 0%, rgba(255, 107, 107, 0.1), transparent 50%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.stats-grid .num {
  font-size: 44px;
  font-weight: 800;
  color: var(--lime-500);
  letter-spacing: -1px;
}
.stats-grid .lbl {
  font-size: 14px;
  color: #b7c0e1;
  margin-top: 4px;
}

/* ---------- Industries ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--slate-100);
  transition: all 220ms ease;
}
.industry:hover {
  background: var(--indigo-900);
  color: #fff;
  transform: translateY(-3px);
}
.industry:hover h4,
.industry:hover p {
  color: #fff;
}
.industry:hover .tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime-500);
}
.industry .tag {
  display: inline-block;
  background: var(--lime-100);
  color: var(--indigo-900);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.industry h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--indigo-900);
  margin-bottom: 8px;
}
.industry p {
  color: var(--slate-500);
  font-size: 14px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--bg);
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stars {
  color: #ffb400;
  letter-spacing: 2px;
}
.t-card blockquote {
  color: var(--slate-700);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}
.t-author .a-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo-900), var(--lime-500));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.t-author .name {
  font-weight: 700;
  color: var(--indigo-900);
}
.t-author .role {
  font-size: 13px;
  color: var(--slate-500);
}

/* ---------- FAQ ---------- */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 22px 24px;
  cursor: pointer;
  transition: all 180ms ease;
}
.faq:hover {
  border-color: var(--lime-500);
}
.faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--indigo-900);
  font-size: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--lime-600);
  transition: transform 180ms ease;
}
.faq[open] summary::after {
  content: "−";
}
.faq p {
  margin-top: 14px;
  color: var(--slate-700);
  line-height: 1.7;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--indigo-900) 0%,
    var(--indigo-700) 100%
  );
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(34, 216, 124, 0.18),
    transparent 50%
  );
}
.cta-banner > * {
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-banner p {
  color: #b7c0e1;
  max-width: 540px;
  margin: 0 auto 26px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--indigo-900);
  color: #b7c0e1;
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .brand {
  color: #fff;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  font-size: 14px;
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  color: #b7c0e1;
  font-size: 14px;
}
.footer ul a:hover {
  color: var(--lime-500);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8c97c2;
  flex-wrap: wrap;
  gap: 14px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  transition: all 180ms ease;
}
.socials a:hover {
  background: var(--lime-500);
  color: var(--indigo-900);
}

/* ---------- Page Header (sub pages) ---------- */
.page-head {
  background: linear-gradient(
    135deg,
    var(--indigo-900) 0%,
    var(--indigo-700) 100%
  );
  color: #fff;
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 100%,
      rgba(34, 216, 124, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 80% 0%, rgba(255, 107, 107, 0.1), transparent 50%);
}
.page-head > * {
  position: relative;
  z-index: 2;
}
.page-head .crumbs {
  font-size: 13px;
  color: #b7c0e1;
  margin-bottom: 16px;
}
.page-head .crumbs a {
  color: var(--lime-500);
}
.page-head h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-head p {
  color: #b7c0e1;
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 17px;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.price.featured {
  background: var(--indigo-900);
  color: #fff;
  border-color: var(--indigo-900);
  transform: translateY(-12px);
  position: relative;
}
.price.featured h3,
.price.featured .amt {
  color: #fff;
}
.price.featured .amt small {
  color: #b7c0e1;
}
.price.featured .pop {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime-500);
  color: var(--indigo-900);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}
.price h3 {
  font-size: 18px;
  color: var(--slate-700);
  margin-bottom: 12px;
}
.price .amt {
  font-size: 42px;
  font-weight: 800;
  color: var(--indigo-900);
  letter-spacing: -1.5px;
  margin-bottom: 6px;
}
.price .amt small {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
}
.price .desc {
  font-size: 14px;
  color: var(--slate-500);
  margin-bottom: 22px;
}
.price.featured .desc {
  color: #b7c0e1;
}
.price ul {
  list-style: none;
  margin-bottom: 26px;
  flex-grow: 1;
}
.price ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14px;
  color: var(--slate-700);
}
.price.featured ul li {
  color: #fff;
}
.price ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--lime-500);
  font-weight: 800;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  background: var(--indigo-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
}
.contact-info h3 {
  color: #fff;
  margin-bottom: 16px;
}
.contact-info p {
  color: #b7c0e1;
  margin-bottom: 28px;
}
.contact-info .line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-info .line:first-of-type {
  border-top: 0;
}
.contact-info .line .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lime-500);
  color: var(--indigo-900);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.contact-info .line strong {
  color: #fff;
  display: block;
  font-size: 14px;
}
.contact-info .line span {
  color: #b7c0e1;
  font-size: 14px;
}

.form {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.form h3 {
  margin-bottom: 8px;
  color: var(--indigo-900);
}
.form p {
  color: var(--slate-500);
  margin-bottom: 24px;
  font-size: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo-900);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--slate-900);
  background: #fff;
  transition: border-color 180ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--lime-500);
  box-shadow: 0 0 0 4px rgba(34, 216, 124, 0.15);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

/* ---------- Product grid (private label) ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: all 220ms ease;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product .img {
  background: linear-gradient(135deg, var(--lime-100), var(--indigo-100));
  height: 140px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  color: var(--indigo-900);
  font-weight: 700;
  font-size: 28px;
}
.product h5 {
  font-size: 14px;
  color: var(--indigo-900);
  margin-bottom: 6px;
}
.product .price-tag {
  font-weight: 800;
  color: var(--lime-600);
  font-size: 16px;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-100);
  transition: all 220ms ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card .thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--indigo-700), var(--lime-500));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.blog-card .body {
  padding: 22px;
}
.blog-card .date {
  color: var(--slate-500);
  font-size: 12px;
  margin-bottom: 8px;
}
.blog-card h4 {
  color: var(--indigo-900);
  font-size: 17px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--slate-500);
  font-size: 14px;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.bg-soft {
  background: var(--bg);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
  }
  .feature.reverse > div:first-child {
    order: 0;
  }
  .cards,
  .industries,
  .t-grid,
  .blog-grid,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .price.featured {
    transform: none;
  }
  .nav-menu {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--slate-100);
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-100);
  }
  .nav-menu li:last-child {
    border-bottom: 0;
  }
  .nav-menu a {
    padding: 8px 0;
    border-radius: 0;
    background: transparent !important;
  }
  .nav-toggle {
    display: block;
  }
  section {
    padding: 60px 0;
  }
  .cta-banner {
    padding: 40px 24px;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .float-card.tl,
  .float-card.br {
    display: none;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Modern enhancements — GSAP animation init states & motion
   ========================================================= */

/* Hide elements before GSAP fades them in (no FOUC) */
.gsap-ready [data-anim],
.gsap-ready [data-anim-stagger] > * {
  opacity: 0;
  will-change: transform, opacity;
}
.gsap-ready [data-anim="fade-up"] {
  transform: translate3d(0, 28px, 0);
}
.gsap-ready [data-anim="fade-right"] {
  transform: translate3d(-28px, 0, 0);
}
.gsap-ready [data-anim="fade-left"] {
  transform: translate3d(28px, 0, 0);
}
.gsap-ready [data-anim="zoom"] {
  transform: scale(0.94);
}

/* Smooth scroll-margin so anchored sections sit clear of sticky nav */
section {
  scroll-margin-top: 90px;
}

/* Magnetic / 3D button polish */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 240ms ease;
  z-index: -1;
}
.btn:hover::before {
  opacity: 1;
}

/* Gradient animated headline accent */
.h1 .grad {
  background: linear-gradient(
    100deg,
    var(--lime-600) 0%,
    var(--indigo-700) 45%,
    var(--lime-600) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* Floating cards subtle motion (GSAP-friendly placeholder) */
.float-card {
  z-index: 3;
}

/* Card hover lift + sheen */
.card {
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 240ms ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(34, 216, 124, 0.5) 60%,
    transparent 80%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.card:hover::after {
  opacity: 1;
}

/* Industry tile lift + ring */
.industry {
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 360ms ease,
    color 360ms ease,
    box-shadow 360ms ease;
}
.industry:hover {
  box-shadow: 0 24px 60px rgba(11, 20, 55, 0.18);
}

/* ---------- Marquee logo strip (continuous scroll) ---------- */
.logos-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.logos-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
  animation: marquee 28s linear infinite;
}
.logos-track .logo-pill {
  white-space: nowrap;
  font-size: 22px;
  opacity: 0.75;
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Number counters target */
.count {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* Reveal helpers for scroll batches */
.reveal-card {
  will-change: transform, opacity;
}

/* Make sticky promo + nav stack visually right */
.promo-strip {
  position: relative;
  z-index: 101;
}

/* Subtle hero blob movement */
.hero::before,
.hero::after {
  will-change: transform;
}

/* When the menu wraps, keep brand row clean */
@media (max-width: 960px) {
  .nav-right {
    margin-left: 0;
  }
}

/* =========================================================
   Toast notification + form success/error states
   ========================================================= */

.toast-root {
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
  max-width: calc(100vw - 36px);
}
.toast {
  pointer-events: auto;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-left: 4px solid var(--lime-500);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 14px 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 300px;
  max-width: 420px;
  transform: translateX(20px);
  opacity: 0;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 320ms ease;
}
.toast.show {
  transform: translateX(0);
  opacity: 1;
}
.toast.hide {
  transform: translateX(20px);
  opacity: 0;
}
.toast-error {
  border-left-color: var(--coral-500);
}
.toast-ic {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--lime-100);
  color: var(--lime-600);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
.toast-error .toast-ic {
  background: #ffe4e4;
  color: var(--coral-500);
}
.toast-body {
  flex: 1;
  min-width: 0;
}
.toast-title {
  font-weight: 700;
  color: var(--indigo-900);
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.3;
}
.toast-msg {
  color: var(--slate-700);
  font-size: 13px;
  line-height: 1.55;
  word-wrap: break-word;
}
.toast-close {
  background: transparent;
  border: 0;
  color: var(--slate-500);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}
.toast-close:hover {
  color: var(--indigo-900);
  background: var(--slate-100);
}

/* Invalid email field shake */
input.is-invalid {
  border-color: var(--coral-500) !important;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18);
  animation: shake 380ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Button loading/success states */
.btn.is-loading {
  cursor: wait;
  opacity: 0.85;
}
.btn.is-success {
  background: var(--lime-500) !important;
  border-color: var(--lime-500) !important;
  color: var(--indigo-900) !important;
}

@media (max-width: 540px) {
  .toast-root {
    top: 12px;
    right: 12px;
    left: 12px;
  }
  .toast {
    min-width: 0;
    max-width: 100%;
  }
}
