:root {
  --bg: #f8f1f2;
  --bg-strong: #edd9de;
  --surface: rgba(255, 251, 252, 0.8);
  --surface-strong: #fff9fa;
  --ink:black /* #241a20*/;
  --normal-text-color: #201a1d;
  --muted: #73606a;
  --line: rgba(36, 26, 32, 0.1);
  --accent: #dc143c;
  --accent-soft: #f9dde4;
  --accent-warm: #9a5a49;
  --shadow: 0 24px 60px rgba(64, 24, 35, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;

  --heading3: clamp(1.5rem, 1vw, 2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 20, 60, 0.08), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(220, 20, 60, 0.05), transparent 22%),
    linear-gradient(180deg, #fcf7f8 0%, #f9f3f4 42%, #f8f1f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
}

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

.page-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.site-header {
  Xposition: sticky;
  top: 0;
  z-index: 10;
  display: flex;,
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 251, 0.88);
  background: white;
  box-shadow: 0 10px 30px rgba(64, 24, 35, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(220, 20, 60, 0.18);
  box-shadow: 0 10px 20px rgba(220, 20, 60, 0.16);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  margin-bottom: .15rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--muted);
  color: var(--normal-text-color);
  font-size: 1rem;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-with-icon {
  gap: 0.6rem;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #b31233);
  box-shadow: 0 12px 28px rgba(220, 20, 60, 0.24);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  border-color: #ddd;
  background: rgba(255, 255, 255, 0.52);
}

.scroll-top-button {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(220, 20, 60, 0.18);
  border-radius: 999px;
  background: rgba(255, 251, 252, 0.92);
  box-shadow: 0 16px 38px rgba(64, 24, 35, 0.16);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  background: rgba(255, 248, 250, 1);
  border-color: rgba(220, 20, 60, 0.28);
  transform: translateY(-1px);
}

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

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
  padding: 3.5rem 0 0rem;
}

.hero-copy,
.hero-card,
.proof-bar,
.info-card,
.timeline-item,
.results-panel,
.quote-panel,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 252, 252, 0.84);
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.06);
}

.hero-copy {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.eyebrow,
.mini-label {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.contact-card h2,
.how-tos-hero h1
 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 3.3vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.how-tos-empty-state h2,
.how-to-article-title {
  font-size: var(--heading3);
}

.how-to-article-title {
  margin-bottom: 0;
}

.hero-text {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--normal-text-color);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--normal-text-color);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.6rem;
      padding-top: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 249, 250, 0.97), rgba(250, 239, 241, 0.9)),
    var(--surface);
}

.hero > .results-coming-soon-card {
  align-self: start;
  gap: 0;
      border-left: 12px solid crimson;
    border-radius: 0;
}

.hero > .results-coming-soon-card .mini-label {
  margin-bottom: 0.75rem;
}

.hero > .results-coming-soon-card h2 {
  margin-bottom: 0.85rem;
}

.hero > .results-coming-soon-card p:last-child {
  margin-top: 0;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  Xmargin-bottom: 1rem;
}

.status-pill {
  display: flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--accent);
  background-color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill.status-available {
  Xbackground: #98fb98;
}

.status-pill.status-unavailable {
  Xbackground: #ff9254;
  display: none;
}


.service-stack {
  display: grid;
  gap: 1rem;
}

.service-stack article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 20, 60, 0.08);
}

.service-concepts {
  display: grid;
  gap: 0.4rem;
  padding-top: 0.6rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.check-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tag-list h2,
.service-tag-list h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-tag-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-tag-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0 0.95rem 0.05rem;
  border-bottom: 1px solid rgba(220, 20, 60, 0.08);
}

.service-tag-list li:last-child {
  border-bottom: 0;
}

.service-tag-main {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(220, 20, 60, 0.14);
  border-radius: 999px;
  background: rgba(220, 20, 60, 0.06);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-stack h2,
.info-card h3,
.timeline-item h3,
.results-panel h3 {
  margin: 0 0 0.55rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
}

.results-panel h3 {
  font-size: 1.55rem;
}

.service-stack p,
.info-card p,
.timeline-item p,
.results-panel p,
.Xquote-panel p,
.contact-card p,
.proof-bar span {
  margin: 0;
  color: var(--normal-text-color);
  line-height: 1.7;
}

.results-panel p {
  font-size: 1.1rem;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

.proof-bar div {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.proof-bar strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.section {
  padding-top: 4.5rem;
}

.page {
    padding: 2.25rem 0 1rem;
}

.contact-page {
  padding: 2.25rem 0 4rem;
}

.results-page {
  padding: 2.25rem 0 4rem;
}

.how-tos-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 1.9rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 252, 0.84);
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.06);
}

