/* ================================================
   ARTISTICMIND v4 — Light, Elegant, Refined
   Clean sans-serif, warm neutrals, deep navy accent
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #faf9f7;
  --bg-white: #ffffff;
  --bg-warm: #f4f2ef;
  --bg-accent: #f0eeeb;
  --surface: #1a1a2e;
  --surface-hover: #252542;
  --border: #e5e2dd;
  --border-light: #eceae6;
  --text: #1a1a2e;
  --text-secondary: #6b6b7b;
  --text-muted: #656569;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
em { font-style: italic; }

::selection {
  background: rgba(26, 26, 46, 0.08);
}

:focus-visible {
  outline: 2px solid var(--surface);
  outline-offset: 2px;
}

/* Global topo background */
.global-topo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--surface);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

section, footer, .trusted {
  position: relative;
  z-index: 1;
}

/* ================================================
   LOADER
   ================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease 0.2s, visibility 0.6s ease 0.2s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader__brand {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}

.loader__bar {
  width: 120px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0;
  background: var(--surface);
  border-radius: 2px;
  animation: fillBar 1.4s var(--ease-smooth) 0.4s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fillBar { to { width: 100%; } }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease);
}

.nav--scrolled {
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__mark {
  width: 32px;
  height: 32px;
}

.nav__logo span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link:hover { color: var(--text); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--surface);
  padding: 10px 24px;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
}

.nav__cta:hover {
  background: var(--surface-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.15);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.nav__toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.mobile-menu.active { opacity: 1; visibility: visible; pointer-events: all; }

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn--dark {
  background: var(--surface);
  color: #fff;
}

.btn--dark:hover {
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ================================================
   SECTION HELPERS
   ================================================ */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.section-head {
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 64px) 80px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
}

.hero__content {
  width: 100%;
}



.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  margin-left: -0.04em;
}

.hero__title em {
  color: var(--text-secondary);
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 36px;
}

.hero__subtitle strong {
  font-weight: 600;
  color: var(--text);
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

/* Hero metrics */
.hero__metrics {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__metric {
  font-size: 13px;
  color: var(--text-secondary);
}

.hero__metric span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__metric-sep {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Scroll CTA */
.hero__scroll-cta {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.hero__scroll-cta:hover {
  color: var(--text);
}

.hero__scroll-cta span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Trusted (inside hero) */
.hero__trusted {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

.hero__trusted-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.hero__trusted-logos {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(20px, 3vw, 36px);
}

.trusted__logo-img {
  height: 36px;
  width: auto;
  opacity: 0.45;
  transition: opacity 0.4s ease;
  filter: grayscale(100%);
}

.trusted__logo-img:hover {
  opacity: 0.7;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
}

.service:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.service--accent {
  background: var(--bg-warm);
  color: var(--text);
  border-color: var(--border);
}

.service--accent .service__num { color: var(--text-muted); }
.service--accent .service__desc { color: var(--text-secondary); }
.service--accent:hover { border-color: var(--border); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }

.service__badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.service__num {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.service__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ================================================
   APPROACH
   ================================================ */
.approach {
  padding: 120px 0;
  background: rgba(244, 242, 239, 0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.approach__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.approach__title em {
  color: var(--text-secondary);
}

.approach__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.approach__card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 12px;
  transition: all 0.35s var(--ease);
}

.approach__card:hover {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.approach__card-num {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.approach__card h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.approach__card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================
   WORK
   ================================================ */
.work {
  padding: 120px 0;
  background: var(--bg);
}

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

.work__card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.work__card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.05);
}

.work__card--wide { grid-column: span 2; }

.work__visual {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.work__card--wide .work__visual { min-height: 320px; }

/* Device mockups */
.work__device {
  width: 320px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease);
}

.work__device--sm { width: 240px; }

.work__card:hover .work__device,
.work__card:hover .work__phone {
  transform: translateY(-6px);
}

.work__device-bar {
  display: flex;
  gap: 5px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.work__device-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}

.work__device-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.work__phone {
  width: 160px;
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease);
}

.work__phone-notch {
  width: 60px;
  height: 16px;
  background: rgba(0,0,0,0.06);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}

.work__phone-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.work__ui-line {
  border-radius: 4px;
  background: rgba(0,0,0,0.06);
}

.work__ui-block {
  flex: 1;
  border-radius: 8px;
  min-height: 80px;
}

.work__ui-row { display: flex; gap: 8px; }

.work__ui-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: var(--surface);
  color: #fff;
}

.work__ui-pill--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(0,0,0,0.1);
}

.work__ui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.work__ui-grid > div {
  border-radius: 6px;
  background: rgba(0,0,0,0.04);
  min-height: 40px;
}

.work__ui-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  margin: 8px auto;
}

.work__ui-chart { margin: 4px 0; }
.work__ui-chart svg { width: 100%; height: 50px; }

.work__info {
  padding: 28px 32px;
}

.work__info-top { margin-bottom: 12px; }

.work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.work__tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
}

.work__info h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.work__info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.work__stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work__stat-val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.work__stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ================================================
   PROCESS
   ================================================ */
.process {
  padding: 120px 0;
  background: rgba(244, 242, 239, 0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.process__list {
  display: flex;
  flex-direction: column;
}

.process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.process__step:first-child { border-top: 1px solid var(--border); }

.process__step:hover { transform: translateX(12px); }

.process__step-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 2px;
}

.process__step-body h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.process__step-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
  padding: 120px 0;
  background: var(--bg);
}

.pricing__toggle {
  display: inline-flex;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 40px;
}

.pricing__tab {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.pricing__tab--active {
  background: var(--surface);
  color: #fff;
}

.pricing__group { display: none; }
.pricing__group--active { display: block; }

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s var(--ease);
}

.p-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.04);
}

