:root {
  color-scheme: light;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-tint: #eef7ff;
  --emerald: #10b981;
  --cyan: #0ea5e9;
  --indigo: #6366f1;
  --pink: #ec4899;
  --orange: #f97316;
  --dark: #0f172a;
  --shadow-sm: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-md: 0 18px 60px rgba(15, 23, 42, .12);
  --shadow-lg: 0 28px 90px rgba(15, 23, 42, .16);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  outline: 0;
  padding: 14px 16px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(14, 165, 233, .74);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .14);
}

::selection {
  background: rgba(16, 185, 129, .24);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden,
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 3px solid rgba(14, 165, 233, .45);
  outline-offset: 3px;
}

.section {
  position: relative;
  padding: 104px 0;
  overflow: clip;
}

.section-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p,
.hero-subtitle,
.copy-stack p,
.contact-copy p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  border: 1px solid rgba(14, 165, 233, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #0369a1;
  font-size: .82rem;
  font-weight: 800;
  padding: 7px 12px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, .08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 4.5rem;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  font-weight: 820;
}

h3 {
  font-size: 1.2rem;
  font-weight: 780;
}

p {
  margin-bottom: 0;
}

.btn,
.nav-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.btn svg,
.nav-cta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary,
.nav-cta {
  border: 1px solid rgba(15, 23, 42, .08);
  background: linear-gradient(135deg, #0f172a 0%, #164e63 48%, #047857 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .2);
  padding: 15px 22px;
}

.btn-secondary {
  border: 1px solid rgba(15, 23, 42, .1);
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
  padding: 15px 20px;
}

.btn-dark {
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--dark);
  color: #fff;
  padding: 15px 20px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ripple {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .44);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple .7s ease forwards;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(248, 250, 252, .62);
  backdrop-filter: blur(22px);
  transition: background .22s ease, box-shadow .22s ease, padding .22s ease;
}

.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 44px rgba(15, 23, 42, .08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(calc(100% - 28px), 1320px);
  min-height: 58px;
  margin: 0 auto;
  border: 1px solid rgba(226, 232, 240, .82);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  padding: 7px 8px 7px 14px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 850;
}

.brand img {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.nav-menu a {
  border-radius: 999px;
  color: #475569;
  font-size: .88rem;
  font-weight: 760;
  padding: 9px 11px;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(14, 165, 233, .09);
  color: #075985;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .04);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(92vh - var(--header-height));
  padding-top: 112px;
  padding-bottom: 60px;
  background:
    linear-gradient(115deg, rgba(248, 250, 252, .98) 0%, rgba(248, 250, 252, .91) 42%, rgba(239, 246, 255, .48) 100%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, .045) 0 1px, transparent 1px 74px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background: linear-gradient(145deg, rgba(14, 165, 233, .1), rgba(16, 185, 129, .09), rgba(236, 72, 153, .08));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 92%);
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, .38), transparent);
}

.hero-media {
  position: absolute;
  top: 92px;
  right: -10%;
  width: min(58vw, 820px);
  opacity: .95;
  filter: drop-shadow(0 24px 80px rgba(15, 23, 42, .16));
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.hero-media img {
  border-radius: 34px;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 740px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .45);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: 1.16rem;
}

.typing-line {
  min-height: 32px;
  color: #0f766e;
  font-weight: 850;
}

.typing-line span {
  color: #3730a3;
}

.typing-line span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 3px;
  background: currentColor;
  vertical-align: -.16em;
  animation: caret .9s steps(1) infinite;
}

@keyframes caret {
  50% {
    opacity: 0;
  }
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
}

.trust-row span {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #475569;
  font-size: .86rem;
  font-weight: 780;
  padding: 9px 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 840px;
  margin-top: 62px;
}

