@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Nunito:wght@400;600;700&display=swap");

:root {
  --blue-1: #077bc0;
  --white: #ffffff;
  --green: #429e3d;
  --yellow: #f9ce39;
  --gray: #dddde1;
  --ink: #101623;
  --blue-2: #3589a1;
  --shadow: 0 20px 40px rgba(16, 22, 35, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: #f5f6f9;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.logo img {
  width: 44px;
  height: 44px;
}

.btn {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 14px 20px rgba(249, 206, 57, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(249, 206, 57, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-soft {
  background: #eef7fd;
  color: #0a4e7d;
  border: 1px solid #cfe6f6;
}

.btn-right {
  margin-left: auto;
}

.hero {
  background: linear-gradient(120deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: 10%;
}

.hero::after {
  width: 220px;
  height: 220px;
  bottom: -90px;
  left: 10%;
  background: var(--green);
}

.hero-content {
  padding: 60px 0 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 36px 48px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-bottom .buy-price strong {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  color: #fff;
  display: inline-block;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.hero-bottom .buy-price del {
  font-size: 1.05rem;
  opacity: 0.55;
  text-decoration: line-through;
  font-weight: 400;
}

.hero-bottom .buy-price-note {
  font-size: 0.82rem;
  opacity: 0.65;
  white-space: nowrap;
}

.hero-bottom .os-badge {
  margin-top: 6px;
}

.hero-bottom-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 10px;
}

.hero h1 {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 2.8vw + 1.6rem, 3.4rem);
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0 0 26px;
}

.hero-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.hero-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}

.hero-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  margin: 0 0 20px;
  color: var(--ink);
}

.section-lead {
  margin: 0 0 30px;
  font-size: 1.1rem;
  color: #2b2f3a;
}

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

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(16, 22, 35, 0.08);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
}

.feature-card p {
  margin: 0;
  color: #303645;
  line-height: 1.5;
}

.screens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.screen-card img {
  width: 100%;
  height: auto;
  min-height: 320px;
  border-radius: 18px;
  border: 1px solid #e3e8f2;
  object-fit: contain;
  background: #fbfdff;
}

.screen-card p {
  margin: 0;
  font-weight: 700;
  color: #263042;
}

.screen-card__zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(7, 123, 192, 0.9);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0 0 24px;
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem);
  color: var(--blue-2);
  font-weight: 700;
}

.screen-card {
  background: var(--white);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(16, 22, 35, 0.1);
  display: grid;
  gap: 12px;
  position: relative;
}


.cta {
  background: linear-gradient(140deg, #ffffff, #edf6fb);
  border-top: 1px solid #e0e6ef;
  border-bottom: 1px solid #e0e6ef;
}

.cta-box {
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.cta-box h3 {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  margin: 0 0 10px;
}

.cta-box p {
  margin: 0;
  color: #f3f4f8;
}

.cta-box .btn {
  justify-self: start;
}

footer {
  background: var(--ink);
  color: #cdd3de;
  padding: 36px 0;
  font-size: 0.95rem;
}

footer strong {
  color: var(--white);
}

footer .footer-link {
  color: var(--yellow);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.footer-col p {
  margin: 0 0 8px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: #e7ecf5;
  font-weight: 600;
}

.footer-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #9eabbe;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  background: linear-gradient(120deg, #f7fbff, #e4f2f9);
  padding: 50px 0 40px;
}

.page-hero h1 {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  margin: 0 0 10px;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  padding-bottom: 70px;
}

.card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(16, 22, 35, 0.08);
}

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

label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd5e2;
  font-size: 1rem;
}

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

.payment-options {
  display: grid;
  gap: 12px;
}

.radio-card {
  border: 2px solid #e2e6f0;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease;
}

.radio-card input {
  width: 20px;
  height: 20px;
}

.radio-card.active {
  border-color: var(--blue-1);
  background: #eef7fd;
}

.order-summary {
  display: grid;
  gap: 14px;
}

.stripe-card {
  display: grid;
  gap: 14px;
}

.stripe-embed {
  min-height: 420px;
  border: 1px solid #e5ecf6;
  border-radius: 16px;
  background: #f8fbff;
  padding: 10px;
}

.stripe-section.is-hidden {
  display: none;
}

