
:root {
  --color-primary: #07358f;
  --color-primary-dark: #05286d;
  --color-accent: #0d6efd;
  --color-ink: #07143a;
  --color-muted: #4f5d78;
  --color-soft: #f5f8ff;
  --color-paper: #ffffff;
  --color-line: #dbe4f0;
  --color-green: #23b78e;
  --color-violet: #7160bf;
  --color-orange: #f0791f;
  --shadow-card: 0 13px 30px rgba(7, 20, 58, 0.08);
  --shadow-strong: 0 22px 56px rgba(7, 20, 58, 0.14);
  --radius-card: 8px;
  --radius-media: 20px;
  --font-sans: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", "Brush Script MT", "Segoe Script", cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

i[class^="ri-"],
i[class*=" ri-"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none !important;
}

a:hover {
  color: var(--color-primary);
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.15rem;
  font-size: 4.35rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
  font-weight: 850;
}

h3 {
  margin-bottom: 0.58rem;
  font-size: 1.06rem;
  font-weight: 850;
}

p {
  color: var(--color-muted);
}

::selection {
  background: rgba(13, 110, 253, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(13, 110, 253, 0.42);
  outline-offset: 4px;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.skip-link:focus {
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.site-shell {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

#home,
#products,
#services,
#prompts,
#blog,
#about,
#contact {
  scroll-margin-top: 102px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 228, 240, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(7, 20, 58, 0.07);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.05rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-ink);
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 900;
}

.brand__mark img {
  width: 38px;
  height: 38px;
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__name {
  color: var(--color-ink);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.custom-logo {
  max-width: 220px;
  max-height: 52px;
}

.primary-nav__list,
.site-footer ul,
.footer-menu,
.social-links {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__list {
  align-items: center;
  gap: 0.35rem;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: var(--radius-card);
  padding: 0.52rem 0.66rem;
  color: #182747;
  font-size: 0.82rem;
  font-weight: 800;
}

.primary-nav a::after {
  position: absolute;
  right: 0.66rem;
  bottom: 0.25rem;
  left: 0.66rem;
  height: 2px;
  border-radius: 99px;
  background: var(--color-primary);
  content: "";
  opacity: 0;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--color-primary);
}

.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after {
  opacity: 1;
}

.header-cta,
.button,
.mini-button,
.product-card__bottom a,
.service-card__bottom a,
.lead-form button,
.search-form__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  min-width: max-content;
  padding: 0.82rem 1.12rem;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.84rem;
  box-shadow: 0 13px 28px rgba(7, 53, 143, 0.24);
}

.header-cta:hover,
.button--primary:hover,
.search-form__button:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  color: var(--color-ink);
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.38rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
}

.home-hero::after {
  position: absolute;
  right: max(1rem, calc((100vw - 1120px) / 2 - 34px));
  top: 13.5rem;
  width: 82px;
  height: 245px;
  background-image: radial-gradient(rgba(13, 110, 253, 0.22) 1px, transparent 1px);
  background-size: 12px 12px;
  content: "";
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 542px;
  align-items: center;
  gap: 4.15rem;
  grid-template-columns: minmax(0, 1fr) 500px;
  padding-block: 3.3rem 2rem;
}

.hero-pill,
.section-kicker {
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(13, 110, 253, 0.32);
  border-radius: 8px;
  background: #f2f7ff;
  margin-bottom: 1.35rem;
  padding: 0.34rem 0.72rem;
  color: #065fed;
}

.home-hero__summary {
  max-width: 35.5rem;
  margin-bottom: 1.9rem;
  color: #35405b;
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.63;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.button {
  min-height: 52px;
  padding: 0.95rem 1.55rem;
  font-size: 0.94rem;
}

.button i,
.section-link i,
.lead-form button i {
  margin-left: 0.55rem;
  font-size: 1.18rem;
}

.button--primary,
.search-form__button {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 15px 32px rgba(7, 53, 143, 0.24);
}

.button--ghost {
  border-color: rgba(7, 20, 58, 0.16);
  background: #ffffff;
  color: var(--color-ink);
  box-shadow: 0 8px 18px rgba(7, 20, 58, 0.04);
}

.button--ghost:hover {
  border-color: rgba(13, 110, 253, 0.36);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.hero-feature-row {
  display: grid;
  max-width: 570px;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-feature {
  display: grid;
  min-height: 58px;
  align-items: center;
  gap: 0.65rem;
  grid-template-columns: 27px minmax(0, 1fr);
  border-right: 1px solid var(--color-line);
  padding-right: 1rem;
  padding-left: 1rem;
}

.hero-feature:first-child {
  padding-left: 0;
}

.hero-feature:last-child {
  border-right: 0;
}

.hero-feature i {
  color: #283551;
  font-size: 1.45rem;
}

.hero-feature strong {
  color: #122348;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.home-hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #e9f0fb;
  box-shadow: var(--shadow-strong);
}

.hero-portrait::before {
  display: block;
  padding-top: 103.8%;
  content: "";
}

.hero-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 48%;
}

.products-hero {
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  padding-block: 3.1rem 1.6rem;
}

.products-hero__grid {
  display: grid;
  align-items: center;
  gap: 3.7rem;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.94fr);
}

.products-hero h1 {
  max-width: 12.7ch;
  margin-bottom: 1.25rem;
  font-size: 3.85rem;
}

.products-hero__copy > p:not(.hero-pill) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: #35405b;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.65;
}

.products-hero__features {
  max-width: 550px;
}

.featured-product {
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: minmax(170px, 0.85fr) minmax(0, 1fr);
  border-radius: 8px;
  background: linear-gradient(135deg, #f2f6ff, #edf4ff);
  padding: 2rem 1.9rem;
}

.product-box {
  position: relative;
  display: grid;
  min-height: 285px;
  align-content: space-between;
  border-radius: 6px;
  background: linear-gradient(145deg, #09285f, #06183c);
  color: #ffffff;
  padding: 1.35rem 1.15rem;
  box-shadow: 16px 18px 34px rgba(7, 20, 58, 0.17);
  transform: perspective(800px) rotateY(-7deg);
}

.product-box::before {
  position: absolute;
  inset: 0 auto 0 -18px;
  width: 18px;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(145deg, #051739, #0b3271);
  content: "";
  transform: skewY(-7deg);
  transform-origin: right;
}

.product-box span {
  color: #b9c9ec;
  font-size: 0.58rem;
  font-weight: 800;
}

.product-box strong {
  max-width: 8ch;
  color: #ffffff;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.product-box div {
  display: flex;
  gap: 0.48rem;
}

.product-box div i {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #dce8ff;
  font-size: 1.05rem;
}

.product-box small {
  max-width: 14ch;
  color: #dbe7ff;
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.45;
}

.featured-product__copy > p {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(13, 110, 253, 0.28);
  border-radius: 8px;
  background: #f5f9ff;
  margin-bottom: 0.78rem;
  padding: 0.25rem 0.58rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-product__copy h2 {
  margin-bottom: 0.6rem;
  font-size: 1.56rem;
}

.featured-product__copy > span {
  display: block;
  margin-bottom: 1rem;
  color: #34425e;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
}

.featured-product ul {
  display: grid;
  gap: 0.58rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.featured-product li {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  color: #162547;
  font-size: 0.84rem;
  font-weight: 800;
}

.featured-product li::before {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(13, 110, 253, 0.55);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.68rem;
  line-height: 1;
  content: "\2713";
}

.featured-product__price {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1rem;
}

.featured-product__price strong {
  color: var(--color-primary);
  font-size: 1.75rem;
  line-height: 1;
}

.featured-product__price del {
  color: #8a96ac;
  font-weight: 800;
}

.featured-product__price em {
  border-radius: 999px;
  background: #dceaff;
  padding: 0.24rem 0.56rem;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1.45rem;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.catalog-tabs a,
.catalog-sort button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #ffffff;
  padding: 0.55rem 0.86rem;
  color: #162547;
  font-size: 0.74rem;
  font-weight: 850;
}

.catalog-tabs a.is-active,
.catalog-tabs a:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.catalog-sort {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.5rem;
  color: #34425e;
  font-size: 0.74rem;
  font-weight: 850;
}

.catalog-sort button {
  gap: 0.45rem;
  cursor: pointer;
}

.products-layout {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) 265px;
  margin-top: 1.5rem;
}

.products-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-product,
.why-card,
.custom-help-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.catalog-product {
  overflow: hidden;
}

.catalog-product__media {
  display: grid;
  min-height: 148px;
  place-items: center;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
  padding: 1rem;
}

.mini-box {
  display: grid;
  width: 96px;
  height: 126px;
  align-content: center;
  justify-items: center;
  gap: 0.55rem;
  border-radius: 6px;
  color: #ffffff;
  padding: 0.82rem;
  text-align: center;
  box-shadow: 10px 16px 24px rgba(7, 20, 58, 0.18);
  transform: perspective(700px) rotateY(-7deg);
}

.mini-box i {
  font-size: 2rem;
}

.mini-box span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.catalog-product--blue .mini-box {
  background: linear-gradient(145deg, #5c8ef2, #1f57ca);
}

.catalog-product--green .mini-box,
.catalog-product--teal .mini-box {
  background: linear-gradient(145deg, #34c6a2, #12886d);
}

.catalog-product--violet .mini-box {
  background: linear-gradient(145deg, #9a83e6, #5f4fbd);
}

.catalog-product--peach .mini-box {
  background: linear-gradient(145deg, #ffb39f, #f07760);
}

.catalog-product--red .mini-box {
  background: linear-gradient(145deg, #ef5964, #c9293f);
}

.catalog-product--orange .mini-box {
  background: linear-gradient(145deg, #ff9a42, #ef6f14);
}

.catalog-product__body {
  display: grid;
  min-height: 150px;
  padding: 0.92rem 0.9rem 0.9rem;
}

.catalog-product__body h2 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-align: center;
}

.catalog-product__body p {
  margin-bottom: 0.88rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.48;
  text-align: center;
}

.catalog-product__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.catalog-product__bottom strong {
  color: var(--color-primary);
  font-size: 1.38rem;
  line-height: 1;
}

.catalog-product__bottom a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 20, 58, 0.14);
  border-radius: 6px;
  background: #ffffff;
  padding: 0.42rem 0.68rem;
  color: #14244b;
  font-size: 0.7rem;
  font-weight: 850;
}

.products-sidebar {
  display: grid;
  gap: 1.25rem;
}

.why-card {
  padding: 1.25rem;
}

.why-card h2,
.custom-help-card h2 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.why-list {
  display: grid;
  gap: 1.3rem;
}

.why-item {
  display: grid;
  align-items: start;
  gap: 0.85rem;
  grid-template-columns: 46px minmax(0, 1fr);
}

.why-item > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.why-item h3 {
  margin-bottom: 0.28rem;
  font-size: 0.82rem;
}

.why-item p,
.custom-help-card p {
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.52;
}

.custom-help-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) 58px;
  background: linear-gradient(135deg, #f3f7ff, #e9f1ff);
  padding: 1.25rem;
}

.custom-help-card .button {
  min-height: 40px;
  margin-top: 1rem;
  padding: 0.72rem 0.82rem;
  font-size: 0.74rem;
}

.custom-help-card > i {
  align-self: end;
  color: rgba(7, 53, 143, 0.42);
  font-size: 3.4rem;
}

.products-created .about-panel {
  grid-template-columns: 220px minmax(0, 1fr);
}

.breadcrumb-trail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.42rem;
  margin-bottom: 1.8rem;
  color: #263652;
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumb-trail a {
  color: #263652;
}

.breadcrumb-trail i {
  color: #8a96ac;
  font-size: 1rem;
}

.product-detail,
.article-page {
  background: #ffffff;
  padding-block: 2.1rem 1.6rem;
}

.product-detail__hero {
  display: grid;
  align-items: center;
  gap: 3.2rem;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.95fr);
}

.product-gallery__main {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5f7fb, #eef4ff);
}

.product-gallery__slides {
  display: grid;
  width: 100%;
  min-height: inherit;
}

.product-gallery__slide {
  position: relative;
  display: grid;
  width: 100%;
  min-height: inherit;
  place-items: center;
  grid-area: 1 / 1;
  opacity: 0;
  padding: 1.6rem;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.product-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.product-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 8px;
  object-fit: contain;
}

.product-cover {
  display: grid;
  width: min(54%, 285px);
  min-height: 340px;
  align-content: center;
  gap: 1rem;
  border-radius: 7px;
  background: linear-gradient(145deg, #091f48, #061733);
  color: #ffffff;
  padding: 1.8rem;
  box-shadow: 20px 24px 44px rgba(7, 20, 58, 0.2);
  transform: perspective(900px) rotateY(-7deg);
}

.product-cover span,
.product-cover small {
  color: #c8d7f3;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-cover strong {
  max-width: 9ch;
  color: #ffffff;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-cover em {
  color: #4b92ff;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.product-cover p {
  max-width: 16ch;
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.88rem;
}

.product-cube {
  position: absolute;
  right: 3.4rem;
  bottom: 2.6rem;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(7, 20, 58, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #d96f28;
  font-size: 3rem;
  box-shadow: 0 18px 36px rgba(7, 20, 58, 0.12);
}

.product-thumbs {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 42px;
  margin-top: 0.95rem;
}

.product-thumbs button {
  min-height: 74px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-ink);
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
}

.product-thumbs span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  gap: 0.28rem;
  border-radius: 6px;
  background: linear-gradient(145deg, #0b2b64, #061733);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.25;
  padding: 0.55rem;
  text-align: center;
}

.product-thumbs span i {
  color: #ffffff;
  font-size: 1.05rem;
}

.product-purchase h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: 3.2rem;
}

.product-purchase > p:not(.hero-pill) {
  max-width: 36rem;
  margin-bottom: 1.45rem;
  color: #35405b;
  font-size: 1rem;
  font-weight: 500;
}

.purchase-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
}

.purchase-stats div {
  display: grid;
  justify-items: center;
  gap: 0.52rem;
  text-align: center;
}

.purchase-stats i {
  color: var(--color-accent);
  font-size: 1.6rem;
}

.purchase-stats span {
  color: #263652;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.purchase-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.purchase-price strong {
  color: var(--color-ink);
  font-size: 2rem;
  line-height: 1;
}

.purchase-price del {
  color: #8b97aa;
  font-weight: 800;
}

.purchase-price em {
  border-radius: 999px;
  background: #dceaff;
  padding: 0.28rem 0.7rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.purchase-button {
  width: 100%;
  margin-bottom: 0.8rem;
}

.purchase-button i {
  margin-right: 0.55rem;
  margin-left: 0;
}

.product-purchase > small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #4f5d78;
  font-size: 0.78rem;
  font-weight: 650;
}

.product-detail__layout,
.article-layout {
  display: grid;
  align-items: start;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-top: 2rem;
}

.product-content,
.review-panel,
.side-card,
.guarantee-card,
.bundle-card,
.article-main,
.newsletter-card,
.product-sidebar-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-line);
}

.product-tabs a {
  min-height: 56px;
  border-bottom: 3px solid transparent;
  padding: 1.15rem 1.4rem 1rem;
  color: var(--color-ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-tabs a.is-active,
.product-tabs a:hover {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

.product-overview {
  padding: 1.5rem;
}

.product-overview > p {
  margin-bottom: 1rem;
  color: #162547;
  font-weight: 500;
}

.product-tab-section {
  border-top: 1px solid var(--color-line);
  padding: 1.45rem 1.5rem;
}

.product-tab-section h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.number-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.3rem;
}

.number-list li {
  color: #162547;
  font-size: 0.88rem;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #f8fbff;
  padding: 0.9rem 1rem;
}

.faq-list summary {
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  margin: 0.7rem 0 0;
  color: #35405b;
  font-size: 0.86rem;
  font-weight: 500;
}

.included-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 250px;
  margin-top: 1.45rem;
}

.included-grid h2 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.included-grid h2 i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #e9f0ff;
  color: var(--color-accent);
}

.check-list,
.file-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #162547;
  font-size: 0.86rem;
  font-weight: 650;
}

.check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
  content: "\2713";
}

.category-box {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f6f9ff);
  padding: 1.15rem;
}

.category-box h3 {
  font-size: 0.92rem;
}

.category-box ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-box li,
.file-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #263652;
  font-size: 0.76rem;
  font-weight: 650;
}

.review-panel {
  margin-top: 1.4rem;
  padding: 1.35rem;
}

.review-panel h2 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 1rem;
}

