:root {
  --bg: #f3ede4;
  --surface: rgba(255, 250, 244, 0.78);
  --surface-strong: rgba(255, 250, 244, 0.92);
  --surface-soft: rgba(255, 250, 244, 0.52);
  --ink: #121212;
  --muted: #625b54;
  --line: rgba(18, 18, 18, 0.1);
  --line-strong: rgba(18, 18, 18, 0.14);
  --charcoal: #171717;
  --accent: #ff3301;
  --accent-deep: #d92b00;
  --accent-soft: #ffd9d1;
  --sky: #dfe9f7;
  --shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
  --shadow-hover: 0 24px 42px rgba(18, 18, 18, 0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1040px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 51, 1, 0.14), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(132, 170, 214, 0.14), transparent 22%),
    linear-gradient(180deg, #f8f3eb 0%, #f3ede4 56%, #ece4d7 100%);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 250, 244, 0.9);
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}

.brand:hover {
  opacity: 0.82;
}

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

.footer-brand-mark .brand-logo {
  height: 60px;
}


.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffd15c);
  box-shadow: 0 0 0 8px rgba(255, 51, 1, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong,
.hero h1,
.section h2,
.cta h2,
.footer-title,
.service-card h3,
.process-step h3,
.testimonial-card strong {
  font-family: "Sora", sans-serif;
}

.brand-text strong {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.brand-text span {
  margin-top: 5px;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(18, 18, 18, 0.05);
}

.site-nav a.current,
.site-nav a.active {
  color: var(--ink);
  background: rgba(18, 18, 18, 0.05);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  border-radius: 10px;
}

.menu-toggle:hover {
  background: rgba(18, 18, 18, 0.06);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 132px);
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
  animation: rise 700ms ease both;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  align-items: center;
  gap: 36px;
  width: 100%;
}

.hero-main {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero h1 {
  margin: 8px 0 0;
  max-width: 9.1ch;
  font-size: clamp(2.95rem, 6.1vw, 5.25rem);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.hero-text,
.section-heading p,
.service-card p,
.process-step p,
.testimonial-card p,
.cta-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-body {
  margin-top: 18px;
  max-width: 760px;
}

.hero-text {
  max-width: 29ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:active {
  transform: scale(0.98);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  box-shadow: 0 12px 24px rgba(255, 51, 1, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 32px rgba(255, 51, 1, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.56);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 244, 0.9);
  border-color: rgba(18, 18, 18, 0.2);
}

.results-grid strong {
  display: block;
  line-height: 1;
}

.hero-aside {
  position: relative;
  align-self: start;
  padding-top: 54px;
}

.hero-aside-label {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-aside-panel {
  padding: 20px 20px 18px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(248, 241, 232, 0.82));
  box-shadow: var(--shadow);
}

.hero-proof-stat {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.hero-proof-stat strong,
.hero-proof-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.hero-proof-stat strong {
  font-size: 2.2rem;
}

.hero-proof-stat span,
.hero-proof-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.86rem;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  border-left: 1px solid rgba(18, 18, 18, 0.08);
}

.hero-proof-grid article {
  min-height: 92px;
  padding: 14px 14px 12px;
  margin: -1px 0 0 -1px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 250, 244, 0.52);
}

.hero-proof-grid strong {
  font-size: 1.2rem;
}

.hero-proof-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-orbit,
.hero-bar,
.hero-grid-line {
  position: relative;
  display: block;
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-orbit-one {
  width: 400px;
  height: 400px;
  top: 92px;
  right: -120px;
  border-color: rgba(17, 17, 17, 0.05);
  animation: spin 42s linear infinite;
}

.hero-orbit-two {
  width: 240px;
  height: 240px;
  top: 188px;
  right: 44px;
  border-color: rgba(17, 17, 17, 0.04);
  animation: spin 28s linear infinite reverse;
}

.hero-bar {
  position: absolute;
  border-radius: 999px;
  transform: rotate(-32deg);
}

.hero-bar-one {
  width: 320px;
  height: 42px;
  right: 132px;
  top: 134px;
  background: linear-gradient(90deg, rgba(255, 51, 1, 0), rgba(255, 51, 1, 0.34));
}

.hero-bar-two {
  display: none;
}

.hero-grid-line,
.hero-grid-one,
.hero-grid-two {
  display: none;
}

.page-hero {
  padding: 34px 0 12px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: end;
}

.page-hero-main {
  max-width: 760px;
}

.page-hero h1 {
  margin: 8px 0 0;
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.55rem, 4.7vw, 4.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.page-hero-text {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: end;
}

.services-intro-copy {
  max-width: 760px;
}

.services-intro-meta {
  display: grid;
  gap: 0;
  padding: 8px 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(247, 239, 230, 0.72));
  box-shadow: var(--shadow);
}

.services-intro-meta article {
  padding: 14px 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.services-intro-meta article:first-child {
  border-top: 0;
}

.services-intro-meta strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.services-intro-meta span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.page-hero-panel {
  align-self: stretch;
}

.page-hero-panel-label {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-panel-shell {
  height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(18, 18, 18, 0.09);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(248, 241, 232, 0.8));
  box-shadow: var(--shadow);
}

.page-hero-metric {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.page-hero-metric strong,
.page-hero-micro-grid strong {
  display: block;
  font-family: "Sora", sans-serif;
  line-height: 1;
}

.page-hero-metric strong {
  font-size: 2.1rem;
}

.page-hero-metric span,
.page-hero-micro-grid span,
.page-hero-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.page-hero-metric span,
.page-hero-micro-grid span {
  display: block;
  margin-top: 7px;
}

.page-hero-micro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  border-left: 1px solid rgba(18, 18, 18, 0.08);
}

.page-hero-micro-grid article {
  min-height: 96px;
  padding: 14px;
  margin: -1px 0 0 -1px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 250, 244, 0.48);
}

.page-hero-micro-grid strong {
  font-size: 1.18rem;
}

.page-hero-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.service-jump-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-jump-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 12px 16px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.service-jump-grid a:hover {
  transform: translateY(-1px);
  background: rgba(255, 250, 244, 0.96);
  border-color: rgba(18, 18, 18, 0.14);
  color: var(--ink);
}

.services-bento .section-heading {
  max-width: 780px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  min-height: 260px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(247, 239, 230, 0.78));
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 18, 18, 0.14);
}

.bento-card-large {
  grid-column: span 7;
  min-height: 360px;
}

.bento-card-wide {
  grid-column: span 12;
  min-height: 220px;
}

.bento-card-dark {
  grid-column: span 5;
  min-height: 360px;
  color: #fff;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(32, 32, 32, 0.96));
}

.bento-card-accent {
  background: linear-gradient(145deg, rgba(255, 237, 228, 0.98), rgba(255, 247, 240, 0.9));
}

.bento-card-soft {
  background: linear-gradient(145deg, rgba(255, 243, 236, 0.94), rgba(223, 233, 247, 0.68));
}

.bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bento-index,
.bento-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-index {
  background: rgba(217, 43, 0, 0.08);
  color: var(--accent-deep);
}

.bento-tag {
  color: var(--muted);
  background: rgba(18, 18, 18, 0.05);
}

.bento-card-dark .bento-index {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bento-card-dark .bento-tag {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.bento-card h3 {
  margin: 18px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.bento-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.bento-card-dark .bento-lead,
.bento-card-dark .bento-points p,
.bento-card-dark .bento-stat-row span {
  color: rgba(255, 255, 255, 0.8);
}

.bento-card-dark h3,
.bento-card-dark .bento-stat-row strong {
  color: #fff;
}

.bento-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.bento-card-dark .bento-points,
.bento-card-dark .bento-stat-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.bento-points p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.bento-points p::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.bento-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.bento-mini-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.6);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.bento-card-dark .bento-mini-list span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.bento-stat-row {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.bento-stat-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.06rem;
  line-height: 1.1;
}

.bento-stat-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-system {
  margin-top: 22px;
}

.clients-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 2px;
  padding: 12px 0 18px;
  flex-wrap: wrap;
}

.clients-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0.72;
}

.clients-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.client-divider {
  color: var(--muted);
  opacity: 0.28;
  font-size: 0.92rem;
  line-height: 1;
}

.client-entry {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.client-name {
  display: inline;
  font-family: "Sora", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  opacity: 0.8;
}

.client-meta {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.2;
  opacity: 0.72;
}

.client-pill {
  display: none;
}

.client-kicker {
  display: none;
}

.section {
  padding: 52px 0;
}

.section-heading {
  max-width: 690px;
}

.section h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.stagger-children.visible > * {
  opacity: 1;
  transform: none;
}

.stagger-children.visible > *:nth-child(1) {
  transition-delay: 0ms;
}

.stagger-children.visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.stagger-children.visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.stagger-children.visible > *:nth-child(4) {
  transition-delay: 240ms;
}

.stagger-children.visible > *:nth-child(5) {
  transition-delay: 320ms;
}

.stagger-children.visible > *:nth-child(6) {
  transition-delay: 400ms;
}

.service-grid,
.results-grid,
.testimonial-grid {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

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

.service-card,
.testimonial-card,
.process-step,
.cta-card {
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius-lg);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 224px;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(247, 239, 230, 0.84));
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 18, 18, 0.14);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(217, 43, 0, 0.08);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-card p,
.process-step p {
  margin: 0;
  font-size: 0.98rem;
}

.services .section-heading {
  max-width: 760px;
}

.services .section-heading p:last-child {
  max-width: 56ch;
}

.section-dark {
  position: relative;
  overflow: hidden;
  margin: 24px 0;
  padding: 44px 32px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(16, 16, 16, 0.99), rgba(28, 28, 28, 0.97));
}

.section-dark::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 51, 1, 0.12), transparent 70%);
  pointer-events: none;
}

