:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f4f5f8;
  --ink: #12131a;
  --ink-soft: #535563;
  --ink-faint: #8b8e9d;
  --border: #e8e9ef;
  --border-strong: #d8dae4;
  --pink: #ff1674;
  --pink-deep: #ef0f6c;
  --cyan: #13d7ff;
  --blue: #0a2f82;
  --dark: #0d0f17;
  --dark-soft: #161926;
  --dark-panel: #11131d;
  --dark-border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 48px rgba(15, 22, 42, 0.08);
  --shadow-soft: 0 14px 30px rgba(15, 22, 42, 0.06);
  --bg-alt: #f5f7ff;
  --surface-soft: #ffffff;
  --surface-border: rgba(15, 22, 42, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-medium: 260ms;
  --duration-slow: 420ms;
  --shadow-card-hover: 0 24px 54px rgba(15, 22, 42, 0.12);
  --shadow-premium: 0 18px 40px rgba(15, 22, 42, 0.07);
  --shadow-premium-hover: 0 28px 64px rgba(15, 22, 42, 0.14);
  --card-highlight: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 22, 116, 0.08) 42%, rgba(19, 215, 255, 0.1));
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-section: "Outfit", system-ui, sans-serif;
}

.services-premium-hero-section {
  padding-top: 0;
}

.services-premium-hero-shell,
.services-benefits-shell,
.services-premium-cta-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.services-premium-hero-shell {
  --mx: 72%;
  --my: 34%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 45, 131, 0.08), transparent 14%),
    radial-gradient(circle at 86% 18%, rgba(22, 136, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border-bottom: 1px solid rgba(18, 19, 26, 0.06);
  color: var(--ink);
}

.services-premium-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.3)),
    linear-gradient(90deg, rgba(255, 22, 116, 0.02), rgba(19, 215, 255, 0.02));
  pointer-events: none;
}

.services-premium-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: 24px;
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  min-height: 352px;
  padding: 24px 6px 18px;
}

.services-premium-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 0;
}

.services-premium-copy h1 {
  max-width: 520px;
  margin-bottom: 12px;
  font-family: var(--font-ui);
  font-size: clamp(1.78rem, 3vw, 2.78rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.services-rainbow-text,
.services-rainbow-word {
  background: linear-gradient(90deg, #ffc109 0%, #ff2d83 42%, #7e35ff 68%, #1688ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-premium-copy p {
  max-width: 540px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.services-premium-actions {
  margin-bottom: 18px;
}

.services-premium-visual {
  position: relative;
  min-height: 250px;
}

.services-premium-image-wrap {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
}

.services-premium-image-wrap img,
.services-catalog-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform var(--duration-medium) var(--ease-standard), filter var(--duration-medium) var(--ease-standard);
}

.services-catalog-card:hover .services-catalog-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.services-premium-image-wrap {
  inset: 4px 18px 4px 52px;
  background: transparent;
}

.services-catalog-section {
  padding-top: 28px;
}

.services-catalog-heading {
  max-width: 880px;
  margin: 0 auto 22px;
}

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

.services-catalog-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), background var(--duration-medium) var(--ease-standard);
}

.services-catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--card-highlight);
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-standard);
}

.services-catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 22, 116, 0.18);
  box-shadow: var(--shadow-premium-hover);
}

.services-catalog-card:hover::before {
  opacity: 1;
}

.services-catalog-media {
  height: 210px;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
}

.services-catalog-body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: 20px 20px 22px;
}

.services-catalog-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.services-catalog-body p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.72;
}

.services-catalog-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease-standard), gap var(--duration-fast) var(--ease-standard);
}

.services-catalog-card:hover .services-catalog-body a {
  gap: 11px;
  color: var(--pink-deep);
}

.services-benefits-section {
  padding-top: 22px;
}

.services-benefits-shell {
  background: linear-gradient(135deg, #06070b 0%, #0b0c12 100%);
  color: #ffffff;
}

.services-benefits-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  width: min(1240px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 34px 6px 36px;
}

.services-benefits-copy h2 {
  margin-bottom: 14px;
  color: #ffffff;
}

.services-benefits-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.services-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.services-benefit-card {
  min-height: 180px;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--duration-medium) var(--ease-standard), transform var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard);
}

.services-benefit-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.18);
}

.services-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.services-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.services-benefit-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.services-benefit-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.services-process-section {
  padding-top: 34px;
}

.services-process-blue {
  color: #1688ff;
}

.services-process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 24px;
}

.services-process-step {
  text-align: center;
}

.services-process-badge {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.services-process-step h3 {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.services-process-step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.services-process-arrow {
  align-self: center;
  margin-top: -44px;
  color: rgba(18, 19, 26, 0.38);
  font-size: 1.7rem;
  font-weight: 700;
}

.services-industries-section {
  padding-top: 24px;
}

.services-industries-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.services-industry {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard);
}

.services-industry:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 22, 116, 0.24);
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 22, 42, 0.08);
}

.services-industry span {
  font-size: 0.9rem;
  font-weight: 600;
}

.services-premium-cta-section {
  padding-top: 26px;
}

.services-premium-cta-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - 1240px) / 2 + 6px)) 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 50%, rgba(104, 31, 228, 0.36), transparent 18%),
    radial-gradient(circle at 88% 22%, rgba(255, 15, 124, 0.26), transparent 16%),
    linear-gradient(135deg, #0a0b11 0%, #0d0f17 100%);
  color: #ffffff;
}

.services-premium-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.services-premium-cta-copy h2 {
  margin-bottom: 10px;
  color: #ffffff;
}

.services-premium-cta-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.services-premium-cta-button {
  position: relative;
  z-index: 1;
  min-width: 214px;
}

.services-premium-rocket {
  position: absolute;
  right: 30px;
  bottom: -22px;
  width: 160px;
  height: 220px;
  pointer-events: none;
  opacity: 0.88;
}

.services-premium-rocket::before,
.services-premium-rocket::after,
.services-premium-rocket span {
  content: "";
  position: absolute;
}

.services-premium-rocket::before {
  right: 24px;
  bottom: 34px;
  width: 64px;
  height: 142px;
  border: 3px solid #0fa7ff;
  border-radius: 34px 34px 18px 18px;
  transform: rotate(28deg);
  box-shadow: 0 0 22px rgba(15, 167, 255, 0.24);
}

.services-premium-rocket::after {
  right: 6px;
  bottom: 18px;
  width: 128px;
  height: 56px;
  background: radial-gradient(circle, rgba(255, 27, 125, 0.8), rgba(125, 35, 255, 0.36), transparent 66%);
  filter: blur(8px);
  transform: rotate(18deg);
}

.services-premium-rocket span {
  right: 54px;
  bottom: 112px;
  width: 20px;
  height: 20px;
  border: 3px solid #0fa7ff;
  border-radius: 50%;
  transform: rotate(28deg);
}

@media (max-width: 1180px) {
  .services-premium-hero,
  .services-benefits-layout {
    width: min(1180px, calc(100vw - 24px));
  }

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

  .services-industries-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-process-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .services-process-arrow {
    display: none;
  }
}

@media (max-width: 960px) {
  .services-premium-hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 22px 0 20px;
  }

  .services-premium-visual {
    min-height: 286px;
  }

  .services-premium-image-wrap {
    inset: 0 8px 0 30px;
    border-radius: 22px;
  }

  .services-catalog-grid,
  .services-benefits-grid,
  .services-process-flow,
  .services-industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-benefits-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0 30px;
  }

  .services-premium-copy h1 {
    font-size: 2.36rem;
  }

  .services-benefit-card {
    min-height: 0;
  }

  .services-premium-cta-shell {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 28px;
    padding-bottom: 120px;
  }

  .services-premium-rocket {
    right: -10px;
    bottom: -34px;
    transform: scale(0.84);
    transform-origin: bottom right;
  }
}

