:root {
  --pink: #ff2b85;
  --pink-dark: #e8176e;
  --pink-soft: #fff0f6;
  --ink: #101016;
  --navy: #344054;
  --muted: #737789;
  --line: #e7e7ed;
  --line-soft: #f1f1f5;
  --green: #16b77b;
  --shadow: 0 14px 38px rgba(24, 29, 48, 0.07);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { min-height: 100%; scroll-behavior: smooth; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background-color: #fafafa;
  background-image:
    linear-gradient(rgba(70, 77, 96, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 77, 96, 0.055) 1px, transparent 1px);
  background-size: 55px 55px;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.app-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  overflow: visible;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid rgba(255, 43, 133, .25);
  outline-offset: 3px;
}

.site-shell {
  width: min(100%, 632px);
  margin: 0 auto;
  padding: 38px 16px 34px;
}

.home-shell { width: min(100%, 632px); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  margin-bottom: 22px;
}

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

.brand img { display: block; width: 159px; height: 44px; object-fit: contain; }

.brand-rocket {
  position: relative;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 45% 50% 48% 32%;
  color: #fff;
  background: var(--navy);
  transform: rotate(-12deg);
  font: 800 14px/1 sans-serif;
}

.brand-rocket::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 2px #fff;
}

.brand-dot { color: var(--pink); font-size: .7em; margin-left: -9px; transform: translateY(10px); }

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

.pill-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pill-button:hover { transform: translateY(-1px); border-color: #d5d5de; box-shadow: 0 8px 20px rgba(31,35,50,.06); }
.pill-button .count {
  position: absolute;
  top: -7px;
  right: -3px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 11px;
  font-weight: 800;
}

.icon { display: inline-grid; place-items: center; width: 14px; height: 14px; text-align: center; }
.icon .app-icon { width: 14px; height: 14px; }

.network-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
}

.network-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff3d96, #f71972);
  box-shadow: 0 7px 15px rgba(255,43,133,.22);
}
.network-icon .app-icon { width: 24px; height: 24px; }