.section-dark::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 170, 214, 0.08), transparent 70%);
  pointer-events: none;
}

.results-panel {
  position: relative;
  z-index: 1;
  color: #fff;
}

.results-panel .section-heading p:last-child,
.results-panel .eyebrow,
.results-grid span {
  color: #c8d3de;
}

.results-panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.4);
}

.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-grid article {
  min-height: 136px;
  padding: 28px 24px 10px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.results-grid article:first-child {
  padding-left: 0;
}

.results-grid article:last-child {
  border-right: 0;
}

.results-grid strong {
  margin-bottom: 12px;
  font-size: 2rem;
  color: var(--accent);
}

.results-grid span {
  margin-top: 0;
  line-height: 1.55;
  font-size: 0.94rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.process-step {
  min-height: 188px;
  padding: 26px 24px 22px;
  background: rgba(255, 250, 244, 0.4);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.process-step:hover {
  background: rgba(255, 250, 244, 0.56);
  border-color: rgba(18, 18, 18, 0.14);
  transform: translateY(-1px);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-size: 0.75rem;
}

.process-step span::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.process-step p {
  max-width: 34ch;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 208px;
  padding: 28px;
  background: rgba(255, 250, 244, 0.68);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 250, 244, 0.82);
  border-color: rgba(18, 18, 18, 0.14);
  transform: translateY(-2px);
}

.testimonial-card strong {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: white;
  transition: all var(--transition);
  box-shadow: 0 20px 48px rgba(255, 51, 1, 0.2);
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(255, 51, 1, 0.28);
}

.cta-card > div {
  flex-grow: 1;
}

.cta-card .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.cta-card h2 {
  color: white;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .button-primary {
  flex-shrink: 0;
  padding: 12px 32px;
  white-space: nowrap;
  background: white;
  color: var(--accent);
  font-weight: 600;
  border: none;
}

.site-footer {
  margin-top: 64px;
  padding: 48px max(24px, calc((100vw - var(--container)) / 2)) 24px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(236, 228, 215, 0.4), rgba(220, 212, 199, 0.8));
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 32px;
}

.footer-brand p,
.footer-links a,
.footer-link-text,
.footer-bottom p {
  color: var(--muted);
}

.footer-brand p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 0 22px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-links a {
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-link-text {
  font-size: 0.92rem;
  opacity: 0.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

/* Services Hero Section */
.section-services-hero {
  padding: 72px 0 56px;
  margin-bottom: 0;
}

.services-hero-content {
  display: grid;
  gap: 14px;
}

.services-hero-line {
  width: 40px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.services-hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
}

.services-hero-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

/* Services Grid & Cards */
.services-grid {
  padding: 72px 0;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  transition: all var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card-2:hover {
  border-color: #8a5cf6;
}

.service-card-3:hover {
  border-color: #06b6d4;
}

.service-card-4:hover {
  border-color: #ec4899;
}

.service-card-5:hover {
  border-color: #f59e0b;
}

.service-card-6:hover {
  border-color: #10b981;
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 51, 1, 0.08);
  color: var(--accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-icon i {
  opacity: 0.9;
}

.service-card-2 .service-icon {
  background: rgba(138, 92, 246, 0.08);
  color: #8a5cf6;
}

.service-card-3 .service-icon {
  background: rgba(6, 182, 212, 0.08);
  color: #06b6d4;
}

.service-card-4 .service-icon {
  background: rgba(236, 72, 153, 0.08);
  color: #ec4899;
}

.service-card-5 .service-icon {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.service-card-6 .service-icon {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.service-card-header div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 4px 8px;
  background: rgba(0,0,0,0.04);
  border-radius: 4px;
  width: fit-content;
}

.service-card h3 {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}

.service-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
}

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

/* Section intro for services */
.section-services-intro {
  padding-top: 52px;
  padding-bottom: 0;
}

.section-services-intro .section-heading {
  margin-bottom: 36px;
}

/* Services Detail Pages */
.service-detail-intro {
  padding-top: 72px;
  padding-bottom: 24px;
}

.service-detail-header {
  max-width: 720px;
}

.breadcrumb {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
}

.breadcrumb:hover {
  color: var(--accent);
}

.service-detail-header h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-detail-lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.service-detail-main {
  display: grid;
  gap: 38px;
}

.detail-section {
  border-bottom: 1px solid rgba(18, 18, 18, 0.05);
  padding-bottom: 32px;
  margin-bottom: 0;
}

.detail-section:last-child {
  border-bottom: none;
}

.detail-section h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

.detail-section p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.detail-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding-left: 38px;
  position: relative;
  min-height: 28px;
}

.detail-list li::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: -1px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 51, 1, 0.1);
  color: var(--accent-deep);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

.detail-list strong {
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 600;
}

.detail-list span {
  font-size: 0.88rem;
  line-height: 1.56;
  color: var(--muted);
}

.detail-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-benefits li {
  font-size: 0.93rem;
  line-height: 1.56;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.detail-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3301' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-detail-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(247, 239, 230, 0.78));
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 18, 18, 0.14);
}

.sidebar-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.56;
  color: var(--muted);
}

.sidebar-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sidebar-metrics li {
  font-size: 0.9rem;
  line-height: 1.56;
}

.sidebar-metrics strong {
  display: block;
  font-weight: 600;
}

.sidebar-metrics span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--muted);
}

