/* =========================================================
   RESET / BASE
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff5a1f;
  --orange-dark: #e6490f;
  --orange-darker: #cc3d0a;
  --orange-tint: #fdece3;
  --ink: #14171f;
  --gray-900: #1a1d26;
  --gray-600: #5b6270;
  --gray-400: #9aa0ac;
  --gray-100: #f3f4f6;
  --bg-soft: #f6f7f9;
  --white: #ffffff;
  --border: #e7e8ec;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 10px 30px rgba(20, 23, 31, 0.1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink-2: #475569; /* Secondary text color (slate) */
  --ink-3: #64748b; /* Tertiary text color (light slate) */
  --line: #e2e8f0; /* Borders */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  padding: 12px 20px;
  font-size: 14px;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(255, 90, 31, 0.22);
}

.btn--primary:hover {
  background: var(--orange-darker);
  box-shadow: 0 12px 26px rgba(230, 73, 15, 0.45);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(20, 23, 31, 0.12);
  transform: translateY(-1px);
}

.arrow {
  display: inline-block;
  transition: transform 0.15s ease;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

.navbar__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__nav a:not(.navbar__nav-cta) {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s ease;
}

.navbar__nav a:not(.navbar__nav-cta):hover {
  color: var(--ink);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar__pricing-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.15s ease;
}

.navbar__pricing-link:hover {
  color: var(--ink);
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.navbar__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__nav-cta {
  display: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--bg-soft);
  padding: 40px 0 40px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-tint);
  color: var(--orange);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 28px;
  border: 1px solid var(--orange);
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* --- Title --- */
.hero__title {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero__title--accent {
  color: var(--orange);
}

/* --- Description --- */
.hero__desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 32px;
}

/* --- CTAs --- */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* --- Stats row --- */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero__stats li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}

.hero__stats .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* --- Media / Image --- */
.hero__media {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  /* overflow intentionally left visible here so the floating
     cards can sit outside the photo's edges, in the foreground */
}

.hero__image-clip {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.hero__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 5px;
}

.hero__image-clip:hover .hero__image {
  transform: scale(1.06);
}

/* --- Floating cards --- */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(20, 23, 31, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  z-index: 20;
}

.floating-card--rating {
  top: -10px;
  right: -24px;
  gap: 8px;
}

.stars {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.floating-card--stat {
  bottom: -10px;
  left: -24px;
}

.floating-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-tint);
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.floating-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card__text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.floating-card__text small {
  font-size: 12.5px;
  color: var(--gray-400);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 46px;
  }

  .hero__inner {
    gap: 40px;
  }

  .navbar__nav {
    gap: 22px;
  }
  /* --- Badge --- */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border-radius: 999px;
    margin-bottom: 28px;
    border: 1px solid var(--orange);
  }

  .badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
  }
}

@media (max-width: 900px) {
  .navbar__pricing-link {
    display: none;
  }

  .navbar__actions {
    display: none; /* hides Pricing + Free Quote button on mobile top bar, matches screenshot */
  }

  .navbar__burger {
    display: flex;
  }

  /* Mobile slide-down nav menu, toggled by burgerBtn JS */
  .navbar__nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    box-shadow: 0 20px 40px rgba(20, 23, 31, 0.14);
    padding: 12px 24px 24px;
    z-index: 90;
  }

  .navbar__nav a {
    width: 100%;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--orange);
  }

  .navbar__nav--open {
    display: flex;
  }

  .navbar__nav-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    margin-top: 10px;
    font-size: 15px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    margin-top: 32px;
  }

  .hero__image {
    height: 320px;
  }

  .hero__title {
    font-size: 38px;
  }

  .hero__desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .floating-card--rating {
    top: 0px;
    right: 0px;
    padding: 10px 14px;
  }

  .floating-card--stat {
    bottom: 0px;
    left: 0px;
    padding: 10px 14px;
  }

  .rating-text {
    font-size: 9px;
  }
  .floating-card__text strong {
    font-size: 11px;
    font-weight: 500;
    color: var(--ink);
  }

  .floating-card__text small {
    font-size: 10px;
    color: var(--gray-400);
  }
  .floating-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: var(--orange-tint);
    color: var(--orange);
    font-size: 18px;
    flex-shrink: 0;
  }
  .hero__inner {
    gap: 10px;
  }
}
.tech-strip {
  background: var(--white, #fff);
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--border, #e7e8ec);
  border-bottom: 1px solid var(--border, #e7e8ec);
}

.tech-strip__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 36px;
}

/* Viewport that clips the scrolling track */
.tech-strip__track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 64px,
    #000 calc(100% - 64px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 64px,
    #000 calc(100% - 64px),
    transparent 100%
  );
}