.checkout-error {
  background: #ffe3e3;
  color: #9f1c1c;
  border-left: 4px solid #9f1c1c;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-top: 16px;
}
.page-hero--compact {
  padding: 24px 0 20px;
}

.topbar-note {
  font-size: 0.82rem;
  color: #4a6070;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 22px 0 4px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #8a96aa;
  white-space: nowrap;
}

.checkout-step.active {
  color: var(--blue-1);
}

.checkout-step.done {
  color: var(--green);
}

.checkout-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #c8d2e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  background: #fff;
  color: #8a96aa;
  flex-shrink: 0;
}

.checkout-step.active .checkout-step__num {
  border-color: var(--blue-1);
  background: var(--blue-1);
  color: #fff;
}

.checkout-step.done .checkout-step__num {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.checkout-step__line {
  width: 44px;
  height: 2px;
  background: #d8e0ec;
  flex-shrink: 0;
  margin: 0 4px;
}

.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1c5c2a;
  background: rgba(66, 158, 61, 0.09);
  border: 1px solid rgba(66, 158, 61, 0.22);
  border-radius: 999px;
  padding: 5px 12px;
}

.form-section {
  margin-top: 24px;
}

.form-section.first-section {
  margin-top: 0;
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaecf5;
}

.form-section-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef7fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-1);
  flex-shrink: 0;
}

.form-section-header h2 {
  margin: 0;
  font-size: 1rem;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-weight: 800;
  color: var(--ink);
}

.section-subnote {
  font-size: 0.78rem;
  font-weight: 600;
  color: #697488;
  font-family: "Nunito", sans-serif;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-1);
  box-shadow: 0 0 0 3px rgba(7, 123, 192, 0.12);
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  box-shadow: none;
}

.field-hint {
  font-size: 0.78rem;
  color: #62708a;
  margin: 4px 0 0;
}

.security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #4e6070;
  margin-top: 10px;
}

.submit-row {
  margin-top: 4px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 24px;
  border-radius: 14px;
}

.stripe-header {
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaecf5;
}

.btn-link {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-1);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.is-hidden {
  display: none;
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f7;
  margin-bottom: 14px;
}

.summary-product__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-title {
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
}

.summary-sub {
  font-size: 0.78rem;
  color: #5a6780;
}

.summary-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

.summary-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #2b3040;
  line-height: 1.4;
}

.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.summary-divider {
  height: 1px;
  background: #edf0f7;
  margin: 14px 0;
}

.summary-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.summary-label {
  font-size: 0.9rem;
  color: #5a6780;
  font-weight: 700;
}

.summary-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-strong {
  margin-left: 0;
}

.summary-note {
  font-size: 0.76rem;
  color: #7a8494;
  margin: 4px 0 0;
  text-align: right;
}

.notice.notice-error {
  display: none;
  border-left-color: #9f1c1c;
  background: #ffe3e3;
}

.helper-small {
  font-size: 0.84rem;
  line-height: 1.6;
}

.checkout-wrapper.is-payment {
  grid-template-columns: 1fr;
}

.guarantee-icon {
  flex-shrink: 0;
}

.text-green {
  color: var(--green);
}

@media (max-width: 680px) {
  .checkout-trust {
    gap: 8px;
  }
  .checkout-step span {
    display: none;
  }
  .checkout-step.active span {
    display: inline;
  }
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.helper {
  background: #f0f3f8;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #eef7fd;
  color: var(--blue-1);
}

.status-pill.pending {
  background: #fff7db;
  color: #8a6a00;
}

.status-pill.paid {
  background: #e6f6ea;
  color: #1c6b2c;
}

.status-pill.failed {
  background: #ffe3e3;
  color: #9f1c1c;
}

.table {
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
}

.table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.table strong {
  color: var(--ink);
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.buy-hero {
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2), var(--green));
  border-radius: 32px;
  padding: 52px 48px;
  color: #fff;
  box-shadow: 0 24px 40px rgba(7, 123, 192, 0.3);
  position: relative;
  overflow: hidden;
}

.buy-hero::before,
.buy-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.buy-hero::before {
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.07);
  top: -100px;
  right: -80px;
}

.buy-hero::after {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -60px;
  right: 120px;
}

.buy-hero > * {
  position: relative;
}

.buy-hero h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.6rem);
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  max-width: 680px;
}

.buy-hero > p {
  margin: 0 0 0;
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 600px;
}