.stars {
  color: #f5a400;
  font-size: 0.9rem;
  font-weight: 900;
}

.review-card p {
  margin: 0.5rem 0 0.9rem;
  color: #162547;
  font-size: 0.78rem;
  font-weight: 500;
}

.review-card div:last-child {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 0.6rem;
  align-items: center;
}

.review-card span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--color-primary);
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card small {
  color: #4f5d78;
  font-size: 0.68rem;
}

.product-sidebar,
.article-sidebar {
  display: grid;
  gap: 1.25rem;
}

.side-card,
.guarantee-card,
.bundle-card,
.newsletter-card,
.product-sidebar-card {
  padding: 1.25rem;
}

.side-card h2,
.guarantee-card h2,
.bundle-card h2,
.newsletter-card h2,
.product-sidebar-card h2 {
  margin-bottom: 0.85rem;
  font-size: 1.08rem;
}

.guarantee-card,
.bundle-card {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 46px minmax(0, 1fr);
  background: linear-gradient(135deg, #f4f8ff, #eaf2ff);
}

.guarantee-card > i,
.bundle-card > i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.5rem;
}

.guarantee-card p,
.bundle-card p,
.product-sidebar-card p {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 500;
}

.bundle-card p {
  grid-column: 2;
}

.bundle-card .button {
  grid-column: 2;
  min-height: 40px;
  padding: 0.72rem 0.9rem;
  font-size: 0.78rem;
}

