:root {
  --color-bg: #fff7fa;
  --color-surface: #ffffff;
  --color-text: #2b2530;
  --color-muted: #6f6372;
  --color-primary: #e85d9e;
  --color-primary-dark: #c93f82;
  --color-secondary: #58b7b0;
  --color-line: #f0d9e4;
  --color-soft: #fff0f6;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 8px 20px rgba(43, 37, 48, 0.05);
  --shadow-md: 0 18px 40px rgba(43, 37, 48, 0.08);
  --container: 1180px;
  --section-space: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.site-main {
  display: block;
  min-height: 70vh;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(232, 93, 158, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(88, 183, 176, 0.08), transparent 28%),
    var(--color-bg);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--color-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-primary);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding-inline: 20px;
}

.section,
.section-sm,
.section-lg {
  padding: 48px 0;
}

.section-sm {
  padding: 28px 0;
}

.section-lg {
  padding: 64px 0;
}

.section-muted {
  background: rgba(255, 240, 246, 0.7);
}

.content,
.content-narrow,
.text-block {
  max-width: 920px;
}

.content-section,
.form-section {
  width: 100%;
  max-width: none;
}

.content-narrow {
  max-width: 760px;
}

.text-block {
  font-size: 1rem;
  line-height: 1.7;
}

.stack > * + * {
  margin-top: 18px;
}

.stack-sm > * + * {
  margin-top: 10px;
}

.stack-lg > * + * {
  margin-top: 26px;
}

.grid,
.grid-2,
.grid-3,
.grid-4,
.card-grid,
.hero-grid {
  display: grid;
  gap: 28px;
  width: 100%;
}

.hero-grid {
  align-items: start;
}

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

.grid-3,
.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding-block: 12px;
}

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
  color: var(--color-text);
}

.brand-name {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-caption {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 93, 158, 0.34);
  background: rgba(255, 240, 246, 0.72);
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover {
  border-color: rgba(232, 93, 158, 0.62);
  background: #fff;
  color: var(--color-primary-dark);
}

.nav a.nav-pill {
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.page-header,
.hero {
  position: relative;
  padding: 48px 0 30px;
}

.page-header + .section,
.hero + .section {
  padding-top: 18px;
}

.page-header::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 158, 0.12), transparent 65%);
  pointer-events: none;
}

.page-header-inner {
  display: grid;
  gap: 18px;
  width: 100%;
}

.container.page-header-inner {
  max-width: calc(var(--container) + 40px);
}

.page-kicker,
.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 93, 158, 0.12);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title,
h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.page-header-inner .page-title,
.page-header-inner h1 {
  max-width: none;
}

.page-lead,
.lead {
  max-width: 980px;
  margin: 0;
  color: var(--color-muted);
  font-size: 19px;
  line-height: 1.72;
}

.page-header .page-lead,
.page-header .lead {
  margin-top: 0;
  max-width: 980px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn,
.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(232, 93, 158, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary-dark);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.btn:hover,
.button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: rgba(255, 240, 246, 0.92);
  color: var(--color-primary-dark);
  border-color: rgba(232, 93, 158, 0.55);
}

.btn-secondary {
  background: rgba(232, 93, 158, 0.06);
  color: var(--color-primary-dark);
  border-color: rgba(232, 93, 158, 0.34);
  box-shadow: none;
}

.btn-outline {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: rgba(232, 93, 158, 0.38);
  box-shadow: none;
}

.btn-soft {
  background: rgba(88, 183, 176, 0.14);
  color: #1f6f69;
  border-color: rgba(88, 183, 176, 0.16);
  box-shadow: none;
}

.btn-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.btn:focus-visible,
.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(232, 93, 158, 0.28);
  outline-offset: 2px;
}