.sidebar-metrics a {
  color: var(--muted);
  transition: color var(--transition);
}

.sidebar-metrics a:hover {
  color: var(--accent);
}

.sidebar-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
}

.sidebar-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.sidebar-metrics li {
  font-size: 0.88rem;
}

.sidebar-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.sidebar-metrics span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

details {
  margin-bottom: 12px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(255, 250, 244, 0.5);
  transition: background var(--transition);
}

details:hover {
  background: rgba(255, 250, 244, 0.9);
}

details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: color var(--transition);
  user-select: none;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary:hover {
  color: var(--accent);
}

details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform var(--transition);
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details p {
  margin: 12px 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-detail-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    position: static;
    top: auto;
  }
}

/* Section Spacing & Dividers */
.section.cta {
  padding: 72px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 51, 1, 0.02) 100%);
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.related-services {
  padding: 48px 0 0;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  margin-top: 12px;
}

.related-services-title {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 700;
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.related-service-link {
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  transition: all var(--transition);
  text-decoration: none;
}

.related-service-link:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateX(2px);
}

.related-service-link h4 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.related-service-link p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Page Content Layouts */
.about-content,
.legal-content,
.contact-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
}

.not-found-content {
  display: block;
}

.not-found-main {
  display: grid;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.not-found-panel {
  padding: 52px 40px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.9), rgba(247, 239, 230, 0.82));
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 58px;
  padding: 0 24px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 51, 1, 0.14), rgba(255, 209, 92, 0.34));
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.not-found-panel h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.not-found-panel p {
  margin: 0 auto;
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

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

.not-found-link-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.not-found-link-card:hover,
.not-found-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 51, 1, 0.3);
  background: rgba(255, 250, 244, 0.94);
}