.stat-card {
  min-height: 134px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.stat-card strong {
  display: block;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1;
}

.stat-card strong::after {
  content: "+";
  color: var(--emerald);
  font-size: 1.4rem;
}

.stat-card:first-child strong::after {
  content: "°";
}

.stat-card:nth-child(3) strong::after {
  content: "x7";
  color: var(--cyan);
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 720;
}

.platform-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  width: min(calc(100% - 40px), var(--container));
  margin: 42px auto 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-strip::-webkit-scrollbar {
  display: none;
}

.platform-strip span {
  flex: 0 0 auto;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #475569;
  font-weight: 800;
  padding: 12px 16px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.image-panel {
  position: relative;
}

.image-panel img {
  border: 1px solid rgba(226, 232, 240, .8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-note {
  position: absolute;
  right: -22px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.floating-note svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(16, 185, 129, .12);
  color: var(--emerald);
  padding: 8px;
}

.floating-note span {
  color: var(--ink-soft);
  font-weight: 760;
}

.copy-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.mission-grid article,
.usp-grid article,
.service-card,
.industry-card,
.price-card,
.case-card,
.timeline-card,
.process-step,
.d2c-plan,
.lead-form,
.business-hours {
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm);
}

.mission-grid article {
  padding: 20px;
}

.mission-grid h3,
.mission-grid p {
  margin-bottom: 0;
}

.achievement-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.achievement-list div {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(14, 165, 233, .1), rgba(16, 185, 129, .12));
  padding: 18px;
}

.achievement-list strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.achievement-list strong::after {
  content: "+";
  color: var(--emerald);
}

.achievement-list div:nth-child(2) strong::after {
  content: "x7";
  color: var(--cyan);
}

.achievement-list div:nth-child(3) strong::after {
  content: "°";
  color: var(--indigo);
}

.achievement-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 760;
}

.services,
.pricing,
.faq {
  background: #fff;
}

.card-grid,
.service-grid,
.industry-grid,
.pricing-grid,
.case-grid,
.usp-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 24px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--cyan), var(--indigo));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}

.service-card:hover,
.industry-card:hover,
.case-card:hover,
.price-card:hover,
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, .28);
  box-shadow: var(--shadow-md);
}

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

.icon-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, .14), rgba(14, 165, 233, .14));
  color: #047857;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0369a1;
  font-weight: 820;
}

.service-card a svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.service-card a:hover svg {
  transform: translateX(4px);
}

.solutions {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef7ff 100%),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, .035) 0 1px, transparent 1px 72px);
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.tab-button {
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-weight: 820;
  padding: 12px 16px;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.tab-button:hover,
.tab-button.active {
  border-color: rgba(14, 165, 233, .28);
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

.solution-panels {
  position: relative;
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, .66);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  padding: 34px;
}

.solution-panel[hidden] {
  display: none;
}

.solution-panel p {
  max-width: 740px;
  color: var(--ink-soft);
}

.check-list,
.price-card ul,
.mini-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li,
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li + li,
.price-card li + li {
  margin-top: 12px;
}

.check-list svg,
.price-card li svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--emerald);
}

.industry-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.industry-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 820;
  text-align: center;
  padding: 20px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.industry-card svg {
  width: 34px;
  height: 34px;
  color: #0f766e;
}

.why {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.usp-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.usp-grid article {
  padding: 20px;
}

.usp-grid svg {
  width: 30px;
  height: 30px;
  color: var(--indigo);
  margin-bottom: 14px;
}

.usp-grid p {
  color: var(--muted);
  font-size: .96rem;
}

.timeline-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 52px;
  width: 2px;
  background: linear-gradient(var(--emerald), var(--cyan), var(--indigo), var(--pink));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.timeline-item span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(226, 232, 240, .8);
  border-radius: 50%;
  background: #fff;
  color: #075985;
  font-size: .82rem;
  font-weight: 850;
}

.timeline-item p {
  color: var(--muted);
}

.process {
  background:
    linear-gradient(180deg, #f8fafc, #fff),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, .035) 0 1px, transparent 1px 76px);
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), var(--cyan), var(--indigo), var(--pink));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: .82rem;
  font-weight: 850;
  padding: 7px 12px;
  margin-bottom: 22px;
}

