/* Currently Trending — navbar only */

:root {
  --font-brand: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

::selection {
  background-color: rgb(24 24 27);
  color: rgb(255 255 255);
}

.font-brand {
  font-family: var(--font-brand);
  font-weight: 900;
  letter-spacing: -0.025em;
}

*:focus-visible {
  outline: 2px solid rgb(161 161 170);
  outline-offset: 2px;
  border-radius: 6px;
}

#mobile-menu.open {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}

/* Minimal hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fffefe;
  padding: 1rem 1.25rem 2rem;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  width: min(100%, 72rem);
  margin: 0 auto;
  text-align: left;
}

.hero__content {
  min-width: 0;
}

.hero__visual {
  display: none;
}

.hero__visual img {
  width: min(52%, 15rem);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(249, 115, 22, 0.18));
  animation: heroVisualFloat 6s ease-in-out infinite;
}

.hero__title {
  max-width: 44rem;
  margin: 0;
  color: #09090b;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-align: left;
}

.hero__title-line {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(0.5em);
  animation: heroTitleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.1s;
}

.hero__title-muted {
  color: #71717a;
}

.hero__description {
  max-width: 40rem;
  margin: 0.875rem 0 0;
  color: #52525b;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
  opacity: 0;
  transform: translateY(18px);
  animation: heroReveal 0.8s 0.48s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero__button:hover {
  transform: translateY(-2px);
}

.hero__button svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}

.hero__button--primary {
  background: #18181b;
  color: #fff;
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.14);
}

.hero__button--primary:hover {
  background: #f97316;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
}

.hero__button--primary:hover svg {
  transform: translateX(3px);
}

.hero__button--secondary {
  border-color: rgba(24, 24, 27, 0.14);
  color: #27272a;
}

.hero__button--secondary:hover {
  border-color: rgba(24, 24, 27, 0.32);
  background: rgba(255, 255, 255, 0.7);
}

@media (min-width: 960px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
    gap: 2rem;
  }

  .hero__visual {
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(18px);
    animation: heroReveal 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero__visual img {
    width: 100%;
    max-width: 22rem;
  }
}

/* About section */
.about {
  background: #f5f5f4;
  padding: 3rem 1.25rem 4rem;
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.about__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.about__header {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.about__eyebrow {
  margin-bottom: 0.75rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__title {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about__content {
  display: grid;
  gap: 2.5rem;
}

.about__main {
  max-width: 40rem;
}

.about__lead {
  margin: 0 0 1rem;
  color: #27272a;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.about__lead strong {
  font-weight: 700;
  color: #09090b;
}

.about__text {
  margin: 0 0 1rem;
  color: #52525b;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.about__text:last-child {
  margin-bottom: 0;
}

.about__text strong {
  font-weight: 600;
  color: #27272a;
}

.about__aside {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.about__card {
  padding: 1.125rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1rem;
}

.about__card-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #a1a1aa;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about__card-value {
  margin: 0;
  color: #09090b;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about__card-note {
  margin: 0.25rem 0 0;
  color: #71717a;
  font-size: 0.8125rem;
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  position: relative;
  padding-left: 1rem;
  color: #27272a;
  font-size: 0.875rem;
  line-height: 1.6;
}

.about__list li + li {
  margin-top: 0.35rem;
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #f97316;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: #18181b;
  font-size: 0.875rem;
  font-weight: 700;
  transition: color 0.2s ease, gap 0.2s ease;
}

.about__link:hover {
  color: #f97316;
  gap: 0.65rem;
}

.about__link svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .about {
    padding: 4.5rem 2.5rem 5rem;
  }

  .about__header {
    margin-bottom: 3rem;
  }

  .about__content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Services section */
.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3rem 0 4rem;
  background:
    linear-gradient(165deg, #fffbeb 0%, #fff7ed 28%, #f5f3ff 62%, #fafafa 100%);
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.services__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.services__orb--1 {
  top: -18%;
  left: -8%;
  width: min(36rem, 70vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.38) 0%, rgba(249, 115, 22, 0) 68%);
  animation: servicesOrbDrift1 18s ease-in-out infinite alternate;
}

.services__orb--2 {
  top: 10%;
  right: -12%;
  width: min(32rem, 62vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32) 0%, rgba(99, 102, 241, 0) 70%);
  animation: servicesOrbDrift2 22s ease-in-out infinite alternate;
}

.services__orb--3 {
  bottom: -22%;
  left: 28%;
  width: min(28rem, 55vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.28) 0%, rgba(251, 191, 36, 0) 72%);
  animation: servicesOrbDrift3 20s ease-in-out infinite alternate;
}

.services__mesh {
  position: absolute;
  inset: -40%;
  opacity: 0.45;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(249, 115, 22, 0.12), rgba(99, 102, 241, 0.1), rgba(251, 191, 36, 0.08), rgba(249, 115, 22, 0.12));
  animation: servicesMeshSpin 28s linear infinite;
}

.services__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(24, 24, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 27, 0.04) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 20%, transparent 78%);
  animation: servicesGridShift 24s linear infinite;
}

.services__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.services__header {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.services__eyebrow {
  margin-bottom: 0.75rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services__title {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.services__intro {
  margin: 0.875rem 0 0;
  color: #52525b;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.services__carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  --items-visible: 1;
}

@media (min-width: 768px) {
  .services__carousel {
    --items-visible: 3;
  }
}

@media (min-width: 1280px) {
  .services__carousel {
    --items-visible: 4;
  }
}

.services__arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #18181b;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.services__arrow:hover:not(:disabled) {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
}

.services__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.services__arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

.services__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.services__track {
  --item-count: 10;
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% * var(--item-count) / var(--items-visible));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.services__infotab {
  flex: 0 0 calc(100% / var(--item-count));
  box-sizing: border-box;
  padding: 0 0.375rem;
  text-align: center;
}

.services__infotab-media {
  position: relative;
  margin: 0 0 0.625rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(145deg, #ffffff 0%, #f4f4f5 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 12px 32px rgba(24, 24, 27, 0.08),
    0 2px 8px rgba(24, 24, 27, 0.04);
}

@media (max-width: 767px) {
  .services__infotab-media {
    aspect-ratio: 4 / 3;
    max-width: 16rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.services__infotab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__infotab-media.is-placeholder img {
  display: none;
}

.services__infotab-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services__infotab-media.is-placeholder .services__infotab-placeholder {
  display: flex;
}

.services__infotab-title {
  margin: 0;
  color: #09090b;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .services__infotab {
    padding: 0 0.5rem;
  }

  .services__infotab-title {
    font-size: 0.875rem;
  }
}

.services__footer {
  margin-top: 2rem;
}

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(24, 24, 27, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #18181b;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(24, 24, 27, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, gap 0.2s ease, transform 0.2s ease;
}

.services__cta:hover {
  border-color: #18181b;
  background: #18181b;
  color: #fff;
  gap: 0.65rem;
}

.services__cta svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .services {
    padding: 4.5rem 0 5rem;
  }

  .services__inner {
    padding: 0 2.5rem;
  }

  .services__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .services__header {
    margin-bottom: 2.5rem;
  }
}

/* Services page */
.page-hero {
  padding: 2rem 1.25rem 2.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(24, 24, 27, 0.06);
}

.page-hero__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.page-hero__eyebrow {
  margin-bottom: 0.75rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero__title {
  margin: 0;
  color: #09090b;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.page-hero__text {
  margin: 1rem 0 0;
  max-width: 40rem;
  color: #52525b;
  font-size: 1rem;
  line-height: 1.65;
}

.services-page {
  padding: 2.5rem 1.25rem 4rem;
  background: #f5f5f4;
}

.services-page__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.services-page__grid {
  display: grid;
  gap: 1rem;
}

.services-page__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-page__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(24, 24, 27, 0.08);
}

.services-page__card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f4f5 0%, #e4e4e7 100%);
}

.services-page__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-page__card-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-page__card-media.is-placeholder .services-page__card-placeholder {
  display: flex;
}

.services-page__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.services-page__card-title {
  margin: 0 0 0.5rem;
  color: #09090b;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-page__card-text {
  margin: 0 0 0.75rem;
  color: #52525b;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.services-page__card-details {
  margin: 0 0 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(24, 24, 27, 0.07);
  color: #71717a;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.services-page__card-subhead {
  margin: 0 0 0.5rem;
  color: #a1a1aa;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.services-page__card-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.services-page__card-list li {
  position: relative;
  padding-left: 0.875rem;
  color: #27272a;
  font-size: 0.75rem;
  line-height: 1.5;
}

.services-page__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: #f97316;
}

.services-page__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0;
}