/* Row that holds both duplicated lists, animates as one */
.tech-strip__track {
  display: flex;
  width: max-content;
  animation: tech-strip-scroll 22s linear infinite;
}

/* Pause the whole track when any logo inside is hovered */
.tech-strip__track:hover {
  animation-play-state: paused;
}

.tech-strip__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-strip__item {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c7cbd3; /* light gray, default state */
  white-space: nowrap;
  cursor: default;
  transition: color 0.2s ease;
}

.tech-strip__item:hover {
  color: #7a818f; /* darker gray on hover */
}

@keyframes tech-strip-scroll {
  from {
    transform: translateX(0);
  }
  to {
    /* shift by exactly one full list width (50% of the doubled track) */
    transform: translateX(-50%);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .tech-strip__track {
    animation: none;
  }
}

.services {
  background: var(--bg-soft, #f6f7f9);
  padding: 80px 0;
}

.services__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  text-align: center;
}

.services__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 16px;
}

.services__title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink, #14171f);
  margin-bottom: 20px;
}

.services__desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--gray-600, #5b6270);
  max-width: 620px;
  margin: 0 auto 56px;
}

/* --- Grid --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

/* --- Card --- */
.service-card {
  background: #fff;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 16px;
  padding: 18px 18px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.service-card:hover,
.service-card--active {
  border-color: var(--orange, #ff5a1f);
  box-shadow: 0 12px 28px rgba(255, 90, 31, 0.14);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--orange-tint, #fdece3);
  color: var(--orange, #ff5a1f);
  margin-bottom: 18px;
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

/* solid/filled icon variant, used on the featured card */
.service-card__icon--solid {
  background: var(--orange, #ff5a1f);
  color: #fff;
}

.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-600, #5b6270);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__title {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__title {
    font-size: 26px;
  }
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */

/* --- Entrance animation setup --- */
.process__step {
  opacity: 0;
  transform: translateX(-24px);
}

.process__timeline::before {
  transform: scaleX(0);
  transform-origin: left center;
}

/* Applied by JS when the section enters the viewport */
.process__timeline.is-visible::before {
  animation: process-line-draw 0.4s ease-out forwards;
}

.process__timeline.is-visible .process__step {
  animation: process-step-in 0.3s ease-out forwards;
}

/* Stagger each step left → right */
.process__timeline.is-visible .process__step:nth-child(1) {
  animation-delay: 0.15s;
}
.process__timeline.is-visible .process__step:nth-child(2) {
  animation-delay: 0.35s;
}
.process__timeline.is-visible .process__step:nth-child(3) {
  animation-delay: 0.55s;
}
.process__timeline.is-visible .process__step:nth-child(4) {
  animation-delay: 0.75s;
}
.process__timeline.is-visible .process__step:nth-child(5) {
  animation-delay: 0.95s;
}
.process__timeline.is-visible .process__step:nth-child(6) {
  animation-delay: 1.15s;
}

@keyframes process-line-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes process-step-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .process__step {
    opacity: 1;
    transform: none;
  }
  .process__timeline::before {
    transform: scaleX(1);
  }
  .process__timeline.is-visible::before,
  .process__timeline.is-visible .process__step {
    animation: none;
  }
}

.process {
  background: #fff;
  padding: 80px 0;
}

.process__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2px;
  text-align: center;
}

.process__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 16px;
}

.process__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink, #14171f);
  margin-bottom: 64px;
}

/* --- Timeline row --- */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: relative;
}

.process__phase {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1; /* fixes the label's rendered height so the math below is exact */
  margin-bottom: 14px;
}

.process__number {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange, #ff5a1f);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1; /* sits above the connecting line */
}