.card,
.product-card,
.feature-card,
.service-card,
.article-card,
.certificate-card,
.faq-item,
.cta-box,
.notice-box,
.result-box,
.disclaimer {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.card,
.product-card,
.feature-card,
.service-card,
.article-card,
.certificate-card,
.faq-item {
  padding: 24px;
}

.card-grid .card,
.card-grid .product-card,
.card-grid .feature-card,
.card-grid .service-card,
.card-grid .article-card,
.card-grid .certificate-card {
  height: 100%;
}

.card-grid {
  justify-items: stretch;
}

.product-card,
.feature-card,
.service-card,
.article-card,
.certificate-card {
  display: grid;
  gap: 14px;
}

.product-card,
.service-card,
.article-card,
.certificate-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.category-card {
  min-height: 0;
  gap: 18px;
  align-items: stretch;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.category-card h2 {
  width: 100%;
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(10px, 0.72vw, 12px);
  text-align: center;
  line-height: 1.12;
  text-wrap: balance;
}

.category-card h2 a {
  display: block;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.category-card h2 a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.category-card p {
  margin: 0;
  max-width: none;
  width: 100%;
  text-align: left;
}

.card h2,
.card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

.card h2 a,
.card h3 a,
.product-card a,
.service-card a,
.article-card a,
.certificate-card a,
.faq-item h2,
.faq-item h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

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

.faq-question {
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.faq-icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 93, 158, 0.3);
  border-radius: 999px;
  background: rgba(255, 240, 246, 0.72);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease, transform .2s ease;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--color-text);
}

.faq-answer > * + * {
  margin-top: 12px;
}

.survey-benefits .card {
  padding: 18px;
}

.survey-benefits .card h3 {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.14;
}

.survey-benefits .card p {
  font-size: 13px;
  line-height: 1.5;
}

.document-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.document-card {
  min-width: 0;
  overflow: visible;
}

.document-title,
.document-title a {
  display: block;
  max-width: 100%;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.16;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.card p {
  margin-top: 0;
  margin-bottom: 0;
}

.card p + p {
  margin-top: 10px;
}

.product-card:hover,
.article-card:hover,
.service-card:hover,
.certificate-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cta-box {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 246, 0.9));
  width: 100%;
}

.quiz-cta-box {
  width: 100%;
}

.notice-box {
  padding: 20px 22px;
  background: #fff;
}

.result-box {
  padding: 24px 26px;
  background: #fff;
  border-color: rgba(88, 183, 176, 0.25);
}

.disclaimer {
  padding: 18px 20px;
  background: rgba(255, 240, 246, 0.7);
  color: var(--color-muted);
}

.product-media,
.product-main-image,
.product-card-image,
.product-card-media,
.image-placeholder {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  background: #fff;
  overflow: hidden;
  margin: 0;
}

.product-media,
.product-main-image {
  aspect-ratio: 4 / 3;
  min-height: 340px;
  max-height: 520px;
  padding: 16px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.product-card-image {
  aspect-ratio: 4 / 3;
  padding: 10px;
  border-radius: 20px;
}

.product-gallery-item {
  box-sizing: border-box;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.product-gallery-item__media {
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
  padding: 6px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.product-gallery-item figcaption {
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-muted);
}

.product-main-image__img,
.product-main-image img,
.product-gallery-item__img,
.product-gallery-item img,
.product-card-image__img,
.product-card-image img,
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.image-placeholder,
.empty-state {
  min-height: 220px;
  color: var(--color-muted);
  text-align: center;
  background: var(--color-soft);
}

.content-flow,
.content,
.text-block {
  max-width: 920px;
}

.container.content-flow,
.container.content,
.container.text-block,
.container.content-narrow {
  max-width: 960px;
}

.content-narrow {
  max-width: 760px;
}

.container.content-narrow {
  max-width: 800px;
}

.content-flow > * + *,
.content-section > * + *,
.text-block > * + * {
  margin-top: 14px;
}

.content-flow h2,
.content-section h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.15;
}

.content-flow h3,
.content-section h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 22px;
}

.content-flow p,
.content-flow ul,
.content-flow ol,
.content-section p,
.content-section ul,
.content-section ol {
  max-width: 860px;
}

.content-flow p:empty,
.content-section p:empty,
.text-block p:empty,
.card p:empty {
  display: none;
}

.stack > * + * {
  margin-top: 18px;
}

.stack-sm > * + * {
  margin-top: 10px;
}

.stack-lg > * + * {
  margin-top: 26px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

table,
.content-table,
.spec-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th,
td,
.content-table th,
.content-table td,
.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  vertical-align: top;
  text-align: left;
}

th,
.content-table th,
.spec-table th {
  background: rgba(255, 240, 246, 0.8);
  font-weight: 700;
}

tbody tr:nth-child(even) td {
  background: rgba(247, 251, 251, 0.7);
}

.form-page .lead {
  max-width: 860px;
}

.form-page {
  scroll-margin-top: 96px;
}

.form-section {
  display: grid;
  gap: 24px;
}

.form-layout,
.lead-layout,
.survey-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

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

.form-grid {
  display: grid;
  gap: 16px;
}

.lead-inline-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.survey-form-grid,
.calculator-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.lead-inline-form .form-field-wide,
.survey-form-grid .form-field-wide,
.calculator-form-grid .form-field-wide {
  grid-column: span 2;
}

.lead-inline-form .form-consent,
.survey-form-grid .form-consent,
.calculator-form-grid .form-consent {
  grid-column: span 2;
}

.lead-inline-form .form-submit,
.survey-form-grid .form-submit,
.calculator-form-grid .form-submit {
  align-self: end;
  width: min(100%, 320px);
}