@media (max-width: 680px) {
  .services-premium-hero {
    width: min(100vw - 20px, 1180px);
    gap: 16px;
    padding: 18px 0 16px;
  }

  .services-premium-copy h1 {
    font-size: 1.92rem;
  }

  .services-premium-copy p {
    font-size: 0.92rem;
  }

  .services-catalog-grid,
  .services-benefits-grid,
  .services-process-flow,
  .services-industries-grid {
    grid-template-columns: 1fr;
  }

  .services-catalog-media {
    height: 208px;
  }

  .services-benefits-layout {
    width: min(100vw - 20px, 1180px);
    padding: 24px 0 26px;
  }

  .services-premium-visual {
    min-height: 214px;
  }

  .services-premium-image-wrap {
    inset: 0 0 0 10px;
  }

  .services-premium-cta-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-premium-cta-button {
    width: 100%;
    justify-content: center;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  border-top: 14px solid #0c0d12;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
.brand-link,
.btn,
.section-kicker {
  font-family: var(--font-display);
}

body.menu-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  background: none;
  border: 0;
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(232, 233, 239, 0.88);
  backdrop-filter: blur(12px);
  transition: background var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), backdrop-filter var(--duration-medium) var(--ease-standard);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(216, 218, 228, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(15, 22, 42, 0.1);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 78px;
}

.brand-link {
  position: static;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
}

.brand-link.brand-footer {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  align-items: flex-start;
}

.brand-logo-footer {
  height: 66px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  transition: color var(--duration-fast) var(--ease-standard);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
  border-radius: 999px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.34) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-standard);
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff1b7a 0%, #f08bb9 45%, #ef0f6c 100%);
  box-shadow: 0 18px 34px rgba(255, 22, 116, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(255, 22, 116, 0.32);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-light {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--border);
}

.btn-light:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-block {
  width: 100%;
}

.button-arrow,
.link-arrow {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--duration-fast) var(--ease-standard);
}

.btn:hover .button-arrow,
.text-link:hover .link-arrow,
.services-catalog-body a:hover span {
  transform: translateX(4px);
}

main {
  display: block;
}

.section {
  padding: clamp(44px, 6vw, 72px) 0;
  background: var(--surface-soft);
}

.page-section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.home-hero-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 46px 0 58px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 22, 116, 0.1), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(19, 215, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #f6f8ff 0%, #edf1fb 100%);
}

.full-bleed-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-heading {
  margin-bottom: 28px;
  position: relative;
  max-width: 700px;
  padding-bottom: 14px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  opacity: 0.92;
}

.page-intro {
  max-width: 680px;
  color: var(--ink-soft);
}

.photo-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f7f8fb 0%, #eef1f6 100%);
  border: 1px solid rgba(18, 19, 26, 0.06);
  border-radius: 24px;
  box-shadow: 0 20px 42px rgba(15, 22, 42, 0.08);
}

.photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.8), transparent 28%);
  pointer-events: none;
  z-index: 1;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, rgba(6, 8, 12, 0.12));
  pointer-events: none;
  z-index: 2;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 14px;
  transition: transform var(--duration-medium) var(--ease-standard), filter var(--duration-medium) var(--ease-standard);
}

.photo-panel:hover img {
  transform: scale(1.045);
  filter: saturate(1.03) contrast(1.02);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2,
.section-heading h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-copy h1,
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-heading h2,
.page-title {
  font-size: clamp(1.36rem, 2.4vw, 1.92rem);
}

.page-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
}

.section-heading p,
.hero-copy p,
.page-intro,
.card-copy,
.footer-note,
.text-muted {
  color: var(--ink-soft);
  line-height: 1.78;
}

.highlight-pink {
  color: var(--pink);
}

.highlight-cyan {
  color: var(--cyan);
}

.surface-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), background var(--duration-medium) var(--ease-standard);
}

.surface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--card-highlight);
  opacity: 0;
  transition: opacity var(--duration-medium) var(--ease-standard);
}

.surface-card > * {
  position: relative;
  z-index: 1;
}

.surface-card-dark {
  background: var(--dark-panel);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
}

.home-hero .hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(135deg, #10131d 0%, #0c0d13 44%, #10192a 100%);
  border-radius: 32px;
  box-shadow: 0 38px 90px rgba(9, 14, 28, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 500px;
}

.hero-copy {
  padding: 58px 52px;
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.services-hero-section {
  padding-top: 0;
}

.services-hero-shell,
.services-stats-shell,
.services-cta-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  min-height: 460px;
  padding: 42px 54px 34px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(135deg, #07080d 0%, #0d0e15 48%, #0d131d 100%);
  color: #ffffff;
  overflow: hidden;
}

.services-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.services-hero-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.3vw, 3rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.services-gradient-text {
  background: linear-gradient(90deg, #ffc100 0%, #ff25a5 46%, #197fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-hero-copy p {
  max-width: 430px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.services-hero-art {
  position: relative;
  min-height: 384px;
}

.services-hero-photo {
  height: 100%;
  min-height: 384px;
  border-radius: 22px;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.28);
}

.services-brand-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.scene-curve {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.2px);
}

.scene-pink {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -110px;
  border: 56px solid #ff0f7c;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(14deg);
}

.scene-gold {
  width: 420px;
  height: 420px;
  right: -136px;
  bottom: -170px;
  border: 52px solid #ffbf14;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(18deg);
}

.scene-blue {
  width: 470px;
  height: 470px;
  right: -168px;
  bottom: -206px;
  border: 54px solid #1098ff;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(20deg);
}

.scene-mug,
.scene-card,
.scene-folder,
.scene-pen {
  position: absolute;
  background: linear-gradient(145deg, #191a20 0%, #0f1015 100%);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
}

.scene-mug {
  top: 74px;
  left: 64px;
  width: 116px;
  height: 152px;
  border-radius: 12px 12px 22px 22px;
}

.scene-mug::before {
  content: "";
  position: absolute;
  inset: -12px 18px auto 18px;
  height: 18px;
  border-radius: 50%;
  background: #06070b;
  border: 3px solid rgba(255, 255, 255, 0.22);
}

.scene-mug::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 36px;
  width: 34px;
  height: 68px;
  border: 8px solid #16181f;
  border-left: 0;
  border-radius: 0 22px 22px 0;
}

.scene-logo-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(#101118, #101118) padding-box,
    conic-gradient(from 160deg, #ff0f7c 0deg, #ffbf14 126deg, #1098ff 280deg, #ff0f7c 360deg) border-box;
  border: 6px solid transparent;
}

.scene-logo-ring::before {
  content: "360";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.scene-card {
  width: 118px;
  height: 68px;
  border-radius: 8px;
}

.scene-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 15, 124, 0.9), rgba(16, 152, 255, 0.9));
}

.scene-card-top {
  left: 192px;
  top: 156px;
  transform: rotate(-8deg);
}

.scene-card-bottom {
  left: 168px;
  top: 222px;
  transform: rotate(10deg);
}

.scene-folder {
  right: 72px;
  top: 42px;
  width: 318px;
  height: 234px;
  border-radius: 12px;
  transform: rotate(14deg);
}

.scene-folder::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34px;
  background: linear-gradient(90deg, #15161b 0%, #15161b 56%, #ff0f7c 56%, #ff0f7c 78%, #ffbf14 78%, #ffbf14 88%, #1098ff 88%, #1098ff 100%);
}

.scene-folder-mark {
  position: absolute;
  left: 44px;
  top: 72px;
  width: 164px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-folder-mark::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    linear-gradient(#101118, #101118) padding-box,
    conic-gradient(from 160deg, #ff0f7c 0deg, #ffbf14 126deg, #1098ff 280deg, #ff0f7c 360deg) border-box;
  border: 4px solid transparent;
}

.scene-folder-mark::after {
  content: "";
  position: absolute;
  left: 62px;
  right: 14px;
  top: 16px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.24);
}

.scene-pen {
  right: 48px;
  bottom: 38px;
  width: 16px;
  height: 162px;
  border-radius: 12px;
  transform: rotate(26deg);
  background: linear-gradient(180deg, #0f1015 0%, #1c1f2a 20%, #15161b 44%, #0f1015 100%);
}

.scene-pen::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 18px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff0f7c 0%, #ffbf14 50%, #1098ff 100%);
}

.scene-pen::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: -18px;
  height: 24px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #0d0f15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-art-photo {
  background: linear-gradient(135deg, #090b12 0%, #111723 100%);
}

.hero-art-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
}

.hero-art::before {
  width: 340px;
  height: 340px;
  top: 54px;
  right: 112px;
  background: rgba(255, 22, 116, 0.28);
}

.hero-art::after {
  width: 260px;
  height: 260px;
  right: 46px;
  bottom: 54px;
  background: rgba(19, 215, 255, 0.24);
}

.ring-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 22, 116, 0.18), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(19, 215, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, rgba(255, 22, 116, 0.1), transparent 30%),
    linear-gradient(180deg, transparent 55%, rgba(255, 255, 255, 0.06) 56%, transparent 57%),
    linear-gradient(135deg, #090a10 0%, #101426 100%);
}

