:root {
  --blue: #182268;
  --blue-dark: #111a52;
  --blue-tint: #EEF2FF;
  --red: #B31942;
  --red-dark: #8f1435;
  --red-tint: #FFF1F4;
  --heading: #0F172A;
  --body: #475569;
  --light-text: #64748B;
  --section-bg: #F8FAFC;
  --navy: var(--blue);
  --navy-700: var(--blue-dark);
  --navy-50: var(--blue-tint);
  --crimson: var(--red);
  --crimson-700: var(--red-dark);
  --ink: var(--heading);
  --muted: var(--body);
  --bg: #FFFFFF;
  --card: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
  --radius: 12px;
  --maxw: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 0 24px
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--crimson);
  color: #fff
}

.btn-primary:hover {
  background: var(--crimson-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 34, 104, .22)
}

.btn-growth {
  background: var(--red);
  color: #fff
}

.btn-growth:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(179, 25, 66, .22)
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--navy)
}

.btn-ghost:hover {
  background: var(--navy);
  color: #fff
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

.brand img {
  height: 34px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links > a,
.nav-dropdown-toggle {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown-menu a:hover {
  color: var(--blue)
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

@media (min-width: 961px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -12px;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(27, 42, 110, 0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 80;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background: var(--navy-50);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-menu-cta {
  display: none;
}

.hamb {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  transition: background .2s ease;
}

.hamb:hover {
  background: var(--navy-50);
}

.hamb svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
  pointer-events: none;
}

.nav-links.is-open > a,
.nav-links.is-open .nav-dropdown {
  width: 100%;
}

.nav-links.is-open a,
.nav-links.is-open .nav-dropdown-toggle {
  padding: 12px 0;
  text-align: left;
  justify-content: flex-start;
}

.nav-links.is-open .nav-menu-cta {
  padding: 14px 26px;
  text-align: center;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vh, 96px) 0 clamp(44px, 5.5vh, 60px);
  background: #060919;
  color: #ffffff;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse 90% 85% at 42% 38%,
    rgba(24, 34, 104, 0.22) 0%,
    rgba(17, 26, 82, 0.58) 52%,
    rgba(6, 9, 25, 0.9) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
  z-index: 2;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  animation: heroOrbFloat 14s ease-in-out infinite;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 15%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.25), transparent 70%);
}

.hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: 15%;
  left: 10%;
  background: radial-gradient(circle, rgba(255, 42, 95, 0.20), transparent 70%);
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 180px;
  height: 180px;
  top: 45%;
  left: 45%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.15), transparent 70%);
  animation-delay: -8s;
}

@keyframes heroOrbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(18px, -22px) scale(1.06)
  }

  66% {
    transform: translate(-14px, 16px) scale(0.94)
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  max-width: 100%;
}

.hero-copy {
  min-width: 0;
}

.hero-features {
  position: relative;
  min-width: 0;
}

.hero-features::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
}

.hero-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 128px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.hero-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(129, 140, 248, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.hero-feature-card:hover::after {
  opacity: 1;
}

.hero-feature-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(6, 9, 25, 0.35);
  border: 1px solid rgba(129, 140, 248, 0.32);
  box-shadow: none;
}

.hero-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.hero-feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #93c5fd 0%, #c4b5fd 48%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-feature-rule {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
}

.hero-feature-card p {
  position: relative;
  z-index: 1;
  margin: auto 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.78);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--section-bg);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--light-text);
  font-weight: 500;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue)
}

h1 {
  font-size: clamp(36px, 5.5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
  color: var(--heading);
  font-weight: 800;
}

h1 .accent-ai { color: var(--blue); }
h1 .accent-growth { color: var(--red); }

/* Hero elements styling specifically overrides */
.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin: 12px 0 10px;
}

.hero h1 .accent-minds {
  color: white;
  text-shadow: 0 0 20px rgba(24, 34, 104, 0.4);
}

.hero h1 .accent-ai {
  color: white;
  text-shadow: 0 0 20px rgba(24, 34, 104, 0.4);
}

.hero h1 .accent-growth {
  color: #b31942;
  text-shadow: 0 0 20px rgba(179, 25, 66, 0.4);
}

.hero-headline {
  margin-bottom: 14px;
}

