:root {
  --bg: #090510;
  --bg-soft: #13091f;
  --paper: #f8f5ff;
  --white: #ffffff;
  --text: #161020;
  --muted: #6d6478;
  --line: rgba(255, 255, 255, 0.16);
  --purple: #8b2cff;
  --purple-hot: #b721ff;
  --purple-deep: #3b0c73;
  --green: #20c861;
  --shadow: 0 24px 70px rgba(7, 3, 16, 0.34);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 5, 16, 0.88);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

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

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 800;
}

.main-nav a,
.nav-button {
  opacity: 0.82;
}

.main-nav a:hover,
.nav-button:hover {
  opacity: 1;
}

.nav-button {
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-cta,
.button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.header-cta {
  padding: 11px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0fa74d);
  box-shadow: 0 12px 30px rgba(32, 200, 97, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: 100vh;
  padding: 128px clamp(16px, 5vw, 72px) 76px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 26%, rgba(183, 33, 255, 0.52), transparent 30%),
    radial-gradient(circle at 22% 76%, rgba(139, 44, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #050309 0%, #160724 42%, #3b0c73 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 88%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #e2bcff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0fa74d);
  box-shadow: 0 18px 38px rgba(32, 200, 97, 0.3);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary.dark {
  color: var(--purple-deep);
  border-color: rgba(59, 12, 115, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  justify-self: end;
  width: min(560px, 100%);
  min-height: 430px;
}

.laptop-mockup {
  position: absolute;
  right: 0;
  top: 52px;
  width: min(520px, 100%);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.34));
}

.laptop-screen {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px 16px 10px 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(183, 33, 255, 0.48), transparent 34%),
    linear-gradient(145deg, rgba(12, 5, 25, 0.98), rgba(76, 18, 132, 0.94));
}

.laptop-screen::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.laptop-screen img,
.screen-card {
  position: relative;
  z-index: 1;
}

.laptop-screen img {
  width: min(280px, 76%);
}

.screen-card {
  width: min(320px, 100%);
  margin-top: 74px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.screen-card span,
.screen-card strong {
  display: block;
}

.screen-card span {
  margin-bottom: 8px;
  color: #dfb5ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-card strong {
  max-width: 260px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.laptop-base {
  width: 82%;
  height: 22px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #ded8e8, #8e829f);
}

.phone-mockup {
  position: absolute;
  left: -18px;
  bottom: -4px;
  display: grid;
  gap: 9px;
  width: 164px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(65, 17, 114, 0.94));
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.phone-dot {
  width: 42px;
  height: 5px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.phone-mockup strong {
  font-size: 1.1rem;
}

.phone-mockup span {
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.section,
.process,
.showcase-section,
.contact-section {
  padding: clamp(66px, 9vw, 104px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-section h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

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

.service-card,
.steps div {
  border-radius: 8px;
}

.service-card {
  min-height: 218px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(59, 12, 115, 0.12);
  box-shadow: 0 14px 34px rgba(59, 12, 115, 0.08);
}

.service-card span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--purple);
  font-weight: 900;
}

.service-card h3,
.steps h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.service-card p,
.steps p,
.reviews-grid p,
.carousel-slide p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(183, 33, 255, 0.35), transparent 32%),
    linear-gradient(135deg, var(--bg), var(--bg-soft));
}

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

.steps div {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.steps strong {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
  border-radius: 8px;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-section,
.order-section {
  background: var(--white);
}

.pricing-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 20%, rgba(183, 33, 255, 0.12), transparent 34%),
    var(--paper);
  box-shadow: 0 18px 44px rgba(59, 12, 115, 0.08);
}

.pricing-teaser strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple-deep);
  font-size: 1.35rem;
}

.pricing-teaser p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.checkout-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(32, 200, 97, 0.18), transparent 28%),
    linear-gradient(135deg, #11061f, #421278);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(59, 12, 115, 0.18);
}

.checkout-teaser strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.checkout-teaser p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.price-table {
  overflow: hidden;
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(59, 12, 115, 0.08);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(59, 12, 115, 0.1);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-head {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--purple-deep);
  text-align: right;
  white-space: nowrap;
}

.pricing-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.order-form,
.order-summary {
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(59, 12, 115, 0.08);
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 0;
  overflow: hidden;
}

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

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.checkout-card {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 30px);
}

.checkout-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 20%, rgba(183, 33, 255, 0.42), transparent 32%),
    linear-gradient(135deg, var(--bg), var(--purple-deep));
}