.blog-hero {
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  padding-block: 2.8rem 1.45rem;
}

.blog-hero__grid {
  display: grid;
  align-items: center;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1fr) 370px;
}

.blog-hero h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: 3.2rem;
}

.blog-hero p:not(.section-kicker) {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #35405b;
  font-size: 1.05rem;
  font-weight: 500;
}

.blog-feature-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-feature-row div {
  display: grid;
  align-items: center;
  gap: 0.3rem 0.75rem;
  grid-template-columns: 42px minmax(0, 1fr);
  border-right: 1px solid var(--color-line);
  padding-right: 1rem;
}

.blog-feature-row div:last-child {
  border-right: 0;
}

.blog-feature-row i {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--color-accent);
  font-size: 1.3rem;
}

.blog-feature-row strong {
  font-size: 0.78rem;
}

.blog-feature-row span {
  color: #35405b;
  font-size: 0.72rem;
  font-weight: 500;
}

.blog-hero__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4ff;
}

.blog-hero__image::after {
  position: absolute;
  right: -24px;
  bottom: 40px;
  width: 100px;
  height: 150px;
  background-image: radial-gradient(rgba(13, 110, 253, 0.22) 1px, transparent 1px);
  background-size: 11px 11px;
  content: "";
}

.blog-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 32%;
}

.blog-toolbar {
  display: grid;
  align-items: center;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) 310px;
  border-top: 1px solid var(--color-line);
  padding-top: 1.45rem;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.blog-search input {
  min-height: 46px;
  border: 0;
  padding: 0.75rem 1rem;
  color: var(--color-ink);
}

.blog-search button {
  border: 0;
  background: #ffffff;
  color: #263652;
  cursor: pointer;
}

.blog-layout {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) 315px;
  margin-top: 1.4rem;
}