.hero-headline-rotator {
  display: grid;
  align-items: start;
}

.hero-headline-line {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  white-space: nowrap;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22, 1, .36, 1), visibility 0.65s ease;
}

.hero-headline-line.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1;
}

@media (max-width: 720px) {
  .hero-headline {
    margin-bottom: 16px;
  }

  .hero-headline-line {
    white-space: normal;
  }

  .hero .lede {
    padding-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-headline-rotator {
    display: block;
  }

  .hero-headline-line {
    grid-area: auto;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    white-space: normal;
  }

  .hero-headline-line:not(:last-child)::after {
    content: ' ';
  }
}

.hero .lede {
  color: #cbd5e1;
  margin: 0;
  /* margin-left: auto; */
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .eyebrow .dot {
  background: #00f2fe;
  box-shadow: 0 0 8px #00f2fe;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.hero .btn-primary {
  background: #ff2a5f;
  color: #ffffff;
  border: 1px solid #ff2a5f;
}

.hero .btn-primary:hover {
  background: #e01b4c;
  border-color: #e01b4c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 42, 95, 0.35);
}

.hero .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .btn-ghost:hover {
  background: #ffffff;
  color: #060919;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.stats-band {
  background: var(--blue);
  padding: 64px 0;
  margin: 0;
}

.stats-band .hero-stats {
  margin: 0;
}

.stats-band .stat .n {
  color: #ffffff;
}

.stats-band .stat .l {
  color: rgba(255, 255, 255, 0.82);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

.reveal-delay-4 {
  transition-delay: .4s
}

/* Nav scroll state */
.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(27, 42, 110, 0.08);
}

/* CTA AI grid glow */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  animation: ctaGridDrift 20s linear infinite;
  pointer-events: none;
}

@keyframes ctaGridDrift {
  from {
    background-position: 0 0, 0 0
  }

  to {
    background-position: 48px 48px, 48px 48px
  }
}

.cta-band .kicker,
.cta-band h2,
.cta-band p,
.cta-band .btn {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {

  .hero-orb,
  .eyebrow .dot,
  .cta-band::before {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-canvas {
    display: none;
  }
}

.lede {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  /* max-width: 720px; */
  max-width: 620px;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.hero-stats {
  /* margin-top: 64px; */
  margin-top: 30px;
  margin-bottom: 35px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat .n {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy)
}

.stat .l {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px
}

/* ---------- TECH MARQUEE ---------- */
.marquee {
  margin: 20px 0;
  overflow: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: #fff;
}

.marquee + section {
  padding-top: 48px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
}

.marquee.clients .marquee-track {
  animation: marquee-scroll 28s linear infinite;
}

.marquee span {
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .4px
}

.marquee .sep {
  color: var(--light-text);
  font-weight: 800
}

.marquee.clients {
  margin-bottom: 30px;
  padding: 22px 0;
}

.marquee.clients .client-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee.clients .client-logo {
  margin: auto;;
  height: 70px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- SECTION ---------- */
section {
  padding: 50px 0
}

.shopify-spotlight p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
}

.shopify-spotlight-copy {
  position: relative;
  z-index: 1;
}

.shopify-spotlight-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.shopify-spotlight-image {
  width: 100%;
  max-width: min(100%, 320px);
  height: auto;
  display: block;
  border-radius: var(--radius);
}

#company {
  padding-bottom: 40px;
  background: var(--section-bg);
}

.hero + #company {
  padding-top: 32px;
}

#company + #services {
  padding-top: 40px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 50px
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 16px;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0
}

/* ---------- HOW WE HELP (situations) ---------- */
.situations {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.situation {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}

.situation:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

.situation .num {
  display: inline-block;
  font-weight: 700;
  color: var(--crimson);
  font-size: 12px;
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.situation h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 20px
}

.situation p {
  margin: 0;
  color: var(--muted);
  font-size: 15px
}

/* ---------- SERVICES ---------- */
.services{display:grid;gap:22px;grid-template-columns:repeat(auto-fill,minmax(min(100%,280px),1fr))}
.service{
position:relative;background:var(--card);border:1px solid var(--border);
border-radius:var(--radius);padding:30px;box-shadow:var(--shadow);
overflow:hidden;
display:flex;flex-direction:column;
transition:transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease;
}
.service::before{
content:"";position:absolute;inset:0;
background:linear-gradient(135deg, rgba(27,42,110,0.04), rgba(200,32,92,0.09));
opacity:0;transition:opacity .35s ease;
}
.service::after{
content:"";position:absolute;left:0;top:0;bottom:0;width:4px;
background:linear-gradient(180deg, var(--navy), var(--crimson));
transform:scaleY(0);transform-origin:top center;
transition:transform .4s cubic-bezier(.34,1.56,.64,1);
border-radius:0 4px 4px 0;
}
.service:hover{
transform:translateY(-8px);
box-shadow:0 22px 44px rgba(27,42,110,0.14);
border-color:rgba(200,32,92,0.28);
}
.service:hover::before{opacity:1}
.service:hover::after{transform:scaleY(1)}
.service .icon{
width:52px;height:52px;
display:flex;align-items:center;justify-content:center;
margin-bottom:18px;position:relative;z-index:1;
flex-shrink:0;
}
.service .icon::before{
content:"";position:absolute;inset:-10px;border-radius:18px;
background:var(--navy-50);
transform:scale(.5);opacity:0;
transition:transform .4s cubic-bezier(.34,1.56,.64,1), opacity .35s ease;
z-index:-1;
}
.service:hover .icon::before{transform:scale(1);opacity:1}
.service .icon svg{
width:52px;height:52px;
flex-shrink:0;
display:block;
overflow:visible;
stroke:var(--navy);
fill:none;
stroke-width:1.5;
stroke-linecap:round;
stroke-linejoin:round;
transition:stroke .35s ease;
}
.service:hover .icon svg{stroke:var(--crimson)}
.service:hover .icon{animation:serviceIconPop .5s cubic-bezier(.34,1.56,.64,1) forwards}
@keyframes serviceIconPop{
0%{transform:scale(1) translateY(0)}
55%{transform:scale(1.14) translateY(-4px)}
100%{transform:scale(1.08) translateY(-2px)}
}
.service h3{
margin:0 0 8px;color:var(--navy);font-size:19px;position:relative;z-index:1;
transition:color .3s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.service:hover h3{color:var(--crimson);transform:translateX(5px)}
.service p{
margin:0 0 18px;color:var(--muted);font-size:15px;position:relative;z-index:1;
transition:color .3s ease, transform .35s ease;
}
.service:hover p{color:var(--ink);transform:translateX(5px)}
.service-arrow{
margin-top:auto;position:relative;z-index:1;
align-self:flex-start;
width:40px;height:40px;border-radius:50%;
display:flex;align-items:center;justify-content:center;
border:1px solid var(--border);background:var(--card);
color:var(--crimson);
transition:background .35s ease, border-color .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.service-arrow svg{
width:18px;height:18px;display:block;
stroke:currentColor;fill:none;stroke-width:2;
stroke-linecap:round;stroke-linejoin:round;
transition:transform .35s cubic-bezier(.34,1.56,.64,1);
}
.service:hover .service-arrow{
background:var(--crimson);border-color:var(--crimson);color:#fff;
}
.service:hover .service-arrow svg{transform:translateX(3px)}
@media (prefers-reduced-motion:reduce){
.service,.service::before,.service::after,.service .icon,.service .icon::before,
.service .icon svg,.service h3,.service p,.service-arrow,.service-arrow svg{transition:none}
.service:hover .icon{animation:none}
.service:hover .service-arrow svg{transform:none}
}

/* ---------- WORK / CASE STUDY ---------- */
.shopify-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding: clamp(28px, 4vw, 36px) clamp(28px, 4vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--blue);
  background: var(--blue-tint);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.shopify-spotlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  border-radius: 0 4px 4px 0;
}

.shopify-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.shopify-spotlight h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading);
  font-weight: 800;
}

.shopify-spotlight h3 .accent-ai { color: var(--blue); }
.shopify-spotlight h3 .accent-growth { color: var(--red); }

.work {
  background: var(--section-bg);
  padding-bottom: 0;
}

.case {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  z-index: 2;
}

.case--magaya::before {
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
}

.case--hodges::before {
  background: var(--blue);
}

.case--cami::before {
  background: var(--red);
}

.case--magaya .case-badge::before { background: var(--blue); }
.case--hodges .case-badge::before { background: var(--blue); }
.case--cami .case-badge::before { background: var(--red); }

.case-main {
  padding: 36px 36px 36px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.case-aside {
  padding: 36px 40px 36px 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.case-aside::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 36px;
  bottom: 36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(27, 42, 110, 0.12), transparent);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.case-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(27, 42, 110, 0.22);
}

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.case-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  flex-shrink: 0;
}