.checkout-top img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
}

.checkout-top span,
.checkout-top strong {
  display: block;
}

.checkout-top span {
  color: #e2bcff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-top strong {
  font-size: 1.15rem;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.checkout-progress span {
  height: 8px;
  overflow: hidden;
  color: transparent;
  border-radius: 999px;
  background: rgba(59, 12, 115, 0.16);
}

.checkout-progress span.is-active,
.checkout-progress span.is-complete {
  background: linear-gradient(135deg, var(--purple), var(--purple-hot));
}

.checkout-step {
  display: none;
  gap: 18px;
}

.checkout-step.is-active {
  display: grid;
}

.hidden-control {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.checkout-step h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.step-kicker {
  margin: 0;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inline-link {
  justify-self: start;
  color: var(--purple);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(59, 12, 115, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.order-form small {
  color: var(--muted);
  font-weight: 600;
}

.hidden-field {
  display: none;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.file-note {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(139, 44, 255, 0.2);
  border-radius: 8px;
  background: rgba(139, 44, 255, 0.08);
}

.file-note strong {
  color: var(--purple-deep);
}

.file-note span {
  color: var(--muted);
}

.choice-group {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
}

.choice-group legend {
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 900;
}

.choice-group label,
.method-card,
.deadline-group label,
.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(59, 12, 115, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.choice-group input,
.method-card input,
.deadline-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

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

.service-option {
  align-items: flex-start;
  justify-content: space-between;
  min-height: 64px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-option:hover {
  transform: translateY(-1px);
}

.service-option.is-active {
  border-color: rgba(139, 44, 255, 0.55);
  box-shadow: 0 14px 28px rgba(139, 44, 255, 0.12);
}

.service-option strong,
.service-option span,
.service-option small {
  display: block;
}

.service-option strong {
  margin-bottom: 4px;
  color: var(--text);
}

.service-option span {
  color: var(--text);
}

.service-option small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 650;
}

.service-option .service-price {
  color: #473853;
  font-size: 0.92rem;
  font-weight: 900;
}

.service-option .service-copy {
  display: none;
  color: var(--muted);
}

.deadline-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.deadline-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--text);
  font-weight: 900;
}

.deadline-group label {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  cursor: pointer;
}

.deadline-group input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.deadline-group label::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(59, 12, 115, 0.24);
  border-radius: 999px;
  background: var(--white);
}

.deadline-group label:has(input:checked) {
  border-color: rgba(139, 44, 255, 0.55);
  box-shadow: 0 14px 28px rgba(139, 44, 255, 0.12);
}

.deadline-group label:has(input:checked)::after {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 200, 97, 0.14);
}

.deadline-group small {
  color: var(--muted);
}

.deadline-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.method-card {
  align-items: flex-start;
  cursor: pointer;
}

.method-card span,
.method-card small {
  display: block;
}

.method-card span {
  color: var(--text);
  font-weight: 900;
}

.method-card small {
  color: var(--muted);
  font-weight: 700;
}

.method-card.is-active {
  border-color: rgba(32, 200, 97, 0.42);
  box-shadow: 0 10px 24px rgba(32, 200, 97, 0.14);
}

.method-card.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.method-note {
  margin: 0;
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--purple-deep);
  font-weight: 800;
}

.form-message.is-error {
  color: #b42318;
}

.order-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(59, 12, 115, 0.1);
}

.summary-line span {
  color: var(--muted);
  font-weight: 700;
}

.summary-line strong {
  color: var(--text);
  text-align: right;
}

.summary-line.total strong {
  color: var(--purple);
  font-size: 1.35rem;
}

.summary-note {
  margin: 16px 0 0;
  padding: 12px;
  color: var(--purple-deep);
  border: 1px solid rgba(139, 44, 255, 0.18);
  border-radius: 8px;
  background: rgba(139, 44, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 800;
}

.payment-box {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(59, 12, 115, 0.14);
}

.payment-box[hidden] {
  display: none;
}

.payment-box img {
  width: min(240px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: var(--white);
}

.payment-box textarea {
  min-height: 90px;
  border: 1px solid rgba(59, 12, 115, 0.18);
  border-radius: 8px;
  padding: 12px;
  resize: vertical;
  font: inherit;
}

.payment-box p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 3, 12, 0.78);
}

.checkout-modal.is-open {
  display: flex;
}

.checkout-shell {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(880px, 92vh);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.checkout-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 52px);
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  margin: 12px 12px -52px auto;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(9, 5, 16, 0.72);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.checkout-flow {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.checkout-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 18px;
  color: var(--white);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 20%, rgba(183, 33, 255, 0.46), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--purple-deep));
}