.ring-scene::before,
.ring-scene::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.ring-scene::before {
  width: 470px;
  height: 470px;
  border: 9px solid transparent;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.02),
    0 0 38px rgba(255, 22, 116, 0.48),
    0 0 70px rgba(19, 215, 255, 0.3),
    inset 0 0 38px rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(#101426, #101426) padding-box,
    conic-gradient(from 180deg, #ff1674 0deg, rgba(255, 22, 116, 0.3) 110deg, #13d7ff 236deg, rgba(19, 215, 255, 0.35) 320deg, #ff1674 360deg) border-box;
  -webkit-mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.ring-scene::after {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 44px rgba(255, 255, 255, 0.03);
}

.brand-core {
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand-core strong {
  display: block;
  font-size: clamp(4.3rem, 9vw, 5.8rem);
  letter-spacing: -0.08em;
  color: #ff7089;
  text-shadow: 0 16px 26px rgba(255, 112, 137, 0.24);
}

.brand-core span {
  display: block;
  margin-top: -10px;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 22px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  transition: transform var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard), background var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: #ffffff;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon-wrap,
.service-icon-wrap,
.info-icon-wrap,
.social-link,
.circle-button,
.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrap,
.service-icon-wrap,
.info-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 22, 116, 0.08);
}

.stat-icon-wrap svg,
.service-icon-wrap svg,
.info-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.9;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #11131a;
}

.stat-label {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.home-hero-feature-band {
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(18, 19, 26, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  box-shadow: 0 24px 54px rgba(15, 22, 42, 0.07);
}

.home-hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-hero-feature {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  border-radius: 20px;
  background: rgba(15, 22, 42, 0.02);
}

.home-hero-feature strong {
  font-size: 1rem;
  line-height: 1.34;
  color: var(--ink);
}

.home-hero-feature p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

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

.section-heading.section-center::after,
.section-center .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-center .section-heading p {
  max-width: 600px;
  margin: 12px auto 0;
}

.home-services-shell {
  position: relative;
}

.home-services-head {
  position: relative;
  min-height: 216px;
  margin-bottom: 24px;
  overflow: hidden;
}

.home-services-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.home-services-copy h2 {
  font-size: clamp(1.96rem, 4.2vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-services-copy p {
  max-width: 520px;
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.74;
  color: var(--ink-soft);
}

.home-services-line {
  width: 58px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--pink);
}

.home-services-accent {
  position: absolute;
  right: -210px;
  top: -120px;
  width: 520px;
  height: 340px;
  pointer-events: none;
}

.home-services-accent span {
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border-style: solid;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.home-services-accent .accent-pink {
  width: 100%;
  height: 100%;
  border-width: 36px;
  border-color: #f00773;
}

.home-services-accent .accent-gold {
  width: 88%;
  height: 88%;
  border-width: 31px;
  border-color: #ffbc15;
}

.home-services-accent .accent-blue {
  width: 76%;
  height: 76%;
  border-width: 26px;
  border-color: #197fff;
}

.home-services-accent .accent-black {
  width: 64%;
  height: 64%;
  border-width: 24px;
  border-color: #090a10;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 272px;
  padding: 22px 22px 22px;
}

.home-service-card:hover,
.fit-card:hover,
.principle-card:hover,
.process-card:hover,
.proof-metric:hover,
.info-card:hover,
.contact-side-card:hover,
.contact-direct-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 22, 116, 0.16);
  box-shadow: var(--shadow-premium-hover);
}

.surface-card:hover::before,
.home-service-card:hover::before,
.fit-card:hover::before,
.principle-card:hover::before,
.process-card:hover::before,
.proof-metric:hover::before,
.info-card:hover::before,
.contact-side-card:hover::before,
.contact-direct-card:hover::before {
  opacity: 1;
}

.home-service-card .service-icon-wrap {
  width: 72px;
  height: 72px;
  margin-bottom: 4px;
  color: currentColor;
  background: currentColor;
  background: color-mix(in srgb, currentColor 12%, white);
}

.home-service-card h3 {
  max-width: 250px;
  font-size: 1.02rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.home-service-card p {
  min-height: 74px;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.home-service-rule {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.home-service-list {
  display: grid;
  gap: 7px;
  margin-top: auto;
  list-style: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.home-service-list li {
  position: relative;
  padding-left: 16px;
}

.home-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.home-service-card.service-pink {
  color: #f00773;
}

.home-service-card.service-gold {
  color: #ffb400;
}

.home-service-card.service-blue {
  color: #2f7cf5;
}

.home-service-card.service-blue-deep {
  color: #1667e8;
}

.home-service-card.service-purple {
  color: #7a31f6;
}

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

.service-card {
  padding: 30px 24px 26px;
  text-align: center;
}

.service-card .service-icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, rgba(255, 22, 116, 0.08), rgba(19, 215, 255, 0.08));
}

.service-tone-pink {
  color: #ff1781;
}

.service-tone-gold {
  color: #ffbf14;
}

.service-tone-cyan {
  color: #17c7ff;
}

.service-tone-purple {
  color: #7a34ff;
}

.service-tone-blue {
  color: #14b8ff;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.service-card p {
  min-height: 72px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.proof-copy {
  padding: 8px 0;
}

.proof-copy .section-heading p {
  max-width: 640px;
  margin-top: 12px;
}

.proof-list {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.proof-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.proof-bullet {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--pink) 0 45%, rgba(255, 22, 116, 0.16) 46% 100%);
}

.proof-item h3,
.process-card h3,
.insight-body h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.proof-item p,
.process-card p,
.insight-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.proof-metric {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  padding: 22px 20px;
}

.proof-metric strong {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.proof-metric span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.fit-grid,
.manifesto-shell,
.principles-grid {
  display: grid;
  gap: 18px;
}

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

.fit-card,
.principle-card {
  padding: 24px 22px;
}

.fit-card h3,
.manifesto-panel h2,
.principle-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.fit-card p,
.manifesto-panel p,
.principle-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.manifesto-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
}

.portfolio-featured-visual {
  min-height: 320px;
  height: 100%;
  border-radius: 0;
}

.portfolio-featured-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px 32px;
}

.portfolio-featured-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.portfolio-featured-copy p {
  color: var(--ink-soft);
}

.portfolio-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-deliverables span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 22, 116, 0.16);
  border-radius: 999px;
  background: rgba(255, 22, 116, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.portfolio-results {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.portfolio-results strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

.portfolio-results p {
  color: var(--ink-soft);
}

.manifesto-panel {
  padding: 26px 24px;
}

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

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

.process-card {
  min-height: 210px;
  padding: 26px 22px;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 22, 116, 0.12), rgba(19, 215, 255, 0.12));
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 600;
}

.services-offerings-section {
  padding-top: 28px;
}

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

.service-offering-card {
  padding: 28px 18px 22px;
  text-align: center;
}

.service-offering-card .service-icon-wrap {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 248, 251, 1));
}

.service-offering-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-offering-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.services-offerings-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

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

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
  gap: 0;
  overflow: hidden;
}

.service-detail-media {
  min-height: 280px;
}

.service-detail-body {
  display: grid;
  gap: 14px;
  padding: 24px 22px 24px;
}

.service-detail-body h3 {
  font-size: 1.38rem;
  letter-spacing: -0.04em;
}

