:root {
  color-scheme: light;
  --bg: #fbf9ff;
  --bg-1: #ffffff;
  --bg-2: #f6f3fc;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-hi: rgba(255, 255, 255, 0.95);
  --border: rgba(28, 22, 46, 0.09);
  --border-hi: rgba(28, 22, 46, 0.16);
  --pink: #d6449a;
  --pink-light: #c4b5fd;
  --pink-dim: #fbcfe8;
  --text: #1b1226;
  --text-dim: #5f5872;
  --text-faint: #9a93a8;
  --grad: linear-gradient(120deg, #ec4899 0%, #8b5cf6 52%, #6366f1 100%);
  --grad-soft: linear-gradient(120deg, rgba(236, 72, 153, 0.14), rgba(139, 92, 246, 0.12));
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --section-y: 88px;
  --max: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
h1,
h2,
h3,
h4,
.display {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  font-weight: 600;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
::selection {
  background: rgba(236, 72, 153, 0.22);
  color: #1b1226;
}

/* film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

/* ---------- ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.5;
}
.blob-1 {
  width: 680px;
  height: 680px;
  top: -240px;
  left: -160px;
  background: radial-gradient(circle, #f9a8d4, transparent 70%);
}
.blob-2 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -200px;
  background: radial-gradient(circle, #c4b5fd, transparent 70%);
  opacity: 0.45;
}
.blob-3 {
  width: 560px;
  height: 560px;
  bottom: -260px;
  left: 28%;
  background: radial-gradient(circle, #a5d8ff, transparent 70%);
  opacity: 0.4;
}

section {
  position: relative;
  z-index: 1;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

/* ---------- navbar ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
header .nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(249, 168, 212, 0.9);
}
nav.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.menu a:not(.btn-nav) {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
nav.menu a:not(.btn-nav)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--grad);
  transition: width 0.3s var(--ease);
}
nav.menu a:not(.btn-nav):hover {
  color: var(--text);
}
nav.menu a:not(.btn-nav):hover::after {
  width: 100%;
}

/* language switch */
.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
}
.lang {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  transition: color 0.25s, background 0.25s;
}
.lang.active {
  background: var(--grad);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(139, 92, 246, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(139, 92, 246, 0.6);
}
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--surface-hi);
  border-color: var(--border-hi);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.burger span {
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- hero ---------- */
.hero {
  padding: 180px 0 var(--section-y);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 26px;
}
.eyebrow .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f9a8d4;
  box-shadow: 0 0 0 rgba(249, 168, 212, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 168, 212, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(249, 168, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 168, 212, 0);
  }
}
.hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.06;
  font-weight: 600;
  max-width: 640px;
}
.hero h1 .g {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 480px;
  font-weight: 400;
}
.hero .actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
}
.portrait-frame {
  position: absolute;
  inset: 0;
}
.glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from 0deg, #f9a8d4, #fbcfe8, #f9a8d4);
  opacity: 0.35;
  filter: blur(18px);
  z-index: -1;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 20px 50px -18px rgba(28, 22, 46, 0.25);
  padding: 16px 18px;
  z-index: 35;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-card.card-a {
  top: 8%;
  left: -9%;
  animation-delay: 0s;
  min-width: 190px;
}
.float-card.card-b {
  bottom: 16%;
  right: -10%;
  animation-delay: 1.4s;
  min-width: 200px;
}
.float-card.card-c {
  bottom: -4%;
  left: 14%;
  animation-delay: 0.7s;
  padding: 10px 16px;
}
.fc-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.fc-label .ic {
  width: 14px;
  height: 14px;
  color: var(--pink);
}
.fc-value {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.fc-value small {
  font-size: 12px;
  color: #34d399;
  font-weight: 600;
  margin-left: 6px;
}
.spark {
  margin-top: 8px;
  display: block;
}

/* ---------- stats ---------- */
.stats-section {
  padding: var(--section-y) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: "Inter", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* ---------- marquee ---------- */
.marquee-wrap {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}
.marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}
.trusted-lbl {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 30px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-faint);
  padding: 0 46px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 46px;
}
.marquee-track span::after {
  content: "◆";
  font-size: 10px;
  color: var(--pink);
  opacity: 0.6;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- section heading ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--pink);
}
.sec-title {
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 640px;
  line-height: 1.14;
}
.sec-sub {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 560px;
}