.process__timeline::before {
  content: "";
  position: absolute;
  /* phase line-height (11.5px) + margin-bottom (14px) + half circle height (24px) */
  top: calc(11.5px + 14px + 19px);
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: var(--orange, #ff5a1f);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
}

.process__phase--ignite {
  color: var(--orange, #ff5a1f);
}
.process__phase--stabilize {
  color: #2e6fe0;
}
.process__phase--accelerate {
  color: #1e9e5a;
}

.process__step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 8px;
}

.process__step-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray-600, #5b6270);
  max-width: 190px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .process__timeline {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }

  .process__timeline::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .process {
    padding: 56px 0;
  }

  .process__container {
    text-align: left;
  }

  .process__eyebrow {
    text-align: center;
  }

  .process__title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 44px;
  }

  .process__timeline {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    row-gap: 32px;
    position: relative;
    padding-left: 4px;
  }

  .process__timeline::before {
    display: none;
  }

  .process__timeline.is-visible::before {
    animation: none !important;
  }

  .process__step {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 16px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
    padding: 0;
    opacity: 1;
    transform: none;
  }

  .process__timeline.is-visible .process__step {
    animation: none;
  }

  .process__number {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: center;
    margin-bottom: 0;
  }

  .process__phase {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 4px;
  }

  .process__step-title {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 4px;
  }

  .process__step-desc {
    grid-column: 2;
    grid-row: 3;
    max-width: none;
    text-align: left;
  }
}

/* =========================================================
   WHY US SECTION
   ========================================================= */

.why {
  background: var(--bg-soft, #f6f7f9);
  padding: 80px 0;
}

.why__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2px;
  text-align: center;
}

.why__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 16px;
}

.why__title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink, #14171f);
  margin-bottom: 48px;
}

/* --- Sweep hover, now only on feature cards --- */
.feature-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--border, #cececf);
  border-radius: 16px;
  padding: 18px 18px;
  transition: border-color 0.3s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -40%; /* parked well off-canvas so nothing peeks in at rest */
  width: 12%; /* thinner bar, was 35% */
  height: 220%;
  background: rgba(128, 129, 131, 0.05);
  box-shadow:
    -6px 0 14px rgba(20, 23, 31, 0.05),
    6px 0 14px rgba(20, 23, 31, 0.05); /* soft shadow fringe on both edges of the bar */
  transform: rotate(-30deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  left: 130%;
}

.feature-card:hover {
  border-color: var(--orange, #ff5a1f);
}

/* --- Feature grid --- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: left;
  margin-bottom: 24px;
}

.feature-card__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--orange-tint, #fdece3);
  color: var(--orange, #ff5a1f);
  margin-bottom: 22px;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--gray-600, #5b6270);
}

/* --- Unified stats bar --- */
.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1.5px solid var(--border, #e7e8ec);
  border-radius: 16px;
  overflow: hidden;
}

.stats-card__item {
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border, #e7e8ec);
}

.stats-card__item:last-child {
  border-right: none;
}

.stats-card__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange, #ff5a1f);
  margin-bottom: 6px;
}

.stats-card__label {
  font-size: 14.5px;
  color: var(--gray-600, #5b6270);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card__item:nth-child(2) {
    border-right: none;
  }
  .stats-card__item:nth-child(1),
  .stats-card__item:nth-child(2) {
    border-bottom: 1px solid var(--border, #e7e8ec);
  }
}

@media (max-width: 560px) {
  .why__container {
    padding: 0 20px;
  }

  .why__title {
    font-size: 28px;
  }

  .why__grid {
    gap: 12px;
  }

  .feature-card {
    padding: 16px 14px;
  }

  .stats-card__item {
    padding: 24px 12px;
  }

  .stats-card__number {
    font-size: 24px;
  }
}

.case-studies {
  background: #fff;
  padding: 80px 0;
}

.case-studies__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2px;
}

.case-studies__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 14px;
}

.case-studies__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink, #14171f);
  margin-bottom: 48px;
}

/* --- Grid --- */
.case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Card --- */
.case-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.case-card:hover {
  box-shadow: 0 16px 32px rgba(20, 23, 31, 0.1);
  transform: translateY(-3px);
}