.p-card--featured {
  border-color: var(--surface);
  box-shadow: 0 4px 16px rgba(26,26,46,0.08);
}

.p-card__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.p-card__head { margin-bottom: 24px; }

.p-card__head h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.p-card__head p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.p-card__price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.p-card__price span {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
}

.p-card__price small {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.p-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.p-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}

.p-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
}

.p-card--featured li::before {
  border-color: var(--surface);
  background: var(--surface);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials {
  padding: 120px 0;
  background: rgba(244, 242, 239, 0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.t-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}

.t-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
}

.t-card blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  flex: 1;
}

.t-card blockquote em { color: var(--text); font-weight: 600; }

.t-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.t-card__footer strong {
  display: block;
  font-size: 14px;
  margin-bottom: 1px;
}

.t-card__footer > div:first-child span {
  font-size: 12px;
  color: var(--text-muted);
}

.t-card__metric {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

.t-card__metric span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

/* ================================================
   ABOUT
   ================================================ */
.about {
  padding: 120px 0;
  background: var(--bg);
}

.about__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.about__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.about__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__text em { color: var(--text); font-weight: 500; }

.about__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  margin-top: 16px;
  border-top: 1px solid var(--border-light);
}

.about__stat span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about__stat small {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.team {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}

.team:hover {
  border-color: var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.team__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.team__info strong {
  display: block;
  font-size: 15px;
}

.team__info > span {
  font-size: 12px;
  color: var(--text-muted);
}

.team__info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ================================================
   CONTACT
   ================================================ */
.contact {
  padding: 120px 0;
  background: rgba(244, 242, 239, 0.7);
  border-top: 1px solid var(--border-light);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
}

.contact__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.contact__title em { color: var(--text-secondary); }

.contact__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact__email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 4px;
}

.contact__email::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--border);
  transition: background 0.3s ease;
}

.contact__email:hover::after { background: var(--text); }


.form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px;
}

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

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--text-muted);
}

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.3s ease;
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-muted);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--surface);
}

.form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23a0a0ab' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  cursor: pointer;
}

.form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.form__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer__col a:hover { color: var(--text); }

.footer__note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.footer__bottom p { font-size: 12px; color: var(--text-muted); }

.footer__bottom div { display: flex; gap: 20px; }

.footer__bottom a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__bottom a:hover { color: var(--text-secondary); }

/* ================================================
   FAQ
   ================================================ */
.faq {
  padding: 120px 0;
  background: rgba(244, 242, 239, 0.7);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq__list {
  max-width: 780px;
}

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

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--text-secondary);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  color: var(--text-muted);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ================================================
   WORK CARD INTERACTIVE
   ================================================ */
.work__card[onclick] {
  cursor: pointer;
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: none;
  background: var(--bg-white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.scroll-top__glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: var(--surface);
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.scroll-top:hover .scroll-top__glow {
  opacity: 0.12;
}

.scroll-top__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-top__progress {
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top__arrow {
  position: relative;
  z-index: 1;
  color: var(--text);
}

/* ================================================
   CASE STUDY OVERLAY
   ================================================ */
.case-study {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--bg);
  overflow-y: auto;
  display: none;
}

.case-study.active {
  display: block;
  animation: csSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes csSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.case-study__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2001;
  padding: 20px clamp(20px, 4vw, 64px);
}

.case-study__back {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.case-study__back:hover {
  background: var(--bg-white);
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.case-study__hero {
  padding: 140px 0 80px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.case-study__hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 16px;
}

.case-study__tags {
  display: flex;
  gap: 8px;
}

.case-study__tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 100px;
}

.case-study__body {
  padding: 64px 0 120px;
  max-width: 720px;
}

.case-study__stat-row {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.case-study__stat span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.case-study__stat small {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.case-study__body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  margin-top: 48px;
}

.case-study__body h2:first-of-type {
  margin-top: 0;
}

.case-study__body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ================================================
   ANIMATIONS
   ================================================ */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Form validation states */
.form__group input:invalid:not(:placeholder-shown),
.form__group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc2626;
}

.form__group input:valid:not(:placeholder-shown) {
  border-color: #16a34a;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .approach__grid, .about__split, .contact__split { grid-template-columns: 1fr; gap: 48px; }
  .pricing__cards { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards .p-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .t-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { min-height: auto; padding-top: 120px; padding-bottom: 100px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll-cta { display: none; }
  .hero__metrics { flex-direction: column; gap: 16px; }
  .hero__metric-sep { width: 48px; height: 1px; }
  .trusted__logo-img { height: 20px; }
  .hero__trusted-logos { flex-wrap: wrap; gap: 16px; }
  .case-study__stat-row { flex-direction: column; gap: 20px; }
  .scroll-top { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr; }
  .work__card--wide { grid-column: span 1; }
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__cards .p-card:last-child { grid-column: span 1; max-width: 100%; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .t-card:last-child { grid-column: span 1; max-width: 100%; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > :first-child { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .about__stats { flex-direction: column; gap: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__top > :first-child { grid-column: span 1; }
}