/* ---------- about / founder ---------- */
.about {
  padding: var(--section-y) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-top: 20px;
  max-width: 520px;
}
.about p strong {
  color: var(--text);
  font-weight: 600;
}
.founder-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
  max-width: 520px;
}
.founder-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.founder-points li .icon {
  color: var(--pink);
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -44px rgba(28, 22, 46, 0.35);
}
.chart-card .chead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.chart-card .chead .big {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
}
.chart-card .chead .tag {
  font-size: 12px;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.chart-card .csub {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 18px;
}

/* ---------- case study ---------- */
.case {
  padding: var(--section-y) 0;
}
.case-card {
  background: linear-gradient(160deg, rgba(249, 168, 212, 0.14), rgba(196, 181, 253, 0.08)), var(--bg-1);
  border: 1px solid var(--border-hi);
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -44px rgba(28, 22, 46, 0.35);
}
.case-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(249, 168, 212, 0.18), transparent 65%);
  pointer-events: none;
}
.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.case-metric .m-num {
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
}
.case-metric .m-num .unit {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case-metric .m-lbl {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-dim);
}
.case-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.case-notes .note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--text-dim);
}
.case-notes .note .icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.growth-panel {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 26px 10px;
}
.growth-panel .gp-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 6px;
}

/* ---------- work showcase ---------- */
.work {
  padding: var(--section-y) 0;
}
.work-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
  list-style: none;
}
.work-strip li {
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(249, 168, 212, 0.28), rgba(196, 181, 253, 0.16)),
    repeating-linear-gradient(135deg, rgba(28, 22, 46, 0.04) 0 1px, transparent 1px 13px), var(--bg-1);
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s, box-shadow 0.4s;
}
.work-strip li:hover {
  border-color: var(--border-hi);
  box-shadow: 0 16px 40px -22px rgba(28, 22, 46, 0.35);
}
.work-strip .work-ic {
  width: 28px;
  height: 28px;
  color: var(--pink-light);
  margin-bottom: auto;
}
.work-strip strong {
  font-size: 16px;
  font-weight: 600;
}
.work-strip span {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- how it works ---------- */
.how {
  padding: var(--section-y) 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
  list-style: none;
}
.steps li {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}
.steps .step-ic {
  width: 26px;
  height: 26px;
  color: var(--pink);
}
.steps b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--pink-light);
  font-weight: 600;
  font-style: normal;
}
.steps h4 {
  font-size: 16px;
  font-weight: 600;
}
.steps p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- services ---------- */
.services {
  padding: 130px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.service {
  position: relative;
  background: var(--bg-1);
  padding: 38px 32px;
  transition: background 0.35s, transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service:hover {
  background: var(--bg-2);
  transform: scale(1.05);
  z-index: 2;
}
.service .s-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.service .s-ic .icon {
  width: 20px;
  height: 20px;
}
.service h4 {
  font-size: 17px;
  font-weight: 600;
}
.service p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- problem / solution ---------- */
.solution-sec {
  padding: var(--section-y) 0;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.lead-copy {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 480px;
  opacity: 0.75;
}
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-dim);
}
.check-list.muted li {
  color: var(--text-dim);
  opacity: 0.6;
}
.check-list.muted li .icon {
  opacity: 0.7;
}
.check-list li .icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  color: var(--pink);
}