/* --- Media --- */
.case-card__media {
  position: relative;
  overflow: hidden;
}

.case-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card__image {
  transform: scale(1.06);
}

/* --- Category badge (color-coded per industry) --- */
.case-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.case-card__badge--fintech {
  background: #2e6fe0;
}
.case-card__badge--hospitality {
  background: var(--orange, #ff5a1f);
}
.case-card__badge--edtech {
  background: #1e9e5a;
}

/* --- Body --- */
.case-card__body {
  padding: 24px 24px 28px;
}

.case-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 12px;
}

.case-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-600, #5b6270);
  margin-bottom: 20px;
}

.case-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-card__tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-600, #5b6270);
  background: var(--bg-soft, #f6f7f9);
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 999px;
  padding: 5px 12px;
}

.case-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange, #ff5a1f);
}

.case-card__link .arrow {
  transition: transform 0.2s ease;
}

.case-card:hover .case-card__link .arrow {
  transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .case-studies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .case-studies__grid {
    grid-template-columns: 1fr;
  }
  .case-studies__title {
    font-size: 26px;
  }
}
/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--orange, #ff5a1f);
  padding: 72px 0;
}

.cta-banner__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner__desc {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 460px;
  margin-bottom: 28px;
}

.cta-banner__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange, #ff5a1f);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius-sm, 8px);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.cta-banner__trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cta-banner__icon svg {
  width: 42px;
  height: 42px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--bg-soft, #f6f7f9);
}

.site-footer__topbar {
  height: 6px;
  background: var(--orange, #ff5a1f);
}

.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 32px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink, #14171f);
  margin-bottom: 18px;
}

.site-footer__logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--orange, #ff5a1f);
  color: #fff;
  font-weight: 700;
}

.site-footer__tagline {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-600, #5b6270);
  max-width: 320px;
  margin-bottom: 18px;
}

.site-footer__address {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600, #5b6270);
  max-width: 300px;
}