.blog-list {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.blog-list-card {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 240px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
  padding: 1rem;
}

.blog-list-card:last-of-type {
  border-bottom: 0;
}

.blog-list-card__media {
  display: grid;
  min-height: 146px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-size: 3.4rem;
}

.blog-list-card--blue .blog-list-card__media,
.blog-mini-thumb--blue {
  background: linear-gradient(135deg, #a7d5ff, #2563eb);
}

.blog-list-card--green .blog-list-card__media,
.blog-mini-thumb--green {
  background: linear-gradient(135deg, #c9f4e4, #11896c);
}

.blog-list-card--pink .blog-list-card__media,
.blog-mini-thumb--pink {
  background: linear-gradient(135deg, #ffd3df, #e63888);
}

.blog-list-card--red .blog-list-card__media,
.blog-mini-thumb--red {
  background: linear-gradient(135deg, #ffd4d4, #c9293f);
}

.blog-list-card--orange .blog-list-card__media,
.blog-mini-thumb--orange {
  background: linear-gradient(135deg, #ffe0bc, #ef7a1f);
}

.blog-list-card__body > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-list-card h2 {
  max-width: 30rem;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.blog-list-card p {
  max-width: 36rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  color: #4f5d78;
  font-size: 0.78rem;
  font-weight: 650;
}

.blog-card-meta span,
.blog-card-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card-meta a {
  margin-left: auto;
  color: var(--color-accent);
  font-weight: 850;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.3rem;
}

.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 7px;
  background: #ffffff;
  color: #162547;
  font-size: 0.82rem;
  font-weight: 800;
}

.blog-pagination a.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #ffffff;
}

.blog-sidebar {
  display: grid;
  gap: 1.25rem;
}

.newsletter-card {
  text-align: center;
}

.newsletter-card > i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

.newsletter-card p {
  font-size: 0.82rem;
  font-weight: 500;
}

.newsletter-card form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.newsletter-card input,
.newsletter-card button {
  min-height: 44px;
  border-radius: 7px;
  font-size: 0.82rem;
}

.newsletter-card input {
  border: 1px solid var(--color-line);
  padding: 0.75rem;
}

.newsletter-card button {
  border: 0;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 850;
  cursor: pointer;
}

.newsletter-card small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.72rem;
  color: #4f5d78;
  font-size: 0.68rem;
}

.topic-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topic-list a {
  color: #263652;
  font-size: 0.82rem;
  font-weight: 650;
}

.topic-list span {
  border-radius: 999px;
  background: #edf4ff;
  padding: 0.2rem 0.5rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 900;
}

.popular-posts {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.popular-post {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.7rem;
}

.blog-mini-thumb {
  display: grid;
  width: 58px;
  height: 58px;
  grid-row: span 2;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  font-size: 1.45rem;
}

.popular-post strong {
  color: var(--color-ink);
  font-size: 0.82rem;
  line-height: 1.35;
}

.popular-post small {
  color: #4f5d78;
  font-size: 0.7rem;
}

.article-layout {
  margin-top: 0;
}

.article-main {
  border: 0;
  box-shadow: none;
}

.article-header h1 {
  max-width: 16ch;
  margin-bottom: 0.65rem;
  font-size: 3.2rem;
}

.article-header > p:not(.hero-pill) {
  max-width: 48rem;
  color: #4f5d78;
  font-size: 1.04rem;
  font-weight: 500;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.35rem;
  color: #4f5d78;
  font-size: 0.78rem;
  font-weight: 650;
}

.author-chip {
  display: inline-grid;
  align-items: center;
  gap: 0.55rem;
  grid-template-columns: 42px minmax(0, 1fr);
}

.author-chip img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.share-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.share-links + .share-links {
  margin-left: 0;
}

.article-featured-image {
  position: relative;
  display: grid;
  min-height: 270px;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 180px minmax(0, 1fr) 70px 70px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 20%, rgba(90, 145, 255, 0.34), transparent 22%),
    linear-gradient(135deg, #07183a, #123f85);
  margin-bottom: 1.3rem;
  padding: 2rem;
}

.article-featured-image strong,
.article-featured-image li,
.article-laptop span {
  color: #ffffff;
}

.article-featured-image strong {
  display: block;
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.1;
}

.article-featured-image ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-featured-image li {
  font-size: 0.82rem;
  font-weight: 700;
}

.article-featured-image li::before {
  margin-right: 0.35rem;
  content: "\2713";
}

.article-laptop {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.article-laptop i {
  color: #dce8ff;
  font-size: 7rem;
}

.article-laptop span {
  border-radius: 999px;
  background: linear-gradient(135deg, #804dff, #2f6bff);
  padding: 0.55rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 850;
}

.article-featured-image > i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 2rem;
}

.article-content {
  color: #162547;
}

.article-content h2 {
  margin: 1rem 0 0.35rem;
  font-size: 1.24rem;
}

.article-content p,
.article-content li {
  color: #263652;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.58;
}

.article-content ul {
  padding-left: 1.2rem;
}

.article-tip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(13, 110, 253, 0.28);
  border-radius: 8px;
  background: #eef5ff;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.article-tip i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.25rem;
}

.key-takeaways {
  display: grid;
  gap: 1rem;
  grid-template-columns: 60px minmax(0, 1fr);
  border: 1px solid rgba(13, 110, 253, 0.24);
  border-radius: 8px;
  background: #ffffff;
  margin-top: 1.2rem;
  padding: 1.1rem;
}

.key-takeaways > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.7rem;
}

.key-takeaways h2 {
  font-size: 1.12rem;
}

.article-author {
  grid-template-columns: 120px minmax(0, 1fr);
  margin-top: 1.2rem;
}

.product-sidebar-card {
  overflow: hidden;
  background: linear-gradient(135deg, #f4f8ff, #eaf2ff);
}

.product-sidebar-card .button {
  min-height: 40px;
  margin: 1rem 0;
  padding: 0.72rem 0.9rem;
  font-size: 0.78rem;
}

.product-stack-preview {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  min-height: 112px;
}

.product-stack-preview span {
  display: grid;
  width: 74px;
  height: 96px;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(145deg, #0b2b64, #061733);
  color: #ffffff;
  padding: 0.45rem;
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: rotate(-4deg);
}

.product-stack-preview span:nth-child(2) {
  background: linear-gradient(145deg, #34c6a2, #12886d);
  transform: translateY(-8px);
}

.product-stack-preview span:nth-child(3) {
  background: linear-gradient(145deg, #9a83e6, #5f4fbd);
  transform: rotate(5deg);
}

.section {
  padding-block: 1.65rem;
}

.section--first {
  padding-top: 2.2rem;
}

.section--about {
  padding-top: 1.25rem;
}

.section--cta {
  padding-bottom: 2.1rem;
}

.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.section-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.guide-grid,
.product-grid,
.service-grid,
.post-grid {
  display: grid;
  gap: 1.22rem;
}

.guide-grid,
.post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card,
.product-card,
.service-card,
.post-card,
.empty-card,
.about-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.guide-card,
.product-card,
.service-card,
.post-card {
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover,
.product-card:hover,
.service-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.guide-card__media,
.post-card__media {
  display: grid;
  aspect-ratio: 16 / 5.1;
  place-items: center;
  color: var(--color-primary);
  font-weight: 900;
}

.guide-card__media i,
.post-card__media span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(7, 20, 58, 0.1);
  font-size: 3.1rem;
}

.guide-card__media img,
.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card__media--1,
.post-card__media {
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 255, 255, 0.62), transparent 22%),
    linear-gradient(135deg, #e9dccb, #d5c0a0);
}

.guide-card__media--2 {
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(135deg, #a8e0d4, #d8f5ee);
  color: #0a7e66;
}

.guide-card__media--3 {
  background:
    radial-gradient(circle at 56% 20%, rgba(255, 220, 82, 0.75), transparent 18%),
    linear-gradient(135deg, #cfc2ff, #efe9ff);
  color: #6651b6;
}

.guide-card__body,
.post-card__body {
  display: grid;
  min-height: 162px;
  padding: 0.92rem 1.02rem 1rem;
}

.guide-card h3,
.post-card h3 {
  margin-bottom: 0.5rem;
}

.guide-card p,
.post-card p {
  margin-bottom: 0.72rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.card-meta,
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.52rem;
  margin-top: auto;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.card-meta span:first-child,
.post-card__meta span:last-child {
  border-radius: 5px;
  background: #eef5ff;
  padding: 0.22rem 0.52rem;
  color: var(--color-primary);
  text-transform: uppercase;
}

.mini-button,
.text-link {
  justify-self: end;
  min-height: 32px;
  margin-top: 0.72rem;
  padding: 0.44rem 0.72rem;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.72rem;
  box-shadow: 0 9px 20px rgba(7, 53, 143, 0.2);
}

.mini-button:hover,
.text-link:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.product-card {
  display: grid;
  min-height: 255px;
  padding: 1.24rem 1.18rem 1rem;
}

.product-card__icon,
.service-card__icon,
.lead-magnet__icon {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
}

.product-card__icon {
  width: 62px;
  height: 62px;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 2.15rem;
}

.product-card--blue .product-card__icon {
  background: #3978ed;
}

.product-card--green .product-card__icon {
  background: var(--color-green);
}

.product-card--violet .product-card__icon {
  background: var(--color-violet);
}

.product-card--orange .product-card__icon {
  background: var(--color-orange);
}

.product-card h3,
.product-card p {
  text-align: center;
}

.product-card p {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.5;
}

.product-card__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-card__bottom strong {
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
}

.product-card__bottom a,
.service-card__bottom a {
  min-height: 34px;
  border-color: rgba(7, 20, 58, 0.14);
  padding: 0.44rem 0.72rem;
  color: #14244b;
  font-size: 0.72rem;
  background: #ffffff;
}

.product-card__bottom a:hover,
.service-card__bottom a:hover {
  border-color: rgba(13, 110, 253, 0.34);
  color: var(--color-primary);
}

.service-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.08rem 1.08rem 0.9rem;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-violet);
  font-size: 2rem;
}

.service-card:nth-child(1) .service-card__icon {
  background: #5b82df;
}

.service-card:nth-child(2) .service-card__icon {
  background: var(--color-green);
}

.service-card:nth-child(3) .service-card__icon {
  background: var(--color-violet);
}

.service-card ul {
  display: grid;
  gap: 0.34rem;
  margin: 0 0 0.9rem;
  padding: 0;
  color: #34425e;
  font-size: 0.76rem;
  font-weight: 550;
  line-height: 1.42;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 0.92rem;
}

.service-card li::before {
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
}

.service-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.76rem;
}

.service-card__bottom strong {
  color: var(--color-primary);
}

.about-panel {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 220px minmax(0, 1fr) 150px;
  padding: 1rem 1.18rem 1rem 1rem;
}

.about-panel__image {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #edf4ff;
}

.about-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 37%;
}

.about-panel__copy h2 {
  margin-bottom: 0.42rem;
}

.about-panel__copy p {
  margin-bottom: 0.95rem;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem 1.22rem;
  margin: 0;
  padding: 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 760;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 18px;
}

.trust-list li::before {
  display: grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(13, 110, 253, 0.5);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.7rem;
  line-height: 1;
  content: "\2713";
}

.signature {
  justify-self: center;
  margin: 0;
  color: #14244b;
  font-family: var(--font-script);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  transform: rotate(-7deg);
}

.about-hero {
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  padding-block: 2rem 1.3rem;
}

.about-hero__grid {
  display: grid;
  align-items: center;
  gap: 3.4rem;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.about-hero h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: 3.35rem;
}

.about-hero__copy > p:not(.hero-pill) {
  max-width: 48rem;
  margin-bottom: 2rem;
  color: #35405b;
  font-size: 1.02rem;
  font-weight: 500;
}

.about-feature-row {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-feature-row div {
  display: grid;
  justify-items: center;
  gap: 0.38rem;
  border-right: 1px solid var(--color-line);
  padding-inline: 1rem;
  text-align: center;
}

.about-feature-row div:first-child {
  padding-left: 0;
}

.about-feature-row div:last-child {
  border-right: 0;
}

.about-feature-row i {
  color: var(--color-primary);
  font-size: 1.7rem;
}

.about-feature-row strong {
  color: var(--color-ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.about-feature-row span {
  color: #4f5d78;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.35;
}

.about-hero__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #eef4ff;
  box-shadow: var(--shadow-card);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 37%;
}

.about-story__grid {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 1.6rem;
}

.about-story__copy h2,
.about-help h2,
.about-journey h2,
.about-testimonials h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.about-story__copy p {
  margin-bottom: 0.9rem;
  color: #162547;
  font-size: 0.9rem;
  font-weight: 500;
}

.signature--about {
  justify-self: start;
  margin-top: 0.5rem;
  font-size: 3rem;
}

.about-story__copy > span {
  display: block;
  color: #263652;
  font-size: 0.8rem;
  font-weight: 750;
}

.about-stats-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-stat-card,
.about-help-card,
.about-testimonial-grid article,
.about-work-cta {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.about-stat-card {
  display: grid;
  align-items: center;
  gap: 0.28rem 1rem;
  grid-template-columns: 58px minmax(0, 1fr);
  padding: 1.2rem;
}

.about-stat-card i,
.about-work-cta > i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
  color: var(--color-accent);
  font-size: 1.55rem;
}

.about-stat-card strong {
  color: var(--color-ink);
  font-size: 2.1rem;
  line-height: 1;
}

.about-stat-card h3,
.about-stat-card p {
  grid-column: 2;
}

.about-stat-card h3 {
  margin-bottom: 0.16rem;
  font-size: 0.86rem;
}

.about-stat-card p {
  margin-bottom: 0;
  color: #4f5d78;
  font-size: 0.72rem;
  font-weight: 600;
}

.about-help .section-bar {
  margin-bottom: 1rem;
}

.about-help-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.about-help-card {
  display: grid;
  justify-items: center;
  min-height: 170px;
  align-content: start;
  padding: 1.1rem 0.85rem;
  text-align: center;
}

.about-help-card i {
  margin-bottom: 0.85rem;
  color: var(--color-accent);
  font-size: 2.25rem;
}

.about-help-card h3 {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.about-help-card p {
  margin-bottom: 0;
  color: #4f5d78;
  font-size: 0.72rem;
  font-weight: 600;
}

.about-journey-row {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 1.4rem;
}

.about-journey-row article {
  position: relative;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 44px minmax(0, 1fr);
}

.about-journey-row article:not(:last-child)::after {
  position: absolute;
  top: 21px;
  right: -0.65rem;
  width: 42px;
  height: 1px;
  background: #8ea2c8;
  content: "";
}

.about-journey-row span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #d9e7ff;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 900;
}

.about-journey-row h3 {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.about-journey-row p {
  margin-bottom: 0;
  color: #4f5d78;
  font-size: 0.72rem;
  font-weight: 600;
}

.about-testimonial-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-testimonial-grid article {
  padding: 1.25rem;
}

.about-testimonial-grid p {
  position: relative;
  margin-bottom: 1rem;
  color: #4f5d78;
  font-size: 0.95rem;
  font-weight: 600;
}

.about-testimonial-grid p::before {
  color: #b5c4dd;
  content: "\201C";
  font-size: 1.5rem;
  font-weight: 900;
}

.about-testimonial-grid article div {
  display: grid;
  align-items: center;
  gap: 0.1rem 0.65rem;
  grid-template-columns: 42px minmax(0, 1fr);
}

.about-testimonial-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--color-primary);
}

.about-testimonial-grid small {
  color: #4f5d78;
  font-size: 0.72rem;
}

.about-work-cta {
  display: grid;
  align-items: center;
  gap: 1.2rem;
  grid-template-columns: 64px minmax(0, 1fr) minmax(320px, 0.8fr);
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  padding: 1.2rem 1.5rem;
}

.about-work-cta h2 {
  margin-bottom: 0.35rem;
  font-size: 1.35rem;
}

.about-work-cta p {
  margin-bottom: 0;
  color: #4f5d78;
  font-size: 0.84rem;
  font-weight: 600;
}

.about-work-cta__actions {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-magnet {
  display: grid;
  align-items: center;
  gap: 1.25rem;
  grid-template-columns: 90px minmax(0, 1fr) minmax(360px, 0.82fr);
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #06307f, #05286d);
  padding: 1.2rem 1.38rem;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 53, 143, 0.24);
}

.lead-magnet__icon {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  background: #e9f3ff;
  color: var(--color-primary);
  font-size: 2.35rem;
}

.lead-magnet__copy p,
.lead-magnet__copy h2,
.lead-magnet__copy span {
  color: #ffffff;
}

.lead-magnet__copy p {
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.lead-magnet__copy h2 {
  margin-bottom: 0.22rem;
  font-size: 1.28rem;
}

.lead-magnet__copy span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.88;
}

.lead-form {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.lead-form input,
.search-form__input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 0.75rem 0.9rem;
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 500;
}

.lead-form button {
  min-height: 46px;
  background: #ffffff;
  color: var(--color-primary);
  padding: 0.75rem 1rem;
  white-space: nowrap;
  box-shadow: none;
}

.lead-form button:hover {
  background: #eef5ff;
  color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 170px 170px 170px;
  padding-block: 2.45rem 1.8rem;
}

.site-footer__brand p {
  max-width: 25rem;
  margin: 0.9rem 0 1rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #34425e;
  font-size: 1.05rem;
  font-weight: 850;
}

.social-links a:hover {
  color: var(--color-primary);
}

.site-footer h2 {
  margin-bottom: 0.72rem;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer ul,
.footer-menu {
  display: grid;
  gap: 0.34rem;
}

.site-footer li,
.site-footer a {
  color: #34425e;
  font-size: 0.8rem;
  font-weight: 650;
}

.site-footer a:hover {
  color: var(--color-primary);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  padding-block: 0.95rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.78rem;
}

.page-hero {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-soft);
  padding-block: 4rem;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: 3rem;
}

.page-hero p,
.archive-description {
  max-width: 760px;
}

.page-hero--center {
  display: grid;
  min-height: 68vh;
  align-items: center;
  text-align: center;
}

.page-hero--center h1,
.page-hero--center p {
  margin-inline: auto;
}

.page-hero--center .button {
  margin-top: 1rem;
}

.singular-article__image {
  margin-block: 2rem;
}

.singular-article__image img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-card);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.prose-content {
  width: min(100%, 760px);
  margin-inline: auto;
  padding-block: 3.5rem;
}

.prose-content > * {
  margin-bottom: 1.2rem;
}

.prose-content h2 {
  margin-top: 2rem;
  font-size: 2rem;
}

.prose-content h3 {
  margin-top: 1.6rem;
}

.prose-content a {
  color: var(--color-primary);
  font-weight: 760;
}

.prose-content blockquote {
  margin: 2rem 0;
  border-left: 4px solid var(--color-primary);
  padding-left: 1.2rem;
  color: #33425e;
  font-size: 1.08rem;
}

.prose-content img {
  border-radius: var(--radius-card);
}

.prose-content pre,
.prose-content code {
  border-radius: var(--radius-card);
  background: #07143a;
  color: #eef5ff;
}

.prose-content pre {
  overflow-x: auto;
  padding: 1rem;
}

.prose-content code {
  padding: 0.15rem 0.3rem;
}

.prose-content pre code {
  padding: 0;
}

.wp-block-image figcaption {
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
}

.alignwide {
  width: min(100%, 1040px);
  margin-inline: auto;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.search-form {
  display: flex;
  width: min(100%, 560px);
  gap: 0.6rem;
}

.site-pagination,
.post-navigation {
  width: min(100% - 2rem, 1120px);
  margin: 2rem auto 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.page-numbers,
.post-navigation a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: #ffffff;
  padding: 0.55rem 0.78rem;
  color: #34425e;
  font-weight: 760;
}

.page-numbers.current {
  background: var(--color-primary);
  color: #ffffff;
}

.post-navigation .nav-links {
  justify-content: space-between;
}

.site-footer__grid {
  grid-template-columns: minmax(250px, 1.35fr) repeat(4, minmax(120px, 0.7fr));
}

.site-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.site-footer .social-links li {
  display: block;
}

.site-footer .social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #34425e;
  font-size: 1.05rem;
}

.site-footer__connect li {
  color: #34425e;
  font-size: 0.8rem;
  font-weight: 650;
}

.bundle-card {
  align-items: start;
  grid-template-columns: 46px minmax(0, 1fr);
}

.bundle-card h2 {
  align-self: center;
  margin-bottom: 0;
}

.bundle-card p,
.bundle-card .button {
  grid-column: 2;
}

.bundle-card .button {
  justify-self: start;
  width: auto;
  max-width: 100%;
  min-width: 150px;
  border-color: rgba(13, 110, 253, 0.36);
  background: #ffffff;
  color: var(--color-primary);
  white-space: nowrap;
}

.button i:first-child {
  margin-right: 0.55rem;
  margin-left: 0;
}

.services-hero,
.prompt-hero {
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
  padding-block: 2.8rem 1.45rem;
}

.services-hero__grid,
.prompt-hero__grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.services-hero h1,
.prompt-hero h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: 3.45rem;
}

.services-hero__copy > p:not(.section-kicker),
.prompt-hero__grid > div:first-child > p:not(.section-kicker) {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #35405b;
  font-size: 1.05rem;
  font-weight: 500;
}

.services-feature-row,
.prompt-feature-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-feature-row div {
  display: grid;
  align-items: center;
  gap: 0.3rem 0.75rem;
  grid-template-columns: 42px minmax(0, 1fr);
  border-right: 1px solid var(--color-line);
  padding-right: 1rem;
}

.services-feature-row div:last-child {
  border-right: 0;
}

.services-feature-row i,
.service-archive-card__icon,
.service-benefit-card i {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--color-accent);
}

.services-feature-row i {
  width: 42px;
  height: 42px;
  grid-row: span 2;
  font-size: 1.3rem;
}

.services-feature-row strong,
.services-feature-row span {
  display: block;
}

.services-feature-row strong {
  font-size: 0.78rem;
}

.services-feature-row span {
  color: #35405b;
  font-size: 0.72rem;
  font-weight: 500;
}

.services-hero__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4ff;
}

.services-hero__image::after,
.service-visual::after {
  position: absolute;
  right: -25px;
  bottom: 36px;
  width: 105px;
  height: 162px;
  background-image: radial-gradient(rgba(13, 110, 253, 0.22) 1px, transparent 1px);
  background-size: 11px 11px;
  content: "";
  pointer-events: none;
}

.services-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 31%;
}

.services-tabs {
  margin-bottom: 1.35rem;
}

.services-archive-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-archive-card,
.service-benefit-card,
.service-testimonial,
.service-case-study,
.service-blue-cta,
.prompt-card,
.prompt-box,
.prompt-preview,
.prompt-pack-cta,
.prompt-hero__panel {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(7, 20, 58, 0.045);
}

.service-archive-card {
  display: grid;
  min-height: 305px;
  align-content: start;
  padding: 1.5rem;
}

.service-archive-card__icon {
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.service-archive-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.13rem;
}

.service-archive-card p {
  margin-bottom: 1.35rem;
  color: #263652;
  font-size: 0.86rem;
  font-weight: 500;
}

.check-list--small {
  gap: 0.56rem;
  margin-bottom: 1rem;
}

.check-list--small li {
  font-size: 0.78rem;
}

.check-list--small li::before {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
  font-size: 0.58rem;
}

.service-archive-card .section-link {
  margin-top: auto;
}

.services-cta-strip,
.prompt-pack-cta {
  display: grid;
  align-items: center;
  gap: 1.15rem;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f4f8ff, #edf4ff);
  margin-top: 1.35rem;
  padding: 1.25rem 1.45rem;
}

.services-cta-strip > i,
.prompt-pack-cta > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.55rem;
}

.services-cta-strip h2,
.prompt-pack-cta h2 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.services-cta-strip p,
.prompt-pack-cta p {
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 500;
}

.service-detail,
.prompt-detail {
  background: #ffffff;
  padding-block: 2.1rem 2.2rem;
}

.service-detail__hero {
  display: grid;
  align-items: center;
  gap: 3.6rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  margin-bottom: 2.4rem;
}

.service-detail h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: 3.45rem;
}