/* ---------- why ---------- */
.why {
  padding: var(--section-y) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.why-item {
  padding: 30px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px -34px rgba(28, 22, 46, 0.35);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.why-item:hover {
  border-color: var(--border-hi);
  box-shadow: 0 22px 50px -30px rgba(28, 22, 46, 0.32);
}
.why-item .w-ic {
  width: 38px;
  height: 38px;
  color: var(--pink);
  margin-bottom: 18px;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- packages ---------- */
.packages {
  padding: var(--section-y) 0;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
  align-items: start;
}
.pricing article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 50px -36px rgba(28, 22, 46, 0.4);
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s, box-shadow 0.4s;
}
.pricing article:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
}
.pricing article.featured {
  position: relative;
  overflow: hidden;
  border-color: var(--border-hi);
  background: linear-gradient(160deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.08)), var(--bg-1);
  box-shadow: 0 26px 60px -34px rgba(139, 92, 246, 0.5);
}
.pricing article > span {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: #7c3aed;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing h3 {
  font-size: 20px;
  font-weight: 600;
}
.pricing article > p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}
.pricing .price {
  font-family: "Inter", sans-serif;
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}
.pricing .price small {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 400;
}
.pricing ul {
  display: grid;
  gap: 10px;
  margin: 6px 0 10px;
}
.pricing ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.pricing ul li .icon {
  width: 16px;
  height: 16px;
  color: var(--pink);
  flex-shrink: 0;
}
.pricing .btn {
  width: 100%;
}

/* ---------- testimonials ---------- */
.testi {
  padding: var(--section-y) 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 18px 44px -34px rgba(28, 22, 46, 0.35);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.testi-card:hover {
  border-color: var(--border-hi);
  box-shadow: 0 22px 50px -30px rgba(28, 22, 46, 0.32);
}
.testi-card .stars {
  color: #f5b342;
  font-size: 13px;
  letter-spacing: 2px;
}
.testi-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 400;
}
.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.testi-foot .name {
  font-size: 14px;
  font-weight: 600;
}
.testi-foot .role {
  font-size: 12px;
  color: var(--text-faint);
}

/* ---------- faq ---------- */
.faq {
  padding: var(--section-y) 0;
}
.faq-list {
  max-width: 760px;
  margin-top: 50px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-align: left;
}
.faq-q .plus {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  color: var(--pink);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-q .plus {
  transform: rotate(135deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 4px 24px;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 640px;
}

/* ---------- cta ---------- */
.cta {
  padding: var(--section-y) 0;
}
.cta-card {
  border-radius: 32px;
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, rgba(236, 72, 153, 0.16), transparent 60%),
    radial-gradient(90% 90% at 85% 110%, rgba(139, 92, 246, 0.14), transparent 60%), var(--bg-1);
  border: 1px solid var(--border-hi);
  box-shadow: 0 30px 70px -44px rgba(28, 22, 46, 0.3);
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 80% 100%, rgba(165, 216, 255, 0.2), transparent 70%);
}
.cta-card h2 {
  font-size: clamp(30px, 4vw, 48px);
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.15;
}
.cta-card p {
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
}
.cta-card .actions {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 34px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-dim);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 12px;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* shared icon */
.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

/* ---------- hero carousel (stacked deck) ---------- */
.hero-slide {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
  transform-origin: top center;
  transition: transform 0.75s var(--ease-smooth), opacity 0.75s var(--ease-smooth);
  will-change: transform, opacity;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 35, 0) 45%, rgba(20, 15, 35, 0.42) 100%);
  pointer-events: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  color: var(--text);
  box-shadow: 0 6px 18px -8px rgba(28, 22, 46, 0.4);
  transition: background 0.3s, border-color 0.3s;
}
.hero-arrow:hover {
  background: #fff;
  border-color: var(--pink);
}
.hero-arrow.left {
  left: 8px;
}
.hero-arrow.right {
  right: 8px;
}
.hero-arrow .icon {
  width: 20px;
  height: 20px;
}
.hero-arrow.left .icon {
  transform: rotate(180deg);
}
.slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}
.slide-ph {
  display: grid;
  place-items: center;
}
.slide-ph-a {
  background: linear-gradient(160deg, #fbcfe8, #ddd6fe 55%, #c7d2fe);
}
.slide-ph-b {
  background: linear-gradient(210deg, #fecdd3, #ddd6fe 55%, #bae6fd);
}
.ph-play {
  width: 56px;
  height: 56px;
  padding: 16px;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-hi);
  box-shadow: 0 8px 22px -10px rgba(28, 22, 46, 0.4);
  backdrop-filter: blur(6px);
}
.slide-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text);
  box-shadow: 0 4px 14px -8px rgba(28, 22, 46, 0.4);
  backdrop-filter: blur(10px);
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  gap: 7px;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.3s var(--ease), background 0.3s;
}
.hero-dot.active {
  width: 20px;
  border-radius: 100px;
  background: var(--grad);
}