.case h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 14px;
  font-weight: 800;
}

.case-link {
  color: var(--blue);
  text-decoration: none;
  transition: color .25s ease;
}

.case-link:hover {
  color: var(--red);
}

.case-main > p {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}

.case .quote {
  margin: 0;
  width: 100%;
  background: linear-gradient(165deg, var(--navy-50) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  color: var(--ink);
  font-style: normal;
  font-size: 15px;
  line-height: 1.72;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.case .quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 18px;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--crimson);
  opacity: 0.18;
  pointer-events: none;
}

.case .quote-text {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 8px;
}

.case .author {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
}

.work-scroll {
  position: relative;
  height: calc(100vh * 8);
}

.work-scroll-pin {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
  padding: 24px 0 32px;
}

.work-scroll-viewport {
  overflow: hidden;
  width: 100%;
  max-height: min(480px, 68vh);
}

.work-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
  will-change: transform;
}

.work-scroll-track .case {
  flex-shrink: 0;
  width: 100%;
  min-height: min(400px, 62vh);
}

.work-scroll-slots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
}

.work-scroll-slots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(27, 42, 110, 0.18);
  cursor: pointer;
  padding: 0;
  transition: height 0.3s ease, background 0.2s ease;
}

.work-scroll-slots button.active {
  height: 28px;
  background: linear-gradient(180deg, var(--navy), var(--crimson));
}