.checkout-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.checkout-brand span,
.checkout-brand strong {
  display: block;
}

.checkout-brand span {
  color: #dfb5ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-brand strong {
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 18px;
  align-items: start;
}

.checkout-main,
.checkout-summary {
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(59, 12, 115, 0.08);
}

.checkout-main {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.checkout-flow label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.checkout-flow input,
.checkout-flow select,
.checkout-flow textarea {
  width: 100%;
  border: 1px solid rgba(59, 12, 115, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  font: inherit;
}

.checkout-flow textarea {
  min-height: 112px;
  resize: vertical;
}

.checkout-flow small {
  color: var(--muted);
  font-weight: 650;
}

.checkout-flow .choice-group input,
.checkout-flow .method-card input,
.checkout-flow .checkbox-line input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.checkout-flow .checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkout-summary {
  position: sticky;
  top: 18px;
  padding: 22px;
}

.checkout-modal.is-submit-step .checkout-actions,
.checkout-modal.is-pix-step .checkout-actions {
  display: none;
}

.checkout-modal.is-pix-step .checkout-shell {
  width: min(820px, 100%);
}

.checkout-modal.is-pix-step .checkout-brand,
.checkout-modal.is-pix-step .checkout-progress,
.checkout-modal.is-pix-step .checkout-summary {
  display: none;
}

.checkout-modal.is-pix-step .checkout-grid {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-modal.is-pix-step .checkout-main {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-step {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 28px);
  color: var(--white);
  border-radius: 12px;
  background: #151515;
}

.checkout-step.payment-step {
  display: none;
}

.checkout-step.payment-step.is-active {
  display: grid;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.payment-header h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.payment-header span {
  color: #b466ff;
  font-weight: 800;
}

.payment-countdown {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #bdd5f1;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.payment-countdown strong {
  padding: 10px 16px;
  color: #08040e;
  border-radius: 8px;
  background: #ad5cff;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.payment-total {
  display: flex;
  width: min(320px, 100%);
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 13px 16px;
  border: 1px solid #273445;
  border-radius: 8px;
  color: #bdd5f1;
  background: #070707;
}

.payment-total strong {
  color: #ad5cff;
  font-size: 1.2rem;
}

.payment-pending-panel {
  display: grid;
  gap: 18px;
}

.payment-pending-panel[hidden],
.payment-approved-panel[hidden] {
  display: none;
}

.payment-step img {
  width: min(240px, 72vw);
  margin: 0 auto;
  padding: 12px;
  border-radius: 10px;
  background: var(--white);
}

.payment-step img:not([src]),
.payment-step img[src=""] {
  display: none;
}

.payment-step p {
  margin: 0;
  color: #bdd5f1;
  text-align: center;
}

.payment-step label {
  color: #bdd5f1;
  text-align: center;
}

.payment-step textarea {
  min-height: 96px;
  color: #dcecff;
  border-color: #2e3440;
  background: #070707;
  font-size: 0.92rem;
  text-align: left;
}

.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: #bdd5f1;
}

.divider::before,
.divider::after {
  height: 1px;
  content: "";
  background: #334052;
}

.pending-box {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid #273445;
  border-radius: 8px;
  background: #070707;
  color: #bdd5f1;
}

.pending-box strong {
  color: var(--white);
}

.payment-step .button-secondary.dark {
  color: var(--white);
  border-color: #334052;
  background: #0b0b0b;
}

.payment-step.is-approved {
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 200, 97, 0.24), transparent 34%),
    linear-gradient(145deg, #101010, #180724 72%, #250a3d);
}

.payment-step.is-approved .payment-header {
  display: none;
}

.payment-approved-panel {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  text-align: center;
}

.payment-approved-panel > img {
  width: 82px;
  height: 82px;
  padding: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.approved-checkmark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #06130b;
  border-radius: 999px;
  background: linear-gradient(135deg, #7dffad, var(--green));
  box-shadow: 0 18px 45px rgba(32, 200, 97, 0.28);
  font-size: 2.4rem;
  font-weight: 900;
}

.payment-approved-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
}

.payment-approved-panel p {
  max-width: 540px;
  color: #d8e9ff;
}

.approved-details {
  display: grid;
  width: min(560px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.approved-details span,
.approved-next {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid #273445;
  border-radius: 10px;
  background: rgba(7, 7, 7, 0.82);
  color: #bdd5f1;
  text-align: left;
}

.approved-details strong,
.approved-next strong {
  color: var(--white);
}

.approved-next {
  width: min(560px, 100%);
}

.approved-actions {
  display: flex;
  width: min(560px, 100%);
  justify-content: center;
  gap: 12px;
}

.approved-actions .button {
  min-width: min(100%, 260px);
}

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

.reviews-grid article {
  padding: 24px;
  border: 1px solid rgba(59, 12, 115, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(59, 12, 115, 0.08);
}

.showcase-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(183, 33, 255, 0.32), transparent 28%),
    linear-gradient(135deg, #08040e, #22063e 56%, #3b0c73);
}

.carousel {
  max-width: 940px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 38px 38px, 38px 38px, auto;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-slide span {
  margin-bottom: 52px;
  color: #dfb5ff;
  font-weight: 900;
}

.carousel-slide h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 1;
}

.carousel-slide p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  font-weight: 900;
}

.carousel-dots {
  display: flex;
  gap: 7px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.carousel-dots .is-active {
  width: 22px;
  background: var(--green);
}

.reviews-section,
.trust-section {
  background: var(--paper);
}

.stars {
  margin-bottom: 18px;
  color: var(--purple-hot);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.reviews-grid p {
  min-height: 96px;
  margin-bottom: 18px;
}

.reviews-grid strong {
  color: var(--purple-deep);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid rgba(59, 12, 115, 0.14);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(59, 12, 115, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-deep), var(--purple), var(--purple-hot));
}

.contact-section > div:first-child {
  max-width: 760px;
}

.contact-section p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 5vw, 72px);
  background: var(--white);
}

.site-footer span {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

.terms-link {
  color: var(--purple);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 3, 12, 0.74);
}

.terms-modal.is-open {
  display: flex;
}

.terms-dialog {
  position: relative;
  width: min(640px, 100%);
  max-height: min(680px, 88vh);
  overflow: auto;
  padding: clamp(24px, 5vw, 38px);
  color: var(--text);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.price-dialog {
  width: min(820px, 100%);
}

.modal-intro {
  color: var(--muted);
}

.terms-dialog h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.05;
}

.terms-dialog p:not(.eyebrow) {
  color: var(--muted);
}

.terms-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--text);
  border: 1px solid rgba(59, 12, 115, 0.16);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  display: none;
  padding: 13px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0fa74d);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(32, 200, 97, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero,
  .contact-section,
  .order-layout,
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .hero-visual {
    justify-self: center;
    width: min(420px, 100%);
    min-height: 340px;
  }

  .laptop-mockup {
    top: 26px;
    width: min(410px, 100%);
  }

  .laptop-screen {
    min-height: 250px;
    padding: 26px;
  }

  .screen-card {
    margin-top: 46px;
  }

  .phone-mockup {
    right: auto;
    left: -8px;
    bottom: 0;
  }

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

  .order-summary {
    position: static;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .service-grid,
  .steps,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 154px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 110px 16px 56px;
  }

  h1 {
    font-size: 2.95rem;
  }

  .button {
    width: 100%;
  }

  .pricing-teaser,
  .checkout-teaser,
  .checkout-actions {
    display: grid;
  }

  .checkout-modal {
    align-items: stretch;
    padding: 0;
  }

  .checkout-shell {
    width: 100%;
    max-height: 100vh;
    border: 0;
    border-radius: 0;
  }

  .checkout-flow {
    padding: 14px;
  }

  .checkout-brand {
    padding-right: 54px;
  }

  .checkout-main,
  .checkout-summary {
    padding: 16px;
  }

  .checkout-step h3 {
    font-size: 1.7rem;
  }

  .payment-step {
    padding: 18px;
  }

  .approved-details {
    grid-template-columns: 1fr;
  }

  .payment-header {
    display: grid;
  }

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

  .service-picker,
  .deadline-group {
    grid-template-columns: 1fr;
  }

  .service-option {
    min-height: auto;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    text-align: left;
  }

  .form-actions {
    display: grid;
  }

  .hero-visual {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 86px;
  }

  .floating-whatsapp {
    display: inline-flex;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    box-shadow: 0 8px 20px rgba(32, 200, 97, 0.22);
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.55rem;
  }

  .quick-points span {
    font-size: 0.84rem;
  }
}