.process-step p,
.case-card p,
.price-card li {
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.price-card.featured {
  background: linear-gradient(180deg, #ffffff, #f0fdfa);
  border-color: rgba(16, 185, 129, .35);
  box-shadow: var(--shadow-md);
}

.popular {
  position: absolute;
  top: 22px;
  right: 22px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: .78rem;
  font-weight: 850;
  padding: 6px 10px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 880;
  line-height: 1;
}

.price span {
  font-size: 1.35rem;
}

.price small {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.price-card ul {
  margin-bottom: 26px;
}

.d2c-plan {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  margin-top: 20px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(17, 94, 89, .94));
  color: #fff;
}

.d2c-plan p,
.d2c-plan li {
  color: rgba(255, 255, 255, .78);
}

.mini-features {
  display: grid;
  gap: 10px;
  margin: 0;
}

.mini-features li {
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  padding: 12px 14px;
}

.portfolio {
  background: #f8fafc;
}

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

.case-card {
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.case-top span {
  border-radius: 999px;
  background: rgba(14, 165, 233, .1);
  color: #075985;
  font-size: .78rem;
  font-weight: 850;
  padding: 7px 10px;
}

.case-top svg {
  width: 36px;
  height: 36px;
  color: var(--emerald);
}

.before-after {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.before-after p {
  border-radius: 14px;
  background: #f8fafc;
  padding: 14px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tech-stack span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #475569;
  font-size: .8rem;
  font-weight: 800;
  padding: 7px 10px;
}

.result {
  color: var(--ink-soft) !important;
  font-weight: 760;
}

.testimonials {
  background:
    linear-gradient(180deg, #0f172a 0%, #164e63 100%);
  color: #fff;
}

.testimonials .section-kicker {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .14);
  color: #a7f3d0;
}

.testimonials .section-heading p,
.testimonials p {
  color: rgba(255, 255, 255, .78);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.testimonial-track {
  min-height: 330px;
}

.testimonial-card {
  display: none;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(20px);
  padding: 34px;
}

.testimonial-card.active {
  display: grid;
  animation: cardIn .42s ease both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.testimonial-card img {
  width: 150px;
  height: 150px;
  border: 4px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p {
  margin: 18px 0;
  font-size: 1.25rem;
}

.testimonial-card h3 {
  margin-bottom: 4px;
}

.testimonial-card span {
  color: rgba(255, 255, 255, .68);
  font-weight: 760;
}

.stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  transition: transform .2s ease, background .2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, .16);
  transform: translateY(-2px);
}

.carousel-btn.prev svg {
  transform: rotate(180deg);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.carousel-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: #a7f3d0;
}

.faq-tools {
  max-width: 620px;
  margin: 0 auto 22px;
}

.search-box {
  position: relative;
  display: block;
}

.search-box svg {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-box input {
  padding-left: 48px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.faq-item.is-hidden {
  display: none;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  background: transparent;
  color: var(--ink);
  font-weight: 820;
  text-align: left;
  padding: 20px 22px;
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  color: var(--muted);
}

.contact {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, .08), rgba(16, 185, 129, .08) 45%, rgba(236, 72, 153, .06)),
    #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 34px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-methods a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  padding: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-methods a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.contact-methods svg {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14, 165, 233, .1);
  color: #0369a1;
  padding: 10px;
}

.business-hours {
  padding: 18px;
}

.business-hours strong,
.business-hours span {
  display: block;
}

.business-hours span {
  margin-top: 8px;
  color: var(--muted);
}

.lead-form {
  padding: 28px;
}

.lead-form h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 780;
}

.lead-form label + label,
.lead-form .form-grid + label {
  margin-top: 16px;
}

.lead-form .btn {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
}

.map-wrap {
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 390px;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.site-footer {
  background: #0f172a;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr .7fr;
  gap: 34px;
}

.site-footer .brand img {
  width: 58px;
}

.site-footer p,
.site-footer a,
.site-footer button {
  color: rgba(255, 255, 255, .7);
}

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

.site-footer a,
.site-footer button {
  display: block;
  width: fit-content;
  background: transparent;
  padding: 5px 0;
  text-align: left;
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover,
.site-footer button:hover {
  color: #fff;
  transform: translateX(3px);
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  max-width: 410px;
  margin-top: 20px;
}

.newsletter input {
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .52);
}

.newsletter button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: .76rem;
  font-weight: 850;
  padding: 0;
}

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transition: transform .2s ease;
}

.float-btn:hover {
  transform: translateY(-3px);
}

.float-btn.whatsapp {
  background: #16a34a;
  color: #fff;
}

.float-btn.call {
  background: #0ea5e9;
  color: #fff;
}

.float-btn.top {
  opacity: 0;
  pointer-events: none;
}

.float-btn.top.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 128px);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  background: rgba(15, 23, 42, .88);
  color: #fff;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  padding: 10px 10px 10px 18px;
  transform: translate(-50%, 130%);
  transition: transform .32s ease;
}

.sticky-cta.visible {
  transform: translate(-50%, 0);
}

.sticky-cta span {
  font-weight: 800;
  white-space: nowrap;
}

.sticky-cta a {
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  padding: 10px 14px;
  white-space: nowrap;
}

.site-modal {
  width: min(520px, calc(100% - 32px));
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.site-modal::backdrop {
  background: rgba(15, 23, 42, .52);
  backdrop-filter: blur(8px);
}

.modal-close,
.exit-card > button {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, .06);
  color: var(--ink);
  font-size: 1.4rem;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, .5);
  backdrop-filter: blur(12px);
  padding: 20px;
}