.calculator-follow-card {
  align-self: stretch;
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: none;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea,
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

.form-field textarea,
textarea {
  min-height: 96px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(232, 93, 158, 0.45);
  box-shadow: 0 0 0 4px rgba(232, 93, 158, 0.12);
}

.checkbox-group,
.radio-group {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 240, 246, 0.55);
}

.checkbox-group legend,
.radio-group legend {
  padding: 0 6px;
  font-weight: 700;
}

.checkbox-group .form-field,
.radio-group .form-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.choice-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(232, 93, 158, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  cursor: pointer;
}

.choice-field:hover {
  border-color: rgba(232, 93, 158, 0.4);
  background: #fff;
}

.choice-field input {
  width: auto;
  min-height: auto;
  margin-top: 5px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 6px;
}

.form-consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.checkbox-group input,
.radio-group input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.checkbox,
.checkbox-group label,
.radio-group label {
  font-weight: 500;
}

.form-errors,
.errorlist {
  margin: 0;
  padding-left: 18px;
  color: #b14657;
}

.form-success {
  padding: 18px 20px;
  border: 1px solid rgba(88, 183, 176, 0.25);
  border-radius: var(--radius-md);
  background: rgba(88, 183, 176, 0.08);
}

.quiz-benefits,
.survey-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.calculator-summary p {
  max-width: none;
}

.page-footer,
.site-footer {
  margin-top: 44px;
  padding: 56px 0 36px;
  background: linear-gradient(180deg, #fff, rgba(255, 240, 246, 0.95));
  border-top: 1px solid var(--color-line);
  position: static;
  z-index: auto;
  clear: both;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
}

.muted,
.page-meta,
.breadcrumbs {
  color: var(--color-muted);
}

.breadcrumbs {
  margin: 18px 0 0;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--color-muted);
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(232, 93, 158, 0.09);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.pill {
  background: rgba(88, 183, 176, 0.12);
  color: #206d68;
}

.final-cta {
  padding: 0;
}

.final-cta-inner {
  display: grid;
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(232, 93, 158, 0.08), transparent 40%),
    linear-gradient(180deg, #fff, rgba(255, 240, 246, 0.9));
  box-shadow: var(--shadow-md);
  width: 100%;
}

.final-cta-copy {
  max-width: 920px;
}

.lead-form-card {
  padding: 22px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}

.messages {
  margin: 18px 0 0;
}

.message {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(88, 183, 176, 0.1);
  color: #1f6f69;
  border: 1px solid rgba(88, 183, 176, 0.18);
}

.message.error {
  background: rgba(232, 93, 158, 0.1);
  color: #9a245b;
  border-color: rgba(232, 93, 158, 0.2);
}

.hero-grid > *,
.final-cta-inner > *,
.grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.card-grid > * {
  min-width: 0;
}

main {
  display: block;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 920px) {
  .header-inner,
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .card-grid,
  .final-cta-inner,
  .footer-grid,
  .quiz-benefits,
  .survey-benefits {
    grid-template-columns: 1fr;
  }

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

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

  .page-header,
  .hero,
  .section,
  .section-lg {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .container {
    max-width: calc(var(--container) + 28px);
    padding-inline: 14px;
  }

  .product-media {
    min-height: 260px;
  }

  .final-cta-inner {
    padding: 22px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  table,
  .content-table,
  .spec-table {
    min-width: 560px;
  }

  .form-layout,
  .lead-layout,
  .survey-layout,
  .hero-grid,
  .lead-inline-form,
  .survey-form-grid,
  .calculator-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-inline-form .form-field-wide,
  .lead-inline-form .form-consent,
  .survey-form-grid .form-field-wide,
  .survey-form-grid .form-consent,
  .calculator-form-grid .form-field-wide,
  .calculator-form-grid .form-consent {
    grid-column: auto;
  }

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

@media (max-width: 640px) {
  .page-title,
  h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .page-lead,
  .lead {
    font-size: 17px;
  }

  .page-actions,
  .final-cta-actions {
    flex-direction: column;
  }

  .btn,
  .button,
  button {
    width: 100%;
  }

  .form-card,
  .cta-box,
  .card,
  .feature-card,
  .product-card,
  .service-card,
  .article-card,
  .certificate-card,
  .faq-item,
  .result-box {
    padding: 20px;
    border-radius: 22px;
  }

  .section,
  .section-sm,
  .section-lg {
    padding: 44px 0;
  }

  .section-lg {
    padding: 56px 0;
  }

  .page-header,
  .hero {
    padding: 44px 0 28px;
  }

  .page-header + .section,
  .hero + .section {
    padding-top: 24px;
  }

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

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .quiz-cta-box,
  .cta-box,
  .form-card,
  .final-cta-inner {
    max-width: none;
  }
}