.buy-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.buy-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.buy-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.buy-price-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.buy-price del {
  font-size: 0.95rem;
  opacity: 0.55;
  text-decoration: line-through;
  color: inherit;
  font-weight: 400;
}

.buy-discount {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.buy-price strong {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  display: inline-block;
  text-shadow:
    0 0 24px rgba(255, 255, 255, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.25);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.buy-price-note {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.65;
  letter-spacing: 0.2px;
}

@keyframes buy-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 206, 57, 0.55), 0 8px 24px rgba(0,0,0,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(249, 206, 57, 0), 0 8px 24px rgba(0,0,0,0.15); }
}

.btn-buy-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
  animation: buy-cta-pulse 2.2s ease-in-out infinite;
}

.btn-buy-cta:hover {
  background: #ffd84d;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 32px rgba(249, 206, 57, 0.45), 0 4px 8px rgba(0,0,0,0.12);
  animation: none;
}

@media (max-width: 540px) {
  .buy-hero {
    padding: 36px 24px;
  }
  .buy-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .btn-buy-cta {
    width: 100%;
    justify-content: center;
  }
}

.notice {
  border-left: 4px solid var(--blue-1);
  background: #eef7fd;
  padding: 14px 16px;
  border-radius: 10px;
}

.refund-card {
  display: grid;
  gap: 16px;
}

.refund-results {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.refund-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e7ecf5;
  box-shadow: 0 10px 22px rgba(16, 22, 35, 0.08);
  display: grid;
  gap: 12px;
}

.refund-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.status-pill.refunded {
  background: #e6f6ea;
  color: #1c6b2c;
}

.status-pill.not-requested {
  background: #eef0f5;
  color: #4a5163;
}

.eula-box {
  margin-top: 6px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e2e6f0;
  background: #f8fafe;
  display: grid;
  gap: 10px;
}

.eula-box details summary {
  font-weight: 800;
  cursor: pointer;
}

.eula-content {
  max-height: 260px;
  overflow: auto;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #e2e6f0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1f2a3b;
}

.eula-content p {
  margin: 0 0 10px;
}

.eula-content ul,
.eula-content ol {
  margin: 0 0 10px 18px;
  padding: 0;
}

.eula-accept {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.825rem;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
}

.eula-accept input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  cursor: pointer;
}

.not-found {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}

.not-found h1 {
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  font-size: 3rem;
  margin-bottom: 12px;
}

.small {
  font-size: 0.9rem;
  color: #50576a;
}

.os-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f8ff;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.requirements {
  background: #f3f6fb;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

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

.requirements-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 22px rgba(16, 22, 35, 0.08);
}

.requirements-card h4 {
  margin: 0 0 10px;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.requirements-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.requirements-list span {
  color: #50576a;
  font-weight: 600;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
  color: #1f2a3b;
  line-height: 1.5;
}

.card-list li {
  padding-left: 0;
}

.contact-card {
  border: 1px solid #dfe6f3;
  background: #f7fbff;
}

.manual-nav {
  margin: 0;
}

.manual-nav a {
  color: #1f2a3b;
}

.manual-section {
  padding: 50px 0;
}

.manual-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.manual-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(16, 22, 35, 0.08);
}

.manual-sidebar h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.manual-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.manual-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  color: #1f2a3b;
  background: #eef4ff;
}

.manual-menu a.active {
  background: #dbeafe;
  color: #0f2a4a;
}

.manual-content {
  display: grid;
  gap: 24px;
}

.manual-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(16, 22, 35, 0.08);
}

.manual-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.manual-steps li {
  color: #2f3545;
  line-height: 1.5;
}

.manual-tip {
  background: #eef7fd;
  border-left: 4px solid var(--blue-1);
  padding: 14px 16px;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .manual-layout {
    grid-template-columns: 1fr;
  }

  .manual-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .hero-content,
  .cta-box,
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .form-grid {
    grid-template-columns: 1fr;
  }
}
.screen-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 90;
}

.screen-modal.open {
  display: flex;
}

.screen-modal__content {
  position: relative;
  max-width: 960px;
  width: min(90vw, 960px);
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(16, 22, 35, 0.35);
  display: grid;
  gap: 18px;
}

.screen-modal__content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.screen-modal__content p {
  margin: 0;
  color: #1b2331;
  font-weight: 600;
}

.screen-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  color: #101623;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}