.service-detail-body p {
  color: var(--ink-soft);
}

.service-detail-list {
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-detail-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.services-outline-btn {
  border-color: rgba(255, 22, 116, 0.22);
  box-shadow: none;
}

.services-catalog-body a,
.text-link {
  transition: color var(--duration-fast) var(--ease-standard);
}

.services-catalog-body a:hover,
.text-link:hover {
  color: var(--ink);
}

.featured-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: #0c0f16;
  border-radius: 0;
  color: #ffffff;
}

.insights-shell {
  border-radius: var(--radius-lg);
}

.insights-head {
  padding: 0 0 24px;
}

.insights-link {
  color: var(--ink);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  overflow: hidden;
}

.insight-card .thumb-visual {
  height: 196px;
}

.insight-card .photo-panel {
  height: 196px;
}

.insight-body {
  padding: 20px 18px 22px;
}

.insight-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 28px 0;
}

.featured-header h2 {
  margin-top: 8px;
  font-size: 2.2rem;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 28px 30px;
}

.thumb-card {
  overflow: hidden;
  background: #171b27;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.thumb-visual {
  position: relative;
  height: 166px;
  overflow: hidden;
}

.thumb-visual::before,
.thumb-visual::after {
  content: "";
  position: absolute;
}

.thumb-visual::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 35%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.38) 100%);
}

.thumb-visual::after {
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 28px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 56%);
  border-radius: 6px;
}

.bg-fintech {
  background:
    linear-gradient(0deg, rgba(14, 17, 27, 0.18), rgba(14, 17, 27, 0.18)),
    linear-gradient(135deg, #0a2540 0%, #1e3a8a 40%, #ff1674 100%);
}

.bg-sunset {
  background:
    linear-gradient(0deg, rgba(16, 16, 16, 0.2), rgba(16, 16, 16, 0.2)),
    linear-gradient(135deg, #0c1527 0%, #233f88 46%, #ff9d2e 100%);
}

.bg-cafe {
  background:
    linear-gradient(0deg, rgba(29, 20, 14, 0.22), rgba(29, 20, 14, 0.22)),
    linear-gradient(135deg, #44271a 0%, #b96f35 40%, #ffe2ae 100%);
}

.bg-dashboard {
  background:
    linear-gradient(0deg, rgba(10, 14, 18, 0.18), rgba(10, 14, 18, 0.18)),
    linear-gradient(135deg, #101d35 0%, #2443a8 42%, #10d1ff 100%);
}

.bg-brochure {
  background:
    linear-gradient(0deg, rgba(12, 14, 18, 0.1), rgba(12, 14, 18, 0.1)),
    linear-gradient(135deg, #1e2432 0%, #49506b 42%, #f7c294 100%);
}

.bg-poster {
  background:
    linear-gradient(0deg, rgba(12, 14, 18, 0.1), rgba(12, 14, 18, 0.1)),
    linear-gradient(135deg, #390057 0%, #9d0f91 46%, #ff61a8 100%);
}

.bg-estate {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #0e2b3d 0%, #0f5f83 48%, #7be7ff 100%);
}

.bg-vehicle {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #182536 0%, #004f81 46%, #ffd535 100%);
}

.bg-web {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #092946 0%, #145bb8 46%, #6cf5ff 100%);
}

.bg-signage {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #1e1f26 0%, #81400a 46%, #ffb347 100%);
}

.bg-branding {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #2c1338 0%, #d91c76 42%, #ff7dbf 100%);
}

.bg-graphics {
  background:
    linear-gradient(0deg, rgba(13, 16, 19, 0.18), rgba(13, 16, 19, 0.18)),
    linear-gradient(135deg, #2c2544 0%, #5a52ff 42%, #98d8ff 100%);
}

.thumb-lines {
  position: absolute;
  inset: auto 16px 18px auto;
  width: 110px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: rgba(9, 12, 18, 0.28);
}

.thumb-lines::before,
.thumb-lines::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.thumb-lines::before {
  top: 18px;
  height: 6px;
}

.thumb-lines::after {
  top: 34px;
  height: 4px;
}

.thumb-building {
  position: absolute;
  inset: auto auto 0 18px;
  width: 44%;
  height: 82%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.16));
  clip-path: polygon(0 24%, 42% 0, 68% 10%, 68% 28%, 100% 28%, 100% 100%, 0 100%);
}

.thumb-car {
  position: absolute;
  left: 18px;
  bottom: 20px;
  width: 160px;
  height: 54px;
  border-radius: 32px 22px 16px 14px;
  background: linear-gradient(180deg, #ffe36b 0%, #f3c200 100%);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.18);
}

.thumb-car::before,
.thumb-car::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #182536;
  border: 5px solid #dbe7f7;
}

.thumb-car::before {
  left: 18px;
}

.thumb-car::after {
  right: 18px;
}

.thumb-content {
  padding: 16px 14px 14px;
}

.thumb-content h3 {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.thumb-content p {
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-band {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px 26px;
  background: #ffffff;
  color: var(--ink);
}

.testimonial-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 32%, #ffe1d0 0 14px, transparent 15px),
    radial-gradient(circle at 52% 36%, #5e3b28 0 26px, transparent 27px),
    radial-gradient(circle at 50% 40%, #7a4b34 0 28px, transparent 29px),
    linear-gradient(180deg, #1a1e2c 0%, #151925 100%);
  border: 4px solid #ffffff;
  box-shadow: 0 12px 24px rgba(13, 16, 24, 0.12);
}

.testimonial-body {
  min-height: 110px;
}

.testimonial-quote {
  margin-bottom: 16px;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.testimonial-meta strong {
  display: block;
  font-size: 1rem;
}

.testimonial-meta span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.circle-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.circle-button:hover {
  color: var(--pink);
  border-color: var(--pink);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 20px;
  background: #ffffff;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 19, 26, 0.2);
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--pink);
}

.cta-panel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 50%, rgba(19, 215, 255, 0.42), transparent 20%),
    radial-gradient(circle at 62% 50%, rgba(255, 22, 116, 0.24), transparent 24%),
    linear-gradient(115deg, #18111f 0%, #15192b 46%, #0d1826 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
}

.services-stats-section {
  padding: 22px 0 24px;
}

.services-stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #111115;
  color: #ffffff;
}

.services-stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.services-stat-item:last-child {
  border-right: 0;
}

.services-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.services-stat-icon svg {
  width: 24px;
  height: 24px;
}

.services-stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.services-stat-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.services-work-section {
  padding-top: 28px;
}

.services-work-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.services-work-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.services-work-copy p {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.services-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.services-work-card .thumb-visual {
  height: 180px;
  border-radius: 8px;
}

.services-work-card .photo-panel {
  height: 180px;
  border-radius: 8px;
}

.services-work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 2px 0;
}

.services-work-meta strong {
  font-size: 0.95rem;
}

.services-work-meta span {
  color: var(--pink);
  font-weight: 700;
}

.services-cta-section {
  padding: 18px 0 0;
}

.services-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 54px;
  background: linear-gradient(90deg, #ff0f7c 0%, #6b1fe4 48%, #0e72f5 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 48px rgba(15, 22, 42, 0.14);
}

.services-cta-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.services-cta-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.services-cta-button {
  min-width: 188px;
  background: #ffffff;
}

.cta-panel h2 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero-grid,
.contact-shell,
.about-hero,
.blog-layout {
  display: grid;
  gap: 22px;
}

.inner-hero-section {
  padding-top: 0;
}

.inner-hero-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  min-height: 360px;
  padding: 28px 40px 24px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 22, 116, 0.08), transparent 22%),
    radial-gradient(circle at 92% 14%, rgba(19, 215, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
  border: 1px solid rgba(18, 19, 26, 0.06);
  color: var(--ink);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  bottom: 18px;
  right: 34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 215, 255, 0.18) 0%, transparent 58%);
  filter: blur(12px);
  pointer-events: none;
}

.inner-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 0;
}

.inner-hero-copy h1 {
  max-width: 560px;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: clamp(1.76rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.inner-hero-copy p {
  max-width: 520px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.inner-hero-media {
  position: relative;
  min-height: 286px;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 246, 250, 0.96)),
    linear-gradient(135deg, rgba(255, 22, 116, 0.03), rgba(19, 215, 255, 0.03));
  box-shadow: 0 22px 48px rgba(15, 22, 42, 0.08);
}

.inner-hero-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-hero {
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 12px 6px 12px 0;
}

.about-copy p {
  max-width: 380px;
  color: var(--ink-soft);
}

.office-scene {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(180deg, #31353f 0%, #161921 34%, #13151c 100%);
  border-radius: 0;
}

.office-scene::before {
  content: "";
  position: absolute;
  inset: 16px auto 76px 18px;
  width: 56%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 100%);
  background-size: 25% 100%, 100% 24%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.office-scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 86px;
  background:
    linear-gradient(180deg, rgba(24, 17, 12, 0.24), rgba(24, 17, 12, 0.24)),
    repeating-linear-gradient(90deg, #4f3425 0 34px, #63412e 34px 68px);
}

.office-logo {
  position: absolute;
  right: 56px;
  top: 76px;
  text-align: center;
  z-index: 1;
}

.office-logo strong {
  display: block;
  font-size: 5.2rem;
  letter-spacing: -0.08em;
  color: var(--pink);
}

.office-logo span {
  display: block;
  margin-top: -8px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.office-table {
  position: absolute;
  left: 38%;
  right: 18%;
  bottom: 44px;
  height: 18px;
  border-radius: 999px;
  background: #0f1016;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.22);
}

.office-table::before,
.office-table::after {
  content: "";
  position: absolute;
  bottom: -52px;
  width: 8px;
  height: 58px;
  background: #12131a;
}

.office-table::before {
  left: 24%;
}

.office-table::after {
  right: 24%;
}

.office-chair {
  position: absolute;
  bottom: 48px;
  width: 56px;
  height: 78px;
  border-radius: 18px 18px 12px 12px;
  background: #0e1018;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.office-chair::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -34px;
  width: 8px;
  height: 38px;
  background: #101219;
}

.chair-left {
  left: 40px;
}

.chair-center {
  left: 48%;
  transform: translateX(-50%);
}

.chair-right {
  right: 54px;
}

.dark-strip {
  padding: 0;
}

.dark-panel {
  background: #0d0f17;
  border-radius: 0;
  color: #ffffff;
}

.dark-panel-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-premium-band {
  padding: 34px max(20px, calc((100vw - 1180px) / 2)) 40px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 22, 116, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(19, 215, 255, 0.1), transparent 18%),
    linear-gradient(135deg, #090b12 0%, #0d1019 48%, #0c111d 100%);
}

.about-premium-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.about-premium-copy h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #ffffff;
}

.about-premium-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.about-premium-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.about-premium-metric {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.about-premium-metric strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.06em;
}

.about-premium-metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.info-card {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
  min-height: 252px;
  overflow: hidden;
  transition: transform var(--duration-medium) var(--ease-standard), border-color var(--duration-medium) var(--ease-standard), background var(--duration-medium) var(--ease-standard), box-shadow var(--duration-medium) var(--ease-standard);
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 22, 116, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 22, 116, 0.06), transparent 60%);
}

.info-card .info-icon-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  background: rgba(255, 22, 116, 0.08);
}

.info-card-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}

.info-card p,
.info-card li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.journey {
  margin-top: 22px;
  padding: 28px 26px 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(19, 215, 255, 0.04), transparent 56%);
}