.services-page__card-tag {
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(24, 24, 27, 0.1);
  border-radius: 999px;
  background: #fafafa;
  color: #52525b;
  font-size: 0.6875rem;
  font-weight: 600;
}

.services-page__card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 24, 27, 0.07);
}

.services-page__card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.625rem 0.9rem;
  border-radius: 999px;
  background: #18181b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.services-page__card-cta svg {
  width: 0.8rem;
  height: 0.8rem;
  transition: transform 0.2s ease;
}

.services-page__card-cta:hover {
  background: #f97316;
  transform: translateY(-1px);
}

.services-page__card-cta:hover svg {
  transform: translateX(0.15rem);
}

@media (min-width: 640px) {
  .services-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .page-hero {
    padding: 3rem 2.5rem 3rem;
  }

  .services-page {
    padding: 3.5rem 2.5rem 5rem;
  }

  .services-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .services-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact + Blogs dual section */
.dual-section {
  background: #fff;
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.dual-section__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.dual-section__grid {
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

.dual-section__col {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.dual-section__header {
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.dual-section__eyebrow {
  margin-bottom: 0.5rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dual-section__title {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Contact form block */
.contact-block__success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem 1.125rem;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0.875rem;
  color: #065f46;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-block__success svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
}

.contact-block__success p {
  margin: 0;
}

.contact-block__form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 0;
}

.contact-block__row {
  display: grid;
  gap: 0.875rem;
}

.contact-block__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-block__label {
  color: #27272a;
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-block__label span {
  color: #f97316;
}

.contact-block__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 0.625rem;
  background: #fafafa;
  color: #09090b;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-block__input::placeholder {
  color: #a1a1aa;
}

.contact-block__input:focus {
  outline: none;
  border-color: #18181b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.08);
}

.contact-block__input.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-block__textarea {
  flex: 1;
  min-height: 5.5rem;
  resize: vertical;
}

.contact-block__field:has(.contact-block__textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-block__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  padding-right: 2rem;
  cursor: pointer;
}

.contact-block__check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #52525b;
  font-size: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
}

.contact-block__check input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  accent-color: #18181b;
  cursor: pointer;
}

.contact-block__error {
  min-height: 1rem;
  margin: 0;
  color: #dc2626;
  font-size: 0.6875rem;
  font-weight: 500;
}

.contact-block__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-block__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  min-height: 2.75rem;
  margin-top: auto;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: #18181b;
  color: #fff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.contact-block__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #27272a;
}

.contact-block__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-block__submit svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

/* Blogs image grid — 2×2 */
.blogs-block__grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.blogs-block__item {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgb(var(--blog-accent));
  text-decoration: none;
  --blog-accent: 24, 24, 27;
}

.blogs-block__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  box-sizing: border-box;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.blogs-block__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(var(--blog-accent));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blogs-block__title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.875rem;
  color: #fff;
  font-size: clamp(0.6875rem, 1.8vw, 0.8125rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.blogs-block__item:hover img,
.blogs-block__item:focus-visible img {
  opacity: 0;
  transform: scale(1.02);
}

.blogs-block__item:hover .blogs-block__overlay,
.blogs-block__item:focus-visible .blogs-block__overlay {
  opacity: 1;
}

.blogs-block__item:hover .blogs-block__title,
.blogs-block__item:focus-visible .blogs-block__title {
  opacity: 1;
  transform: translateY(0);
}

.blogs-block__item:nth-child(4):hover .blogs-block__title,
.blogs-block__item:nth-child(4):focus-visible .blogs-block__title {
  color: #09090b;
  text-shadow: none;
}

.blogs-block__item:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.blogs-block__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f4f4f5 0%, #d4d4d8 100%);
}

.blogs-block__item.is-placeholder .blogs-block__placeholder {
  display: block;
}

.blogs-block__item:nth-child(1).is-placeholder .blogs-block__placeholder {
  background: linear-gradient(145deg, #fff7ed 0%, #fdba74 100%);
}

.blogs-block__item:nth-child(2).is-placeholder .blogs-block__placeholder {
  background: linear-gradient(145deg, #eef2ff 0%, #a5b4fc 100%);
}

.blogs-block__item:nth-child(3).is-placeholder .blogs-block__placeholder {
  background: linear-gradient(145deg, #ecfdf5 0%, #6ee7b7 100%);
}

.blogs-block__item:nth-child(4).is-placeholder .blogs-block__placeholder {
  background: linear-gradient(145deg, #fdf4ff 0%, #d8b4fe 100%);
}

.blogs-block__item:nth-child(1) {
  --blog-accent: 220, 38, 38;
}

.blogs-block__item:nth-child(2) {
  --blog-accent: 37, 99, 235;
}

.blogs-block__item:nth-child(3) {
  --blog-accent: 22, 163, 74;
}

.blogs-block__item:nth-child(4) {
  --blog-accent: 234, 179, 8;
}

@media (prefers-reduced-motion: reduce) {
  .blogs-block__item img,
  .blogs-block__overlay,
  .blogs-block__title {
    transition: none;
  }
}

@media (min-width: 640px) {
  .contact-block__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .dual-section {
    padding: 4rem 0 5rem;
  }

  .dual-section__inner {
    padding: 0 2.5rem;
  }

  .dual-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: stretch;
  }

  .dual-section__header {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dual-section__grid {
    gap: 4rem;
  }
}

/* Site footer */
.site-footer {
  background: #09090b;
  color: #fafafa;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.site-footer__top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo {
  display: inline-block;
  color: #fff;
  font-family: var(--font-brand);
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  transition: color 0.2s ease;
}

.site-footer__logo:hover {
  color: #f97316;
}

.site-footer__tagline {
  max-width: 22rem;
  margin: 0.75rem 0 0;
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.65;
}

.site-footer__heading {
  margin: 0 0 0.875rem;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 0.5rem;
}

.site-footer__link {
  color: #d4d4d8;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: #f97316;
}

.site-footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__link--icon svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  opacity: 0.9;
}

.site-footer__text {
  color: #71717a;
  font-size: 0.875rem;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  padding-top: 1.75rem;
}

.site-footer__copy {
  margin: 0;
  color: #71717a;
  font-size: 0.8125rem;
}

.site-footer__socials {
  display: flex;
  gap: 0.625rem;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #d4d4d8;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__social:hover {
  border-color: #f97316;
  background: #f97316;
  color: #fff;
}

.site-footer__social svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding: 4rem 2.5rem 2.5rem;
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes servicesOrbDrift1 {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(8%, 12%, 0) scale(1.12);
  }
}

@keyframes servicesOrbDrift2 {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-10%, 8%, 0) scale(1.08);
  }
}

@keyframes servicesOrbDrift3 {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(6%, -10%, 0) scale(1.15);
  }
}

@keyframes servicesMeshSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes servicesGridShift {
  to {
    background-position: 2.5rem 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services__orb,
  .services__mesh,
  .services__grid {
    animation: none;
  }
}

@media (min-width: 640px) {
  .hero {
    padding: 3rem 2.5rem 3rem;
  }

  .hero__description {
    margin-top: 1.25rem;
  }

  .hero__actions {
    margin-top: 1.75rem;
    gap: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-line,
  .hero__description,
  .hero__actions,
  .hero__visual,
  .hero__visual img {
    animation: none;
  }

  .hero__title-line,
  .hero__description,
  .hero__actions,
  .hero__visual {
    opacity: 1;
    transform: none;
  }
}

/* AI article */
.article {
  background: #fff;
}

.article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.25rem 1.25rem 3.5rem;
  color: #fff;
  background: #101226;
}

.article-hero__grid,
.article-hero__orb {
  position: absolute;
  pointer-events: none;
}

.article-hero__grid {
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: radial-gradient(ellipse 85% 90% at 75% 35%, #000 0%, transparent 72%);
}

.article-hero__orb {
  z-index: -1;
  border-radius: 50%;
  filter: blur(16px);
}

.article-hero__orb--one {
  top: -11rem;
  right: -7rem;
  width: min(38rem, 78vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.75), transparent 66%);
}

.article-hero__orb--two {
  bottom: -16rem;
  left: -10rem;
  width: min(34rem, 72vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.42), transparent 68%);
}

.article-hero__inner,
.article__shell {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.article-hero__back:hover {
  color: #fff;
}

.article-hero__back svg {
  width: 1rem;
  height: 1rem;
}

.article-hero__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.article-hero__eyebrow,
.article-section__label {
  margin: 0 0 0.875rem;
  color: #93c5fd;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-hero__eyebrow span {
  margin: 0 0.4rem;
  color: #f87171;
}

.article-hero__title {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.article-hero__title em {
  color: #fca5a5;
  font-style: normal;
}

.article-hero__lead {
  max-width: 39rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
}

.article-hero__visual {
  position: relative;
  max-width: 31rem;
  margin: 0;
}

.article-hero__visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.article-hero__stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.article-hero__stat strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.article-hero__stat span {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.625rem;
  font-weight: 600;
}

.article-hero__stat--top {
  top: -0.75rem;
  right: -0.25rem;
}

.article-hero__stat--bottom {
  bottom: -1rem;
  left: -0.5rem;
}

.article__shell {
  display: grid;
  padding: 3rem 1.25rem 5rem;
}

.article-toc {
  display: none;
}

.article__content {
  max-width: 43rem;
}

.article__content > p {
  margin: 0 0 1.25rem;
  color: #3f3f46;
  font-size: 1rem;
  line-height: 1.82;
}

.article__content > .article__intro {
  color: #18181b;
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.article-section {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.75rem;
  margin-top: 4.5rem;
}

.article-section__number {
  padding-top: 0.3rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.article-section__label {
  color: #f97316;
}

.article-section h2 {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.article-section h3 {
  margin: 2rem 0 0.75rem;
  color: #18181b;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.article-section p {
  margin: 1.1rem 0 0;
  color: #52525b;
  font-size: 1rem;
  line-height: 1.8;
}

.article-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.article-card {
  padding: 1.125rem;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1rem;
  background: #fafafa;
}

.article-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: #18181b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.article-card h3 {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
}

.article-card p {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.article-flow {
  display: grid;
  gap: 0.5rem;
  margin: 1.75rem 0;
  padding: 1rem;
  border-radius: 1rem;
  background: #eff6ff;
}

.article-flow div {
  padding: 0.7rem;
  border-radius: 0.75rem;
  background: #fff;
}

.article-flow span,
.article-flow small {
  display: block;
}

.article-flow span {
  margin-bottom: 0.35rem;
  color: #2563eb;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.article-flow strong {
  color: #18181b;
  font-size: 0.8125rem;
}

.article-flow small {
  margin-top: 0.2rem;
  color: #71717a;
  font-size: 0.6875rem;
}

.article-flow i {
  display: none;
  align-self: center;
  color: #2563eb;
  font-style: normal;
  font-weight: 700;
}

.article-quote {
  margin: 2rem 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 3px solid #f97316;
  border-radius: 0 1rem 1rem 0;
  background: #fff7ed;
  color: #9a3412;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.article-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #52525b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.article-list li::before {
  content: '';
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f97316;
}

.article-list strong {
  color: #18181b;
}

.article-section--final {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #18181b, #27272a);
}

.article-section--final .article-section__number,
.article-section--final .article-section__label {
  color: #fdba74;
}

.article-section--final h2 {
  color: #fff;
}

.article-section--final p {
  color: rgba(255, 255, 255, 0.7);
}

.article-cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #ef4444;
  color: #fff;
}

.article-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-cta h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.article-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #18181b;
  font-size: 0.8125rem;
  font-weight: 800;
}

.article-cta a svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .article-hero {
    padding: 2rem 2.5rem 4.5rem;
  }

  .article-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .article-flow i {
    display: block;
  }

  .article-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
}

@media (min-width: 900px) {
  .article-hero__content {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: center;
  }

  .article-hero__visual {
    justify-self: end;
  }

  .article__shell {
    grid-template-columns: 12rem minmax(0, 43rem);
    gap: 4.5rem;
    padding: 5.5rem 2.5rem 6rem;
  }

  .article-toc {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 0.75rem;
  }

  .article-toc p {
    margin: 0 0 0.35rem;
    color: #18181b;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .article-toc a {
    color: #71717a;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s ease;
  }

  .article-toc a:hover {
    color: #f97316;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-hero__orb {
    filter: none;
  }
}

/* Shopify vs custom article */
.commerce-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.25rem 1.25rem 3.5rem;
  color: #fff;
  background: #071437;
}

.commerce-hero__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.commerce-hero__grid,
.commerce-hero__light {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.commerce-hero__grid {
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: radial-gradient(circle at 52% 44%, #000, transparent 75%);
}

.commerce-hero__light {
  border-radius: 50%;
  filter: blur(30px);
}

.commerce-hero__light--blue {
  top: -16rem;
  left: -10rem;
  width: 40rem;
  height: 40rem;
  background: rgba(37, 99, 235, 0.45);
}

.commerce-hero__light--violet {
  right: -12rem;
  bottom: -20rem;
  width: 45rem;
  height: 45rem;
  background: rgba(109, 40, 217, 0.44);
}

.commerce-hero__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.commerce-hero h1 {
  max-width: 38rem;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.commerce-hero h1 span {
  color: #93c5fd;
  font-size: 0.52em;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.commerce-hero__lead {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.commerce-hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 32rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.commerce-hero__side {
  padding: 0.75rem;
  border-radius: 1rem;
  text-align: center;
}

.commerce-hero__side--shopify {
  background: linear-gradient(145deg, #0e7490, #1d4ed8);
}

.commerce-hero__side--custom {
  background: linear-gradient(145deg, #5b21b6, #7c3aed);
}

.commerce-hero__side-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-hero__side svg {
  display: block;
  width: 100%;
}

.commerce-hero__versus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 3px solid #071437;
  border-radius: 50%;
  background: #fff;
  color: #071437;
  font-size: 0.625rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.commerce-article .article-section h2 em {
  color: #2563eb;
  font-style: normal;
}

.commerce-cost {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.commerce-cost__card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 1rem;
  color: #fff;
}

.commerce-cost__card--shopify {
  background: linear-gradient(135deg, #0369a1, #1d4ed8);
}

.commerce-cost__card--custom {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

.commerce-cost__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8125rem;
  font-weight: 900;
}

.commerce-cost__card p,
.commerce-cost__card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.6875rem;
  font-weight: 700;
}

.commerce-cost__card strong {
  display: block;
  margin: 0.3rem 0;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.commerce-cost__bar {
  height: 0.3rem;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.commerce-cost__bar i {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.commerce-cost__card--custom .commerce-cost__bar i {
  width: 88%;
}

.commerce-split,
.commerce-verdict {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.commerce-split article,
.commerce-verdict article {
  padding: 1.25rem;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1rem;
  background: #fafafa;
}

.commerce-split article:first-child {
  border-top: 3px solid #2563eb;
}

.commerce-split article:last-child {
  border-top: 3px solid #7c3aed;
}

.commerce-split__title,
.commerce-verdict__tag {
  margin: 0;
  color: #2563eb;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.commerce-split article:last-child .commerce-split__title,
.commerce-verdict article:last-child .commerce-verdict__tag {
  color: #7c3aed;
}

.commerce-split strong {
  display: block;
  margin-top: 0.45rem;
  color: #18181b;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.commerce-split p,
.commerce-verdict p {
  margin: 0.75rem 0 0;
  color: #52525b;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.commerce-integration {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.commerce-integration div {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border-radius: 0.875rem;
  background: #eff6ff;
}

.commerce-integration span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.commerce-integration p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.commerce-integration strong {
  color: #18181b;
}

.commerce-table-wrap {
  margin-top: 1.75rem;
  overflow-x: auto;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1rem;
}

.commerce-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  color: #52525b;
  font-size: 0.75rem;
  text-align: left;
}

.commerce-table th {
  padding: 0.875rem;
  background: #18181b;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
}

.commerce-table td {
  padding: 0.875rem;
  border-top: 1px solid rgba(24, 24, 27, 0.08);
  vertical-align: top;
  line-height: 1.45;
}

.commerce-table td:first-child {
  color: #18181b;
  font-weight: 700;
}

.commerce-verdict {
  margin-top: 1.5rem;
}

.commerce-verdict article:first-child {
  background: #eff6ff;
}

.commerce-verdict article:last-child {
  background: #f5f3ff;
}

.commerce-verdict h3 {
  margin: 0.45rem 0 0;
  color: #18181b;
  font-size: 1rem;
}

.article-cta--blue {
  background: #2563eb;
}

@media (min-width: 640px) {
  .commerce-hero {
    padding: 2rem 2.5rem 4.5rem;
  }

  .commerce-cost,
  .commerce-split,
  .commerce-verdict {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .commerce-hero__content {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.75fr);
    align-items: center;
  }

  .commerce-hero__visual {
    justify-self: end;
  }
}

/* Local SEO article */
.seo-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.25rem 1.25rem 3.5rem;
  color: #fff;
  background: #14532d;
}

.seo-hero__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.seo-hero__map-grid,
.seo-hero__rings {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.seo-hero__map-grid {
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(45deg, transparent 47%, rgba(255, 255, 255, 0.32) 48%, rgba(255, 255, 255, 0.32) 52%, transparent 53%), linear-gradient(-45deg, transparent 47%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.18) 52%, transparent 53%);
  background-size: 4rem 4rem;
}

.seo-hero__rings {
  top: -21rem;
  right: -17rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.04), 0 0 0 10rem rgba(255, 255, 255, 0.025);
}

.seo-hero__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.seo-hero__eyebrow {
  margin: 0 0 0.875rem;
  color: #bbf7d0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seo-hero__eyebrow span {
  margin: 0 0.4rem;
  color: #facc15;
}

.seo-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.seo-hero h1 em {
  color: #fde047;
  font-style: normal;
}

.seo-hero__subtitle {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.seo-map-visual {
  position: relative;
  min-height: 16rem;
  max-width: 29rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(187, 247, 208, 0.25), rgba(16, 185, 129, 0.12));
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.seo-map-visual::before,
.seo-map-visual::after {
  content: '';
  position: absolute;
  width: 14rem;
  height: 1.5rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-35deg);
}

.seo-map-visual::before {
  top: 3rem;
  left: -2.5rem;
}

.seo-map-visual::after {
  right: -4rem;
  bottom: 4rem;
  transform: rotate(39deg);
}

.seo-map-visual__route {
  position: absolute;
  top: 4rem;
  left: 5rem;
  width: 11rem;
  height: 9rem;
  border: 3px dashed #fef08a;
  border-left: none;
  border-radius: 0 6rem 6rem 0;
  transform: rotate(-18deg);
}

.seo-map-visual__pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  transform: rotate(-45deg);
}

.seo-map-visual__pin::first-letter {
  transform: rotate(45deg);
}

.seo-map-visual__pin--one {
  top: 3rem;
  left: 3rem;
}

.seo-map-visual__pin--two {
  right: 2.5rem;
  bottom: 3rem;
  background: #2563eb;
}

.seo-map-visual__phone {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 9.5rem;
  padding: 0.55rem;
  border: 3px solid #18181b;
  border-radius: 0.85rem;
  background: #fff;
  color: #18181b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.seo-map-visual__search {
  display: block;
  padding: 0.35rem;
  border-radius: 0.35rem;
  background: #f4f4f5;
  color: #71717a;
  font-size: 0.42rem;
}

.seo-map-visual__results {
  display: flex;
  gap: 0.3rem;
  margin: 0.55rem 0;
}

.seo-map-visual__results i {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.35rem;
  background: #bbf7d0;
}

.seo-map-visual__results i:nth-child(2) {
  background: #bfdbfe;
}

.seo-map-visual__results i:nth-child(3) {
  background: #fef08a;
}

.seo-map-visual__phone strong {
  display: block;
  color: #15803d;
  font-size: 0.55rem;
}

.seo-article .article-section h2 em {
  color: #16a34a;
  font-style: normal;
}

.seo-pillars {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.seo-pillar {
  padding: 0.9rem;
  border: 1px solid rgba(24, 24, 27, 0.09);
  border-radius: 0.875rem;
  background: #fafafa;
  color: #18181b;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.seo-pillar:hover,
.seo-pillar.is-active {
  background: #15803d;
  color: #fff;
  transform: translateY(-2px);
}

.seo-pillar span,
.seo-pillar strong,
.seo-pillar small {
  display: block;
}

.seo-pillar span {
  font-size: 0.625rem;
  font-weight: 800;
  opacity: 0.65;
}

.seo-pillar strong {
  margin-top: 0.28rem;
  font-size: 0.875rem;
}

.seo-pillar small {
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  opacity: 0.72;
}

.seo-pillar-detail {
  margin-top: 0.75rem;
  padding: 1rem;
  border-left: 3px solid #16a34a;
  border-radius: 0 0.75rem 0.75rem 0;
  background: #f0fdf4;
}

.seo-pillar-detail strong {
  color: #166534;
  font-size: 0.8125rem;
}

.seo-pillar-detail p {
  margin: 0.35rem 0 0;
  color: #166534;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.seo-note {
  margin-top: 1rem !important;
  color: #71717a !important;
  font-size: 0.75rem !important;
  font-style: italic;
}

.seo-gbp {
  margin-top: 1.75rem;
  padding: 1.1rem;
  border: 1px solid rgba(24, 24, 27, 0.1);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 24, 27, 0.07);
}

.seo-gbp__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.seo-gbp__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: #18181b;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
}

.seo-gbp__top div {
  flex: 1;
}

.seo-gbp__top strong,
.seo-gbp__top small {
  display: block;
}

.seo-gbp__top strong {
  color: #18181b;
  font-size: 0.8125rem;
}

.seo-gbp__top small {
  margin-top: 0.15rem;
  color: #71717a;
  font-size: 0.625rem;
}

.seo-gbp__top b {
  color: #a16207;
  font-size: 0.75rem;
}

.seo-gbp__lines {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
}

.seo-gbp__lines i {
  height: 0.42rem;
  border-radius: 99px;
  background: #e4e4e7;
}

.seo-gbp__lines i:nth-child(2) {
  width: 78%;
}

.seo-gbp__lines i:nth-child(3) {
  width: 55%;
}

.seo-gbp__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.seo-gbp__actions span {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.625rem;
  font-weight: 700;
  text-align: center;
}

.seo-review-visual {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #fefce8, #fff7ed);
}

.seo-review-visual__score {
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  text-align: center;
}

.seo-review-visual__score strong,
.seo-review-visual__score span,
.seo-review-visual__score small {
  display: block;
}

.seo-review-visual__score strong {
  color: #18181b;
  font-size: 1.75rem;
  letter-spacing: -0.06em;
}

.seo-review-visual__score span {
  color: #eab308;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.seo-review-visual__score small {
  margin-top: 0.25rem;
  color: #a1a1aa;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-review-visual__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seo-review-visual__copy strong {
  color: #713f12;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.seo-review-visual__copy span {
  margin-top: 0.4rem;
  color: #a16207;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.seo-city-switcher {
  margin-top: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.09);
  border-radius: 1rem;
  background: #fff;
}

.seo-city-switcher__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.4rem;
  background: #f4f4f5;
}

.seo-city-switcher__tabs button {
  padding: 0.65rem;
  border: none;
  border-radius: 0.6rem;
  background: transparent;
  color: #71717a;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.seo-city-switcher__tabs button.is-active {
  background: #18181b;
  color: #fff;
}

.seo-city-switcher__panel {
  padding: 1.25rem;
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.seo-city-switcher__panel.is-switching {
  opacity: 0;
  transform: translateY(0.25rem);
}

.seo-city-switcher__label {
  margin: 0;
  color: #16a34a;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-city-switcher__panel h3 {
  margin: 0.4rem 0 0;
  color: #18181b;
  font-size: 1.125rem;
}

.seo-city-switcher__panel > p:not(.seo-city-switcher__label) {
  margin: 0.6rem 0 0;
  color: #52525b;
  font-size: 0.8125rem;
  line-height: 1.65;
}

.seo-city-switcher__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.seo-city-switcher__chips span {
  padding: 0.38rem 0.55rem;
  border-radius: 99px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.625rem;
  font-weight: 700;
}

.seo-tech-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.seo-tech-grid article {
  padding: 1rem;
  border-radius: 0.875rem;
  background: #f0fdf4;
}

.seo-tech-grid span {
  display: block;
  color: #16a34a;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.seo-tech-grid strong {
  display: block;
  margin-top: 0.5rem;
  color: #18181b;
  font-size: 0.8125rem;
}

.seo-tech-grid p {
  margin: 0.3rem 0 0;
  color: #52525b;
  font-size: 0.75rem;
  line-height: 1.55;
}

.seo-article__final {
  background: linear-gradient(135deg, #14532d, #166534);
}

.seo-article__cta {
  background: #16a34a;
}

@media (min-width: 640px) {
  .seo-hero {
    padding: 2rem 2.5rem 4.5rem;
  }

  .seo-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .seo-review-visual {
    grid-template-columns: 9rem minmax(0, 1fr);
  }

  .seo-tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .seo-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
    align-items: center;
  }

  .seo-map-visual {
    justify-self: end;
    width: 100%;
  }
}

/* Website trust article */
.trust-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.25rem 1.25rem 3.5rem;
  background: #fef3c7;
}

.trust-hero__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.trust-hero__dots,
.trust-hero__shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.trust-hero__dots {
  inset: 0;
  opacity: 0.45;
  background-image: radial-gradient(#f59e0b 1.2px, transparent 1.2px);
  background-size: 1.5rem 1.5rem;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.trust-hero__shape {
  border-radius: 50%;
}

.trust-hero__shape--one {
  top: -11rem;
  right: -9rem;
  width: 31rem;
  height: 31rem;
  background: #f472b6;
}

.trust-hero__shape--two {
  right: 20%;
  bottom: -18rem;
  width: 26rem;
  height: 26rem;
  border: 2rem solid #60a5fa;
}

.trust-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #713f12;
  font-size: 0.8125rem;
  font-weight: 700;
}

.trust-hero__back svg {
  width: 1rem;
  height: 1rem;
}

.trust-hero__content {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.trust-hero__eyebrow {
  margin: 0 0 0.875rem;
  color: #b45309;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-hero__eyebrow span {
  margin: 0 0.4rem;
  color: #db2777;
}

.trust-hero h1 {
  margin: 0;
  color: #18181b;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.trust-hero h1 em {
  color: #db2777;
  font-style: normal;
}

.trust-hero__content > div > p:not(.trust-hero__eyebrow) {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: #713f12;
  font-size: 1rem;
  line-height: 1.7;
}

.trust-hero .article-hero__meta {
  color: rgba(113, 63, 18, 0.68);
}

.trust-window {
  position: relative;
  overflow: hidden;
  max-width: 29rem;
  border: 3px solid #18181b;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0.7rem 0.7rem 0 #18181b;
}

.trust-window__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 3px solid #18181b;
  background: #f4f4f5;
}

.trust-window__bar i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f87171;
}

.trust-window__bar i:nth-child(2) {
  background: #facc15;
}

.trust-window__bar i:nth-child(3) {
  background: #4ade80;
}

.trust-window__bar span {
  margin-left: 0.45rem;
  color: #71717a;
  font-size: 0.58rem;
  font-weight: 700;
}

.trust-window__body {
  min-height: 14rem;
  padding: 1.15rem;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 55%, #eff6ff 100%);
}

.trust-window__brand {
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-window__brand span {
  color: #db2777;
}

.trust-window__nav {
  float: right;
  color: #71717a;
  font-size: 0.45rem;
  font-weight: 700;
}

.trust-window__body strong,
.trust-window__body small,
.trust-window__body b {
  display: block;
}

.trust-window__body strong {
  clear: both;
  padding-top: 2.5rem;
  color: #18181b;
  font-size: clamp(1.45rem, 5vw, 2.2rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.trust-window__body small {
  margin-top: 0.65rem;
  color: #71717a;
  font-size: 0.6rem;
}

.trust-window__body b {
  width: max-content;
  margin-top: 1.25rem;
  padding: 0.55rem 0.7rem;
  border-radius: 99px;
  background: #18181b;
  color: #fff;
  font-size: 0.58rem;
}

.trust-window__badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  border: 2px solid #18181b;
  border-radius: 0.5rem;
  background: #a7f3d0;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-window__badge span {
  color: #166534;
  font-size: 0.45rem;
  font-weight: 800;
  line-height: 1.15;
}

.trust-article .article-section h2 em {
  color: #db2777;
  font-style: normal;
}

.trust-layout-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.trust-layout-demo__mode {
  padding: 0.6rem;
  border: 2px solid #18181b;
  border-radius: 0.5rem;
  background: #fff;
  color: #18181b;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 800;
  cursor: pointer;
}

.trust-layout-demo__mode.is-active {
  background: #18181b;
  color: #fff;
}

.trust-layout-demo__canvas {
  grid-column: 1 / -1;
  position: relative;
  min-height: 12rem;
  padding: 1rem;
  overflow: hidden;
  border: 2px solid #18181b;
  border-radius: 0.85rem;
  background: #fff;
  transition: background 0.25s ease;
}

.trust-layout-demo__logo {
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-layout-demo__canvas > i {
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  width: 2rem;
  height: 0.35rem;
  border-radius: 99px;
  background: #d4d4d8;
}

.trust-layout-demo__canvas > i:nth-of-type(2) {
  right: 3.4rem;
}

.trust-layout-demo__canvas > i:nth-of-type(3) {
  right: 5.8rem;
}

.trust-layout-demo__canvas strong,
.trust-layout-demo__canvas small,
.trust-layout-demo__canvas b {
  display: block;
  transition: transform 0.25s ease;
}

.trust-layout-demo__canvas strong {
  margin-top: 3rem;
  color: #18181b;
  font-size: 1.65rem;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.trust-layout-demo__canvas small {
  margin-top: 0.7rem;
  color: #71717a;
  font-size: 0.625rem;
}

.trust-layout-demo__canvas b {
  width: max-content;
  margin-top: 1rem;
  padding: 0.5rem 0.65rem;
  border-radius: 99px;
  background: #db2777;
  color: #fff;
  font-size: 0.625rem;
}

.trust-layout-demo__canvas.is-cluttered {
  background: repeating-linear-gradient(45deg, #fef3c7 0 0.7rem, #fce7f3 0.7rem 1.4rem);
}

.trust-layout-demo__canvas.is-cluttered > i {
  top: 4.6rem;
  right: 2rem;
  width: 4rem;
  height: 2rem;
  background: #60a5fa;
  transform: rotate(18deg);
}

.trust-layout-demo__canvas.is-cluttered > i:nth-of-type(2) {
  top: 1.5rem;
  right: 25%;
  width: 3rem;
  background: #f472b6;
  transform: rotate(-16deg);
}

.trust-layout-demo__canvas.is-cluttered > i:nth-of-type(3) {
  top: 7rem;
  right: 6%;
  width: 4.5rem;
  background: #4ade80;
  transform: rotate(35deg);
}

.trust-layout-demo__canvas.is-cluttered strong,
.trust-layout-demo__canvas.is-cluttered small,
.trust-layout-demo__canvas.is-cluttered b {
  transform: rotate(-4deg) translateX(1.1rem);
}

.trust-brand-system {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #fdf2f8;
}

.trust-brand-system__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #18181b;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}

.trust-brand-system__logo span {
  color: #f472b6;
}

.trust-brand-system__type strong,
.trust-brand-system__type span {
  display: block;
}

.trust-brand-system__type strong {
  color: #18181b;
  font-size: 0.8125rem;
}

.trust-brand-system__type span {
  margin-top: 0.3rem;
  color: #71717a;
  font-size: 0.6875rem;
  line-height: 1.45;
}

.trust-brand-system__swatches {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.45rem;
}

.trust-brand-system__swatches i {
  flex: 1;
  height: 0.7rem;
  border-radius: 99px;
  background: #18181b;
}

.trust-brand-system__swatches i:nth-child(2) {
  background: #db2777;
}

.trust-brand-system__swatches i:nth-child(3) {
  background: #fbbf24;
}

.trust-photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.trust-photo-grid > div {
  position: relative;
  min-height: 8rem;
  overflow: hidden;
  border-radius: 0.875rem;
  color: #fff;
}

.trust-photo-grid span {
  position: absolute;
  z-index: 2;
  bottom: 0.65rem;
  left: 0.65rem;
  font-size: 0.625rem;
  font-weight: 800;
}

.trust-photo-grid__team {
  grid-row: span 2;
  background: linear-gradient(145deg, #7c3aed, #c4b5fd);
}

.trust-photo-grid__team i {
  position: absolute;
  bottom: -1.7rem;
  width: 4.4rem;
  height: 7rem;
  border-radius: 3rem 3rem 0.5rem 0.5rem;
  background: #312e81;
}

.trust-photo-grid__team i::before {
  content: '';
  position: absolute;
  top: -2.2rem;
  left: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #f5d0b5;
}

.trust-photo-grid__team i:nth-of-type(1) {
  left: 8%;
}

.trust-photo-grid__team i:nth-of-type(2) {
  bottom: -2rem;
  left: 37%;
  background: #db2777;
  transform: scale(0.82);
}

.trust-photo-grid__team i:nth-of-type(3) {
  bottom: -2rem;
  left: 63%;
  background: #2563eb;
  transform: scale(0.7);
}

.trust-photo-grid__product {
  background: #f97316;
}

.trust-photo-grid__product b {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  color: #fde68a;
  font-size: 3.5rem;
  transform: translateX(-50%);
}

.trust-photo-grid__space {
  background: #0f766e;
}

.trust-photo-grid__space em {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 70%;
  height: 0.6rem;
  background: #99f6e4;
  box-shadow: 0 1.2rem 0 #5eead4, 0 2.4rem 0 #2dd4bf;
}

.trust-tech {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-tech article {
  position: relative;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 0.875rem;
  background: #fafafa;
}

.trust-tech span {
  display: block;
  font-size: 1.35rem;
}

.trust-tech strong {
  display: block;
  margin-top: 0.45rem;
  color: #18181b;
  font-size: 0.8125rem;
}

.trust-tech p {
  margin: 0.3rem 0 0;
  color: #52525b;
  font-size: 0.75rem;
  line-height: 1.55;
}

.trust-tech i {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  color: #db2777;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 800;
}

.trust-testimonials {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-testimonials article {
  padding: 1rem;
  border-radius: 0.875rem;
  background: #fff7ed;
}

.trust-testimonials span {
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.trust-testimonials p {
  margin: 0.5rem 0;
  color: #78350f;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
}

.trust-testimonials strong {
  color: #a16207;
  font-size: 0.6875rem;
}

.trust-checklist {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.trust-checklist button {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 1px solid rgba(24, 24, 27, 0.1);
  border-radius: 0.7rem;
  background: #fff;
  color: #3f3f46;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.trust-checklist button span {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #d4d4d8;
  border-radius: 50%;
  color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.trust-checklist button.is-checked {
  border-color: #86efac;
  background: #f0fdf4;
}

.trust-checklist button.is-checked span {
  border-color: #16a34a;
  background: #16a34a;
  color: #fff;
}

.trust-article__final {
  background: linear-gradient(135deg, #312e81, #7c3aed);
}

.trust-article__cta {
  background: #db2777;
}

@media (min-width: 640px) {
  .trust-hero {
    padding: 2rem 2.5rem 4.5rem;
  }

  .trust-tech {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .trust-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
    align-items: center;
  }

  .trust-window {
    justify-self: end;
    width: 100%;
  }
}

/* Enhanced commerce comparison */
.commerce-hero {
  background:
    radial-gradient(circle at 22% 23%, rgba(14, 165, 233, 0.36), transparent 28rem),
    radial-gradient(circle at 84% 74%, rgba(139, 92, 246, 0.36), transparent 26rem),
    #050b21;
}

.commerce-hero__visual {
  padding: 0.7rem;
  border-radius: 1.75rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.commerce-hero__side {
  position: relative;
  overflow: hidden;
  padding: 1rem 0.7rem;
}

.commerce-hero__side::after {
  content: '';
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  filter: blur(12px);
}

.commerce-hero__signal {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.65rem;
  background: rgba(7, 20, 55, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.commerce-hero__signal span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commerce-hero__signal strong {
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.62rem;
}

.commerce-hero__signal--one {
  top: -0.6rem;
  right: -0.4rem;
}

.commerce-hero__signal--two {
  bottom: -0.65rem;
  left: -0.45rem;
}

.commerce-decider {
  margin-top: 2.5rem;
  padding: 1rem;
  border-radius: 1.25rem;
  background: #070f2b;
  color: #fff;
}

.commerce-decider__header span {
  color: #7dd3fc;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.commerce-decider__header h2 {
  margin: 0.45rem 0 1.1rem;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.commerce-decider__choices {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
  overflow-x: auto;
}

.commerce-decider__choices button {
  flex: 0 0 auto;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.commerce-decider__choices button.is-active {
  border-color: #7dd3fc;
  background: #7dd3fc;
  color: #082f49;
}

.commerce-decider__result {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.5), rgba(30, 64, 175, 0.38));
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.commerce-decider__result.is-switching {
  opacity: 0;
  transform: translateY(0.3rem);
}

.commerce-decider__result.is-custom {
  border-color: rgba(196, 181, 253, 0.3);
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.56), rgba(124, 58, 237, 0.36));
}

.commerce-decider__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #1d4ed8;
  font-size: 0.75rem;
  font-weight: 900;
}

.commerce-decider__result p {
  margin: 0;
  color: #bae6fd;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-decider__result h3 {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.commerce-decider__result span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  line-height: 1.55;
}

.commerce-decider__result > strong {
  display: none;
}

@media (min-width: 640px) {
  .commerce-decider {
    padding: 1.5rem;
  }

  .commerce-decider__result {
    grid-template-columns: 3rem minmax(0, 1fr) auto;
  }

  .commerce-decider__badge {
    width: 3rem;
    height: 3rem;
  }

  .commerce-decider__result > strong {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.58rem;
    line-height: 1.4;
    text-align: right;
    text-transform: uppercase;
  }

  .commerce-decider__result > strong em {
    color: #fff;
    font-size: 0.82rem;
    font-style: normal;
  }
}

/* Blogs listing page */
.blogs-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 1.25rem 4rem;
  color: #fff;
  background: #18181b;
}

.blogs-page-hero__inner,
.blogs-page__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.blogs-page-hero__grid,
.blogs-page-hero__orb {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.blogs-page-hero__grid {
  inset: 0;
  opacity: 0.36;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}

.blogs-page-hero__orb {
  border-radius: 50%;
  filter: blur(25px);
}

.blogs-page-hero__orb--one {
  top: -16rem;
  right: -7rem;
  width: 38rem;
  height: 38rem;
  background: rgba(239, 68, 68, 0.45);
}

.blogs-page-hero__orb--two {
  right: 18%;
  bottom: -16rem;
  width: 30rem;
  height: 30rem;
  background: rgba(37, 99, 235, 0.45);
}

.blogs-page-hero__eyebrow,
.blogs-page__eyebrow {
  margin: 0 0 0.75rem;
  color: #fb923c;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.blogs-page-hero h1 {
  max-width: 45rem;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.blogs-page-hero h1 em {
  color: #fca5a5;
  font-style: normal;
}

.blogs-page-hero p:not(.blogs-page-hero__eyebrow) {
  max-width: 32rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.blogs-page {
  padding: 3rem 1.25rem 5rem;
  background: #fff;
}

.blogs-page__header {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.blogs-page__header h2 {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.blogs-page__header > p {
  max-width: 22rem;
  margin: 0;
  color: #71717a;
  font-size: 0.875rem;
  line-height: 1.6;
}

.blogs-page__grid {
  display: grid;
  gap: 1rem;
}

.blogs-page-card {
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.09);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(24, 24, 27, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blogs-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(24, 24, 27, 0.12);
}

.blogs-page-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: var(--blog-page-accent);
}

.blogs-page-card--red {
  --blog-page-accent: #dc2626;
}

.blogs-page-card--blue {
  --blog-page-accent: #2563eb;
}

.blogs-page-card--green {
  --blog-page-accent: #16a34a;
}

.blogs-page-card--yellow {
  --blog-page-accent: #eab308;
}

.blogs-page-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.blogs-page-card:hover .blogs-page-card__image img {
  transform: scale(1.06);
}

.blogs-page-card__image-fallback {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--blog-page-accent);
}

.blogs-page-card__image.is-fallback .blogs-page-card__image-fallback {
  display: block;
}

.blogs-page-card__read {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  border-radius: 99px;
  background: #fff;
  color: #18181b;
  font-size: 0.625rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.blogs-page-card:hover .blogs-page-card__read,
.blogs-page-card:focus-within .blogs-page-card__read {
  opacity: 1;
  transform: translateY(0);
}

.blogs-page-card__read svg,
.blogs-page-card__link svg {
  width: 0.85rem;
  height: 0.85rem;
}

.blogs-page-card__body {
  padding: 1rem;
}

.blogs-page-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: #71717a;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blogs-page-card__meta span:first-child {
  color: var(--blog-page-accent);
}

.blogs-page-card h3 {
  margin: 0.7rem 0 1rem;
  font-size: 1.15rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.blogs-page-card h3 a {
  color: #18181b;
}

.blogs-page-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 800;
  transition: gap 0.2s ease, color 0.2s ease;
}

.blogs-page-card__link:hover {
  gap: 0.6rem;
  color: var(--blog-page-accent);
}

@media (min-width: 640px) {
  .blogs-page-hero {
    padding: 5rem 2.5rem 5.5rem;
  }

  .blogs-page {
    padding: 4.5rem 2.5rem 6rem;
  }

  .blogs-page__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .blogs-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .blogs-page-card__body {
    padding: 1.25rem;
  }
}

/* Contact page — matches site-wide minimalist theme */
.contact-page__inner,
.contact-map__inner {
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.contact-page {
  padding: 3rem 0 4rem;
  background: #fff;
}

.contact-page__layout {
  display: grid;
  gap: 2.5rem;
}

.contact-page__eyebrow {
  margin: 0 0 0.75rem;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-page__form-area h2,
.contact-page__details h2,
.contact-map__header h2 {
  margin: 0;
  color: #09090b;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-page__intro {
  max-width: 30rem;
  margin: 0.875rem 0 1.5rem;
  color: #52525b;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-page__textarea {
  min-height: 8rem;
}

.contact-page__details {
  padding: 1.5rem;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1.25rem;
  background: #fafafa;
}

.contact-page__details-intro p:not(.contact-page__eyebrow) {
  margin: 0.75rem 0 0;
  color: #71717a;
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-page__detail-card {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(24, 24, 27, 0.08);
  color: inherit;
  text-decoration: none;
}

.contact-page__details-intro + .contact-page__detail-card {
  margin-top: 1.25rem;
}

.contact-page__detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(24, 24, 27, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  color: #f97316;
  font-size: 1rem;
}

.contact-page__detail-card small,
.contact-page__detail-card strong {
  display: block;
}

.contact-page__detail-card small {
  color: #a1a1aa;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-page__detail-card strong {
  margin-top: 0.2rem;
  color: #09090b;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-page__detail-card i {
  color: #a1a1aa;
  font-size: 0.875rem;
  font-style: normal;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-page__detail-card:hover i {
  color: #f97316;
  transform: translate(0.15rem, -0.15rem);
}

.contact-page__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.contact-page__socials a {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(24, 24, 27, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #18181b;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-page__socials a:hover {
  border-color: #18181b;
  background: #18181b;
  color: #fff;
}

.contact-map {
  padding: 0 0 4rem;
  background: #fff;
  border-top: 1px solid rgba(24, 24, 27, 0.06);
}

.contact-map__inner {
  padding-top: 3rem;
}

.contact-map__header {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-map__header p {
  margin: 0;
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map__header a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(24, 24, 27, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #18181b;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-map__header a:hover {
  border-color: #18181b;
  background: #18181b;
  color: #fff;
}

.contact-map__header a svg {
  width: 1rem;
  height: 1rem;
}

.contact-map__embed {
  overflow: hidden;
  border: 1px solid rgba(24, 24, 27, 0.08);
  border-radius: 1.25rem;
  background: #f4f4f5;
  filter: grayscale(0.15) contrast(1.02);
}

.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: 22rem;
  border: 0;
}

@media (min-width: 768px) {
  .contact-page {
    padding: 4.5rem 0 5rem;
  }

  .contact-page__inner,
  .contact-map__inner {
    padding: 0 2.5rem;
  }

  .contact-map {
    padding-bottom: 5rem;
  }

  .contact-map__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (min-width: 900px) {
  .contact-page__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.75fr);
    gap: 4rem;
    align-items: start;
  }

  .contact-page__details {
    position: sticky;
    top: 6rem;
  }
}

/* Enhanced AI article experience */
.article-hero {
  background:
    radial-gradient(circle at 72% 38%, rgba(124, 58, 237, 0.37), transparent 27rem),
    radial-gradient(circle at 15% 90%, rgba(34, 211, 238, 0.2), transparent 26rem),
    #090b1a;
}

.article-hero__grid {
  opacity: 0.42;
  background-size: 2rem 2rem;
}

.article-hero__title {
  font-size: clamp(2.75rem, 6.2vw, 5.7rem);
  line-height: 0.94;
}

.article-hero__title em {
  color: #a5f3fc;
}

.ai-hero-console {
  position: relative;
  max-width: 32rem;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.25rem;
  background: rgba(13, 17, 42, 0.68);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(16px);
}

.ai-hero-console::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 15%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.28);
  filter: blur(38px);
}

.ai-hero-console__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.625rem;
  font-weight: 700;
}

.ai-hero-console__top span {
  display: flex;
  gap: 0.25rem;
}

.ai-hero-console__top i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fb7185;
}

.ai-hero-console__top i:nth-child(2) {
  background: #facc15;
}

.ai-hero-console__top i:nth-child(3) {
  background: #4ade80;
}

.ai-hero-console__top em {
  color: #86efac;
  font-style: normal;
}

.ai-hero-console__body {
  position: relative;
  min-height: 16rem;
  padding: 0.85rem;
}

.ai-hero-console__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
  opacity: 0.36;
}

.ai-hero-console__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 26, 0.25), rgba(9, 11, 26, 0.9));
}

.ai-hero-console__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-hero-console__signal,
.ai-hero-console__reply {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 74%;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(10px);
}

.ai-hero-console__signal span,
.ai-hero-console__reply span {
  color: #a5f3fc;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ai-hero-console__signal strong,
.ai-hero-console__reply strong {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.42;
}

.ai-hero-console__signal small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.52rem;
}

.ai-hero-console__reply {
  margin: 2rem 0 0 auto;
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(8, 145, 178, 0.34);
}

.ai-hero-console__reply span {
  color: #bae6fd;
}

.ai-hero-console__metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 11, 26, 0.82);
}

.ai-hero-console__metrics div {
  padding: 0.45rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.ai-hero-console__metrics strong,
.ai-hero-console__metrics span {
  display: block;
}

.ai-hero-console__metrics strong {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: -0.04em;
}

.ai-hero-console__metrics span {
  margin-top: 0.18rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.48rem;
  font-weight: 700;
}

.ai-use-case {
  margin-top: 2.5rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #111827;
  color: #fff;
}

.ai-use-case__intro span,
.ai-use-case__kicker {
  color: #67e8f9;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-use-case__intro h2 {
  max-width: 28rem;
  margin: 0.45rem 0 1.1rem;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.ai-use-case__controls {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
  overflow-x: auto;
}

.ai-use-case__controls button {
  flex: 0 0 auto;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
}

.ai-use-case__controls button.is-active {
  border-color: #67e8f9;
  background: #67e8f9;
  color: #083344;
}

.ai-use-case__screen {
  position: relative;
  min-height: 15rem;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.92), rgba(30, 41, 59, 0.72));
  transition: opacity 0.12s ease, transform 0.12s ease;
}

.ai-use-case__screen.is-switching {
  opacity: 0;
  transform: translateY(0.35rem);
}

.ai-use-case__pulse {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.23);
  filter: blur(20px);
}

.ai-use-case__screen h3 {
  position: relative;
  max-width: 24rem;
  margin: 0.5rem 0;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.ai-use-case__copy {
  position: relative;
  max-width: 26rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  line-height: 1.65;
}

.ai-use-case__example {
  position: relative;
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
}

.ai-use-case__example span {
  color: #bae6fd;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-use-case__example p {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.5;
}

.ai-use-case__example span:nth-of-type(2) {
  color: #86efac;
}

@media (min-width: 640px) {
  .ai-use-case {
    padding: 1.5rem;
  }
}

@media (min-width: 900px) {
  .article-hero__content {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  }

  .ai-hero-console {
    justify-self: end;
    width: 100%;
  }
}
