:root {
  --bg: #080a0f;
  --bg-soft: #10141d;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-faint: rgba(255, 255, 255, 0.56);

  --accent: #2563eb;
  --super-start: #7c3aed;
  --super-end: #22c55e;
  --max-start: #1e40af;
  --max-end: #3b82f6;

  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 34px;

  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.32);

  --container: 1100px;
  --container-small: 860px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(59, 130, 246, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.small-container {
  width: min(calc(100% - 32px), var(--container-small));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding-top: 72px;
}

.muted-section {
  background: rgba(255, 255, 255, 0.018);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a,
.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.footer-links a:hover {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta,
.section-tag,
.hero-top-pill,
.hero-trust-pill,
.product-badge,
.product-popular,
.offer-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero-centered {
  padding: 88px 0 30px;
}

.hero-shell {
  display: grid;
  gap: 28px;
}

.compact-hero-shell {
  gap: 24px;
}

.hero-topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 14px;
}

.hero-top-text {
  color: var(--text-soft);
}

.hero-main {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.hero-main h1 {
  font-size: clamp(42px, 8vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-main h1 span {
  display: block;
}

.hero-subtext {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.6;
}

.hero-subtext-compact {
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions-centered {
  margin-top: 34px;
  justify-content: center;
}

.hero-actions.centered-actions {
  margin-top: 34px;
  justify-content: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--max-start), var(--max-end));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-trust-pill {
  min-height: 40px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-super {
  color: #fff;
  background: linear-gradient(135deg, var(--super-start), var(--super-end));
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.18);
}

.btn-max {
  color: #fff;
  background: linear-gradient(135deg, var(--max-start), var(--max-end));
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.full {
  width: 100%;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.form-heading-left {
  margin: 0 0 28px;
  text-align: left;
}

.section-heading h2,
.quick-flow-copy h2,
.legal-block h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.quick-flow-copy p,
.legal-block p {
  margin-top: 12px;
  color: var(--text-soft);
}

.product-grid,
.steps-grid,
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.compact-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card,
.step-box,
.benefit-box,
.quick-flow-card,
.form-card,
.side-card,
.legal-card,
.faq-item,
.final-cta-inner {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-soft);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.product-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-color: rgba(59, 130, 246, 0.24);
}

.product-image-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.product-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
}

.super-badge {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.22);
}

.max-badge {
  background: rgba(37, 99, 235, 0.16);
  border-color: rgba(37, 99, 235, 0.22);
}

.product-card h3 {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.product-subtitle {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 18px;
}

.price-note {
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.modern-features li,
.side-item,
.mini-status-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.feature-icon,
.step-number,
.side-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.super-card .feature-icon {
  background: linear-gradient(135deg, var(--super-start), var(--super-end));
}

.max-card .feature-icon,
.step-number,
.side-icon {
  background: linear-gradient(135deg, var(--max-start), var(--max-end));
}

.buy-area {
  margin-top: auto;
  padding-top: 24px;
}

.paypal-note,
.buy-info,
.example-text {
  margin-top: 12px;
  text-align: center;
}

.paypal-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.buy-info,
.example-text {
  font-size: 13px;
  color: var(--text-faint);
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.text-link:hover {
  color: #fff;
  text-decoration: underline;
}

.step-box,
.benefit-box {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.step-box h3,
.benefit-box h3,
.side-item h3,
.legal-block h2 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.step-box p,
.benefit-box p,
.side-item p,
.mini-status-item span {
  margin-top: 10px;
  color: var(--text-soft);
}

.large {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.quick-flow-section {
  padding-top: 24px;
}

.quick-flow-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-xl);
}

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

.centered-copy {
  text-align: center;
}

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

.faq-item {
  border-radius: 24px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 26px;
  border: none;
  background: transparent;
  color: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

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

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.form-card,
.side-card,
.legal-card,
.final-cta-inner {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.contact-form,
.form-stack,
.side-list,
.clean-side-list,
.mini-status-list,
.legal-card {
  display: grid;
  gap: 18px;
}

.form-grid,
.verification-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.field-group label,
.checkbox-row {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
}

.checkbox-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.info-note {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: rgba(37, 99, 235, 0.08);
}

.info-note p {
  color: var(--text-soft);
}

.post-send-box h3,
.legal-block h2 {
  margin-top: 14px;
}

.legal-block + .legal-block {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.final-cta {
  padding: 0 0 90px;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-links a.footer-seo-link {
  color: #fff;
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.12);
}

.footer-brand {
  font-size: 18px;
  font-weight: 800;
}

.footer-text {
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 980px) {
  .product-grid,
  .form-layout,
  .compact-steps,
  .benefits-grid,
  .form-grid,
  .verification-stack,
  .quick-flow-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 0;
  }

  .section-tight {
    padding-top: 64px;
  }

  .hero-centered {
    padding-top: 74px;
  }
}

@media (max-width: 820px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(12, 16, 23, 0.96);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-shell {
    position: relative;
  }

  .nav-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .container,
  .small-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .product-card,
  .step-box,
  .benefit-box,
  .quick-flow-card,
  .form-card,
  .side-card,
  .legal-card,
  .final-cta-inner {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

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

  .faq-question {
    font-size: 17px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}


.support-note {
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.support-note p {
  margin-top: 12px;
  color: var(--text-soft);
}

.form-layout-simple {
  width: min(100%, 760px);
  margin: 0 auto;
}

.form-card-simple {
  padding: 34px;
}

.compact-form-heading {
  max-width: none;
  margin-bottom: 26px;
}

.compact-form-heading h2 {
  margin-top: 0;
}

.hero-form-simple {
  padding-bottom: 10px;
}

.compact-hero-shell-simple {
  padding: 48px 32px;
}

.form-hero-text {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.align-left {
  text-align: left;
}

.nav-menu-static {
  display: flex;
}

@media (max-width: 820px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
  .nav-menu-static {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .form-card-simple {
    padding: 22px;
  }

  .compact-hero-shell-simple {
    padding: 34px 20px;
  }
}

body {
  color-scheme: dark;
}

.inline-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

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

.inline-help-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.inline-help-item strong {
  font-size: 14px;
}

.inline-help-item span,
.field-note {
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.5;
}

.field-note {
  margin-top: 2px;
}

.choice-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

.choice-fieldset legend {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.product-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-choice-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.product-choice-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.product-choice-content {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product-choice-title {
  font-weight: 700;
  color: #fff;
}

.product-choice-meta {
  font-size: 14px;
  color: var(--text-faint);
}

.product-choice-card:hover .product-choice-content {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.product-choice-card input:focus-visible + .product-choice-content {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
}

.product-choice-card input:checked + .product-choice-content {
  border-color: rgba(59, 130, 246, 0.64);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
}

.product-choice-card input:checked + .product-choice-content .product-choice-meta {
  color: rgba(255, 255, 255, 0.78);
}

.faq-item {
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.active {
  border-color: rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(37, 99, 235, 0.05));
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--text-faint);
  transition: transform 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  color: #fff;
}

.support-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028));
}

@media (max-width: 640px) {
  .inline-help-grid,
  .product-choice-grid {
    grid-template-columns: 1fr;
  }

  .product-choice-content {
    padding: 16px;
  }
}

.footer-text a,
.support-note a,
.faq-answer a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


.field-note + .field-note {
  margin-top: -2px;
}

.field-group .field-note:first-of-type {
  margin-top: 0;
}


select option {
  background: #121722;
  color: #ffffff;
}

select:invalid {
  color: rgba(255, 255, 255, 0.42);
}

select option[value=""] {
  color: rgba(255, 255, 255, 0.42);
}


.form-callout {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.03));
}

.form-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-callout p {
  color: var(--text-soft);
  line-height: 1.6;
}

.product-choice-content {
  min-height: 88px;
  align-content: center;
}

.support-tag {
  margin-bottom: 10px;
}

/* Final refinement: cleaner form layout and calmer messaging */
.form-card-refined {
  padding: 36px;
}

.refined-form {
  gap: 20px;
}

.form-section-block {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.form-section-step {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--max-start), var(--max-end));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.2);
}

.form-section-title {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.form-section-copy {
  margin-top: 6px;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.55;
}

.form-card-refined .contact-form > .btn {
  margin-top: 6px;
}

.field-group-spaced {
  margin-top: 4px;
}

.form-card-refined .field-note {
  color: var(--text-faint);
}

.form-card-refined .choice-fieldset {
  display: grid;
  gap: 12px;
}

.form-card-refined .choice-fieldset legend {
  margin-bottom: 0;
}

.form-card-refined .product-choice-grid {
  gap: 16px;
}

.form-card-refined .product-choice-content {
  min-height: 96px;
  padding: 20px;
}

.form-card-refined .product-choice-title {
  font-size: 17px;
}

.form-card-refined input,
.form-card-refined select,
.form-card-refined textarea {
  background: rgba(255, 255, 255, 0.03);
}

.form-card-refined textarea {
  min-height: 132px;
}

.buy-info {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .form-card-refined {
    padding: 22px;
  }

  .form-section-block {
    padding: 18px;
    border-radius: 20px;
  }

  .form-section-head {
    gap: 12px;
  }
}


/* final layout polish */
.form-heading-left.compact-form-heading p {
  max-width: 52ch;
}

.form-card-refined .contact-form {
  gap: 18px;
}

.form-section-block:first-of-type .form-grid {
  align-items: start;
  gap: 16px;
}

.form-section-block:first-of-type .field-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-section-block:first-of-type input {
  margin-bottom: 0;
}

.field-group > label {
  margin-bottom: 0;
}

.field-note-strong {
  color: var(--text-soft);
}

.form-card-refined .field-note {
  max-width: 58ch;
}

.form-card-refined .choice-fieldset legend,
.form-card-refined .field-group label {
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 641px) {
  .form-section-block:first-of-type {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .form-card-refined .contact-form {
    gap: 16px;
  }

  .form-section-block:first-of-type .form-grid {
    gap: 14px;
  }

  .form-card-refined .field-note {
    max-width: none;
  }
}


.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
  padding: 14px 18px;
  max-width: 520px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}

.reviews-stars,
.review-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-weight: 800;
}

.reviews-summary-text {
  color: var(--text);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.review-card p {
  margin: 10px 0 14px;
  color: var(--text);
  line-height: 1.7;
}

.review-card span {
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 820px) {

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    flex-direction: column;
    text-align: center;
  }
}


.home-page .hero-main {
  max-width: 980px;
}

.home-page .hero-main h1 {
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 980px;
  margin: 0 auto;
}

.home-page .hero-main .hero-line {
  display: block;
}

.home-page .hero-subtext-compact {
  max-width: 760px;
}

.seo-page .hero-centered {
  padding: 72px 0 22px;
}

.seo-page .hero-shell {
  gap: 20px;
}

.seo-page .hero-main {
  max-width: 940px;
}

.seo-page .hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.seo-page .seo-hero-title {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.seo-page .hero-text {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.seo-page .section {
  padding: 72px 0;
}

.seo-page .section-tight {
  padding-top: 52px;
}

.seo-page .section-heading {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-soft);
}

.seo-page .section-heading h2 {
  font-size: clamp(30px, 3.8vw, 42px);
  line-height: 1.04;
  text-wrap: balance;
}

.seo-page .section-heading p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.75;
}

.seo-page .section-heading p + p {
  margin-top: 16px;
}

.seo-page .hero-actions.centered-actions {
  margin-top: 28px;
}

.seo-page .hero-actions {
  gap: 12px;
}

.seo-page .btn {
  min-height: 54px;
}

@media (max-width: 900px) {
  .home-page .hero-main h1 {
    font-size: clamp(38px, 9vw, 64px);
  }

  .seo-page .section-heading {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .home-page .hero-main h1 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.01;
  }

  .seo-page .seo-hero-title {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 1.02;
  }

  .seo-page .hero-text,
  .seo-page .section-heading p {
    font-size: 16px;
  }
}