.about-premium-journey-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.journey h2 {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 12px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 22, 116, 0.88), rgba(255, 22, 116, 0.32));
}

.timeline-item {
  position: relative;
  text-align: left;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 22, 116, 0.12);
}

.timeline-year {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.timeline-title {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.timeline-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.grid-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.grid-page-head .section-heading {
  margin-bottom: 0;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-chip {
  padding: 11px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: #2d3039;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #ffffff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
}

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

.portfolio-detail-card {
  gap: 0;
  overflow: hidden;
}

.portfolio-card[hidden] {
  display: none;
}

.portfolio-card .thumb-visual {
  height: 152px;
  border-radius: 12px;
}

.thumb-card .photo-panel {
  height: 188px;
  border-radius: 14px;
}

.portfolio-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.portfolio-card p {
  color: var(--ink-faint);
  font-size: 0.86rem;
}

.portfolio-detail-card .thumb-visual {
  height: 196px;
  border-radius: 0;
}

.portfolio-detail-card .photo-panel {
  height: 196px;
  border-radius: 0;
}

.portfolio-detail-body {
  display: grid;
  gap: 12px;
  padding: 20px 18px 22px;
}

.portfolio-detail-body h3 {
  font-size: 1.14rem;
}

.portfolio-detail-body .service-summary {
  min-height: 72px;
}

.services-page-card .thumb-visual {
  height: 164px;
}

.services-page-card h3 {
  font-size: 1.14rem;
}

.service-summary {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.blog-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

.blog-art {
  position: relative;
  min-height: 164px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #f8f9ff 0%, #edf5ff 100%);
  border: 1px solid var(--border);
}

.blog-art::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff2d83 0%, #ff0f6f 100%);
  clip-path: polygon(50% 0, 82% 24%, 82% 76%, 50% 100%, 18% 76%, 18% 24%);
  box-shadow: 0 16px 24px rgba(255, 22, 116, 0.26);
}

.blog-art::after {
  content: "";
  position: absolute;
  inset: 26px 18px auto auto;
  width: 64px;
  height: 110px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(18, 19, 26, 0.12), rgba(18, 19, 26, 0.06)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.blog-art-grid {
  position: absolute;
  inset: 0;
}

.blog-art-grid span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #233d7b;
}

.blog-art-grid span:nth-child(1) {
  left: 22px;
  top: 40px;
}

.blog-art-grid span:nth-child(2) {
  left: 24px;
  top: 100px;
}

.blog-art-grid span:nth-child(3) {
  left: 72px;
  top: 22px;
}

.blog-art-grid span:nth-child(4) {
  left: 72px;
  top: 116px;
}

.blog-art-grid span:nth-child(5) {
  left: 112px;
  top: 58px;
}

.blog-art-grid::before,
.blog-art-grid::after {
  content: "";
  position: absolute;
  background: #233d7b;
}

.blog-art-grid::before {
  left: 28px;
  top: 43px;
  width: 46px;
  height: 2px;
  box-shadow:
    0 57px 0 #233d7b,
    48px 15px 0 #233d7b,
    48px 42px 0 #233d7b;
}

.blog-art-grid::after {
  left: 26px;
  top: 48px;
  width: 2px;
  height: 50px;
  box-shadow:
    48px -21px 0 #233d7b,
    96px 15px 0 #233d7b;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-post {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
}

.blog-post[hidden] {
  display: none;
}

.blog-thumb {
  height: 124px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-copy h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.blog-copy p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 600;
}

.blog-empty {
  display: none;
  padding: 22px;
  border: 1px dashed var(--border-strong);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink-soft);
}

.blog-empty.is-visible {
  display: block;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-card {
  padding: 18px;
}

.sidebar-card h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.search-shell {
  position: relative;
}

.search-shell input {
  width: 100%;
  min-height: 48px;
  padding: 0 48px 0 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.search-shell svg {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--ink-faint);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.sidebar-item,
.recent-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sidebar-item-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tiny-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  color: var(--pink);
  background: rgba(255, 22, 116, 0.08);
}

.tiny-icon svg {
  width: 14px;
  height: 14px;
}

.sidebar-count {
  color: var(--ink-faint);
  font-size: 0.86rem;
}

.recent-post {
  align-items: start;
}

.recent-post[hidden] {
  display: none;
}

.recent-thumb {
  width: 62px;
  height: 54px;
  border-radius: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.recent-thumb.photo-panel {
  height: 62px;
}

.recent-post strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.2;
}

..contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 32px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.82));
  border: 1px solid rgba(18, 19, 26, 0.08);
  box-shadow: 0 22px 48px rgba(15, 22, 42, 0.08);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item p,
.contact-item a,
.contact-item span {
  color: var(--ink-soft);
}

.contact-item a:hover {
  color: var(--pink);
}

.contact-card {
  padding: 18px;
}

.form-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 56px rgba(15, 22, 42, 0.12);
}

