:root {
  --n24-black: #11100e;
  --n24-ink: #151f2e;
  --n24-navy: #14263d;
  --n24-blue: #1677c8;
  --n24-orange: #f0a62b;
  --n24-red: #d9333f;
  --n24-green: #11875f;
  --n24-line: #dce5ee;
  --n24-muted: #617086;
  --n24-soft: #f4f7fb;
  --n24-white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  background: #eef3f8;
  color: var(--n24-ink);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

.n24-app {
  background: var(--n24-white);
  border: 1px solid var(--n24-line);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(21, 31, 46, .08);
  margin: 28px auto;
  max-width: 1180px;
  overflow: visible;
  width: calc(100% - 32px);
}

.n24-hero {
  border-radius: 10px 10px 0 0;
  color: var(--n24-white);
  min-height: 460px;
  overflow: hidden;
  position: relative;
}

.n24-hero__media {
  background: url("../assets/hero-media-services.png") center / cover no-repeat;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.n24-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, .94), rgba(20, 38, 61, .82) 48%, rgba(20, 38, 61, .18)),
    linear-gradient(0deg, rgba(17, 16, 14, .18), rgba(17, 16, 14, 0));
  inset: 0;
  position: absolute;
}

.n24-hero__content {
  max-width: 820px;
  padding: 58px;
  position: relative;
  z-index: 1;
}

.n24-logo {
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  display: block;
  height: auto;
  margin: 0 0 18px;
  padding: 6px 10px;
  width: 190px;
}