.exit-popup[hidden] {
  display: none !important;
}

.exit-card {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 34px;
}

.exit-card .btn {
  margin-top: 24px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.service-card:nth-child(2),
.industry-card:nth-child(2),
.process-step:nth-child(2),
.case-card:nth-child(2) {
  transition-delay: .06s;
}

.service-card:nth-child(3),
.industry-card:nth-child(3),
.process-step:nth-child(3),
.case-card:nth-child(3) {
  transition-delay: .12s;
}

.service-card:nth-child(4),
.industry-card:nth-child(4),
.process-step:nth-child(4) {
  transition-delay: .18s;
}

.service-card:nth-child(5),
.industry-card:nth-child(5) {
  transition-delay: .24s;
}

.service-card:nth-child(6),
.industry-card:nth-child(6) {
  transition-delay: .3s;
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .nav-cta {
    justify-self: end;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid rgba(226, 232, 240, .94);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    background: #f8fafc;
    padding: 12px;
  }

  .hero-media {
    right: -28%;
    width: min(70vw, 760px);
    opacity: .62;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

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

@media (max-width: 960px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 42px auto 0;
    opacity: 1;
  }

  .hero-media img {
    border-radius: var(--radius-lg);
  }

  .hero-proof,
  .service-grid,
  .pricing-grid,
  .case-grid,
  .process-line,
  .footer-grid,
  .contact-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .process-line::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(var(--emerald), var(--cyan), var(--indigo), var(--pink));
  }

  .process-step {
    margin-left: 34px;
  }

  .solution-panel,
  .d2c-plan {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card img {
    margin: 0 auto;
  }

  .stars {
    justify-content: center;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    gap: 8px;
    padding-left: 10px;
  }

  .brand span {
    font-size: .98rem;
  }

  .brand img {
    width: 44px;
  }

  .nav-cta {
    display: none;
  }

  .nav-menu {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .section-heading p,
  .copy-stack p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .solution-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .stat-card {
    min-height: auto;
  }

  .mission-grid,
  .achievement-list,
  .usp-grid,
  .industry-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .solution-panel,
  .lead-form,
  .price-card,
  .case-card,
  .testimonial-card,
  .exit-card {
    padding: 22px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .testimonial-track {
    min-height: auto;
  }

  .map-wrap iframe {
    min-height: 310px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 12px;
    max-width: none;
    transform: translateY(130%);
    justify-content: space-between;
    border-radius: var(--radius);
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }

  .sticky-cta span {
    white-space: normal;
    font-size: .9rem;
  }

  .sticky-cta a {
    flex: 0 0 auto;
    font-size: .82rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 90px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding-top: 72px;
  }

  .trust-row span,
  .platform-strip span {
    font-size: .8rem;
  }

  .price {
    font-size: 2.2rem;
  }

  .floating-actions {
    grid-template-columns: repeat(3, 48px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 92px;
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