.site-footer__heading {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink, #14171f);
  margin-bottom: 20px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__links a {
  font-size: 14.5px;
  color: var(--gray-600, #5b6270);
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--orange, #ff5a1f);
}

/* --- Bottom row --- */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border, #e7e8ec);
}

.site-footer__copyright {
  font-size: 13.5px;
  color: var(--gray-600, #5b6270);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__badges li {
  font-size: 13.5px;
  color: var(--gray-600, #5b6270);
}

/* --- Floating quote button --- */
.footer-float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange, #ff5a1f);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-float-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 90, 31, 0.55);
}

.footer-float-cta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .cta-banner__container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__desc {
    max-width: 100%;
  }

  .cta-banner__actions {
    justify-content: center;
  }

  .cta-banner__icon {
    order: -1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .cta-banner__title {
    font-size: 26px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-float-cta {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

/* --- Overlay --- */
.mvp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 23, 31, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mvp-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* --- Modal card --- */
.mvp-modal {
  position: relative;
  width: 100%;
  max-width: 524px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  border-top: 4px solid var(--orange, #ff5a1f);
  padding: 40px 36px 32px;
  box-shadow: 0 30px 60px rgba(20, 23, 31, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

.mvp-modal-overlay.is-open .mvp-modal {
  transform: translateY(0) scale(1);
}

.mvp-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft, #f6f7f9);
  color: var(--gray-600, #5b6270);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.mvp-modal__close:hover {
  background: var(--border, #e7e8ec);
  color: var(--ink, #14171f);
}

.mvp-modal__eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 10px;
}

.mvp-modal__title {
  font-size: 25px;
  font-weight: 800;
  color: var(--ink, #14171f);
  margin-bottom: 12px;
}

.mvp-modal__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600, #5b6270);
  margin-bottom: 24px;
}

/* --- Tags --- */
.mvp-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mvp-modal__tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-600, #5b6270);
  background: var(--bg-soft, #f6f7f9);
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 999px;
  padding: 6px 14px;
}

/* --- Form --- */
.mvp-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.mvp-modal__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink, #14171f);
  background: var(--bg-soft, #f6f7f9);
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.mvp-modal__input::placeholder {
  color: var(--gray-400, #9aa0ac);
}

.mvp-modal__input:focus {
  background: #fff;
  border-color: var(--orange, #ff5a1f);
}

.mvp-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--orange, #ff5a1f);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 90, 31, 0.35);
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.mvp-modal__submit:hover {
  background: var(--orange-darker, #cc3d0a);
  box-shadow: 0 14px 30px rgba(230, 73, 15, 0.45);
  transform: translateY(-1px);
}

.mvp-modal__note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray-400, #9aa0ac);
  margin-bottom: 20px;
}

.mvp-modal__divider {
  height: 1px;
  background: var(--border, #e7e8ec);
  margin-bottom: 20px;
}

.mvp-modal__calendly {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #14171f);
  transition: color 0.15s ease;
}

.mvp-modal__calendly:hover {
  color: var(--orange, #ff5a1f);
}

@media (max-width: 560px) {
  .mvp-modal {
    padding: 32px 24px 28px;
  }
  .mvp-modal__title {
    font-size: 21px;
  }
}

/* =========================================================
   CASE STUDY HERO
   ========================================================= */

.case-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1512;
}

.case-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.case-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(10, 8, 6, 0.85) 0%,
      rgba(10, 8, 6, 0.55) 30%,
      rgba(10, 8, 6, 0.05) 60%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0) 70%
    );
}

.case-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 48px 0 56px;
}

.case-hero__badge {
  display: inline-flex;
  align-items: center;
  background: var(--orange, #ff5a1f);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.case-hero__title {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 900px;
  margin-bottom: 26px;
}

.case-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.case-hero__tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .case-hero {
    min-height: 560px;
  }

  .case-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .case-hero {
    min-height: 480px;
  }

  .case-hero__content {
    padding: 32px 32px;
  }

  .case-hero__badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .case-hero__title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .case-hero__tags {
    gap: 8px;
  }

  .case-hero__tag {
    font-size: 12px;
    padding: 7px 14px;
  }
}
/* =========================================================
   CASE STUDY STATS BAR
   ========================================================= */

.case-stats {
  background: #fff;
  border-bottom: 1px solid var(--border, #e7e8ec);
}

.case-stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.case-stats__item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border, #e7e8ec);
}

.case-stats__item:last-child {
  border-right: none;
}

.case-stats__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange, #ff5a1f);
  margin-bottom: 6px;
}

.case-stats__label {
  font-size: 14px;
  color: var(--gray-600, #5b6270);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .case-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-stats__item:nth-child(2) {
    border-right: none;
  }

  .case-stats__item:nth-child(1),
  .case-stats__item:nth-child(2) {
    border-bottom: 1px solid var(--border, #e7e8ec);
  }
}

@media (max-width: 480px) {
  .case-stats__number {
    font-size: 26px;
  }

  .case-stats__item {
    padding: 24px 12px;
  }
}

/* =========================================================
   CASE STUDY BODY (two-column layout)
   ========================================================= */

.case-body {
  background: #fff;
  padding: 64px 0 88px;
}

.case-body__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.case-body__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.case-main {
  min-width: 0;
}

/* --- Breadcrumb --- */
.case-breadcrumb {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 36px;
}

.case-breadcrumb a {
  color: var(--gray-600);
  transition: color 0.15s ease;
}

.case-breadcrumb a:hover {
  color: var(--ink);
}

.case-breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

/* --- Section shell --- */
.case-section {
  margin-bottom: 56px;
}

.case-section:last-child {
  margin-bottom: 0;
}

.case-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-bottom: 12px;
}

.case-heading {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink, #14171f);
  margin-bottom: 20px;
}

.case-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--gray-600, #5b6270);
  max-width: 720px;
}

/* --- Gallery --- */
.case-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.case-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* --- Feature tiles (Key Features) --- */
.feature-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-tile {
  background: var(--bg-soft, #f6f7f9);
  border-radius: 14px;
  padding: 24px 22px 22px;
  border: 1.5px solid transparent; /* ← needed: gives the border something to color */
  transition: border-color 0.2s ease; /* ← optional, but makes it fade in nicely */
}

.feature-tile:hover {
  border-color: #ff5a1f;
}

.feature-tile__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange, #ff5a1f);
  margin-bottom: 14px;
}

.feature-tile__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 8px;
}

.feature-tile__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600, #5b6270);
}

/* --- Process cards --- */
.process-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-card {
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 14px;
  padding: 24px;
}

.process-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.process-card__number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange, #ff5a1f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.process-card__title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink, #14171f);
}

.process-card__phase {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange, #ff5a1f);
  margin-top: 2px;
}

.process-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-card__list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600, #5b6270);
  display: flex;
  gap: 8px;
}

.process-card__list li::before {
  content: "\203A";
  color: var(--orange, #ff5a1f);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Outcome stats (bordered cards, in-column) --- */
.outcome-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.outcome-stats__item {
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 14px;
  padding: 24px 14px;
  text-align: center;
}

.outcome-stats__number {
  font-size: 26px;
  font-weight: 800;
  color: var(--orange, #ff5a1f);
  margin-bottom: 6px;
}

.outcome-stats__label {
  font-size: 13px;
  color: var(--gray-600, #5b6270);
}

/* --- More case studies cards --- */
.more-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.more-case-card {
  display: block;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.more-case-card:hover {
  box-shadow: 0 12px 28px rgba(20, 23, 31, 0.1);
  transform: translateY(-2px);
}

.more-case-card__image-wrap {
  position: relative;
}

.more-case-card__image-wrap img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.more-case-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
}

.more-case-card__badge--fintech {
  background: #2e6fe0;
}

.more-case-card__badge--edtech {
  background: #1e9e5a;
}

.more-case-card__body {
  padding: 20px 22px 24px;
}

.more-case-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 8px;
}

.more-case-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600, #5b6270);
  margin-bottom: 14px;
}

.more-case-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange, #ff5a1f);
}

/* --- Sidebar (sticky) --- */
.case-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.sidebar-card {
  background: var(--bg-soft, #f6f7f9);
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-card__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600, #5b6270);
  margin-bottom: 16px;
}

.sidebar-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border, #e7e8ec);
  font-size: 14px;
  gap: 12px;
}

.sidebar-detail-row:last-of-type {
  border-bottom: none;
}

.sidebar-detail-row .label {
  color: var(--gray-600, #5b6270);
}

.sidebar-detail-row .value {
  color: var(--ink, #14171f);
  font-weight: 700;
  text-align: right;
}

.sidebar-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border, #e7e8ec);
}

.sidebar-stack__tag {
  background: #fff;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink, #14171f);
}

.sidebar-form-card {
  background: #fff;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 16px;
  padding: 24px;
}

.sidebar-form-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #14171f);
  margin-bottom: 6px;
}

.sidebar-form-card__desc {
  font-size: 13.5px;
  color: var(--gray-600, #5b6270);
  margin-bottom: 18px;
}

.sidebar-form-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border, #e7e8ec);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  margin-bottom: 12px;
  color: var(--ink, #14171f);
}

.sidebar-form-card input::placeholder {
  color: var(--gray-400, #9aa0ac);
}

.sidebar-form-card input:focus {
  outline: none;
  border-color: var(--orange, #ff5a1f);
}

.sidebar-form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.sidebar-form-card__note {
  font-size: 12px;
  color: var(--gray-400, #9aa0ac);
  text-align: center;
  margin-top: 12px;
}

.sidebar-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink, #14171f);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 14px;
  text-align: center;
  transition: background 0.15s ease;
}

.sidebar-book-btn:hover {
  background: #000;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .case-body__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .case-body {
    padding: 40px 0 56px;
  }

  .case-heading {
    font-size: 22px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery img {
    height: 200px;
  }

  .feature-grid-2,
  .process-grid-2,
  .more-cases-grid {
    grid-template-columns: 1fr;
  }

  .outcome-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-section {
    margin-bottom: 40px;
  }
}

.faq-container {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
  text-align: left;
}

.faq-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #ff6b35;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }
}

.faq-item {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
  user-select: none;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: var(--surface-1);
}

.faq-icon {
  font-size: 20px;
  color: #ff6b35;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  border-top: 0.5px solid var(--border);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem;
}

.faq-answer-text {
  margin: 0;
}
/* ==========================================================================
   Clean Light Theme - Design System (Solid Colors)
   ========================================================================== */

/* ==========================================================================
   General Section Layouts
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff512f;
  margin-bottom: 20px;
}

.estimateh2{
  font-size: clamp(34px, 4vw, 52px);
  max-width: 800px;
  color: var(--ink);
}

.lede {
  max-width: 680px;
  color: var(--ink-2);
  margin-top: 20px;
  font-size: 18px;
}

/* ==========================================================================
   Section: Pricing Grid
   ========================================================================== */



/* ==========================================================================
   Pre-footer Call to Action
   ========================================================================== */
.close {
  background: #f8fafc;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
}
.close h2 {
  margin: 0 auto;
  color: var(--ink);
}
.close .lede {
  color: var(--ink-2);
  margin: 20px auto 0;
}
.close .cta-row {
  margin-top: 40px;
}

.badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.badges span {
  font-size: 14px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badges b {
  color: var(--ink);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 900px) {

  .grid3,
  .price,
  .track,
  .foot {
    grid-template-columns: 1fr;
  }
  .stats{
    grid-template-columns: 1fr;
  }

  .close {
    padding: 40px 24px;
  }
  .badges {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .foot {
    gap: 32px;
  }
  .legal {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Minimal Redesign & Interactive Estimator
   ========================================================================== */
.logo-wall {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 60px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logo-wall span {
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}
.logo-wall span:hover {
  color: var(--ink-2);
}

/* Estimator section styles */
.estimator-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  margin-top: 48px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.estimator-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.estimator-group-title {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e04020;
  margin-bottom: 16px;
  font-weight: 600;
}

.estimator-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.estimator-pill-btn {
  background: #f1f5f9;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.estimator-pill-btn:hover {
  border-color: #cbd5e1;
  color: var(--ink);
}
.estimator-pill-btn.active {
  background: #ff512f;
  color: #fff;
  border-color: #ff512f;
  box-shadow: none;
}

.estimator-grid-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.estimator-card-btn {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.estimator-card-btn:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}
.estimator-card-btn.active {
  border-color: #ff512f;
  background: #fff0ed;
}
.estimator-card-btn h4 {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.estimator-card-btn h4::after {
  content: "+";
  color: #ff512f;
  font-size: 18px;
  font-weight: 400;
}
.estimator-card-btn.active h4::after {
  content: "✓";
  color: #10b981;
}
.estimator-card-btn p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
}

/* Estimator results card styles */
.estimator-result {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 3px solid #ff512f;
}

.est-val-box {
  margin-bottom: 32px;
}

.est-val-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 8px;
  font-weight: 600;
}

.est-val-number {
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.est-timeline {
  font-family: "Archivo", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e04020;
  margin-top: 8px;
}

.est-form-wrapper {
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.est-form-title {
  font-family: "Archivo", sans-serif;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}

.est-form-desc {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.5;
}

.est-input-group {
  display: flex;
  gap: 12px;
}
.est-input-group input {
  margin-bottom: 0;
  flex: 1;
}
.est-input-group button {
  flex: none;
}

.est-form-success {
  display: none;
  font-size: 14px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}

/* Minimal styling tweaks */
.section-header-minimal {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header-minimal h2 {
  margin: 0 auto;
}
.section-header-minimal .lede {
  margin: 16px auto 0;
}

.minimal-lead-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 48px;
  border-radius: 24px;
}
.minimal-lead-box h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}
.minimal-lead-box p {
  color: var(--ink-2);
  font-size: 16px;
  margin-bottom: 32px;
}
.single-field-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.single-field-form input {
  margin-bottom: 0;
}
.single-field-form .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .estimator-container {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .estimator-grid-select {
    grid-template-columns: 1fr;
  }
  .est-input-group {
    flex-direction: column;
  }
  .single-field-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   Premium Cost Calculator Styling
   ========================================================================== */
.est-stack-badge {
  display: inline-block;
  background: #fff8f6;
  border: 1px solid rgba(240, 152, 25, 0.3);
  color: #e04020;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Archivo", sans-serif;
  margin-top: 16px;
  width: 100%;
  text-align: center;
  box-shadow: none;
}

.est-breakdown-bar {
  display: flex;
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
  background: #e2e8f0;
  margin: 20px 0 16px;
}

.est-bar-segment {
  height: 100%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.segment-design {
  background: #8b5cf6;
}
.segment-backend {
  background: #10b981;
}
.segment-frontend {
  background: #ff512f;
}
.segment-qa {
  background: #64748b;
}

.est-breakdown-labels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-bottom: 24px;
}

.est-label-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--ink-2);
  font-family: "Inter", sans-serif;
}

.est-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}
.dot-design {
  background: #8b5cf6;
}
.dot-backend {
  background: #10b981;
}
.dot-frontend {
  background: #ff512f;
}
.dot-qa {
  background: #64748b;
}

.estimator-card-btn {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.estimator-card-btn:active {
  transform: scale(0.97);
}
.estimator-card-btn.active {
  box-shadow: none;
}
.estimator-pill-btn {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   Global Sticky Lead Capture Banner
   ========================================================================== */
.sticky-lead-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--line);
  padding: 14px 0;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
}
.sticky-lead-bar.visible {
  transform: translateY(0);
}
.sticky-lead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.sticky-lead-text {
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.sticky-lead-text span {
  color: var(--ink-2);
  font-weight: 400;
  margin-left: 8px;
}
.sticky-lead-form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sticky-lead-form input {
  margin-bottom: 0;
  width: 240px;
  height: 46px;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.sticky-lead-form .btn {
  height: 46px;
  padding: 0 24px;
  white-space: nowrap;
  font-size: 14px;
}

@media (max-width: 900px) {
  .sticky-lead-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }
  .sticky-lead-text span {
    display: none;
  }
  #sticky-email-input {
    width: 180px;
    height: 42px;
  }
  #sticky-captcha-ans {
    width: 50px;
    height: 42px;
  }
  .sticky-lead-form {
    gap: 8px;
  }
  .sticky-lead-form .btn {
    height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  input,
  button,
  .btn {
    height: 52px !important;
  }

  .estimator-card-btn,
  .estimator-pill-btn {
    height: auto !important;
  }

  .estimator-selector {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .estimator-pill-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .estimator-result {
    padding: 24px 20px;
  }

  .est-breakdown-labels {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sticky-lead-bar {
    padding: 12px 0;
  }
  .sticky-lead-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 16px;
  }
  .sticky-lead-text {
    display: none;
  }
  .sticky-lead-form {
    width: 100%;
  }
  #sticky-lead-form {
    display: grid !important;
    grid-template-areas:
      "email email"
      "captcha button";
    grid-template-columns: auto 1fr;
    gap: 8px;
    width: 100%;
    align-items: center;
  }
  #sticky-email-input {
    grid-area: email;
    width: 100% !important;
    height: 46px !important;
  }
  .sticky-captcha-container {
    grid-area: captcha;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  #sticky-captcha-ans {
    width: 60px !important;
    height: 46px !important;
  }
  .sticky-lead-form .btn {
    grid-area: button;
    width: 100% !important;
    height: 46px !important;
  }

  .single-field-form {
    gap: 8px;
  }

  .wrap {
    padding: 0 20px;
  }

  .logo-wall {
    justify-content: center;
    gap: 16px 24px;
  }
  .logo-wall span {
    font-size: 12px;
  }

  .estimator-container {
    padding: 20px;
  }

  .case-meta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .case-meta-card {
    padding: 16px;
  }
  .case-meta-card span {
    font-size: 14px;
  }
  .case-meta-card .highlight-val {
    font-size: 18px;
  }


  .case-editorial-card {
    padding: 24px 16px;
    margin-bottom: 24px;
  }

  .minimal-lead-box {
    padding: 24px 16px;
  }
  .minimal-lead-box h2 {
    font-size: 24px;
  }

  .est-val-number {
    font-size: 36px;
  }
}

@media (max-width: 500px) {

  .logo {
    font-size: 18px;
  }
}


input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: 'Inter';
  font-size: 15px;
  margin-bottom: 20px;
  background: #FFFFFF;
  color: var(--ink);
  transition: all 0.3s ease;
}
input:focus {
  outline: none;
  border-color: var(--accent-1);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--accent-glow);
}