:root {
  --ink: #111015;
  --muted: #605b6f;
  --paper: #fffdf8;
  --surface: #ffffff;
  --lavender: #8b5cff;
  --violet: #6f37ee;
  --lilac: #efe8ff;
  --yellow: #ffd84d;
  --mint: #8af0c6;
  --line: #ded6ee;
  --shadow: 0 18px 50px rgba(32, 18, 76, 0.14);
  --soft-shadow: 0 10px 26px rgba(32, 18, 76, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(139, 92, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(255, 216, 77, 0.22), transparent 20rem),
    linear-gradient(180deg, #fff, var(--paper));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.98);
  border-bottom: 1px solid rgba(222, 214, 238, 0.72);
}

.brand img {
  width: 154px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 42px;
  padding-top: 42px;
}

.hero .eyebrow {
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 750;
}

.hero-copy p,
.section-heading p,
.text-block p {
  color: var(--muted);
  font-size: 18px;
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button.primary {
  color: #fff;
  background: var(--violet);
}

.button.secondary {
  background: #fff;
}

.button.full {
  width: 100%;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.photo-stack {
  position: absolute;
  inset: 0;
}

.photo-card {
  position: absolute;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 30px;
  box-shadow: var(--shadow);
  animation: cardFloat 7s ease-in-out infinite;
  will-change: transform;
}

.photo-a {
  left: 6px;
  bottom: 52px;
  width: 42%;
  height: 64%;
  transform: rotate(-8deg);
  z-index: 1;
  animation-delay: -1.2s;
}

.photo-b {
  right: 8px;
  top: 18px;
  width: 43%;
  height: 66%;
  transform: rotate(7deg);
  z-index: 2;
  animation-delay: -2.8s;
}

.photo-c {
  left: 22%;
  bottom: 8px;
  width: 55%;
  height: 56%;
  transform: rotate(4deg);
  z-index: 3;
  animation-delay: -4.4s;
}

.hero-logo-float {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(330px, 62%);
  transform: translate(-50%, -50%) rotate(-3deg);
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(17, 16, 21, 0.16);
  animation: logoFloat 6.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes cardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-3deg);
  }
  50% {
    transform: translate(-50%, calc(-50% - 8px)) rotate(-1deg);
  }
}

.trust-strip {
  width: min(1120px, calc(100% - 36px));
  margin: -18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-strip span,
.category-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--surface);
  font-weight: 750;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.steps-grid,
.package-grid,
.category-grid {
  display: grid;
  gap: 18px;
}

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

.steps-grid article,
.package-card,
.order-form,
.summary,
details {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.steps-grid article {
  padding: 22px;
}

.steps-grid strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  border: 2px solid var(--ink);
}

.steps-grid p,
.package-card p,
.fine-print,
.notice,
.summary p,
details p {
  color: var(--muted);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 24px;
}

.package-card.is-selected {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.package-card.featured {
  background: linear-gradient(180deg, #fff, var(--lilac));
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 22px 0;
  font-size: 44px;
  line-height: 1;
  font-weight: 750;
}

.package-card ul {
  padding-left: 18px;
  margin: 0 0 24px;
  color: var(--muted);
}

.fine-print {
  margin-top: 16px;
}

.category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.notice {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--violet);
  background: var(--lilac);
  border-radius: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.accent-split {
  background:
    linear-gradient(135deg, rgba(239, 232, 255, 0.86), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.legal-note {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  color: var(--ink) !important;
  font-weight: 750;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.order-form,
.summary {
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
}

fieldset {
  min-width: 0;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

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

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

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.shipping-note {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--lilac);
}

.shipping-note strong {
  font-weight: 800;
}

.radio-group label,
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
}

.radio-fieldset.is-locked .radio-group label {
  opacity: 0.65;
}

.radio-fieldset.is-locked .radio-group label:last-child {
  cursor: not-allowed;
}

.radio-group input,
.checkbox input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--violet);
}

.checkbox {
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
}

.optional {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.summary {
  position: sticky;
  top: 104px;
}

.summary dl {
  margin: 0;
}

.summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary dt {
  color: var(--muted);
  font-weight: 800;
}

.summary dd {
  margin: 0;
  font-weight: 800;
}

.summary .total {
  font-size: 24px;
  border-bottom: 0;
}

#summary-paid-now {
  color: var(--violet);
}

#summary-courier {
  color: #0b7a4b;
}

.order-success {
  margin-top: 16px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--mint);
  box-shadow: 4px 4px 0 var(--ink);
}

.order-success span,
.order-success p {
  color: var(--ink);
  font-weight: 750;
}

.order-success strong {
  display: block;
  margin: 6px 0;
  font-size: 28px;
  line-height: 1.1;
}

.success-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.contact-link,
.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.contact-link.whatsapp,
.contact-card.whatsapp {
  background: var(--mint);
}

.contact-link.tiktok,
.contact-card.tiktok {
  background: var(--lilac);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 560px;
}

.legal-page {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}

.legal-page h1 {
  margin-top: 10px;
  font-size: clamp(40px, 7vw, 72px);
}

.legal-page section {
  margin-top: 22px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.legal-page section h2 {
  font-size: 28px;
}

.legal-page a {
  color: var(--violet);
  font-weight: 800;
}

.legal-nav {
  margin-left: auto;
}

.contact-card {
  min-height: 132px;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--muted);
  font-weight: 750;
}

.contact-card strong {
  font-size: 24px;
  overflow-wrap: anywhere;
}

.faq {
  max-width: 860px;
}

details {
  margin-bottom: 12px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
}

.footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 56px;
  border-top: 2px solid var(--line);
  color: var(--muted);
}

.footer img {
  width: 150px;
  margin-bottom: 12px;
}

.seller-box {
  display: grid;
  gap: 4px;
  max-width: 420px;
}

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

.seller-box a {
  color: var(--violet);
  font-weight: 800;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0;
  color: var(--ink);
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
    transition: none;
    animation: none;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 14px;
    border: 2px solid var(--ink);
    border-radius: 10px;
    background: #fff;
    font-weight: 750;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero,
  .split,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 22px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    min-height: 330px;
  }

  .photo-card {
    border-width: 2px;
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
  }

  .photo-a {
    left: 4px;
    bottom: 62px;
    width: 42%;
    height: 60%;
  }

  .photo-b {
    right: 2px;
    top: 20px;
    width: 42%;
    height: 60%;
  }

  .photo-c {
    left: 21%;
    bottom: 12px;
    width: 56%;
    height: 50%;
  }

  .hero-logo-float {
    width: min(220px, 66%);
  }

  .trust-strip,
  .steps-grid,
  .package-grid,
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 104px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 54px 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.2;
  }

  h1 {
    font-size: 36px;
    line-height: 1.03;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .button,
  .radio-group {
    width: 100%;
  }

  .trust-strip,
  .steps-grid,
  .package-grid,
  .category-grid,
  .contact-grid,
  .form-grid,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .split,
  .order-form,
  .summary {
    padding: 20px;
  }

  .radio-group label {
    min-height: 58px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 7px 12px;
  }

  .hero-visual {
    min-height: 290px;
  }

  .hero-logo-float {
    width: min(190px, 68%);
  }

  .trust-strip {
    margin-top: 0;
  }

  .footer img {
    width: 118px;
  }

  .steps-grid article,
  .package-card,
  .order-form,
  .summary,
  details,
  .split {
    box-shadow: var(--soft-shadow);
  }

  .button,
  .trust-strip span,
  .category-grid span {
    box-shadow: 3px 3px 0 var(--ink);
  }
}
