:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-deep: #f7f7fb;
  --bg-soft: #fafaff;
  --bg-card: #ffffff;
  --bg-card-soft: #fbfbfe;
  --bg-card-strong: #f4f4fa;
  --primary: #6643f6;
  --primary-hover: #7a5bff;
  --primary-deep: #5318eb;
  --primary-soft: #ad99ff;
  --primary-tint: #f0ecff;
  --primary-glow: rgba(102, 67, 246, 0.45);
  --text: #0a0e2a;
  --text-soft: #1a1f3a;
  --text-muted: #5a5f7a;
  --text-dim: #8a8da0;
  --border: rgba(10, 14, 42, 0.08);
  --border-strong: rgba(10, 14, 42, 0.14);
  --border-nav: rgba(102, 67, 246, 0.18);
  --surface-muted: #f4f4f8;
  --max: 1208px;
  --max-narrow: 1184px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 12px 32px rgba(10, 14, 42, 0.06), 0 2px 8px rgba(10, 14, 42, 0.04);
  --shadow-card-strong: 0 20px 60px rgba(10, 14, 42, 0.1);
  --button-glow: inset 8px 0 10px rgba(83, 24, 235, 0.35), inset 0 2px 10px rgba(146, 121, 253, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, dl, dd, ol, ul {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

/* Page background  -  soft dot pattern + glow accents */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-bg-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(102, 67, 246, 0.12), transparent 50%),
    radial-gradient(1px 1px at 65% 12%, rgba(102, 67, 246, 0.08), transparent 50%),
    radial-gradient(1px 1px at 85% 45%, rgba(102, 67, 246, 0.1), transparent 50%),
    radial-gradient(1px 1px at 12% 65%, rgba(102, 67, 246, 0.07), transparent 50%),
    radial-gradient(1px 1px at 45% 78%, rgba(102, 67, 246, 0.1), transparent 50%);
  background-size: 1200px 900px;
  background-repeat: repeat;
  opacity: 0.7;
}

.page-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.55;
}

.page-bg-glow-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(173, 153, 255, 0.45) 0%, transparent 70%);
}

.page-bg-glow-2 {
  top: 30%;
  right: -250px;
  background: radial-gradient(circle, rgba(244, 178, 255, 0.35) 0%, transparent 70%);
}

/* Header / Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(10, 14, 42, 0.05);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 116px;
}

.site-nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
}

.site-nav-left a {
  padding: 4px 10px;
  border-radius: 8px;
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav-left a:hover {
  color: var(--primary);
  background: var(--primary-tint);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--text);
  color: #ffffff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.header-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(102, 67, 246, 0.25);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.mobile-nav {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: var(--button-glow), 0 8px 24px rgba(102, 67, 246, 0.25);
}

.button-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--button-glow), 0 12px 30px rgba(102, 67, 246, 0.32);
}

.button-secondary {
  color: var(--text);
  background: #ffffff;
  border: 1px solid var(--border-strong);
}

.button-secondary:hover {
  background: var(--surface-muted);
  border-color: var(--primary);
  color: var(--primary);
}

.button-icon {
  padding: 12px;
  gap: 0;
}

.button-with-icon {
  padding-left: 16px;
}

.button-sm {
  padding: 10px 16px;
  font-size: 15px;
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 14, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 14, 42, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 35%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 35%, #000 0%, transparent 75%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1100px;
  height: 600px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(173, 153, 255, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 30%, rgba(244, 178, 255, 0.2) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-top: 60px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-tagline-text {
  color: var(--text-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-pills {
  display: inline-flex;
  gap: 6px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  box-shadow: 0 2px 8px rgba(10, 14, 42, 0.04);
}

h1 {
  max-width: 1062px;
  color: var(--text);
  font-size: 62px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(97.4deg, #6643f6 30%, #ad99ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  max-width: 542px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.hero-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  margin-top: 80px;
  width: 100%;
  max-width: 1200px;
}

.logo-item {
  color: rgba(10, 14, 42, 0.4);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-soft);
}

/* Sections */
.section {
  position: relative;
  padding: 96px 24px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto 56px;
}

.section-heading.center {
  text-align: center;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(10, 14, 42, 0.04);
}

.section-heading:not(.center) .eyebrow {
  align-self: flex-start;
}