.form-card-header {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.form-card-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 0.95;
  max-width: 520px;
}

.form-card-header .page-intro {
  margin-top: 0;
  max-width: 560px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
}

.form-field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  color: var(--pink);
  font-size: 0.9rem;
}

.stacked-visuals {
  display: grid;
  gap: 16px;
}

.stacked-visuals .photo-panel {
  min-height: 220px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.brand-card-visual,
.map-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #ffffff;
}

.brand-card-visual {
  min-height: 240px;
  background:
    radial-gradient(circle at 62% 48%, rgba(255, 22, 116, 0.28), transparent 22%),
    radial-gradient(circle at 68% 44%, rgba(19, 215, 255, 0.22), transparent 22%),
    linear-gradient(135deg, #0c0e15 0%, #121728 100%);
}

.brand-card-visual .ring-scene {
  position: relative;
  min-height: 240px;
}

.brand-card-visual .ring-scene::before {
  width: 250px;
  height: 250px;
}

.brand-card-visual .ring-scene::after {
  width: 194px;
  height: 194px;
}

.brand-card-visual .brand-core strong {
  font-size: 4.1rem;
}

.brand-card-visual .brand-core span {
  font-size: 1.4rem;
}

.map-card {
  position: relative;
  min-height: 200px;
  background:
    linear-gradient(90deg, rgba(28, 59, 91, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, rgba(28, 59, 91, 0.08) 0 1px, transparent 1px 44px),
    linear-gradient(135deg, #f8fafc 0%, #eef2f8 100%);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  background: rgba(86, 123, 166, 0.22);
  border-radius: 999px;
}

.map-card::before {
  left: 24px;
  right: 18px;
  top: 90px;
  height: 10px;
  transform: rotate(-18deg);
}

.map-card::after {
  left: 62px;
  right: 46px;
  top: 40px;
  height: 8px;
  transform: rotate(12deg);
}

.map-pin {
  position: absolute;
  left: 58%;
  top: 54%;
  width: 30px;
  height: 30px;
  background: var(--pink);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 10px 22px rgba(255, 22, 116, 0.3);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
}

.contact-page-section {
  padding-top: 34px;
}

.contact-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  margin-bottom: 22px;
  padding: 28px;
  border: 1px solid rgba(18, 19, 26, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 22, 116, 0.08), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(19, 215, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9faff 100%);
  box-shadow: 0 26px 58px rgba(15, 22, 42, 0.08);
}

.contact-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 8px 6px;
}

.contact-intro-copy .page-title {
  max-width: 680px;
}

.contact-intro-copy .page-intro {
  max-width: 620px;
  margin: 0;
}

.contact-direct-card {
  display: grid;
  gap: 10px;
  padding: 24px 24px 22px;
}

.contact-direct-head {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 19, 26, 0.08);
}

.contact-direct-head h3,
.contact-side-card h3 {
  font-size: 1.34rem;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 10px 0;
}