/* ---------- case slider ---------- */
.case-slider {
  overflow: hidden;
}
.case-track {
  display: flex;
  transition: transform 0.65s var(--ease-smooth);
  will-change: transform;
}
.case-slide {
  flex: 0 0 100%;
}
.case-headline {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  margin-bottom: 4px;
}
.case-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.case-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: border-color 0.3s, background 0.3s;
}
.case-arrow:hover {
  border-color: var(--border-hi);
  background: var(--surface-hi);
}
.case-arrow .icon {
  width: 20px;
  height: 20px;
}
.arrow-prev .icon {
  transform: rotate(180deg);
}
.case-dots {
  display: flex;
  gap: 8px;
}
.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(28, 22, 46, 0.22);
  transition: width 0.3s var(--ease), background 0.3s;
}
.case-dot.active {
  width: 22px;
  border-radius: 100px;
  background: var(--grad);
}

/* ---------- pricing comparison ---------- */
.dim-title {
  opacity: 0.55;
}
.plan-meta {
  font-size: 12.5px;
  color: var(--text-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.plan-feats {
  display: grid;
  gap: 11px;
  margin: 6px 0 12px;
}
.pricing .plan-feats li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text);
}
.pricing .plan-feats li .icon {
  width: 16px;
  height: 16px;
  color: var(--pink);
  flex-shrink: 0;
}
.pricing .plan-feats li.excluded {
  color: var(--text-faint);
  opacity: 0.55;
}
.pricing .plan-feats li.excluded .icon {
  color: var(--text-faint);
}

/* ---------- RTL ---------- */
html[dir="rtl"] body {
  font-family: "Inter", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] .kicker::before {
  transform: scaleX(-1);
}
html[dir="rtl"] .marquee-track {
  animation-direction: reverse;
}
html[dir="rtl"] .float-card.card-a {
  left: auto;
  right: -9%;
}
html[dir="rtl"] .float-card.card-b {
  right: auto;
  left: -10%;
}
html[dir="rtl"] .slide-label {
  left: auto;
  right: 16px;
}
html[dir="rtl"] .arrow-prev .icon {
  transform: none;
}
html[dir="rtl"] .arrow-next .icon {
  transform: rotate(180deg);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  nav.menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 340px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    box-shadow: -20px 0 60px -30px rgba(28, 22, 46, 0.4);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  nav.menu.open {
    transform: translateX(0);
  }
  .burger {
    display: flex;
    z-index: 101;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }
  .hero-visual {
    width: min(100%, 300px);
    order: -1;
    margin-bottom: 10px;
  }
  .float-card.card-a {
    left: 0;
    top: 6%;
  }
  .float-card.card-b {
    right: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-card {
    grid-template-columns: 1fr;
    padding: 38px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .work-strip,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-bottom: 1px solid var(--border);
  }
  .stat:nth-child(even) {
    border-right: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  /* uniform, compressed section rhythm on tablet */
  :root {
    --section-y: 60px;
  }
  html[dir="rtl"] nav.menu {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid var(--border);
    transform: translateX(-100%);
  }
  html[dir="rtl"] nav.menu.open {
    transform: translateX(0);
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 20px;
  }
  header .nav-inner {
    padding: 0 20px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .work-strip {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-card {
    padding: 28px;
  }
  .panel-plain,
  .panel-solution {
    padding: 28px 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .float-card {
    padding: 12px 14px;
  }
  .fc-value {
    font-size: 17px;
  }
  /* tighter, uniform rhythm + type on phones */
  :root {
    --section-y: 46px;
  }
  .hero {
    padding-top: 112px;
  }
  .sec-title {
    font-size: clamp(26px, 7vw, 34px);
  }
  .why-grid,
  .testi-grid,
  .pricing {
    margin-top: 36px;
  }
}

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