.work-scroll-slots button:hover:not(.active) {
  background: var(--navy);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-features {
    max-width: min(100%, 520px);
    margin: 0 auto;
    width: 100%;
  }

  .hero-feature-card:nth-child(2),
  .hero-feature-card:nth-child(3) {
    margin-top: 0;
  }

  .work-scroll {
    height: auto;
  }

  .work-scroll-pin {
    position: relative;
    height: auto;
    padding: 0 0 24px;
  }

  .work-scroll-viewport {
    max-height: none;
    overflow-x: clip;
    overflow-y: visible;
  }

  .work,
  .work-scroll {
    overflow-x: clip;
    max-width: 100%;
  }

  .work-scroll-track {
    transform: none !important;
    gap: 20px;
  }

  .work-scroll-track .case {
    min-height: auto;
  }

  .work-scroll-slots {
    display: none;
  }

  .marquee.clients .client-logo {
    margin-top: 50px;
  }
}

.insights {
    background: var(--section-bg);
}

/* ---------- DELIVERY LIFECYCLE (interactive tabs) ---------- */
.lifecycle-tabs {
display: grid;
gap: 32px;
grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
align-items: start;
}

.lc-list {
display: flex;
flex-direction: column;
gap: 8px;
}

.lc-item {
display: flex;
align-items: flex-start;
gap: 12px;
min-width: 0;
width: 100%;
background: transparent;
border: 1px solid transparent;
padding: 12px 14px;
text-align: left;
cursor: pointer;
border-radius: 14px;
font-family: inherit;
transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lc-item:hover {
background: rgba(27, 42, 110, 0.04);
}

.lc-item.is-active {
background: #fff;
border-color: var(--border);
box-shadow: 0 8px 24px rgba(27, 42, 110, 0.08);
}

.lc-step {
flex-shrink: 0;
width: 34px;
height: 34px;
border-radius: 10px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: 700;
letter-spacing: .04em;
color: var(--muted);
background: rgba(27, 42, 110, 0.06);
transition: background .25s ease, color .25s ease;
}

.lc-item.is-active .lc-step {
background: var(--crimson);
color: #fff;
}

.lc-item-text {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
padding-top: 2px;
}

.lc-name {
font-size: 15px;
font-weight: 600;
line-height: 1.35;
color: var(--muted);
transition: color .25s ease;
}

.lc-summary {
font-size: 13px;
line-height: 1.45;
color: #8a91b2;
}

.lc-item.is-active .lc-name {
color: var(--navy);
}

.lc-item.is-active .lc-summary {
color: var(--muted);
}

.lc-panel {
position: relative;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 24px 28px 28px;
min-height: 0;
overflow: hidden;
box-shadow: var(--shadow);
}

.lc-panel-inner {
position: relative;
z-index: 2;
animation: lcFade .35s ease;
}

@keyframes lcFade {
from { opacity: 0; transform: translateY(6px); }
to { opacity: 1; transform: translateY(0); }
}

.lc-desc {
margin: 0;
color: var(--muted);
font-size: 15px;
line-height: 1.65;
max-width: 52ch;
}

.lc-orb {
position: absolute;
right: -24px;
bottom: -24px;
width: 120px;
height: 120px;
border-radius: 50%;
background:
radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 55%),
radial-gradient(circle at 70% 70%, rgba(200, 32, 92, 0.22), transparent 60%),
radial-gradient(circle at 50% 50%, rgba(27, 42, 110, 0.16), transparent 70%);
filter: blur(1px);
z-index: 1;
opacity: .75;
transition: transform .6s ease;
}