.contact-page-hero,
.results-page-hero,
.contact-form-panel,
.contact-side-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 252, 0.84);
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.06);
}

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  padding: 2rem;
}

.results-page-hero,
.results-coming-soon-card {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 252, 0.84);
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.06);
}

.results-coming-soon {
  margin-top: 1rem;
}

.results-coming-soon-card {
  max-width: 46rem;
        border-left: 12px solid crimson;
    border-radius: 0;

}

.results-coming-soon-card h2 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: var(--heading3);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.results-coming-soon-card p:last-child {
  margin: 0;
  color: var(--normal-text-color);
  line-height: 1.7;
}

.contact-page-hero-copy {
  max-width: 62rem;
}

.contact-page-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
  scroll-margin-top: 8.5rem;
}

.contact-form-panel,
.contact-side-panel {
  padding: 2rem;
}

.contact-form-heading {
  margin-bottom: 1.5rem;
}

.contact-form-heading h2,
.contact-side-panel h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

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

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

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(36, 26, 32, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 251, 0.72);
  color: var(--ink);
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(220, 20, 60, 0.2);
  border-color: rgba(220, 20, 60, 0.32);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.contact-form-status {
  margin: 0;
  color: var(--normal-text-color);
  font-weight: 700;
}

.contact-side-panel {
  background:
    radial-gradient(circle at top right, rgba(220, 20, 60, 0.08), transparent 32%),
    rgba(255, 250, 251, 0.9);
}

.contact-side-panel p,
.contact-side-points {
  color: var(--normal-text-color);
  line-height: 1.7;
}

.contact-side-points {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
}

.contact-side-points li {
  margin-bottom: 0.65rem;
}

.how-tos-hero-copy {
  max-width: 66rem;
}

.how-tos-hero-actions {
  display: flex;
  justify-content: flex-start;
  Xpadding-top: 1.25rem;
  margin-top: 1.5rem;
  Xborder-top: 1px solid var(--line);
}

.how-tos-layout {
  display: grid;
  grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
  position: relative;
}

.how-tos-index-panel,
.how-tos-empty-state,
.how-to-article {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 252, 0.84);
  background-color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.06);
}

.how-tos-index-panel {
  position: sticky;
  top: 7.5rem;
  padding: 1.25rem;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  overflow: hidden;
}

.how-tos-index-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-tos-toggle {
  min-width: 13rem;
}

.how-tos-index-list,
.how-tos-main {
  min-width: 0;
}

.how-tos-index-list {
  margin-top: 1rem;
}

.how-tos-index-link {
  display: block;
  position: relative;
  padding: 1.15rem 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(220, 20, 60, 0.12);
  border-radius: 22px;
  background: rgba(255, 247, 249, 0.96);
  font-weight: 700;
  line-height: 1.5;
}

.how-tos-index-link::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0;
  bottom: 0;
  width: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), #e05a88);
}