.service-detail__hero > div:first-child > p:not(.hero-pill) {
  max-width: 36rem;
  margin-bottom: 1.25rem;
  color: #35405b;
  font-size: 1.05rem;
  font-weight: 500;
}

.service-detail__hero .check-list {
  margin-bottom: 1.55rem;
}

.service-detail__actions {
  margin-bottom: 0;
}

.service-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef4ff, #dfeeff);
}

.service-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 32%;
}

.service-visual__card {
  position: absolute;
  z-index: 2;
  right: 2.1rem;
  top: 6.4rem;
  display: grid;
  width: 148px;
  gap: 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem;
  box-shadow: 0 18px 36px rgba(7, 20, 58, 0.1);
}

.service-visual__card strong {
  color: #162547;
  font-size: 0.8rem;
}

.service-visual__card span {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #dbe4f0;
}

.service-visual__card span:first-of-type {
  height: 58px;
  border-radius: 6px;
  background: linear-gradient(135deg, #dfe8f7, #c9d6ea);
}

.service-visual__ai {
  position: absolute;
  z-index: 3;
  right: 8.1rem;
  bottom: 3.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  border-radius: 8px;
  background: #ffffff;
  padding: 0.58rem 0.75rem;
  color: var(--color-accent);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(7, 20, 58, 0.12);
}

.service-detail__layout,
.prompt-detail__layout {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.service-section {
  margin-bottom: 1.7rem;
}

.service-section--center {
  text-align: center;
}

.service-section--center p {
  max-width: 46rem;
  margin: 0.75rem auto 0;
  font-weight: 500;
}

.service-copy {
  max-width: 46rem;
  margin: 0.75rem auto 0;
  color: #4f5d78;
  font-weight: 500;
}

.service-copy p {
  margin-bottom: 0;
}

.service-benefit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.service-benefit-card {
  padding: 1.15rem;
}

.service-benefit-card i {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.service-benefit-card h3 {
  font-size: 0.9rem;
}

.service-benefit-card p {
  margin-bottom: 0;
  color: #263652;
  font-size: 0.78rem;
  font-weight: 500;
}

.service-process {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 1.45rem;
}

.service-process__step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-process__step i {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--color-accent);
  font-size: 1.75rem;
}

.service-process__step span {
  margin-top: 0.72rem;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-process__step h3 {
  margin: 0.25rem 0 0.45rem;
  font-size: 0.86rem;
}

.service-process__step p {
  margin-bottom: 0;
  color: #263652;
  font-size: 0.74rem;
  font-weight: 500;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.service-tags span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--color-line);
  border-radius: 7px;
  background: #ffffff;
  padding: 0.58rem 0.86rem;
  color: #162547;
  font-size: 0.76rem;
  font-weight: 850;
}

.service-tags i {
  color: var(--color-accent);
}

.service-case-study {
  display: grid;
  align-items: center;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) 290px;
  background: linear-gradient(135deg, #f4f8ff, #eef4ff);
  padding: 1.6rem;
}

.service-case-study h2 {
  max-width: 18rem;
  margin-bottom: 0.65rem;
  font-size: 1.42rem;
}

.service-case-study p:not(.section-kicker) {
  margin-bottom: 1rem;
  color: #263652;
  font-size: 0.84rem;
  font-weight: 500;
}

.case-chart {
  display: grid;
  gap: 0.8rem;
  border-radius: 8px;
  background: #ffffff;
  padding: 1rem;
}

.case-chart strong {
  display: flex;
  justify-content: space-between;
  color: #162547;
  font-size: 0.8rem;
}

.case-chart strong span {
  color: var(--color-green);
  font-size: 1rem;
}

.case-chart > i {
  display: block;
  height: 92px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 45%, var(--color-accent) 46%, var(--color-accent) 49%, transparent 50%),
    linear-gradient(#eef3fb 1px, transparent 1px);
  background-size: 100% 100%, 100% 25%;
}

.case-chart ul {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.case-chart b {
  display: block;
  color: #162547;
}

.case-chart li span {
  color: #4f5d78;
  font-size: 0.62rem;
  font-weight: 700;
}

.service-sidebar {
  display: grid;
  gap: 1.25rem;
}

.service-sidebar .button,
.service-blue-cta .button {
  width: 100%;
  min-height: 46px;
}

.service-sidebar small {
  display: block;
  margin-top: 0.7rem;
  color: #4f5d78;
  font-size: 0.7rem;
  text-align: center;
}

.service-testimonial {
  background: #f7f9ff;
  padding: 1.25rem;
}

.service-testimonial > i {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.service-testimonial p {
  color: #162547;
  font-size: 0.84rem;
  font-weight: 500;
}

.service-testimonial strong,
.service-testimonial span {
  display: block;
}

.service-testimonial span {
  color: #4f5d78;
  font-size: 0.72rem;
}

.service-blue-cta {
  background: linear-gradient(135deg, #063ff5, #062d9c);
  padding: 1.4rem;
  color: #ffffff;
}

.service-blue-cta > i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-accent);
  font-size: 1.75rem;
}

.service-blue-cta h2,
.service-blue-cta p {
  color: #ffffff;
}

.service-blue-cta h2 {
  margin-top: 0.9rem;
}

.service-blue-cta p {
  font-size: 0.82rem;
  opacity: 0.9;
}

.service-blue-cta .button {
  background: #ffffff;
  color: var(--color-accent);
}

.prompt-hero__panel {
  display: grid;
  min-height: 310px;
  align-content: center;
  justify-items: start;
  background: linear-gradient(135deg, #f2f7ff, #e9f1ff);
  padding: 2rem;
}

.prompt-hero__panel > i {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}

.prompt-hero__panel h2 {
  margin-bottom: 0.55rem;
}

.prompt-hero__panel p {
  margin-bottom: 1.1rem;
  color: #162547;
  font-weight: 800;
}

.prompt-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prompt-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.45rem 1rem;
  padding: 1.15rem;
}

.prompt-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  grid-row: span 4;
  place-items: center;
  border-radius: 8px;
  background: #edf4ff;
  color: var(--color-accent);
  font-size: 1.65rem;
}

.prompt-card > span {
  color: var(--color-accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prompt-card h2 {
  font-size: 1rem;
}

.prompt-card p {
  margin-bottom: 0.45rem;
  color: #263652;
  font-size: 0.78rem;
  font-weight: 500;
}

.prompt-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  color: #4f5d78;
  font-size: 0.74rem;
  font-weight: 700;
}

.prompt-card__meta span,
.prompt-card__meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.prompt-card__meta a {
  color: var(--color-accent);
  font-weight: 900;
}

.prompt-detail__layout {
  margin-top: 0.5rem;
}

.prompt-detail__header {
  margin-bottom: 1.55rem;
}

.prompt-detail__header h1 {
  max-width: 14ch;
  margin-bottom: 0.75rem;
  font-size: 3.2rem;
}

.prompt-detail__header > p:not(.hero-pill) {
  max-width: 44rem;
  color: #35405b;
  font-size: 1.03rem;
  font-weight: 500;
}

.prompt-meta,
.prompt-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.prompt-meta {
  margin: 1rem 0 1.4rem;
  color: #4f5d78;
  font-size: 0.78rem;
  font-weight: 650;
}

.prompt-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.prompt-meta i {
  color: var(--color-accent);
}

.prompt-actions .button {
  min-width: 160px;
}

.prompt-box,
.prompt-preview {
  margin-bottom: 1.2rem;
  padding: 1.2rem;
}

.prompt-box__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.prompt-box__head h2,
.prompt-preview h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.prompt-box__head button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--color-line);
  border-radius: 7px;
  background: #ffffff;
  padding: 0.5rem 0.78rem;
  color: var(--color-accent);
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
}

.button.is-copied,
.prompt-box__head button.is-copied {
  border-color: rgba(35, 183, 142, 0.42);
  background: #e9fbf5;
  color: #12886d;
}

.prompt-box pre {
  overflow: auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fbfcff;
  margin: 0;
  padding: 1.2rem;
  white-space: pre-wrap;
}

.prompt-box code {
  color: #07143a;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.65;
}

.preview-row {
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid var(--color-line);
  padding: 0.8rem 0;
}

.preview-row span {
  justify-self: start;
  border-radius: 6px;
  background: #dff8e8;
  padding: 0.25rem 0.48rem;
  color: #12886d;
  font-size: 0.68rem;
  font-weight: 900;
}

.preview-row p {
  margin-bottom: 0;
  color: #162547;
  font-size: 0.82rem;
  font-weight: 650;
}

.preview-outline {
  display: grid;
  gap: 0.75rem;
  padding-block: 1rem;
}

.preview-outline div {
  display: grid;
  align-items: center;
  gap: 0.7rem;
  grid-template-columns: 42px minmax(0, 1fr);
}

.preview-outline b {
  display: grid;
  min-height: 30px;
  place-items: center;
  border-radius: 6px;
  background: #e8f0ff;
  color: var(--color-accent);
  font-size: 0.72rem;
}

.preview-outline strong {
  color: #162547;
  font-size: 0.84rem;
}

.preview-outline i {
  grid-column: 2;
  display: block;
  width: 70%;
  height: 9px;
  border-radius: 99px;
  background: #dfe4ed;
}

.prompt-preview .button {
  display: flex;
  width: max-content;
  min-height: 40px;
  margin: 0.65rem auto 0;
  padding: 0.65rem 0.92rem;
  font-size: 0.78rem;
}

.prompt-sidebar {
  display: grid;
  gap: 1.25rem;
}

.prompt-detail-item {
  display: grid;
  align-items: start;
  gap: 0.2rem 0.8rem;
  grid-template-columns: 34px minmax(0, 1fr);
  margin-top: 1rem;
}

.prompt-detail-item i {
  display: grid;
  width: 30px;
  height: 30px;
  grid-row: span 2;
  place-items: center;
  color: #6a7488;
  font-size: 1.1rem;
}

.prompt-detail-item span {
  color: #6a7488;
  font-size: 0.72rem;
  font-weight: 700;
}

.prompt-detail-item strong {
  color: #162547;
  font-size: 0.84rem;
  line-height: 1.45;
}

.variable-list {
  display: grid;
  gap: 1rem;
}

.variable-list strong {
  display: inline-flex;
  border-radius: 5px;
  background: #e8f0ff;
  padding: 0.2rem 0.42rem;
  color: var(--color-accent);
  font-size: 0.7rem;
}

.variable-list p {
  margin: 0.38rem 0 0;
  color: #263652;
  font-size: 0.78rem;
  font-weight: 500;
}

.related-prompts {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.related-prompts a {
  display: grid;
  align-items: center;
  gap: 0.12rem 0.7rem;
  grid-template-columns: 36px minmax(0, 1fr);
}

.related-prompts i {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: span 2;
  place-items: center;
  border-radius: 7px;
  background: #edf4ff;
  color: var(--color-accent);
}

.related-prompts strong {
  color: #162547;
  font-size: 0.82rem;
}

.related-prompts span {
  color: #4f5d78;
  font-size: 0.7rem;
  font-weight: 650;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.75rem;
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .primary-nav a {
    padding-inline: 0.5rem;
    font-size: 0.78rem;
  }

  .home-hero__grid {
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  }

  .hero-feature-row,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .hero-feature {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding: 0 0 0.8rem;
  }

  .service-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-magnet {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .lead-form {
    grid-column: 1 / -1;
  }

  .products-hero__grid,
  .featured-product,
  .about-hero__grid,
  .about-story__grid,
  .products-layout,
  .product-detail__hero,
  .product-detail__layout,
  .article-layout,
  .blog-hero__grid,
  .blog-layout,
  .services-hero__grid,
  .prompt-hero__grid,
  .service-detail__hero,
  .service-detail__layout,
  .prompt-detail__layout {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .review-grid,
  .about-help-grid,
  .services-archive-grid,
  .service-benefit-grid,
  .prompt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-sidebar,
  .blog-sidebar,
  .product-sidebar,
  .article-sidebar,
  .service-sidebar,
  .prompt-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-stats-grid,
  .about-journey-row,
  .about-testimonial-grid,
  .about-work-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-work-cta > i {
    grid-row: span 2;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 1.25rem, 1120px);
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.9rem;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem;
    box-shadow: 0 22px 40px rgba(7, 20, 58, 0.1);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 0.25rem;
  }

  .primary-nav a {
    width: 100%;
    justify-content: center;
  }

  .primary-nav a::after,
  .home-hero::after {
    display: none;
  }

  .home-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 3rem 2rem;
  }

  .home-hero__visual {
    justify-self: start;
    width: min(100%, 430px);
  }

  .guide-grid,
  .post-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .guide-card__media,
  .post-card__media {
    aspect-ratio: 16 / 6.5;
  }

  .about-panel {
    padding: 1rem;
  }

  .about-panel__image {
    width: min(100%, 260px);
  }

  .signature {
    justify-self: start;
    font-size: 2.6rem;
  }

  .section-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .section-link {
    white-space: normal;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-hero h1 {
    font-size: 3rem;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-grid,
  .products-sidebar,
  .about-feature-row,
  .about-stats-grid,
  .about-help-grid,
  .about-journey-row,
  .about-testimonial-grid,
  .about-work-cta,
  .blog-sidebar,
  .product-sidebar,
  .article-sidebar,
  .service-sidebar,
  .prompt-sidebar,
  .review-grid,
  .included-grid,
  .services-archive-grid,
  .service-benefit-grid,
  .prompt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-created .about-panel {
    grid-template-columns: 1fr;
  }

  .product-purchase h1,
  .article-header h1 {
    font-size: 2.55rem;
  }

  .purchase-stats,
  .blog-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .blog-list-card__media {
    min-height: 220px;
  }

  .article-featured-image {
    grid-template-columns: 1fr;
  }

  .share-links {
    margin-left: 0;
  }

  .services-hero h1,
  .prompt-hero h1,
  .service-detail h1,
  .prompt-detail__header h1 {
    font-size: 2.55rem;
  }

  .services-feature-row,
  .prompt-feature-row,
  .service-case-study,
  .services-cta-strip,
  .prompt-pack-cta {
    grid-template-columns: 1fr;
  }

  .services-feature-row div {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding: 0 0 0.8rem;
  }

  .services-feature-row div:last-child {
    border-bottom: 0;
  }

  .about-feature-row div {
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
    padding: 0 0 0.8rem;
  }

  .about-feature-row div:last-child {
    border-bottom: 0;
  }

  .about-journey-row article::after {
    display: none;
  }

  .about-work-cta__actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.38rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.62rem;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 1.75rem;
  }

  .home-hero__summary {
    font-size: 1rem;
  }

  .hero-actions,
  .lead-form,
  .search-form {
    display: grid;
  }

  .button,
  .lead-form button,
  .search-form__button {
    width: 100%;
  }

  .hero-feature-row,
  .about-feature-row,
  .about-stats-grid,
  .about-help-grid,
  .about-journey-row,
  .about-testimonial-grid,
  .about-work-cta,
  .about-work-cta__actions,
  .product-grid,
  .service-grid,
  .site-footer__grid,
  .services-archive-grid,
  .service-benefit-grid,
  .service-process,
  .prompt-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__bottom,
  .product-card__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-magnet {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .post-navigation .nav-links {
    display: grid;
  }

  .products-hero {
    padding-block: 2.4rem 1.4rem;
  }

  .products-hero h1 {
    font-size: 2.35rem;
  }

  .featured-product {
    padding: 1.2rem;
  }

  .product-box {
    min-height: 240px;
  }

  .catalog-tabs,
  .catalog-tabs a,
  .catalog-sort,
  .catalog-sort button {
    width: 100%;
  }

  .products-grid,
  .products-sidebar,
  .blog-sidebar,
  .product-sidebar,
  .article-sidebar,
  .review-grid,
  .included-grid,
  .purchase-stats,
  .blog-feature-row {
    grid-template-columns: 1fr;
  }

  .product-gallery__main {
    min-height: 360px;
  }

  .product-cover {
    width: min(72%, 260px);
    min-height: 280px;
  }

  .product-cube {
    right: 1.3rem;
    bottom: 1.3rem;
    width: 78px;
    height: 78px;
    font-size: 2.2rem;
  }

  .product-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-purchase h1,
  .article-header h1 {
    font-size: 2.15rem;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-tabs a {
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem;
    text-align: center;
  }

  .blog-list-card__media {
    min-height: 160px;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .key-takeaways,
  .article-author,
  .guarantee-card,
  .bundle-card {
    grid-template-columns: 1fr;
  }

  .bundle-card p,
  .bundle-card .button {
    grid-column: auto;
  }

  .services-hero,
  .prompt-hero,
  .about-hero {
    padding-block: 2.4rem 1.4rem;
  }

  .services-hero h1,
  .prompt-hero h1,
  .about-hero h1,
  .service-detail h1,
  .prompt-detail__header h1 {
    font-size: 2.15rem;
  }

  .services-feature-row,
  .prompt-feature-row {
    grid-template-columns: 1fr;
  }

  .services-hero__image,
  .prompt-hero__panel {
    width: 100%;
  }

  .service-visual {
    min-height: 320px;
  }

  .service-visual__card {
    right: 1rem;
    top: 4.7rem;
    width: 128px;
  }

  .service-visual__ai {
    right: 4.4rem;
    bottom: 2rem;
  }

  .prompt-actions {
    display: grid;
  }

  .prompt-actions .button {
    width: 100%;
  }

  .prompt-card {
    grid-template-columns: 1fr;
  }

  .prompt-card__icon {
    grid-row: auto;
  }

  .preview-row,
  .preview-outline div,
  .prompt-detail-item,
  .related-prompts a {
    grid-template-columns: 1fr;
  }

  .about-stat-card,
  .about-journey-row article {
    grid-template-columns: 1fr;
  }

  .about-stat-card h3,
  .about-stat-card p,
  .about-work-cta > i,
  .about-work-cta__actions {
    grid-column: auto;
  }
}