.n24-kicker,
.n24-eyebrow {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: .08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.n24-kicker::before,
.n24-eyebrow::before {
  background: var(--n24-orange);
  content: "";
  display: block;
  height: 10px;
  width: 34px;
}

.n24-hero h1 {
  font-size: clamp(36px, 3.8vw, 50px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 820px;
}

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

.n24-lead {
  color: #e9f2fb;
  font-size: 20px;
  line-height: 1.45;
  margin: 24px 0 0;
}

.n24-hero__actions,
.n24-payments {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.n24-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.n24-btn {
  align-items: center;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  line-height: 1.18;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

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

.n24-btn--primary {
  background: var(--n24-red);
  color: var(--n24-white);
  box-shadow: 0 16px 34px rgba(217, 51, 63, .28);
}

.n24-btn--ghost {
  background: rgba(255, 255, 255, .94);
  color: var(--n24-ink);
}

.n24-btn--paypal {
  background: #ffc439;
  color: #102034;
}

.n24-btn--bank {
  background: var(--n24-green);
  color: var(--n24-white);
}

.n24-btn--whatsapp {
  background: #25d366;
  color: #0f2c1d;
}

.n24-btn--light {
  background: var(--n24-white);
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--n24-ink);
}

.n24-btn--block {
  width: 100%;
}

.n24-payments .n24-btn {
  min-height: 50px;
  white-space: normal;
}

.n24-btn.is-disabled {
  opacity: .45;
  pointer-events: none;
}

.n24-workspace {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 390px;
  min-width: 0;
  padding: 34px;
}

.n24-config,
.n24-card,
.n24-field,
.n24-field select {
  min-width: 0;
  max-width: 100%;
}

.n24-heading h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.n24-heading p:not(.n24-eyebrow) {
  color: var(--n24-muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
  overflow-wrap: anywhere;
}

.n24-eyebrow {
  color: var(--n24-blue);
}

.n24-tools {
  display: block;
  margin: 22px 0;
}

.n24-tax-note {
  color: var(--n24-muted);
  flex: 1 1 360px;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
}

.n24-discount-help {
  align-self: center;
  color: var(--n24-muted);
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  max-width: 520px;
}

.n24-discount-card {
  align-items: center;
  background: linear-gradient(135deg, #fff8e8, #eef7ff);
  border: 2px solid rgba(240, 166, 43, .72);
  border-radius: 9px;
  box-shadow: 0 14px 34px rgba(21, 31, 46, .08);
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: auto auto minmax(0, 1fr);
  max-width: 760px;
  min-height: 74px;
  padding: 14px 16px;
}

.n24-discount-card input {
  accent-color: var(--n24-green);
  height: 21px;
  width: 21px;
}

.n24-discount-card__badge {
  align-items: center;
  background: var(--n24-red);
  border-radius: 999px;
  color: var(--n24-white);
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  line-height: 1;
  width: 54px;
}

.n24-discount-card strong {
  color: var(--n24-ink);
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.n24-discount-card small {
  color: #5b4a18;
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 4px;
}

.n24-discount-card.is-available {
  border-color: rgba(17, 135, 95, .75);
}

.n24-discount-card.is-active {
  background: linear-gradient(135deg, #ecfff8, #fff8e8);
  border-color: var(--n24-green);
}

.n24-switch {
  align-items: center;
  background: var(--n24-soft);
  border: 1px solid var(--n24-line);
  border-radius: 7px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

.n24-switch input,
.n24-card__check input {
  accent-color: var(--n24-blue);
}

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

.n24-card {
  background: var(--n24-white);
  border: 1px solid var(--n24-line);
  border-radius: 9px;
  display: grid;
  gap: 18px;
  grid-template-columns: 42px minmax(0, 1fr) 230px;
  padding: 18px;
}

.n24-card.is-active {
  border-color: rgba(22, 119, 200, .7);
  box-shadow: 0 16px 34px rgba(21, 31, 46, .08);
}

.n24-card__check {
  align-items: center;
  background: var(--n24-soft);
  border: 1px solid var(--n24-line);
  border-radius: 7px;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.n24-card__check input {
  height: 19px;
  width: 19px;
}

.n24-card h3 {
  font-size: 21px;
  margin: 0 0 6px;
}

.n24-card p {
  color: var(--n24-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 8px;
}

.n24-card p:last-child {
  margin-bottom: 0;
}

.n24-details-toggle {
  background: transparent;
  border: 0;
  color: var(--n24-blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  margin: 2px 0 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.n24-details-toggle--social {
  color: #8a620f;
  margin-top: 10px;
}

.n24-network {
  background: #f8fbff;
  border: 1px solid var(--n24-line);
  border-radius: 7px;
  margin: 10px 0 12px;
  padding: 10px;
}

.n24-network p {
  color: var(--n24-ink);
  font-size: 13px;
  margin: 0 0 8px;
}

.n24-network__title {
  color: var(--n24-blue) !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.n24-network__options {
  display: grid;
  gap: 7px;
  grid-template-columns: 1fr;
}

.n24-network__option {
  align-items: flex-start;
  color: var(--n24-ink);
  display: grid;
  gap: 2px 8px;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.2;
}

.n24-network__option input {
  accent-color: var(--n24-blue);
  margin-top: 2px;
}

.n24-network__option span {
  font-size: 13px;
  font-weight: 900;
}

.n24-network__option small {
  color: var(--n24-muted);
  font-size: 11px;
  grid-column: 2;
}

.n24-service-note {
  background: #eef7ff;
  border: 1px solid #c8deef;
  border-radius: 7px;
  color: #31506e;
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 12px;
  padding: 10px;
}

.n24-extra-addon {
  background: #fffaf1;
  border: 1px solid #efd6a2;
  border-radius: 7px;
  color: #725824;
  display: grid;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 10px;
}

.n24-extra-addon p {
  color: #7a5514;
  font-size: 13px;
  font-weight: 900;
  margin: 0;
}

.n24-extra-addon small {
  color: #725824;
  font-size: 12px;
  line-height: 1.35;
}

.n24-extra-addon__option {
  align-items: center;
  background: var(--n24-white);
  border: 1px solid #efd6a2;
  border-radius: 7px;
  color: var(--n24-ink);
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 9px 10px;
}

.n24-extra-addon__option input {
  accent-color: var(--n24-blue);
}

.n24-extra-addon__option span {
  font-size: 13px;
  font-weight: 900;
}

.n24-extra-addon__option strong {
  color: var(--n24-green);
  white-space: nowrap;
}

.n24-price-modifier {
  background: #f8fbff;
  border: 1px solid #c8deef;
  border-radius: 7px;
  display: grid;
  gap: 8px;
  margin: 10px 0 12px;
  padding: 10px;
}

.n24-price-modifier label {
  color: #31506e;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.n24-price-modifier select {
  background: var(--n24-white);
  border: 1px solid #c8deef;
  border-radius: 7px;
  color: var(--n24-ink);
  font: inherit;
  font-weight: 700;
  min-height: 42px;
  padding: 0 10px;
  width: 100%;
}

.n24-price-modifier small {
  color: #31506e;
  font-size: 12px;
  line-height: 1.35;
}

.n24-inline-addon {
  background: #fffaf1;
  border: 1px solid #efd6a2;
  border-radius: 7px;
  margin: 10px 0 12px;
  padding: 10px;
}

.n24-inline-addon label {
  color: #7a5514;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.n24-inline-addon select {
  background: var(--n24-white);
  border: 1px solid #efd6a2;
  border-radius: 7px;
  color: var(--n24-ink);
  font: inherit;
  font-weight: 700;
  min-height: 42px;
  padding: 0 10px;
  width: 100%;
}

.n24-inline-addon small {
  color: #725824;
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 8px;
}

.n24-card__details {
  background: var(--n24-soft);
  border: 1px solid var(--n24-line);
  border-radius: 7px;
  margin-top: 12px;
  padding: 12px;
}

.n24-card__details p {
  font-size: 13px;
  line-height: 1.45;
}

.n24-card__details--social {
  background: rgba(255, 255, 255, .7);
  border-color: #efd6a2;
}

.n24-card__note {
  color: #718095;
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 8px;
}

.n24-field label {
  color: #52647c;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.n24-option-note {
  color: var(--n24-green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 7px;
}

.n24-option-hint {
  color: var(--n24-blue);
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  margin-top: 7px;
}

.n24-dynamic-price {
  background: #eef7ff;
  border: 1px solid #c8deef;
  border-radius: 7px;
  color: var(--n24-blue);
  display: block;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 8px;
  padding: 9px 10px;
}

.n24-dynamic-price[hidden] {
  display: none;
}

.n24-field select,
.n24-customer input {
  background: var(--n24-white);
  border: 1px solid var(--n24-line);
  border-radius: 7px;
  color: var(--n24-ink);
  font: inherit;
  font-weight: 700;
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

.n24-summary {
  align-self: start;
  background: var(--n24-navy);
  border-radius: 9px;
  color: var(--n24-white);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 22px;
  position: sticky;
  top: 18px;
  z-index: 12;
}

.n24-summary__top {
  align-items: center;
  display: flex;
  gap: 14px;
}

.n24-summary__top img {
  background: rgba(255,255,255,.94);
  border-radius: 7px;
  height: 56px;
  object-fit: contain;
  padding: 6px;
  width: 70px;
}

.n24-summary__top p {
  color: #c6d7e9;
  font-size: 13px;
  margin: 0 0 3px;
}

.n24-summary__top strong {
  display: block;
  font-size: 24px;
}

.n24-cart {
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-top: 1px solid rgba(255,255,255,.15);
  list-style: none;
  margin: 18px 0;
  min-height: 70px;
  padding: 10px 0;
}

.n24-cart li {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 8px 0;
}

.n24-cart small {
  color: #b7c8db;
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.n24-cart__price {
  color: #edf6ff;
  font-weight: 900;
  white-space: nowrap;
}

.n24-cart__empty {
  color: #b7c8db;
  display: block !important;
  line-height: 1.45;
}

.n24-totals {
  display: grid;
  gap: 10px;
}

.n24-totals > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.n24-totals > div.is-discount-active {
  background: rgba(17, 135, 95, .18);
  border: 1px solid rgba(17, 135, 95, .42);
  border-radius: 7px;
  margin: 2px -8px;
  padding: 8px;
}

.n24-totals > div.is-discount-active span,
.n24-totals > div.is-discount-active strong {
  color: #9ff0ce;
}

.n24-totals span {
  color: #c6d7e9;
}

.n24-totals strong {
  font-size: 18px;
}

.n24-total-row {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 4px;
  padding-top: 14px;
}

.n24-total-row strong {
  color: var(--n24-orange);
  font-size: 34px;
}

.n24-summary .n24-tax-note {
  color: #b7c8db;
  flex: none;
  font-size: 11px;
  margin: 12px 0 0;
  max-width: none;
}

.n24-customer {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.n24-customer label {
  color: #c6d7e9;
  display: block;
  font-size: 12px;
  font-weight: 900;
}

.n24-customer input {
  margin-top: 6px;
}

.n24-customer input:not([type="checkbox"]):required {
  border-left: 4px solid var(--n24-orange);
}

.n24-customer input:not([type="checkbox"]):required:valid {
  border-left-color: var(--n24-green);
}

.n24-privacy-consent {
  align-items: flex-start;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  display: flex;
  gap: 9px;
  padding: 10px;
}

.n24-privacy-consent input {
  flex: 0 0 auto;
  height: 18px;
  margin: 1px 0 0;
  width: 18px;
}

.n24-privacy-consent span {
  color: #d6e5f3;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.n24-privacy-consent a {
  color: var(--n24-orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.n24-required-note {
  color: #b7c8db;
  font-size: 12px;
  line-height: 1.4;
}

.n24-email-fallback {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
}

.n24-email-fallback[hidden] {
  display: none;
}

.n24-email-fallback p {
  color: var(--n24-white);
  line-height: 1.35;
  margin: 0 0 2px;
}

.n24-email-fallback small {
  color: #b7c8db;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.n24-email-fallback span {
  color: var(--n24-white);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.n24-email-fallback textarea {
  background: #fff;
  border: 0;
  border-radius: 7px;
  color: var(--n24-ink);
  font: 13px/1.35 Arial, Helvetica, sans-serif;
  min-height: 150px;
  padding: 10px;
  resize: vertical;
  width: 100%;
}

.n24-copy-email {
  background: var(--n24-orange);
  border: 0;
  border-radius: 7px;
  color: var(--n24-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 40px;
  padding: 9px 12px;
}

.n24-copy-email--primary {
  background: var(--n24-green);
  color: var(--n24-white);
}

.n24-copy-email:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.n24-site-email-status {
  color: #cfe1f3;
  font-size: 12px;
  line-height: 1.35;
}

.n24-site-email-status.is-success {
  color: #9ff0ce;
}

.n24-site-email-status.is-error {
  color: #ffd1d6;
}

.n24-small {
  color: #b7c8db;
  font-size: 12px;
  line-height: 1.45;
  margin: 14px 0 0;
}

.n24-benefits {
  background: var(--n24-soft);
  border-top: 1px solid var(--n24-line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 30px 34px 34px;
}

.n24-benefits article {
  background: var(--n24-white);
  border: 1px solid var(--n24-line);
  border-radius: 9px;
  padding: 18px;
}

.n24-benefits span {
  color: var(--n24-orange);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.n24-benefits h3 {
  font-size: 18px;
  margin: 0 0 6px;
}

.n24-benefits p {
  color: var(--n24-muted);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

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

  .n24-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .n24-app {
    border-radius: 0;
    margin: 0;
    width: 100%;
  }

  .n24-hero__content,
  .n24-workspace,
  .n24-benefits {
    padding: 28px 22px;
    max-width: 100vw;
    overflow: hidden;
  }

  .n24-hero {
    border-radius: 0;
    min-height: 0;
  }

  .n24-hero__overlay {
    background: linear-gradient(180deg, rgba(17, 16, 14, .95), rgba(20, 38, 61, .82));
  }

  .n24-logo {
    width: 156px;
  }

  .n24-hero h1 {
    font-size: 33px;
    max-width: 360px;
  }

  .n24-heading h2 {
    font-size: 31px;
    max-width: 340px;
  }

  .n24-heading p:not(.n24-eyebrow) {
    max-width: 340px;
  }

  .n24-lead {
    font-size: 17px;
    max-width: 360px;
  }

  .n24-hero__actions {
    display: grid;
    max-width: 360px;
  }

  .n24-hero__actions .n24-btn {
    width: 100%;
  }

  .n24-card {
    display: block;
    max-width: 386px;
    overflow: hidden;
    padding: 18px;
    width: 100%;
  }

  .n24-card__check {
    float: left;
    margin: 0 16px 10px 0;
  }

  .n24-field {
    clear: both;
    margin-top: 16px;
    width: 100%;
  }

  .n24-tools {
    display: grid;
    max-width: 340px;
    width: 100%;
  }

  .n24-switch,
  .n24-discount-help,
  .n24-discount-card {
    max-width: 340px;
    width: 100%;
  }

  .n24-discount-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .n24-discount-card input {
    grid-row: span 2;
  }

  .n24-summary .n24-tax-note {
    max-width: none;
  }

  .n24-benefits {
    grid-template-columns: 1fr;
  }

}