.network-copy { flex: 1; min-width: 0; }
.eyebrow-muted, .field-label, .section-label {
  color: #85899a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.network-name { margin-top: 2px; font-size: 15px; font-weight: 800; }

.swap-button, .tag-button {
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid #ffd0e3;
  border-radius: 999px;
  color: var(--pink-dark);
  background: #fff6fa;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 0 rgba(30,35,50,.015);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Plus Jakarta Sans", system-ui, sans-serif; letter-spacing: -.045em; }
.panel h1 { margin-bottom: 5px; font-size: 30px; line-height: 1.1; font-weight: 800; }
.lead { margin-bottom: 22px; color: #626677; font-size: 13px; line-height: 1.55; }

.category-grid, .package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.choice-card, .service-card, .package-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.choice-card:hover, .service-card:hover, .package-card:hover { transform: translateY(-2px); border-color: #ffc2da; box-shadow: 0 10px 28px rgba(41,45,61,.07); }
.choice-card.selected, .service-card.selected, .package-card.selected { border-color: var(--pink); background: linear-gradient(150deg, #fff 55%, #fff8fb); }
.choice-card.selected::after, .service-card.selected::after, .package-card.selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 3px 8px rgba(255,43,133,.25);
  font-size: 14px;
  font-weight: 900;
}

.choice-card { min-height: 168px; padding: 16px; border-radius: 16px; }
.choice-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff3d96, #f71972);
  box-shadow: 0 7px 15px rgba(255,43,133,.22);
}
.choice-icon .app-icon { width: 24px; height: 24px; }
.choice-title { position: relative; z-index: 1; display: block; margin-bottom: 5px; font-size: 14px; font-weight: 800; }
.choice-desc { position: relative; z-index: 1; display: block; min-height: 16px; color: #888c9d; font-size: 11px; line-height: 1.45; }
.choice-count { display: inline-flex; margin-top: 10px; padding: 4px 9px; border-radius: 999px; color: #6d7080; background: #f4f4f7; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.choice-art { position: absolute; right: -18px; bottom: -24px; width: 82px; height: 82px; border: 7px solid #fff0f6; border-radius: 50%; }

.actions { display: grid; grid-template-columns: .68fr 1fr; gap: 10px; margin-top: 23px; }
.primary-button, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.primary-button { border: 0; color: #fff; background: linear-gradient(110deg, #ff2d87, #fb2780); box-shadow: 0 5px 10px rgba(255,43,133,.18); }
.primary-button:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 9px 18px rgba(255,43,133,.23); }
.primary-button:disabled { opacity: .42; cursor: not-allowed; }
.button-icon { width: 16px; height: 16px; }
.secondary-button { border: 1px solid var(--line); color: #646878; background: #fff; }
.secondary-button:hover { border-color: #d5d5de; background: #fafafd; }

.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
}
.trust-item .icon { color: var(--pink); }
.footer { padding: 26px 0 0; color: #b2b5c1; text-align: center; font-size: 10px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }

.service-list { display: grid; gap: 12px; }
.service-card { width: 100%; padding: 19px 17px; border-radius: 17px; }
.service-top { display: flex; justify-content: space-between; gap: 14px; align-items: flex-start; }
.service-title { display: block; font-size: 15px; font-weight: 800; }
.service-desc { display: block; margin-top: 5px; color: #8b8e9e; font-size: 12px; line-height: 1.45; }
.status-tag { flex: 0 0 auto; padding: 6px 10px; border: 1px solid #ffd2e3; border-radius: 999px; color: var(--pink); background: #fff3f8; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.stat-label { display: block; color: #b3b5c1; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.stat-value { display: block; margin-top: 4px; font-size: 13px; font-weight: 800; }
.stat-value.price { color: var(--pink); }
.service-card.selected .status-tag { margin-right: 24px; }

.field-label { display: block; margin-bottom: 9px; }
.destination-input {
  display: flex;
  min-height: 55px;
  margin-bottom: 14px;
  border: 2px solid var(--pink);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.input-icon { display: grid; place-items: center; flex: 0 0 49px; color: var(--pink); background: #fff5f9; font-size: 20px; }
.destination-input input { width: 100%; border: 0; outline: 0; padding: 0 14px; color: var(--ink); font-size: 15px; font-weight: 600; }
.destination-input input::placeholder { color: #bdc0cb; }
.info-box { display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px; border: 1px solid var(--line); border-radius: 15px; color: #7c8090; font-size: 11px; line-height: 1.65; }
.info-dot { display: grid; place-items: center; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px; border: 1px solid var(--pink); border-radius: 50%; color: var(--pink); font-size: 11px; font-weight: 800; }

.target-chip { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 18px; padding: 13px 15px; border: 1px solid #ffd3e4; border-radius: 14px; background: #fff7fa; }
.target-chip small { display: block; margin-bottom: 4px; color: #9c8090; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.target-chip strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--pink-dark); font-size: 13px; }
.target-chip button { border: 0; color: #8d8f9d; background: transparent; cursor: pointer; font-size: 12px; text-decoration: underline; }

.package-grid { margin-bottom: 18px; }
.package-card { min-height: 145px; padding: 16px; border-radius: 16px; }
.package-card.popular { padding-top: 36px; }
.popular-banner { position: absolute; inset: 0 0 auto; padding: 7px 10px; color: #fff; background: var(--pink); text-align: center; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.package-service { display: block; margin-bottom: 16px; color: #9194a3; font-size: 10px; font-weight: 700; }
.package-quantity { display: block; color: var(--pink-dark); font: 800 28px/1 "Plus Jakarta Sans", system-ui, sans-serif; letter-spacing: -.03em; }
.package-price { display: block; margin-top: 15px; font-size: 15px; font-weight: 800; }
.old-price { margin-right: 6px; color: #a9abb5; font-size: 10px; text-decoration: line-through; }
.discount { padding: 3px 6px; border-radius: 999px; color: #bf1558; background: #ffe5ef; font-size: 9px; font-weight: 800; }
.save { display: block; margin-top: 5px; color: #12855f; font-size: 10px; font-weight: 700; }
.sticky-summary {
  position: sticky;
  bottom: 13px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px -16px -16px;
  padding: 13px 14px 13px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 30px rgba(35,38,52,.11);
  backdrop-filter: blur(12px);
}
.sticky-summary small { display: block; margin-bottom: 3px; color: #888c9c; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.sticky-summary strong { font-size: 17px; }
.sticky-summary strong span { color: var(--pink); }
.sticky-summary .primary-button { min-height: 47px; padding: 0 24px; }

.home-shell .topbar { margin-bottom: 0; }
.home-hero {
  position: relative;
  height: 382px;
  padding: 118px 60px 0;
  text-align: center;
}
.home-hero h1 { position: relative; z-index: 1; margin: 0 0 14px; color: var(--navy); font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -.055em; }
.home-hero .hero-word-mark { position: relative; display: inline-block; color: var(--pink); vertical-align: baseline; }
.home-hero .hero-word-mark::after { content: ""; position: absolute; z-index: 2; left: 2%; right: 0; bottom: -9px; height: 8px; border-top: 4px solid var(--pink); border-radius: 50%; transform: rotate(-2deg); }
.home-hero .hero-word-rotate { position: relative; display: inline-grid; height: 1.15em; overflow: hidden; color: var(--pink); vertical-align: baseline; white-space: nowrap; }
.home-hero .hero-word-rotate > span {
  grid-area: 1 / 1;
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(85%) scale(.96);
  animation: heroWordBlurUp 10s cubic-bezier(.2,.8,.2,1) infinite;
  will-change: transform, opacity, filter;
}
.home-hero .hero-word-rotate > span:nth-child(1) { animation-delay: 0s; }
.home-hero .hero-word-rotate > span:nth-child(2) { animation-delay: 2.5s; }
.home-hero .hero-word-rotate > span:nth-child(3) { animation-delay: 5s; }
.home-hero .hero-word-rotate > span:nth-child(4) { animation-delay: 7.5s; }
.home-hero p { position: relative; z-index: 1; max-width: 445px; margin: 0 auto; color: #6f7384; font-size: 13px; line-height: 1.65; }
.metric-badge { position: absolute; z-index: 2; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 9px; min-width: 176px; height: 66px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 9px 22px rgba(31,37,52,.07); text-align: left; }
.metric-badge > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; color: #fff; background: var(--pink); box-shadow: 0 6px 12px rgba(255,43,133,.2); }
.metric-badge > span .app-icon { width: 19px; height: 19px; }
.metric-badge b { color: var(--navy); font-size: 15px; line-height: 1.05; }
.metric-badge small { display: block; margin-bottom: 3px; color: #818594; font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.metric-badge em { color: #18b77f; font-size: 9px; font-style: normal; font-weight: 800; }
.metric-number { display: inline-block; min-width: 3.7em; transform-origin: center; transition: color .22s ease; will-change: transform, color; }
.metric-number.is-metric-updating { color: #059669; animation: metricNumberPulse .52s cubic-bezier(.2,.9,.25,1.25); }
.metric-one { --tilt: -7deg; top: 12px; left: 0; animation: metricPopIn .5s .05s cubic-bezier(.2,.9,.3,1.2) both, metricFloatA 4.5s ease-in-out .55s infinite; }
.metric-two { --tilt: 7deg; top: 28px; right: 0; animation: metricPopIn .5s .15s cubic-bezier(.2,.9,.3,1.2) both, metricFloatB 5s ease-in-out .65s infinite; }
.metric-three { --tilt: 8deg; left: 6px; bottom: 26px; animation: metricPopIn .5s .25s cubic-bezier(.2,.9,.3,1.2) both, metricFloatC 4.8s ease-in-out .75s infinite; }
.metric-four { --tilt: -7deg; right: 4px; bottom: 27px; animation: metricPopIn .5s .35s cubic-bezier(.2,.9,.3,1.2) both, metricFloatD 5.2s ease-in-out .85s infinite; }

.networks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 12px; }
.network-card { display: flex; align-items: center; gap: 12px; min-height: 80px; padding: 14px; border: 2px solid var(--line); border-radius: 16px; background: #fff; text-align: left; cursor: pointer; transition: .18s ease; }
.network-card:hover { transform: translateY(-2px); border-color: #ffc2da; box-shadow: 0 10px 25px rgba(35,38,52,.08); }
.network-card.selected { border-color: var(--pink); }
.social-mark { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 12px; color: #fff; background: linear-gradient(145deg, #ff3d96, #f71972); box-shadow: 0 7px 14px rgba(255,43,133,.2); font-weight: 800; }
.social-mark.instagram, .social-mark.tiktok, .social-mark.youtube, .social-mark.kwai { background: linear-gradient(145deg, #ff3d96, #f71972); text-shadow: none; }
.social-mark .app-icon { width: 24px; height: 24px; }
.network-card-copy { flex: 1; min-width: 0; }
.network-card strong { display: block; margin-bottom: 4px; font-size: 14px; }
.network-card small { color: #9497a5; font-size: 10px; }
.network-card small b { color: var(--pink); }
.network-arrow { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: #252934; background: #fff; font-size: 16px; }
.network-arrow .app-icon { width: 15px; height: 15px; }
.network-card.selected .network-arrow { border-color: var(--pink); color: #fff; background: var(--pink); }
.home-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 40px 0 16px; }
.home-trust .trust-card { display: flex; min-height: 100px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; text-align: center; }
.trust-symbol { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; color: var(--pink); background: var(--pink-soft); }
.trust-symbol .app-icon { width: 15px; height: 15px; }
.trust-card strong { display: block; font-size: 11px; }
.trust-card small { color: #9598a6; font-size: 9px; }
.faq-section { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-head { margin: 0; padding: 15px 16px 12px; border-bottom: 1px solid var(--line-soft); }
.faq-kicker { color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.faq-head h2 { margin: 9px 0 5px; font-size: 15px; letter-spacing: -.02em; }
.faq-head p { margin: 0; color: #777b8b; font-size: 9px; }
.faq-list { display: grid; gap: 0; }
.faq-item { border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; background: #fff; }
.faq-item:last-child { border-bottom: 0; }
.faq-question { display: flex; justify-content: space-between; gap: 18px; width: 100%; padding: 15px 16px; border: 0; background: transparent; text-align: left; font-size: 11px; font-weight: 700; cursor: pointer; }
.faq-question span:last-child { color: var(--pink); font-size: 18px; }
.faq-answer { display: none; padding: 0 16px 15px; color: #777b8b; font-size: 10px; line-height: 1.6; }
.faq-item.open .faq-answer { display: block; }

.modal-backdrop { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 18px; background: rgba(14,18,25,.52); backdrop-filter: blur(2px); animation: fade .16s ease; }
.modal {
  width: min(100%, 530px);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(12,15,24,.24);
  animation: pop .2s ease;
}
.modal-header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 17px 18px; border-bottom: 1px solid var(--line); background: #fff; }
.cart-bag { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; color: #fff; background: var(--pink); box-shadow: 0 6px 14px rgba(255,43,133,.25); }
.cart-bag .app-icon { width: 20px; height: 20px; }
.modal-header-copy { flex: 1; }
.modal-header-copy small { display: block; color: var(--pink); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.modal-header-copy strong { font-size: 15px; }
.close-button { display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; color: #777b8b; background: #f5f5f8; cursor: pointer; font-size: 20px; }
.modal-body { padding: 17px 20px 20px; }
.cart-list { display: grid; gap: 10px; }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; }
.cart-meta { margin-bottom: 9px; color: #9699a8; font-size: 10px; }
.cart-qty { display: block; margin-bottom: 3px; font-size: 15px; font-weight: 800; }
.cart-desc { color: #808495; font-size: 10px; line-height: 1.4; }
.cart-side { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; font-size: 16px; font-weight: 800; }
.delete-button { border: 0; color: #b4b6c0; background: transparent; cursor: pointer; font-size: 16px; }
.delete-button .app-icon { width: 14px; height: 14px; }
.add-order { width: 100%; min-height: 47px; margin-top: 10px; border: 2px dashed #ffd0e2; border-radius: 14px; color: var(--pink); background: #fff8fb; font-size: 12px; font-weight: 800; cursor: pointer; text-transform: uppercase; }
.cart-total { display: flex; justify-content: space-between; align-items: flex-end; margin: 21px 0 13px; padding-top: 19px; border-top: 1px solid var(--line); }
.cart-total small { color: #8c8f9f; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.cart-total strong { font: 800 25px/1 "Plus Jakarta Sans", system-ui, sans-serif; }
.empty-state { padding: 34px 10px; text-align: center; }
.empty-state .empty-icon { margin-bottom: 12px; font-size: 36px; }
.empty-state .empty-icon .app-icon { width: 36px; height: 36px; margin: 0 auto; color: var(--pink); }
.empty-state p { margin: 8px auto 0; max-width: 300px; color: #838796; font-size: 12px; line-height: 1.55; }

.checkout-panel { padding: 31px 28px; }
.saved-data, .order-summary, .payment-card, .terms-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.saved-data { display: grid; grid-template-columns: auto 1fr auto; gap: 13px; align-items: start; margin-bottom: 12px; padding: 17px; background: #fdfdfd; }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: #fff; background: var(--pink); box-shadow: 0 7px 14px rgba(255,43,133,.2); }
.avatar .app-icon { width: 22px; height: 22px; }
.saved-data small { color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.saved-data strong { display: block; margin: 5px 0; font-size: 14px; }
.saved-lines { color: #7c8090; font-size: 11px; line-height: 1.7; }
.text-button { border: 0; color: #626676; background: transparent; cursor: pointer; font-size: 10px; }
.order-summary { margin-bottom: 14px; padding: 16px; }
.summary-title { margin-bottom: 13px; color: #6f7383; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.summary-line { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.summary-line:last-of-type { border-bottom: 0; }
.summary-line small { color: #8d90a0; font-size: 10px; }
.summary-line strong { display: block; margin-top: 4px; font-size: 12px; }
.summary-line em { color: #8d90a0; font-size: 10px; font-style: normal; text-align: right; }
.summary-line .line-price { font-size: 14px; font-weight: 800; }
.summary-subtotal { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed var(--line); color: #686c7c; font-size: 12px; }
.summary-grand { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 16px; }
.summary-grand small { color: #8c8f9f; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.summary-grand strong { font: 800 27px/1 "Plus Jakarta Sans", system-ui, sans-serif; }
.payment-card { display: flex; align-items: center; gap: 12px; margin-top: 9px; padding: 15px; border: 2px solid var(--pink); background: #fff9fb; }
.pix-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: #fff; background: #14b881; font-size: 21px; }
.payment-card strong { font-size: 14px; }
.instant-tag { margin-left: 6px; padding: 4px 7px; border-radius: 999px; color: #087d5a; background: #d7f7eb; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.payment-card small { display: block; margin-top: 5px; color: #7f8392; font-size: 10px; }
.terms-card { display: flex; gap: 11px; align-items: flex-start; margin-top: 12px; padding: 14px; border: 2px solid #ffa9cd; color: #777b8b; font-size: 10px; line-height: 1.5; }
.terms-card input { accent-color: var(--pink); }
.terms-card a { color: #22242c; text-decoration: underline; }

.orders-panel { max-width: 620px; margin: 0 auto; }
.orders-search { display: flex; gap: 9px; margin: 12px 0 23px; }
.orders-search input { flex: 1; min-width: 0; min-height: 52px; padding: 0 15px; border: 1px solid var(--line); border-radius: 14px; outline: none; }
.orders-search input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,43,133,.1); }
.orders-search .primary-button { min-width: 110px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.how-card { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: #fafafd; }
.how-number { display: grid; place-items: center; width: 26px; height: 26px; margin-bottom: 11px; border-radius: 8px; color: var(--pink); background: var(--pink-soft); font-size: 11px; font-weight: 800; }
.how-card strong { display: block; margin-bottom: 5px; font-size: 11px; }
.how-card small { color: #9295a4; font-size: 9px; line-height: 1.45; }
.order-result { margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; }
.order-result-top { display: flex; justify-content: space-between; gap: 12px; }
.order-code { color: #8c8f9d; font-size: 10px; }
.order-status { padding: 5px 9px; border-radius: 999px; color: #8a5c00; background: #fff3ca; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.order-result h3 { margin: 9px 0 5px; font-size: 14px; }
.order-result p { margin: 0; color: #858897; font-size: 10px; }
.progress { height: 7px; margin-top: 13px; border-radius: 999px; overflow: hidden; background: #eff0f4; }
.progress span { display: block; width: 18%; height: 100%; border-radius: inherit; background: var(--pink); }

.support-stack { position: fixed; right: 0; bottom: 56px; z-index: 15; display: grid; gap: 10px; }
.support-fab { display: grid; place-items: center; width: 58px; height: 56px; border: 0; border-radius: 18px 0 0 18px; color: #fff; box-shadow: 0 10px 24px rgba(28,34,47,.16); cursor: pointer; }
.support-fab .app-icon { width: 24px; height: 24px; }
.whatsapp-fab { background: #28ce89; }
.chat-fab { background: var(--pink); }
.support-popover { position: fixed; right: 68px; bottom: 66px; z-index: 14; width: 240px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.support-popover strong { display: block; margin-bottom: 5px; font-size: 13px; }
.support-popover p { color: #808392; font-size: 10px; line-height: 1.5; }
.support-popover a { display: flex; align-items: center; justify-content: center; min-height: 40px; border-radius: 11px; color: #fff; background: #1fbd7e; font-size: 12px; font-weight: 800; }

.toast { position: fixed; left: 50%; bottom: 25px; z-index: 80; transform: translateX(-50%); padding: 12px 17px; border-radius: 12px; color: #fff; background: #202633; box-shadow: 0 12px 30px rgba(25,29,39,.24); font-size: 12px; animation: toast-in .2s ease; }
.pix-modal { text-align: center; padding: 9px 0 2px; }
.pix-symbol-large { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 16px; border-radius: 20px; color: #fff; background: #14b881; font-size: 32px; }
.pix-modal h2 { margin-bottom: 7px; }
.pix-modal p { color: #7c8090; font-size: 12px; line-height: 1.55; }
.pix-code { margin: 16px 0; padding: 14px; border: 1px dashed #b9bdc9; border-radius: 12px; word-break: break-all; color: #5d6170; background: #fafafd; font: 10px/1.5 monospace; }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.985); } }
@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 8px); } }
@keyframes heroWordBlurUp {
  0% { opacity: 0; filter: blur(14px); transform: translateY(90%) scale(.96); }
  8% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  23% { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
  32% { opacity: 0; filter: blur(12px); transform: translateY(-85%) scale(.98); }
  100% { opacity: 0; filter: blur(12px); transform: translateY(-85%) scale(.98); }
}
@keyframes metricPopIn {
  0% { opacity: 0; transform: translate3d(0,10px,0) rotate(0) scale(.94); }
  100% { opacity: 1; transform: translate3d(0,0,0) rotate(var(--tilt)) scale(1); }
}
@keyframes metricFloatA { 0%,100% { transform: translate3d(0,0,0) rotate(var(--tilt)); } 50% { transform: translate3d(0,-7px,0) rotate(var(--tilt)); } }
@keyframes metricFloatB { 0%,100% { transform: translate3d(0,0,0) rotate(var(--tilt)); } 50% { transform: translate3d(0,7px,0) rotate(var(--tilt)); } }
@keyframes metricFloatC { 0%,100% { transform: translate3d(0,0,0) rotate(var(--tilt)); } 50% { transform: translate3d(6px,-5px,0) rotate(var(--tilt)); } }
@keyframes metricFloatD { 0%,100% { transform: translate3d(0,0,0) rotate(var(--tilt)); } 50% { transform: translate3d(-6px,5px,0) rotate(var(--tilt)); } }
@keyframes metricNumberPulse { 0% { transform: scale(1); } 38% { transform: scale(1.22); } 68% { transform: scale(.97); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-word-rotate > span { opacity: 0; filter: none; transform: none; animation: none !important; }
  .home-hero .hero-word-rotate > span:first-child { opacity: 1; }
  .metric-badge { opacity: 1; transform: rotate(var(--tilt)); animation: none !important; }
  .metric-number, .metric-number.is-metric-updating { color: inherit; transform: none; animation: none !important; transition: none; }
}

@media (max-width: 760px) {
  .site-shell { padding: 24px 14px 24px; }
  .topbar { min-height: 38px; margin-bottom: 0; gap: 10px; }
  .brand img { width: 132px; height: 38px; }
  .top-actions { gap: 8px; }
  .pill-button { min-height: 38px; padding: 8px 12px; font-size: 12px; }
  .pill-button .icon { font-size: 14px; }
  .pill-button .count { font-size: 10px; }
  .panel { padding: 20px; border-radius: 24px; }
  .panel h1 { font-size: 25.92px; line-height: 1.1; }
  .choice-card { min-height: 185px; padding: 16px; }
  .choice-desc { min-height: 32px; font-size: 11px; }
  .choice-title { font-size: 14px; }
  .actions { grid-template-columns: .68fr 1fr; margin-top: 25px; }
  .trust-row { gap: 6px; }
  .trust-item { min-height: 36px; font-size: 9px; }
  .home-shell .topbar { margin-bottom: 0; }
  .home-hero { height: 300px; padding: 90px 0 0; }
  .home-hero h1 { margin-bottom: 13px; font-size: 38px; line-height: 1.04; }
  .home-hero p { max-width: 335px; font-size: 12px; line-height: 1.55; }
  .metric-badge { grid-template-columns: 32px 1fr auto; gap: 7px; min-width: 146px; height: 52px; padding: 7px 9px; border-radius: 13px; }
  .metric-badge > span { width: 32px; height: 32px; border-radius: 9px; font-size: 17px; }
  .metric-badge b { font-size: 12px; }
  .metric-badge small { font-size: 7px; }
  .metric-badge em { font-size: 8px; }
  .metric-one { top: 8px; left: 2px; }
  .metric-two { top: 12px; right: 3px; }
  .metric-three { left: 5px; bottom: 8px; }
  .metric-four { right: 4px; bottom: 9px; }
  .networks { grid-template-columns: 1fr; margin-top: 12px; }
  .home-trust { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .home-trust .trust-card { min-height: 100px; padding: 8px 5px; }
  .checkout-panel { padding: 20px; }
  .how-grid { grid-template-columns: 1fr; }
  .support-stack { bottom: 132px; }
  .support-fab { width: 56px; height: 55px; }
  .support-popover { right: 64px; bottom: 132px; }
}

@media (max-width: 430px) {
  .site-shell { padding: 18px 12px 22px; }
  .topbar { min-height: 36px; gap: 8px; }
  .brand img { width: 124px; height: 36px; }
  .top-actions { gap: 6px; }
  .pill-button { min-height: 36px; padding: 7px 10px; font-size: 11px; }
  .home-hero { height: 280px; padding-top: 82px; }
  .home-hero h1 { margin-bottom: 11px; font-size: 32px; line-height: 1.03; }
  .home-hero p { max-width: 285px; font-size: 11px; line-height: 1.5; }
  .metric-badge { grid-template-columns: 28px 1fr auto; gap: 6px; min-width: 130px; height: 48px; padding: 6px 7px; border-radius: 12px; }
  .metric-badge > span { width: 28px; height: 28px; border-radius: 8px; }
  .metric-badge > span .app-icon { width: 16px; height: 16px; }
  .metric-badge b { font-size: 11px; }
  .metric-badge small { margin-bottom: 2px; font-size: 6px; }
  .metric-badge em { font-size: 7px; }
  .metric-one { top: 5px; left: 1px; }
  .metric-two { top: 8px; right: 1px; }
  .metric-three { left: 2px; bottom: 5px; }
  .metric-four { right: 2px; bottom: 6px; }
  .networks { gap: 10px; margin-top: 12px; }
  .network-card { min-height: 72px; padding: 11px; gap: 10px; }
  .social-mark { flex-basis: 44px; width: 44px; height: 44px; }
  .network-card strong { margin-bottom: 3px; font-size: 13px; }
  .network-card small { font-size: 9px; white-space: nowrap; }
  .network-arrow { flex-basis: 32px; width: 32px; height: 32px; }
  .category-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-icon { margin-bottom: 15px; }
  .service-stats { gap: 7px; }
  .trust-item { flex-direction: column; gap: 2px; min-height: 48px; text-align: center; }
  .modal-body { padding: 14px; }
  .summary-line { grid-template-columns: 1fr auto; }
  .summary-line em { display: none; }
  .saved-data { grid-template-columns: auto 1fr; }
  .saved-data .text-button { grid-column: 2; justify-self: start; padding: 0; }
  .orders-search { flex-direction: column; }
}

@media (max-width: 380px) {
  .top-actions .pill-button {
    flex: 0 0 36px;
    width: 36px;
    min-width: 36px;
    padding: 0;
  }
  .top-actions .pill-button > span:not(.icon):not(.count) { display: none; }
}