.lc-panel:hover .lc-orb {
transform: scale(1.05) rotate(8deg);
}

@media (max-width:960px) {
.lifecycle-tabs {
grid-template-columns: 1fr;
gap: 20px;
}

.lc-panel {
padding: 20px 22px 24px;
}
}

@media (max-width:680px) {
.lc-item {
padding: 10px 12px;
}

.lc-name {
font-size: 14px;
}

.lc-summary {
font-size: 12px;
}

.lc-desc {
font-size: 14px;
}

.lc-orb {
width: 90px;
height: 90px;
right: -16px;
bottom: -16px;
}
}

/* Stage name label inside the right panel */
.lc-stage-name {
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--crimson);
margin-bottom: 10px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 70%, #1a1040 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -50% auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 25, 66, 0.25), transparent 60%);
}

.cta-band .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.cta-band h2 {
  color: #fff
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 8px auto 24px
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
  align-items: start
}

form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(24, 34, 104, 0.12)
}

textarea {
  min-height: 120px;
  resize: vertical
}

.form-success {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(27, 42, 110, 0.12);
  background: rgba(27, 42, 110, 0.06);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

.form-success.is-animating {
  animation: formToastIn .35s ease both;
}

.form-error {
  grid-column: 1 / -1;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(200, 32, 92, 0.25);
  background: rgba(200, 32, 92, 0.08);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.5;
}

@keyframes formToastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info h3 {
  color: var(--navy);
  margin: 0 0 8px
}

.contact-info p {
  color: var(--muted);
  margin: 0 0 18px
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.contact-info li {
  margin: 10px 0;
  color: var(--ink)
}

.contact-info li b {
  color: var(--navy)
}

.contact-flag {
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(27, 42, 110, 0.08);
  flex-shrink: 0;
  object-fit: cover;
}

.contact-location-line {
  display: inline-flex;
  align-items: center;
}

/* ---------- ABOUT US ---------- */
.about {
  background: linear-gradient(180deg, var(--navy-50) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(200px, 250px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.about-title h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.about-body {
  padding-left: clamp(12px, 2vw, 32px);
}

.about-body p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body strong {
  color: var(--navy);
  font-weight: 600;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 24px;
}

.about-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.about-pillar-title {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.contact-info a.email-link,
.contact-info a.contact-map-link,
footer a.email-link,
footer a.contact-map-link {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

.contact-info a.email-link:hover,
.contact-info a.contact-map-link:hover {
  color: var(--crimson)
}

footer a.email-link:hover,
footer a.contact-map-link:hover {
  color: #fff
}
.about-pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.about-tagline {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ---------- FAQ ---------- */
.faq {
  background: #fff;
  border-top: 1px solid var(--border);
  padding-bottom: 40px;
}

#about + .faq {
  padding-top: 56px;
}

.faq .section-head {
  margin-bottom: 36px;
}

.faq + #contact {
  padding-top: 40px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(200, 32, 92, 0.28);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--crimson);
  color: #fff;
}

.faq-item summary:hover::after {
  background: rgba(200, 32, 92, 0.12);
  color: var(--crimson);
}

.faq-item[open] summary:hover::after {
  background: var(--crimson-700);
  color: #fff;
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary::after {
    transition: none;
  }
}

.contact-info a.email-link,
.contact-info a.contact-map-link,
footer a.email-link,
footer a.contact-map-link{
color:inherit;text-decoration:none;
transition:color .25s ease;
}
.contact-info a.email-link:hover,
.contact-info a.contact-map-link:hover{color:var(--crimson)}
footer a.email-link:hover,
footer a.contact-map-link:hover{color:#fff}

/* ---------- FOOTER ---------- */
footer {
  background: #0B1130;
  color: #cfd3e5;
  padding: 60px 0 24px;
  margin-top: 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px
}

footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 14px
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

footer li {
  margin: 8px 0;
  font-size: 14px
}

.foot-social-item {
  margin-top: 14px;
}

.foot-social-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #9aa0bd;
  margin-bottom: 10px;
}

.foot-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.foot-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfd3e5;
  background: rgba(255, 255, 255, 0.04);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.foot-social-link:hover {
  color: #fff;
  background: rgba(200, 32, 92, 0.22);
  border-color: rgba(200, 32, 92, 0.4);
}

.foot-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

footer a:hover {
  color: #fff
}

.foot-brand p {
  color: #9aa0bd;
  font-size: 14px;
  margin-top: 14px;
  max-width: 340px
}

.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8a91b2;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:960px) {
  .nav-links {
    display: none;
  }

  .hamb {
    display: flex;
  }

  .nav-cta .btn-ghost {
    display: none;
  }

  .nav-menu-cta {
    display: block;
    width: 100%;
    margin-top: 12px;
    text-align: center;
  }

  .nav-links.is-open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    background: #fff;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(27, 42, 110, 0.08);
    z-index: 60;
    gap: 4px;
    text-align: left;
    box-sizing: border-box;
  }

  .nav-links.is-open .nav-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 12px;
    display: block;
    transition: opacity .2s ease, max-height .25s ease, visibility .2s ease;
  }

  .nav-links.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 120px;
    padding: 0 0 8px 12px;
  }

  section {
    padding: 52px 0;
  }

  .hero {
    padding: 32px 0 12px;
  }

  .hero + #company {
    padding-top: 24px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 36px;
  }

  .marquee {
    margin: 12px 0;
  }

  .marquee + section {
    padding-top: 36px;
  }

  #company {
    padding-bottom: 28px;
  }

  #company + #services {
    padding-top: 28px;
  }

  .faq {
    padding-bottom: 28px;
  }

  .faq + #contact {
    padding-top: 28px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .work .section-head {
    margin-bottom: 24px;
  }

  .shopify-spotlight {
    grid-template-columns: 1fr;
  }

  .shopify-spotlight-visual {
    justify-content: center;
  }

  .shopify-spotlight-image {
    max-width: min(100%, 280px);
  }

  .services,
  .values {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .case {
    grid-template-columns: 1fr
  }

  .case-main {
    padding: 28px 28px 20px;
  }

  .case-aside {
    padding: 0 28px 28px;
  }

  .case-aside::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-body {
    padding-left: 0;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }

  .service:hover h3,
  .service:hover p {
    transform: none;
  }

  .cta-band {
    padding: 40px 24px;
  }

  .case .quote-text,
  .contact-info li,
  footer li {
    overflow-wrap: anywhere;
  }
}

@media (max-width:680px) {

  .situations,
  .services,
  .values {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 28px 0 10px
  }

  .hero-features {
    max-width: min(100%, 360px);
    margin: 0 auto;
    width: 100%;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-feature-card {
    min-height: 118px;
    padding: 14px 14px 12px;
  }

  .hero-feature-card:hover {
    transform: none;
  }

  .hero + #company {
    padding-top: 20px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  section {
    padding: 44px 0
  }

  .marquee {
    margin: 8px 0;
  }

  .marquee + section {
    padding-top: 28px;
  }

  #company {
    padding-bottom: 20px;
  }

  #company + #services {
    padding-top: 20px;
  }

  .faq {
    padding-bottom: 20px;
  }

  .faq + #contact {
    padding-top: 20px;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .cta-band {
    padding: 40px 22px
  }

  .foot-grid {
    grid-template-columns: 1fr
  }
}