.how-tos-empty-index {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.how-tos-main {
  display: grid;
  gap: 1.25rem;
}

.how-tos-empty-state,
.how-to-article {
  padding: 2rem;
  position: relative;
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}

.how-tos-empty-state p,
.how-to-article-date,
.how-to-article-footer {
  color: var(--normal-text-color);
  line-height: 1.75;
}

.how-to-article-date,
.how-to-article-footer {
  color: var(--muted);
}

.how-to-article-header {
  display: flex;
  flex-direction: column;
  Xflex-wrap: wrap;
  Xgap: 0.8rem 1.2rem;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.how-to-article-date {
  margin: 0;
  font-weight: 700;
}

.how-to-article-body {
  padding: 1.5rem 0;
}

.how-to-article-body h3 {
  margin: 2rem 0 0.75rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
}

.how-to-article-body p {
  margin: 0 0 1rem;
}

.how-to-article-body ul {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
  color: var(--normal-text-color);
}

.how-to-article-body li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

.how-to-article-footer {
  padding-top: 1.25rem;
}

.how-to-article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(120deg, #dc143c 0%, #e05a88 90%);
  box-shadow: 0 24px 60px rgba(156, 20, 57, 0.16);
}

.how-to-article-cta .mini-label,
.how-to-article-cta-text {
  color: #fff9fb;
}

.how-to-article-cta .mini-label {
  margin-bottom: 0.5rem;
}

.how-to-article-cta-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.how-to-article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.9rem;
}

.how-to-article-cta-actions .button {
  width: 10rem;
}

.how-to-article-cta .button-primary {
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #dc143c, #c51237);
  box-shadow: 0 14px 32px rgba(130, 10, 38, 0.26);
}

.how-to-article-cta .button-secondary {
  flex-shrink: 0;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
  color: #fff9fb;
}

.how-tos-layout.index-collapsed {
  grid-template-columns: minmax(0, 1fr);
}

.how-tos-layout.index-collapsed .how-tos-index-panel {
  display: none;
}

.how-tos-layout.index-collapsed .how-tos-index-list {
  display: none;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.featured-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(220, 20, 60, 0.12);
  border-radius: calc(var(--radius-lg) + 2px);
  background: rgba(255, 250, 251, 0.88);
  box-shadow: 0 20px 50px rgba(64, 24, 35, 0.08);
}

.featured-offer-copy {
  max-width: 56rem;
}

.featured-offer h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.featured-offer p {
  margin: 0.55rem 0 0;
  color: var(--normal-text-color);
  font-size: 1.05rem;
  line-height: 1.7;
}

.featured-offer .mini-label {
  margin-bottom: 0.6rem;
}

.featured-offer .button {
  flex-shrink: 0;
}

.info-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-number,
.timeline-step {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent-warm);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  flex: 0 0 auto;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.card-icon svg > circle:first-child {
  fill: var(--accent-soft);
}

.card-icon .icon-stroke {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon-plain {
  border-radius: 999px;
  background: var(--accent-soft);
}

.card-icon-plain svg {
  width: 58%;
  height: 58%;
  color: var(--accent);
}

.info-card h3 {
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline-item {
  min-height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.results-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.25rem;
}

.results-panel,
.quote-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.quote-panel {
  background:
    radial-gradient(circle at top right, rgba(220, 20, 60, 0.08), transparent 32%),
    rgba(255, 250, 251, 0.9);
}

.quote-kicker {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.Xquote-panel p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}

.quote-attribution {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(38, 20, 25, 0.1);
}

.quote-attribution strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.quote-attribution span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.98rem;
  color: var(--muted);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(90deg, #dc143c 0%, #e05a88 52%, #e66e96 100%);
    background: linear-gradient(120deg, #dc143c 0%, #e05a88 90%) ;
  box-shadow: 0 28px 70px rgba(156, 20, 57, 0.22);
}

.contact-card h2,
.contact-card p {
  color: #fff9fb;
}

.contact-card .eyebrow {
  color: rgba(255, 249, 251, 0.82);
}

.contact-card p {
  max-width: 38rem;
}
.contact-card .subheading {
    margin-top: 1em;
  font-size: 1.3rem;
}

.contact-card .button-primary {
  border-color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #dc143c, #c51237);
  box-shadow: 0 14px 32px rgba(130, 10, 38, 0.26);
}

.contact-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.14);
  color: #fff9fb;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@media (max-width: 1080px) {
  .hero,
  .results-layout,
  .contact-card,
  .timeline,
  .cards-grid,
  .proof-bar,
  .contact-form-layout,
  .how-tos-layout {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .site-nav {
    order: 3;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 0.4rem;
  }

  .hero,
  .results-layout,
  .contact-card,
  .cards-grid,
  .proof-bar,
  .timeline,
  .contact-form-layout,
  .how-tos-layout {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 2.8rem;
  }

  .hero-copy,
  .hero-card,
  .contact-card,
  .contact-page-hero,
  .results-page-hero,
  .results-coming-soon-card,
  .contact-form-panel,
  .contact-side-panel,
  .how-tos-hero,
  .how-tos-empty-state,
  .how-to-article,
  .how-tos-index-panel {
    padding: 1.5rem;
  }

  .hero h1,
  .section-heading h2,
  .contact-card h2,
  .contact-form-heading h2,
  .contact-side-panel h3,
  .how-tos-hero h1
  {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

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

  .service-tag-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .how-tos-index-panel {
    position: static;
  }

  .how-tos-index-panel,
  .how-to-article {
    border-radius: var(--radius-lg);
  }

  .how-tos-index-link::before {
    left: 0;
    top: 1rem;
    bottom: 1rem;
  }

  .how-to-article-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .how-to-article-cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .how-to-article-cta-actions .button {
    width: 100%;
    flex: 1 1 12rem;
  }

  .how-to-article-cta .button-secondary,
  .how-tos-toggle {
    width: 100%;
  }

  .scroll-top-button {
    right: 1rem;
    bottom: 1rem;
  }
}

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

  .reveal,
  .delay-1,
  .delay-2,
  .delay-3,
  .button,
  .scroll-top-button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