h2 {
  max-width: 760px;
  color: var(--text);
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading.center h2 {
  margin: 0 auto;
}

.section-lead {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading.center .section-lead {
  margin: 0 auto;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.service-card-lg {
  grid-column: span 3;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 295px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.service-card:not(.service-card-lg) {
  grid-column: span 2;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-content: start;
  justify-content: space-between;
}

.service-card-lg .service-card-body {
  padding: 32px;
  gap: 18px;
  width: 280px;
}

.service-card-body-sm {
  padding: 0 24px 24px;
  gap: 8px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary-tint);
  border: 1px solid var(--border);
  color: var(--primary);
  margin-bottom: 4px;
}

.service-card h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card-body-sm h3 {
  font-size: 20px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--surface-muted);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  align-self: flex-start;
  margin-top: 4px;
  transition: color 0.18s ease, background 0.18s ease;
}

.text-link:hover {
  color: var(--primary);
  background: var(--primary-tint);
}

.text-link-arrow {
  display: inline-flex;
  color: currentColor;
}

.service-card-art {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}

.service-card:not(.service-card-lg) .service-card-art {
  margin: 24px 24px 16px;
  min-height: 180px;
  border-radius: 14px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
}

/* Card 1 - Website Dev: browser/window mockup */
.service-card-art-erp {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 38px 0 0 0;
  margin-right: -36px;
}

.mock-window {
  width: 100%;
  max-width: 363px;
  height: 280px;
  border-radius: 18px 0 0 0;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.mock-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #febc2e; }
.mock-dot-green { background: #28c840; }

.mock-url {
  flex: 1;
  height: 16px;
  margin-left: 12px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.mock-window-body {
  flex: 1;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.mock-window-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-window-lines span {
  height: 8px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-window-lines span:nth-child(1) { width: 100%; }
.mock-window-lines span:nth-child(2) { width: 92%; }
.mock-window-lines span:nth-child(3) { width: 70%; }

/* Card 2 - UI/UX Design: phone/dashboard mockup */
.service-card-art-ui {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 46px 16px 0 0;
}

.mock-phone {
  width: 100%;
  max-width: 262px;
  height: 280px;
  border-radius: 22px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  overflow: hidden;
}

.mock-phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary));
  flex-shrink: 0;
}

.mock-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock-lines span {
  height: 8px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-lines span:nth-child(1) { width: 48px; }
.mock-lines span:nth-child(2) { width: 95px; }

.mock-phone-content {
  height: 100px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 30px;
}

.mock-phone-content span {
  height: 6px;
  border-radius: 6px;
  background: #e6e6f0;
}

.mock-phone-content span:nth-child(1) { width: 34px; }
.mock-phone-content span:nth-child(2) { width: 100%; }
.mock-phone-content span:nth-child(3) { width: 60px; }

.mock-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mock-phone-grid span {
  aspect-ratio: 1;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

/* Card 3 - Social Marketing: orbiting social icons */
.service-card-art-social {
  display: grid;
  place-items: center;
  padding: 28px 0 12px;
  min-height: 220px;
}

.social-orbit {
  position: relative;
  width: 220px;
  height: 220px;
}

.orbit-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1.5px dashed rgba(102, 67, 246, 0.2);
}

.orbit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  margin: -65px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(173, 153, 255, 0.45) 0%, rgba(173, 153, 255, 0) 70%);
  filter: blur(10px);
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  margin: -39px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--primary-soft), var(--primary));
  border: 1.5px solid #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(102, 67, 246, 0.3);
}

.orbit-portrait {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #ffffff 0%, #ffffff 28%, transparent 30%),
    linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0.4) 100%);
  position: relative;
}

.orbit-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(10, 14, 42, 0.15);
}

.orbit-icon-x {
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0e2a;
}

.orbit-icon-pin {
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: #e60023;
}

.orbit-icon-discord {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: #5865f2;
}

.orbit-icon-fb {
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background: #1877f2;
}

/* Card 4 - Product Design: stacked logos */
.service-card-art-product {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-head {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-head-icon {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
}

.product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.product-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}

.product-icon-linear { background: linear-gradient(135deg, #ffd84c, #f2a93b); }
.product-icon-voda { background: #e60023; }
.product-icon-zen { background: #03363d; }

.product-row-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.product-row-title {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.product-row-sub {
  color: var(--text-dim);
  font-size: 10px;
}

/* Card 5 - Logo design & motions: tool grid */
.service-card-art-logo {
  display: grid;
  place-items: center;
  padding: 20px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 48px);
  grid-template-rows: repeat(2, 48px);
  gap: 14px;
}

.tool {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(10, 14, 42, 0.04);
}

.tool-red {
  background: linear-gradient(160deg, #ff5959, #c93434);
  border-color: rgba(255, 89, 89, 0.4);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 89, 89, 0.3);
}

.tool-pink {
  background: linear-gradient(160deg, #ff8ad8, #e14ee9);
  border-color: rgba(225, 78, 233, 0.4);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 78, 233, 0.35);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.stat-num {
  color: var(--text);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.how-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.how-work-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 24px;
}

.how-work-head h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.how-work-head p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.how-work-head .button {
  align-self: flex-start;
  margin-top: 4px;
}

.how-work-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.how-work-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-tint);
  color: var(--primary);
}

/* Why choose us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.why-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 4px;
}

.why-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Work / Portfolio */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
}

.work-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 12px 12px 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #f0ecff, #fafaff);
  border: 1px solid var(--border);
  overflow: hidden;
}

.work-thumb::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(102, 67, 246, 0.15), rgba(173, 153, 255, 0.08));
  border: 1px solid rgba(102, 67, 246, 0.1);
}