.not-found-link-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.not-found-link-card span {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.about-main,
.legal-main,
.contact-main {
  display: grid;
  gap: 32px;
}

.about-section,
.legal-section,
.contact-section {
  border-bottom: 1px solid rgba(18, 18, 18, 0.05);
  padding-bottom: 32px;
}

.about-section:last-child,
.legal-section:last-child {
  border-bottom: none;
}

.contact-section:first-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-section h2,
.legal-section h2,
.contact-section h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.about-section p,
.legal-section p,
.contact-section p {
  margin: 0 0 12px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

.about-section p:last-child,
.legal-section p:last-child {
  margin-bottom: 0;
}

.about-values,
.contact-expectations {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.about-values li,
.contact-expectations li {
  display: grid;
  gap: 4px;
  padding-left: 24px;
  position: relative;
}

.about-values li::before,
.contact-expectations li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff3301' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.about-values strong,
.contact-expectations strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.about-values span,
.contact-expectations span {
  font-size: 0.88rem;
  line-height: 1.56;
  color: var(--muted);
}

.legal-list {
  margin: 10px 0 0;
  padding-left: 20px;
  list-style: disc;
  display: grid;
  gap: 8px;
}

.legal-list li {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Contact methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.contact-method {
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  transition: all var(--transition);
}

.contact-method:hover {
  border-color: var(--accent);
  background: var(--surface);
}

.contact-method h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-method p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.contact-method a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: all var(--transition);
}

/* Case Studies */
.case-studies {
  padding-top: 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.case-study-card {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  transition: all var(--transition);
}

.case-study-card:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.case-study-header {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}

.case-study-header h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.case-study-category {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.case-study-body p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.case-study-body p:last-child {
  margin-bottom: 0;
}

.case-study-body p strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--ink);
  font-weight: 600;
}

.case-study-list {
  margin: 8px 0 0;
  padding-left: 18px;
  list-style: disc;
  display: grid;
  gap: 6px;
}

.case-study-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-content,
  .legal-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .not-found-links {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .section-services-hero {
    padding: 52px 0 40px;
  }

  .services-hero-title {
    font-size: 1.9rem;
  }

  .not-found-panel {
    padding: 24px;
  }

  .not-found-panel h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .not-found-actions {
    flex-direction: column;
  }

  .not-found-actions .button {
    width: 100%;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section.cta {
    padding: 52px 0;
    margin-top: 20px;
  }

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

  .cta-card .button-primary {
    width: 100%;
    text-align: center;
  }

  .service-detail-intro {
    padding-top: 52px;
  }

  .service-detail-header h1 {
    font-size: 1.8rem;
  }

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .clients-strip {
    gap: 12px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .services-intro-meta {
    max-width: 440px;
  }

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

  .bento-card,
  .bento-card-large,
  .bento-card-dark,
  .bento-card-wide {
    grid-column: span 1;
    min-height: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero-aside {
    max-width: 420px;
    padding-top: 0;
  }

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

  .logo-strip,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .results-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .results-grid article:last-child {
    border-bottom: 0;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-card .button-primary {
    width: 100%;
  }

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

  .footer-brand,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 780px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 4px;
  }

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

  .site-nav a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .clients-logos {
    gap: 10px;
  }

  .hero {
    padding: 24px 0 24px;
  }

  .hero-content {
    align-items: flex-start;
  }

  .section {
    padding: 42px 0;
  }

  .page-hero {
    padding: 30px 0 12px;
  }

  .service-jump-grid {
    gap: 8px;
  }

  .service-card,
  .process-step,
  .testimonial-card,
  .cta-card,
  .page-hero-panel-shell,
  .bento-card {
    padding: 24px;
  }

  .service-card,
  .process-step,
  .testimonial-card {
    min-height: auto;
  }

  .logo-strip,
  .clients-logos,
  .service-grid,
  .process-list,
  .testimonial-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside-panel {
    padding: 20px 18px 18px;
  }

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

  .logo-strip p {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  }

  .logo-strip p:last-child {
    border-bottom: 0;
  }

  .section-dark {
    padding: 32px 22px;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .brand-text span {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .button {
    width: 100%;
  }

  .bento-points-inline {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-orbit-one,
  .hero-orbit-two {
    animation: none;
  }
}

/* ── Scroll Animations ──────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(n+6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ── Micro-Animations ───────────────────────── */
.service-card,
.process-step,
.testimonial-card,
.related-service-link {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.process-step:hover,
.testimonial-card:hover,
.related-service-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(18, 18, 18, 0.14);
}

/* ── Dynamic Contact Form ───────────────────── */
.dynamic-form {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 24px 20px 10px;
  background: rgba(255, 250, 244, 0.6);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all var(--transition);
  box-shadow: inset 0 2px 4px rgba(18,18,18,0.02);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 51, 1, 0.1);
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 0.95rem;
  color: var(--muted);
  pointer-events: none;
  transition: all var(--transition);
  transform-origin: left top;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-10px) scale(0.75);
  color: var(--accent-deep);
}

.form-success {
  padding: 16px;
  margin-top: 10px;
  background: rgba(20, 164, 77, 0.1);
  border: 1px solid rgba(20, 164, 77, 0.2);
  border-radius: 12px;
  color: #11823b;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Contact Sidebar Spacing ────────────────── */
.contact-sidebar,
.about-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: start;
}

/* ── Insights & Blog UI ────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  transition: all var(--transition);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
}

.blog-card:hover {
  border-color: var(--accent);
  background: var(--surface);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--accent-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card .blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.3;
  color: var(--charcoal);
  font-family: inherit;
}

.blog-excerpt {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
}

.read-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.read-more i {
  transition: transform var(--transition);
}

.blog-card:hover .read-more i {
  transform: translateX(4px);
}

/* ── Article Layout ────────────────── */
.article-header {
  padding: 80px 0 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.article-category {
  display: inline-block;
  background: rgba(255, 51, 1, 0.1);
  color: var(--accent-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--charcoal);
}

.article-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

.article-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 48px 0 24px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--charcoal);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul {
  margin-bottom: 32px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content strong {
  font-weight: 700;
  color: var(--charcoal);
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  margin: 40px 0;
  padding: 24px 32px;
  background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}

.article-cta {
  background: var(--charcoal);
  color: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 60px;
}

.article-cta h3 {
  color: white;
  margin: 0 0 16px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* ── Related Insights ────────────────── */
.related-insights {
  max-width: 860px;
  margin: 56px auto 0;
  padding: 34px 30px 18px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(247, 239, 230, 0.78));
  box-shadow: var(--shadow);
}

.related-insights-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.related-insights-copy {
  max-width: 560px;
}

.related-insights-copy h2 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.related-insights-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

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

.related-link-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 16px 28px rgba(18, 18, 18, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.related-link-card:hover,
.related-link-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 51, 1, 0.24);
}

.related-link-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.related-link-tag,
.related-link-index {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-link-tag {
  background: rgba(255, 51, 1, 0.08);
  color: var(--accent-deep);
}

.related-link-index {
  background: rgba(18, 18, 18, 0.05);
  color: var(--muted);
}

.related-link-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  line-height: 1.16;
  color: var(--charcoal);
}

.related-link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.66;
}

.related-link-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.93rem;
  font-weight: 700;
}

.related-link-read i {
  transition: transform var(--transition);
}

.related-link-card:hover .related-link-read i,
.related-link-card:focus-visible .related-link-read i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-insights {
    padding: 26px 22px 14px;
    border-radius: 26px;
  }

  .related-insights-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .related-insights-grid {
    grid-template-columns: 1fr;
  }

  .related-link-card {
    min-height: 0;
    padding: 24px 22px 22px;
  }
}



/* ============================================
   MOBILE RESPONSIVENESS FIXES
   ============================================ */

/* --- page-hero-layout (service/about/contact pages) --- */
@media (max-width: 860px) {
  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero-panel {
    max-width: 480px;
  }
}

/* --- services cards: 2-col at tablet, 1-col on mobile --- */
@media (max-width: 780px) and (min-width: 641px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* --- Article / Blog pages --- */
@media (max-width: 780px) {
  .article-shell {
    padding: 0 0 40px;
  }

  .article-header {
    padding: 32px 0 24px;
  }

  .article-header h1 {
    font-size: clamp(1.7rem, 8vw, 2.6rem);
    line-height: 1.15;
  }

  .article-content {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.72;
  }

  .article-content h2 {
    font-size: 1.45rem;
  }

  .article-content h3 {
    font-size: 1.2rem;
  }

  .article-cta-block {
    padding: 28px 20px;
  }

  .keep-reading-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-brand-mark .brand-logo {
    height: 44px;
  }

  .brand-logo {
    height: 44px;
  }

  img, video, iframe, table {
    max-width: 100%;
  }
}

/* --- Service detail pages --- */
@media (max-width: 640px) {
  .service-detail-header {
    padding-top: 12px;
  }

  .service-detail-header h1 {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    line-height: 1.15;
  }

  .service-detail-lead {
    font-size: 0.98rem;
  }

  .detail-section h2 {
    font-size: 1.3rem;
  }

  .detail-list li {
    padding-left: 0;
    padding-top: 40px;
  }

  .detail-list li::before {
    top: 0;
    left: 0;
  }

  .sidebar-card {
    padding: 20px 18px;
  }
}

/* --- Tiny screens (< 400px) --- */
@media (max-width: 400px) {
  .page-shell {
    width: calc(100% - 16px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand-logo {
    height: 36px;
  }

  .services-hero-title {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 22px 18px;
  }

  .button {
    font-size: 0.88rem;
    padding: 0 16px;
  }

  .cta-card {
    padding: 28px 18px;
  }

  .section-dark {
    padding: 28px 16px;
    border-radius: 18px;
  }
}