.contact-label {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-item p,
.contact-item a {
  color: var(--ink-soft);
  line-height: 1.65;
}

.contact-item a:hover {
  color: var(--pink);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(290px, 0.86fr);
  gap: 20px;
  align-items: start;
}

.form-card {
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(15, 22, 42, 0.12);
}

.form-card-header {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.form-card-header h3 {
  max-width: 640px;
  font-family: var(--font-ui);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.form-card-header .page-intro {
  margin-top: 0;
  max-width: 620px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(18, 19, 26, 0.1);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard);
}

.form-field textarea {
  min-height: 164px;
  padding-top: 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 22, 116, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 22, 116, 0.08);
  outline: none;
}

.form-status {
  min-height: 22px;
  color: var(--pink);
  font-size: 0.9rem;
}

.contact-side-stack {
  display: grid;
  gap: 18px;
}

.contact-side-card {
  padding: 24px 22px;
}

.contact-side-card p {
  color: var(--ink-soft);
}

.contact-checklist {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.contact-visual-panel {
  min-height: 280px;
}

.contact-visual-panel img {
  padding: 18px;
}

.contact-next-section .principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
}

.home-hero {
  padding: 0;
  background: #ffffff;
}

.home-hero-shell {
  padding: 0;
  background: transparent;
}

.nav-links a {
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-kicker {
  color: var(--pink);
  letter-spacing: 0.12em;
}

.section-heading::after,
.home-services-line,
.home-service-rule {
  background: var(--pink);
}

.hero-copy h1,
.page-title,
.section-heading h1,
.section-heading h2,
.section-heading h3,
.form-card-header h3,
.services-catalog-body h3,
.services-benefit-card h3,
.services-process-step h3,
.footer-title {
  font-family: var(--font-display);
}

.highlight-pink {
  color: var(--pink);
}

.highlight-cyan {
  color: var(--cyan);
}

.services-rainbow-text,
.services-rainbow-word,
.services-gradient-text {
  background: linear-gradient(90deg, #ffc100 0%, #ff25a5 46%, #197fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ff1b7a 0%, #f08bb9 45%, #ef0f6c 100%);
  box-shadow: 0 18px 34px rgba(255, 22, 116, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1b7a 0%, #f08bb9 45%, #ef0f6c 100%);
  box-shadow: 0 20px 38px rgba(255, 22, 116, 0.32);
}

.btn-secondary {
  color: var(--ink);
  border-color: rgba(24, 22, 20, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  background: var(--surface-muted);
  border-color: rgba(24, 22, 20, 0.18);
}

.btn-light:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.site-header {
  background: rgba(5, 6, 8, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  background: rgba(5, 6, 8, 0.98);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.home-hero-shell,
.services-premium-hero-shell,
.services-benefits-shell,
.services-premium-cta-shell,
.contact-intro-card,
.inner-hero,
.home-hero .hero-card,
.cta-panel,
.about-premium-band {
  background-image: none !important;
}

.home-hero .hero-card,
.services-benefits-shell,
.services-premium-cta-shell,
.cta-panel,
.about-premium-band {
  background-color: #11131d;
}

.inner-hero,
.contact-intro-card {
  background-color: #ffffff;
}

.services-premium-hero-shell::before,
.inner-hero::before,
.photo-panel::before,
.photo-panel::after,
.services-premium-hero-visual::before,
.services-premium-hero-visual::after {
  background: none !important;
}

.photo-panel {
  background: #f2f4f8;
  border-color: rgba(18, 19, 26, 0.06);
  box-shadow: 0 20px 42px rgba(15, 22, 42, 0.08);
}

.surface-card,
.services-catalog-card,
.services-industry,
.proof-metric,
.principle-card,
.fit-card,
.process-card,
.contact-side-card,
.contact-direct-card {
  border-color: rgba(24, 22, 20, 0.08);
  box-shadow: 0 16px 38px rgba(24, 22, 20, 0.06);
}

.services-catalog-media,
.services-catalog-card:hover,
.services-industry:hover,
.services-benefit-card:hover,
.stat-card:hover {
  background-image: none !important;
}

.services-catalog-media {
  background-color: #f2f4f8;
}

.stats-grid {
  background: #ffffff;
}

.stat-card {
  background: #ffffff;
}

.proof-bullet {
  background: radial-gradient(circle at center, var(--pink) 0 45%, rgba(255, 22, 116, 0.16) 46% 100%);
}

.process-step {
  background: linear-gradient(180deg, rgba(255, 22, 116, 0.12), rgba(19, 215, 255, 0.12));
  color: var(--pink);
}

.social-link:hover,
.back-top,
.back-top:hover {
  background: #1a1816;
  color: #ffffff;
}

.footer-bottom {
  background: #ffffff;
  color: var(--ink-soft);
}

.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 48px 0 34px;
  background: #f7f7fb;
  border-top: 1px solid rgba(18, 19, 26, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #050608 0%, #1a1f29 50%, #050608 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.footer-grid {
  gap: 30px;
}

.footer-links a {
  display: inline-flex;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  transition: transform var(--duration-fast) var(--ease-standard), background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(255, 22, 116, 0.18);
}

.footer-bottom {
    padding: 28px 0 24px;
    color: var(--ink-soft);
    text-align: center;
    background: #ffffff;
    border-top: 1px solid rgba(18, 19, 26, 0.08);
  }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.footer-copy {
  max-width: 220px;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-title {
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--pink);
  flex-shrink: 0;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--blue);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.social-link:hover {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(255, 22, 116, 0.06);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link.social-link-whatsapp {
  color: #129c58;
}

.social-link.social-link-whatsapp:hover {
  color: #ffffff;
  border-color: #16b364;
  background: #16b364;
}

.footer-bottom {
  margin-top: 18px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 18px 0 16px;
  border-top: 1px solid rgba(18, 19, 26, 0.08);
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.84rem;
  text-align: center;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff1b7a 0%, #ef0f6c 100%);
  color: #ffffff;
  box-shadow: 0 16px 24px rgba(255, 22, 116, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard), visibility var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 30px rgba(255, 22, 116, 0.32);
}

.back-top svg {
  width: 18px;
  height: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-standard), transform var(--duration-slow) var(--ease-standard);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .home-services-grid,
  .services-grid,
  .project-grid,
  .card-grid,
  .process-grid,
  .insight-grid,
  .fit-grid,
  .principles-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-offering-grid,
  .services-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-work-shell,
  .services-hero,
  .inner-hero {
    grid-template-columns: 1fr;
  }

  .services-hero {
    min-height: unset;
    padding-bottom: 42px;
  }

  .services-hero-art {
    min-height: 360px;
  }

  .inner-hero {
    min-height: unset;
  }

  .inner-hero-media {
    min-height: 320px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .manifesto-shell,
  .portfolio-featured {
    grid-template-columns: 1fr;
  }

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

  .contact-intro-card,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-intro-card {
    padding: 24px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .about-premium-head {
    grid-template-columns: 1fr;
  }

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

  body {
    border-top-width: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .nav-panel {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(11, 12, 17, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    display: block;
    font-family: var(--font-display);
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.86);
  }

  .nav-links a::after {
    bottom: 6px;
  }

  .home-hero .hero-card,
  .about-hero,
  .inner-hero {
    grid-template-columns: 1fr;
  }

  .hero-art,
  .hero-copy,
  .inner-hero-media {
    min-height: unset;
  }

  .hero-copy {
    padding: 38px 24px 26px;
  }

  .hero-art {
    min-height: 360px;
  }

  .inner-hero {
    padding: 34px 24px 26px;
  }

  .inner-hero-media {
    min-height: 280px;
  }

  .stats-grid,
  .info-grid,
  .timeline,
  .grid-page-head,
  .blog-hero,
  .testimonial-band,
  .manifesto-shell,
  .portfolio-featured {
    grid-template-columns: 1fr;
  }

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

  .stats-grid {
    border-radius: 0 0 20px 20px;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .info-card {
    min-height: 0;
  }

  .journey {
    text-align: left;
  }

  .timeline::before {
    left: 10px;
    top: 16px;
    bottom: 24px;
    width: 2px;
    height: auto;
    right: auto;
  }

  .timeline-item {
    padding-left: 36px;
  }

  .timeline-dot {
    position: absolute;
    left: 1px;
    top: 3px;
    margin-bottom: 0;
  }

  .featured-header,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .home-services-head {
    min-height: unset;
    padding-bottom: 0;
  }

  .contact-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-premium-band {
    padding: 24px 18px 28px;
  }

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

  .about-premium-journey-head {
    align-items: flex-start;
  }

  .container {
    width: min(100vw - 20px, 1180px);
  }

  .section,
  .page-section {
    padding: 24px 0;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-logo-footer {
    height: 54px;
  }

  .hero-copy h1,
  .page-title,
  .cta-panel h2 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .hero-copy p,
  .section-heading p,
  .page-intro {
    font-size: 0.96rem;
  }

  .services-grid,
  .home-services-grid,
  .service-offering-grid,
  .project-grid,
  .card-grid,
  .process-grid,
  .insight-grid,
  .fit-grid,
  .manifesto-shell,
  .principles-grid,
  .service-detail-grid,
  .proof-metrics,
  .services-work-grid,
  .stacked-visuals,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .portfolio-featured {
    grid-template-columns: 1fr;
  }

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

  .contact-side-stack {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .featured-header,
  .testimonial-band,
  .journey,
  .cta-panel,
  .footer-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .services-hero {
    padding: 28px 18px 22px;
  }

  .inner-hero {
    padding: 24px 18px 20px;
  }

  .inner-hero-copy h1 {
    font-size: 2rem;
  }

  .portfolio-featured-copy,
  .portfolio-detail-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .portfolio-featured-visual {
    min-height: 240px;
  }

  .inner-hero-media {
    min-height: 220px;
  }

  .services-hero-copy h1 {
    font-size: 2.2rem;
  }

  .home-services-copy h2 {
    font-size: 1.92rem;
  }

  .home-services-head {
    padding-bottom: 0;
    margin-bottom: 20px;
  }

  .home-service-card {
    min-height: unset;
    padding: 20px 18px 20px;
  }

  .services-hero-art {
    min-height: 280px;
  }

  .scene-folder {
    right: 24px;
    top: 32px;
    width: 220px;
    height: 166px;
  }

  .scene-mug {
    left: 18px;
    top: 74px;
    width: 92px;
    height: 120px;
  }

  .scene-card-top {
    left: 106px;
    top: 138px;
  }

  .scene-card-bottom {
    left: 92px;
    top: 196px;
  }

  .scene-pen {
    right: 24px;
    bottom: 18px;
    height: 120px;
  }

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

  .services-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .services-stat-item:last-child {
    border-bottom: 0;
  }

  .services-cta-panel {
    padding: 24px 18px;
  }

  .project-grid {
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .testimonial-band {
    gap: 14px;
  }

  .testimonial-avatar {
    width: 72px;
    height: 72px;
  }

  .testimonial-quote {
    font-size: 1.2rem;
  }

  .blog-post {
    grid-template-columns: 1fr;
  }

  .blog-thumb {
    height: 184px;
  }

  .about-copy p {
    max-width: none;
  }

  .office-logo {
    right: 26px;
    top: 46px;
  }

  .office-logo strong {
    font-size: 3.8rem;
  }

  .office-logo span {
    font-size: 1.4rem;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
  }
}

/* Site-wide finishing pass: controlled white/black sequence, compact home services, full-width CTAs and mobile refinements. */
h1,
h2,
h3,
.page-title,
.section-heading h2,
.hero-copy h1,
.inner-hero-copy h1,
.btn,
.nav-links a,
.section-kicker {
  letter-spacing: 0;
}

.section-heading h2,
.home-services-copy h2,
.home-about-copy h2,
.about-premium-copy h2,
.about-premium-journey-head h2,
.services-benefits-copy h2,
.services-work-copy h2,
.services-premium-cta-copy h2,
.services-cta-panel h2,
.cta-panel h2,
.manifesto-panel h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  line-height: 1.06;
}

.section-light,
.page-section.section-light {
  background: #ffffff;
  color: var(--ink);
}

.section-dark,
.page-section.section-dark {
  background: #0b0c11;
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark .section-heading h2,
.section-dark .home-services-copy h2,
.section-dark .proof-item h3,
.section-dark .section-kicker + h2 {
  color: #ffffff;
}

.section-dark p,
.section-dark .page-intro,
.section-dark .section-heading p,
.section-dark .proof-item p,
.section-dark .home-about-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.section-dark .surface-card,
.section-dark .proof-metric,
.section-dark .contact-side-card,
.section-dark .contact-direct-card {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .surface-card p,
.section-dark .proof-metric span,
.section-dark .contact-side-card p,
.section-dark .contact-direct-card p,
.section-dark .contact-direct-card a {
  color: var(--ink-soft);
}

.section-dark .section-heading::after,
.section-light .section-heading::after,
.section-dark .home-services-line,
.section-light .home-services-line,
.section-dark .home-service-rule,
.section-light .home-service-rule {
  background: var(--pink);
}

.home-about-section {
  padding: clamp(44px, 6vw, 78px) 0;
}

.home-about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.home-about-copy {
  display: grid;
  gap: 18px;
  max-width: 590px;
}

.home-about-copy h2 {
  max-width: 15ch;
}

.home-about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.home-about-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.home-about-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.home-about-media-art {
  position: relative;
  min-height: clamp(320px, 34vw, 430px);
  background: linear-gradient(135deg, #090a10 0%, #101426 100%);
}

.home-about-media-art .ring-scene {
  position: absolute;
  inset: 0;
}

.home-about-media-art .ring-scene::before {
  width: clamp(280px, 76%, 430px);
  height: clamp(280px, 76%, 430px);
}

.home-about-media-art .ring-scene::after {
  width: clamp(210px, 58%, 330px);
  height: clamp(210px, 58%, 330px);
}

.home-about-media-art .brand-core strong {
  font-size: clamp(3.8rem, 7vw, 5.5rem);
}

.home-about-media-art .brand-core span {
  margin-top: -8px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.home-services-head {
  min-height: 0;
  margin-bottom: 22px;
}

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

.home-service-card {
  min-height: 0;
  padding: 20px 18px;
}

.home-service-card .service-icon-wrap {
  width: 54px;
  height: 54px;
}

.home-service-card h3 {
  font-size: 0.96rem;
  line-height: 1.28;
}

.home-service-card p {
  min-height: 0;
  font-size: 0.91rem;
  line-height: 1.62;
}

.home-service-list {
  display: none;
}

.dark-strip,
.services-benefits-section,
.services-premium-cta-section,
.site-cta-section {
  padding: 0;
}

.about-premium-band,
.services-benefits-shell {
  background: #0b0c11;
}

.services-premium-cta-shell,
.cta-panel {
  width: 100vw;
  min-height: 230px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(38px, 6vw, 70px) max(20px, calc((100vw - 1180px) / 2));
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #07080d 0%, #10131d 58%, #171019 100%);
  color: #ffffff;
  box-shadow: none;
}

.services-premium-cta-copy h2,
.cta-panel h2 {
  max-width: 720px;
  color: #ffffff;
}

.services-premium-cta-copy p,
.cta-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .section-kicker {
  display: inline-block;
  margin-bottom: 12px;
}

.cta-panel-light {
  background: #ffffff;
  color: var(--ink);
  border-top: 1px solid rgba(18, 19, 26, 0.08);
  border-bottom: 1px solid rgba(18, 19, 26, 0.08);
}

.cta-panel-light h2 {
  color: var(--ink);
}

.cta-panel-light p {
  color: var(--ink-soft);
}

.btn {
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.site-footer {
  margin-top: 0;
  background: #050608;
  color: #ffffff;
  border-top: 0;
}

.site-footer::before {
  background: var(--pink);
  box-shadow: none;
}

.brand-footer {
  padding: 8px 10px;
  border-radius: 14px;
  background: #ffffff;
}

.footer-title,
.site-footer .footer-title {
  color: #ffffff;
}

.footer-copy,
.footer-links,
.footer-links a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact svg {
  color: var(--pink);
}

.site-footer .social-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050608;
}

.form-card,
.contact-intro-card {
  max-width: 100%;
}

.home-hero .hero-card {
  grid-template-columns: minmax(600px, 0.9fr) minmax(620px, 1.1fr);
  max-width: 1536px;
  min-height: 644px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-hero .section-kicker {
  margin-bottom: 22px;
}

.home-hero .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(40px, 5.2vw, 70px) clamp(26px, 4.6vw, 70px);
  color: var(--ink);
}

.home-hero .hero-copy h1 {
  max-width: 660px;
  margin-bottom: 22px;
  color: #000000;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  font-weight: 800;
  line-height: 0.96;
}

.home-hero .hero-copy p {
  max-width: 520px;
  margin-bottom: 30px;
  color: #5f636d;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.48;
}

.home-hero .hero-actions .btn-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

.home-hero .hero-actions .btn-primary:hover {
  background: var(--pink);
  box-shadow: 0 18px 34px rgba(255, 22, 116, 0.24);
}

.home-hero .hero-art {
  min-width: 0;
  min-height: 644px;
}

.home-hero .hero-art-photo {
  background: #090b10;
}

.home-hero .hero-art-photo img {
  object-position: center center;
}

.home-hero .hero-art::before,
.home-hero .hero-art::after {
  content: none;
}

.why-choose-section {
  padding: 28px 0 44px;
  background: #ffffff;
}

.why-choose-head {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.why-choose-head .section-kicker {
  margin-bottom: 10px;
}

.why-choose-head h2 {
  margin-bottom: 12px;
  color: #000000;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
}

.why-choose-head p {
  max-width: 620px;
  margin: 0 auto;
  color: #626671;
  line-height: 1.55;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
}

.why-choose-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 6px 28px;
  border-right: 1px solid rgba(18, 19, 26, 0.14);
}

.why-choose-item:last-child {
  border-right: 0;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
}

.why-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.65;
}

.why-icon-pink {
  color: var(--pink);
  border: 2px solid var(--pink);
}

.why-icon-gold {
  color: #ffc400;
  border: 2px solid #ffc400;
}

.why-icon-blue {
  color: #1198f2;
  border: 2px solid #1198f2;
}

.why-icon-dark {
  color: #ffffff;
  border: 2px solid #000000;
  background: #000000;
}

.why-choose-item strong {
  display: block;
  margin-bottom: 6px;
  color: #000000;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.why-choose-item p {
  margin: 0;
  color: #5f636d;
  font-size: 0.93rem;
  line-height: 1.42;
}

h1,
h2,
h3,
p,
a,
button,
span,
li {
  overflow-wrap: break-word;
}

@media (max-width: 1180px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-item:nth-child(2) {
    border-right: 0;
  }

  .why-choose-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 19, 26, 0.14);
  }

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

@media (max-width: 960px) {
  .home-hero .hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-hero .hero-art {
    min-height: 430px;
  }

  .home-hero-feature-grid {
    grid-template-columns: 1fr;
  }

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

  .home-about-copy {
    max-width: none;
  }

  .home-about-media img {
    aspect-ratio: 16 / 9;
  }

  .services-premium-cta-shell,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .home-hero .hero-card,
  .home-hero .hero-copy,
  .home-hero .hero-art {
    width: 100vw;
    max-width: 100vw;
  }

  .home-hero .hero-copy {
    box-sizing: border-box;
    padding: 34px 20px 24px;
  }

  .home-hero .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .home-hero .hero-copy p {
    max-width: 37ch;
    font-size: 1rem;
  }

  .home-hero .hero-art {
    min-height: 310px;
  }

  .why-choose-section {
    padding: 26px 0 34px;
  }

  .why-choose-head {
    max-width: 100%;
    margin-bottom: 18px;
    text-align: left;
  }

  .why-choose-head h2 {
    max-width: 13ch;
    font-size: clamp(1.65rem, 7.4vw, 2rem);
  }

  .why-choose-head p {
    max-width: 31ch;
    margin: 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-item,
  .why-choose-item:nth-child(2) {
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 19, 26, 0.12);
  }

  .why-choose-item:last-child {
    border-bottom: 0;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-feature-band {
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
  }

  .home-hero-feature {
    padding: 16px;
    border-radius: 18px;
  }

  .home-about-section {
    padding: 34px 0;
  }

  .home-about-copy h2,
  .services-premium-cta-copy h2,
  .cta-panel h2 {
    font-size: 1.7rem;
  }

  .home-about-points {
    flex-direction: column;
  }

  .home-about-points span {
    width: 100%;
  }

  .services-premium-cta-shell,
  .cta-panel {
    min-height: 0;
    padding: 34px 18px;
  }

  .cta-panel .btn,
  .services-premium-cta-button {
    width: 100%;
    min-width: 0;
  }

  .services-premium-rocket {
    display: none;
  }

  .contact-intro-card,
  .form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

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