.work-thumb-1::before { background: linear-gradient(135deg, rgba(102, 67, 246, 0.18), rgba(173, 153, 255, 0.08)); }
.work-thumb-2::before { background: linear-gradient(135deg, rgba(173, 153, 255, 0.16), rgba(102, 67, 246, 0.08)); }
.work-thumb-3::before { background: linear-gradient(135deg, rgba(81, 124, 255, 0.14), rgba(102, 67, 246, 0.08)); }
.work-thumb-4::before { background: linear-gradient(135deg, rgba(102, 67, 246, 0.12), rgba(78, 53, 183, 0.12)); }
.work-thumb-5::before { background: linear-gradient(135deg, rgba(173, 153, 255, 0.12), rgba(102, 67, 246, 0.08)); }
.work-thumb-6::before { background: linear-gradient(135deg, rgba(225, 78, 233, 0.12), rgba(102, 67, 246, 0.08)); }

.work-thumb::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  width: 30px;
  height: 8px;
  border-radius: 4px;
  background: rgba(102, 67, 246, 0.25);
}

.work-meta {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-meta h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.work-meta p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.4;
}

.work-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.work-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: rotate(-45deg);
}

.work-foot {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Pricing */
.price-toggle {
  display: inline-flex;
  padding: 4px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

.price-toggle button {
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.price-toggle button.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(102, 67, 246, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-color: transparent;
  box-shadow: 0 24px 70px rgba(102, 67, 246, 0.35);
  color: #ffffff;
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-name {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.price-card-featured .plan-name {
  color: #ffffff;
}

.plan-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.price-card-featured .plan-pill {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.plan-tag {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.price-card-featured .plan-tag {
  color: rgba(255, 255, 255, 0.8);
}

.plan-price {
  color: var(--text);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-card-featured .plan-price {
  color: #ffffff;
}

.plan-cycle {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 400;
}

.price-card-featured .plan-cycle {
  color: rgba(255, 255, 255, 0.7);
}

.plan-price-custom {
  background: linear-gradient(97deg, var(--primary), var(--primary-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.plan-note {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.5;
}

.price-card-featured .plan-note {
  color: rgba(255, 255, 255, 0.7);
}

.plan-cta {
  width: 100%;
  margin-top: 4px;
  padding: 12px 16px;
  font-size: 15px;
}

.price-card-featured .plan-cta {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-card-featured .plan-cta:hover {
  background: #f4f4fa;
  color: var(--primary-deep);
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.price-card-featured .plan-list {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-card-featured .plan-list li {
  color: rgba(255, 255, 255, 0.92);
}

.plan-list li::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236643f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

.price-card-featured .plan-list li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* FAQ */
.faq {
  padding-bottom: 64px;
}

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 8px;
  text-align: left;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-toggle::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 240px;
}

.faq-a p {
  padding: 0 8px 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

/* Reviews */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.review-tag {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.review-quote {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #6643f6, #ad99ff); }
.avatar-2 { background: linear-gradient(135deg, #e14ee9, #6643f6); }
.avatar-3 { background: linear-gradient(135deg, #41c7d9, #6643f6); }
.avatar-4 { background: linear-gradient(135deg, #52c994, #6643f6); }

.review-author {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.review-role {
  color: var(--text-dim);
  font-size: 12px;
}

/* CTA */
.cta {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cta-head {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.cta-head h2 {
  max-width: 620px;
  font-size: 52px;
}

.cta-head p {
  grid-column: 1 / 2;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.cta-actions {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: end;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.cta-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.cta-step-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 4px;
}

.cta-step h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.cta-step p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 80px 24px 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, var(--bg-deep));
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 240px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.brand-footer .brand-name {
  font-size: 22px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-h {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-contact {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-h {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-watermark {
  position: relative;
  margin: 56px auto 24px;
  max-width: var(--max);
  font-size: 200px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(102, 67, 246, 0.12) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.footer-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1180px) {
  .site-header-inner {
    padding: 16px 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-lg,
  .service-card:not(.service-card-lg) {
    grid-column: span 1;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .site-header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 14px 20px;
  }

  .site-nav-left,
  .header-cta {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: none;
    padding: 16px 20px 24px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    background: #ffffff;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-nav a:hover {
    background: var(--surface-muted);
    color: var(--primary);
  }

  .mobile-nav-cta {
    margin-top: 12px;
    text-align: center;
    background: var(--primary);
    color: #fff !important;
    box-shadow: var(--button-glow);
  }

  .hero {
    padding: 40px 20px 80px;
  }

  .hero-inner {
    padding-top: 24px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.1;
  }

  .hero-logos {
    gap: 32px;
    margin-top: 56px;
  }

  .logo-item {
    font-size: 18px;
  }

  .section {
    padding: 64px 20px;
  }

  h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .how-work {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-work-head {
    padding-right: 0;
  }

  .cta-head {
    grid-template-columns: 1fr;
  }

  .cta-head h2 {
    font-size: 36px;
  }

  .cta-actions {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-watermark {
    font-size: 120px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-tagline {
    flex-direction: column;
    gap: 8px;
  }

  .services-grid,
  .why-grid,
  .work-grid,
  .pricing-grid,
  .reviews-track,
  .cta-steps {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-num {
    font-size: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-watermark {
    font-size: 80px;
  }

  .price-card {
    padding: 24px;
  }

  .plan-price {
    font-size: 32px;
  }

  .button {
    font-size: 16px;
    padding: 12px 18px;
  }
}
