:root {
  --bg: #f8fafc;
  --bg-accent: #eef2ff;
  --accent: #1757ff;
  --accent-hover: #1247d4;
  --accent-soft: #e8efff;
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --line: #e2e8f0;
  --card: rgba(255, 255, 255, 0.92);
  --dark: #0f172a;
  --dark-hover: #1e293b;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 210, 254, 0.45), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(23, 87, 255, 0.16), transparent 22%),
    radial-gradient(circle at 20% 35%, rgba(232, 239, 255, 0.95), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.logo {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__link,
.section-label,
.badge,
.hero__meta span,
.section-kicker {
  font-size: 0.875rem;
}

.nav__link,
.section-label,
.section-kicker,
.hero__text,
.section-heading p,
.card p,
.panel p,
.cta p,
.steps {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--sm {
  padding: 0.7rem 1rem;
}

.button--dark {
  color: #fff;
  background: var(--accent);
}

.button--dark:hover {
  background: var(--accent-hover);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button--ghost:hover {
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 31rem);
  gap: 3rem;
  align-items: center;
  padding: 4.25rem 0 5rem;
}

.badge,
.section-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
}

.section-kicker {
  display: inline-block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.panel h2,
.cta h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: clamp(3.25rem, 8vw, 5.8rem);
}

.hero__text {
  max-width: 60ch;
  margin: 1.5rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__microcopy {
  margin: 1rem 0 0;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
}

.card,
.panel,
.cta {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.section {
  padding: 3rem 0;
}

.includes {
  display: grid;
  gap: 1.5rem;
}

.includes__intro {
  max-width: 760px;
}

.includes__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

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

.includes__item {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.includes__item h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.includes__item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.section-heading h2,
.panel h2,
.cta h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.panel p,
.cta p,
.steps,
.card p {
  margin: 1rem 0 0;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.card,
.panel {
  padding: 1.5rem;
}

.card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.services {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.services__top {
  display: block;
}

.services__intro {
  max-width: 44rem;
}

.services__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.services__intro p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.stylized-image {
  width: 31rem;
  flex: none;
}

.stylized-image svg {
  display: block;
  width: 100%;
  height: auto;
}

.stylized-image__stroke {
  fill: none;
  stroke: rgba(15, 23, 42, 0.1);
  stroke-width: 2;
}

.services__list {
  max-width: none;
}

.service-item {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.service-item + .service-item {
  margin-top: 2.25rem;
}

.service-item__number {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(23, 87, 255, 0.28);
}

.service-item__content h3 {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.service-item__content p {
  margin: 0.7rem 0 0;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.75;
}

.pricing-box {
  margin-bottom: 3.5rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
  box-shadow: var(--shadow);
}

.pricing-box__intro {
  max-width: 44rem;
}

.pricing-box__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 300px);
  gap: 2rem;
  align-items: end;
}

.pricing-box__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.pricing-box__intro p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.price-card {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 0.45rem;
  row-gap: 0;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 1.25rem;
  background: var(--accent);
  color: #fff;
}

.price-card__amount {
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.price-card__period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.price-card__note {
  width: 100%;
  margin-top: 1.1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}

.price-card__subnote {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.pricing-box__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-box__item {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.pricing-box__item--highlight {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
  color: inherit;
}

.pricing-box__item h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.pricing-box__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-box__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex: none;
}

.pricing-box__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-box__item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.problem-block,
.include-box,
.how-section,
.faq {
  max-width: 960px;
}

.problem-block__intro h2,
.include-box__intro h2,
.how-section__intro h2,
.faq__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.problem-block__intro p,
.problem-block__note,
.include-box__intro p,
.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.problem-list,
.include-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li,
.include-list li {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.76);
}

.include-list__label {
  margin: 1.5rem 0 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.problem-points {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.problem-points li + li {
  margin-top: 0.5rem;
}

.problem-alt {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
  max-width: 1040px;
}

.problem-alt__intro h2,
.problem-compare__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.problem-alt__intro p,
.problem-alt__closing,
.problem-compare__intro p,
.problem-compare__note {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.problem-alt__closing {
  max-width: 42rem;
}

.problem-alt__panel {
  padding: 1.5rem;
  border: 1px solid rgba(23, 87, 255, 0.14);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 239, 255, 0.7));
  box-shadow: var(--shadow);
}

.problem-alt__eyebrow,
.problem-compare__label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.problem-alt__eyebrow {
  color: var(--accent);
}

.problem-alt__checks,
.problem-compare__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.problem-alt__checks {
  display: grid;
  gap: 0.85rem;
  counter-reset: problem-items;
}

.problem-alt__checks li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.problem-alt__checks li::before {
  counter-increment: problem-items;
  content: counter(problem-items, decimal-leading-zero);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(23, 87, 255, 0.64);
}

.problem-alt__checks strong,
.problem-compare__list li {
  display: block;
  letter-spacing: -0.02em;
}

.problem-alt__checks span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  line-height: 1.65;
}

.problem-compare {
  max-width: 1040px;
}

.problem-compare__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.problem-compare__card {
  padding: 1.5rem;
  border-radius: 1.35rem;
}

.problem-compare__card--muted {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.problem-compare__card--accent {
  border: 1px solid rgba(23, 87, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(232, 239, 255, 0.9), rgba(255, 255, 255, 0.92));
}

.problem-compare__label {
  color: var(--text);
}

.problem-compare__card--accent .problem-compare__label {
  color: var(--accent);
}

.problem-compare__list {
  display: grid;
  gap: 0.9rem;
}

.problem-compare__list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.7;
}

.problem-compare__list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
}

.problem-compare__card--accent .problem-compare__list li::before {
  background: var(--accent);
}

.problem-compare__note {
  max-width: 46rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.include-box {
  margin-top: 3rem;
}

.include-box__note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.include-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.include-list li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.how-step {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.how-step__number {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(23, 87, 255, 0.3);
}

.how-step h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.how-step p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 3.5rem 1.35rem 1.35rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.35rem;
}

.faq-item p:first-of-type {
  padding-top: 0.2rem;
}

.faq-item p:last-of-type {
  padding-bottom: 1.35rem;
}

.faq-item p + p {
  padding-top: 0.85rem;
}

.cta--final {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 239, 255, 0.92));
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 2rem;
  padding: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel__intro h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.contact-panel__intro p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.contact-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  flex: none;
}

.contact-link__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link__icon-image {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.contact-link__content {
  display: block;
  min-width: 0;
}

.contact-link__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft);
}

.contact-link__value {
  display: block;
  margin-top: 0.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-link--whatsapp .contact-link__icon {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.contact-form {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.field textarea {
  resize: vertical;
  min-height: 12rem;
}

.field input::placeholder,
.field textarea::placeholder,
.contact-form__note {
  color: var(--soft);
}

.contact-form .button {
  margin-top: 1.25rem;
}

.contact-form__status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.contact-form__status.is-error {
  color: #b91c1c;
}

.contact-form__status.is-success {
  color: #15803d;
}

.contact-form__note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.stats {
  width: 100%;
  margin-bottom: 3.5rem;
}

.stats__bar {
  background: var(--accent);
  overflow: hidden;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.stat-item {
  padding: 1.85rem 1.5rem;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item__value {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.95;
  color: #fff;
}

.stat-item__label {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  text-transform: none;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

@media (min-width: 901px) {
  #processo.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item__label {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery {
  margin-bottom: 3.5rem;
}

.gallery__intro {
  max-width: 44rem;
}

.gallery__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.gallery__intro p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.gallery-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.content-block {
  max-width: 820px;
}

.content-block--wide {
  max-width: none;
}

.content-block h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.content-block p,
.content-block .steps {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.audience-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.audience-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.audience-card h3 {
  margin: 1rem 1.25rem 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.audience-card p {
  margin: 0.7rem 1.25rem 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  grid-template-areas:
    "media intro"
    "media body";
  gap: 2rem;
  align-items: center;
}

.about__intro {
  grid-area: intro;
  max-width: 44rem;
}

.about__media {
  grid-area: media;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.about__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__body {
  grid-area: body;
  max-width: 44rem;
}

.about__intro h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.about__intro p,
.about__body p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.cta {
  padding: 2rem;
  text-align: center;
}

.cta .button {
  margin-top: 1.5rem;
}

.cta__microcopy {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__brand p,
.footer__copy,
.footer__nav a {
  color: var(--muted);
}

.footer__brand p {
  max-width: 34rem;
  margin: 0.8rem 0 0;
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.25rem;
}

.footer__copy {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero,
  .services__top,
  .pricing-box__top,
  .pricing-box__grid,
  .problem-alt,
  .problem-compare__grid,
  .contact-panel,
  .contact-form__grid,
  .stats__inner,
  .gallery__grid,
  .about,
  .how-grid,
  .include-list,
  .grid--three,
  .grid--split,
  .audience-grid,
  .includes__grid,
  .workflow__grid {
    grid-template-columns: 1fr;
  }

  .about {
    grid-template-areas:
      "intro"
      "media"
      "body";
  }

  .hero h1 {
    max-width: none;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stat-item__label {
    margin-left: auto;
    margin-right: auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .problem-alt__panel,
  .problem-compare__card {
    padding: 1.25rem;
  }

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

  .footer__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1120px);
  }

  .gallery__grid {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

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

  .nav__actions {
    width: 100%;
    justify-content: space-between;
  }

  .about__media {
    order: -1;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .problem-alt__checks li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .price-card {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 0.45rem;
    row-gap: 0;
  }

  .price-card__period {
    margin-top: 0;
  }

  .price-card__note {
    width: 100%;
  }

  .stylized-image {
    width: 100%;
    max-width: 31rem;
  }
}
