:root {
  --bg: #0a0a14;
  --surface: #12121e;
  --surface-2: #1a1a2a;
  --surface-3: #222236;
  --text: #f0f0ff;
  --muted: rgba(240, 240, 255, 0.62);
  --muted-2: rgba(240, 240, 255, 0.42);
  --muted-3: rgba(240, 240, 255, 0.24);
  --border: rgba(255, 255, 255, 0.08);
  --orange: #ff5a1f;
  --orange-2: #ff7b46;
  --green: #84cc16;
  --green-2: #a3e635;
  --cyan: #00dcff;
  --yellow: #facc15;
  --danger: #f87171;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --a11y-text-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  font-size: calc(100% * var(--a11y-text-scale, 1));
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Heebo", "Inter", sans-serif;
  overflow-x: hidden;
  font-size: 14px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

img,
video,
iframe {
  max-width: 100%;
}

*:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.85);
  outline-offset: 2px;
}

.app-shell {
  min-height: 100vh;
  background: var(--bg);
}

.page-shell {
  animation: pageFade 0.55s ease both;
}

.a11y-page-content {
  min-height: 100vh;
}

.a11y-skip-link {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-150%);
  z-index: 200;
  background: var(--orange);
  color: #000;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  transition: transform 0.2s ease;
}

.a11y-skip-link:focus,
.a11y-skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #000;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(10, 10, 20, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 90, 31, 0.1);
  box-shadow: 0 0 28px rgba(255, 90, 31, 0.28);
}

.brand-accent {
  color: var(--orange);
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

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

.icon-circle {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-circle.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.32);
  color: #25d366;
}

.icon-circle:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-green {
  background: var(--green);
  color: #111;
  box-shadow: 0 0 24px rgba(132, 204, 22, 0.34);
}

.btn-green:hover {
  background: var(--green-2);
  box-shadow: 0 0 34px rgba(132, 204, 22, 0.5);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 90, 31, 0.35);
}

.btn-orange:hover {
  background: var(--orange-2);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #20bd5a;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.header-call {
  padding: 12px 20px;
  font-size: 0.95rem;
}

.mobile-actions,
.mobile-menu {
  display: none;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 20, 0.98);
  padding: 8px 0 18px;
  animation: slideDown 0.28s ease both;
}

.mobile-menu nav {
  display: grid;
  gap: 0;
}

.mobile-menu .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1rem;
}

.mobile-cta-stack {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

main {
  min-height: 60vh;
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding: 72px 0;
}

.pkg-content-section > .container {
  padding-inline: 16px;
}

.section-top {
  padding-top: 104px;
}

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 10, 20, 0.7), rgba(10, 10, 20, 0.48), var(--bg)),
    url("images/bg.png") center/cover no-repeat;
}

.hero .orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.hero .orb.orange {
  top: 22%;
  right: 18%;
  width: 520px;
  height: 520px;
  background: rgba(255, 90, 31, 0.1);
  animation: floatOrb 12s ease-in-out infinite;
}

.hero .orb.green {
  bottom: 14%;
  left: 16%;
  width: 420px;
  height: 420px;
  background: rgba(132, 204, 22, 0.08);
  animation: floatOrb 15s ease-in-out infinite reverse;
}

.hero::after,
.arena-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 220, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 220, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(980px, calc(100% - 32px));
}

.hero-title-main {
  display: block;
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero-title-sub {
  display: block;
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--orange), #ff9a3d, #ffd54d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  color: var(--muted);
  margin: 18px auto 10px;
  max-width: 720px;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--muted-2);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-ctas,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.34);
  animation: bounceY 2s infinite;
  z-index: 1;
}

@keyframes bounceY {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.surface {
  background: var(--surface);
}

.surface-2 {
  background: var(--surface-2);
}

.surface-3 {
  background: var(--surface-3);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.display-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 900;
}

.section-subtitle {
  margin: 0 auto;
  color: var(--muted-2);
  max-width: 680px;
  font-size: 1.05rem;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 52px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--yellow);
}

.stats-grid,
.card-grid,
.package-grid,
.testimonial-grid,
.info-grid,
.detail-grid,
.upgrade-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
}

.panel,
.card,
.package-card,
.testimonial-card,
.info-card,
.glass-note,
.highlight-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.card,
.info-card,
.testimonial-card {
  padding: 24px;
}

.stats-card {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.stats-card .value {
  display: block;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 6px;
}

.stats-card .label {
  color: var(--muted-2);
  font-size: 0.95rem;
}

.reason-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.reason-card::before {
  content: attr(data-num);
  position: absolute;
  top: 14px;
  left: 22px;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
}

.reason-card.orange {
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.18), rgba(255, 90, 31, 0.05));
  border-color: rgba(255, 90, 31, 0.22);
}

.reason-card.green {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.16), rgba(132, 204, 22, 0.04));
  border-color: rgba(132, 204, 22, 0.16);
}

.reason-card.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.04));
  border-color: rgba(59, 130, 246, 0.16);
}

.reason-card.yellow {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.14), rgba(250, 204, 21, 0.04));
  border-color: rgba(250, 204, 21, 0.16);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
}

.icon-box.orange {
  background: rgba(255, 90, 31, 0.16);
  color: var(--orange);
}

.icon-box.green {
  background: rgba(132, 204, 22, 0.16);
  color: var(--green);
}

.icon-box.blue {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
}

.icon-box.yellow {
  background: rgba(250, 204, 21, 0.18);
  color: var(--yellow);
}

.package-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.package-card.orange:hover,
.package-card.orange {
  border-color: rgba(255, 90, 31, 0.28);
}

.package-card.cyan {
  border-color: rgba(0, 220, 255, 0.22);
}

.package-card.green {
  border-color: rgba(34, 197, 94, 0.22);
}

.package-card.blue {
  border-color: rgba(59, 130, 246, 0.22);
}

.package-card.pink {
  border-color: rgba(236, 72, 153, 0.22);
}

.package-media {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}

.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.package-card:hover .package-media img {
  transform: scale(1.05);
}

.package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 30, 0.95), rgba(18, 18, 30, 0));
}

.package-emoji {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  font-size: 1.8rem;
}

.package-caption {
  position: absolute;
  inset: auto 16px 14px;
  z-index: 1;
}

.package-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.package-meta,
.tiny,
.muted,
.muted-2,
.muted-3 {
  color: var(--muted-2);
}

.tiny {
  font-size: 0.82rem;
}

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

.muted-3 {
  color: var(--muted-3);
}

.cta-note {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.steps-line {
  position: relative;
}

.steps-line::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(255, 90, 31, 0.35), transparent);
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-badge {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
}

.step-circle {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  border: 2px solid rgba(255, 90, 31, 0.3);
  color: var(--orange);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 290px;
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.15);
  color: var(--orange);
  font-weight: 800;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pager-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
}

.pager-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.dot.active {
  width: 22px;
  background: var(--orange);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  opacity: 0.72;
}

.logo-item img {
  max-width: 110px;
  max-height: 32px;
  object-fit: contain;
}

.invert-logo {
  filter: brightness(0) invert(1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 132px 0 82px;
}

.page-hero.arena-grid {
  position: relative;
}

.page-hero-content {
  position: relative;
  z-index: 1;

}

.centered {
  text-align: center;
}

.page-lead {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 12px;
}

.page-subnote {
  color: var(--muted-3);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.content-column {
  width: min(100%, 80rem);
  margin: 0 auto;
  padding: 20px;
}

.content-wide {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.content-column h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.content-column p,
.content-column li,
.content-column .muted,
.content-column .muted-2,
.content-column .tiny,
.content-column .list-item,
.content-column .row-between,
.content-column label,
.content-column input,
.content-column textarea,
.content-column select {
  font-size: 0.92rem;
}

.content-column .tiny {
  font-size: 0.78rem;
}

.content-column p {
  margin: 0 0 8px;
  line-height: 1.55;
}

.content-column .table-like > p:last-child,
.content-column .panel p:last-child,
.content-column .gradient-note p:last-child,
.content-column .cyan-note p:last-child,
.content-column .simple-card p:last-child,
.content-column .info-card p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.video-frame,
.map-frame,
.gallery-main {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.gallery-main {
  position: relative;
  height: 420px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imageFade 0.4s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

.gallery-arrow.prev {
  right: 16px;
}

.gallery-arrow.next {
  left: 16px;
}

.thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-top: 14px;
}

.thumb {
  width: 82px;
  height: 58px;
  padding: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  overflow: hidden;
  opacity: 0.54;
  background: transparent;
}

.thumb.active {
  border-color: var(--orange);
  opacity: 1;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: grid;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
}

.check {
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 2px;
}

.warning {
  color: var(--danger);
}

.gradient-note {
  background: linear-gradient(135deg, rgba(255, 90, 31, 0.12), rgba(255, 90, 31, 0.02));
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: var(--radius);
  padding: 28px;
}

.cyan-note {
  background: linear-gradient(135deg, rgba(0, 220, 255, 0.08), rgba(255, 90, 31, 0.05));
  border: 1px solid rgba(0, 220, 255, 0.22);
  border-radius: var(--radius);
  padding: 28px;
}

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

.price-card,
.simple-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.price-value {
  color: var(--green);
  font-weight: 900;
  font-size: 1.25rem;
}

.table-like {
  display: grid;
  gap: 12px;
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-steps {
  display: grid;
  gap: 20px;
}

.about-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.about-step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.1);
  border: 2px solid rgba(255, 90, 31, 0.28);
  color: var(--orange);
  flex: 0 0 auto;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface-2);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
  white-space: pre-line;
}

.faq-answer[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.contact-card.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.32);
}

.map-frame {
  height: 220px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg);
}

.form-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-2);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface-3);
  color: #fff;
  padding: 14px 16px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.success-box {
  text-align: center;
  padding: 42px 26px;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
}

.accessibility-article {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 84px;
}

.accessibility-article h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.accessibility-article p,
.accessibility-article li {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.accessibility-article ul {
  margin: 0;
  padding-inline-start: 20px;
}

.statement-box {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 24px;
  text-align: center;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.floating-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 50;
  display: none;
  width: 100%;
  background: rgba(26, 26, 42, 0.96);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.floating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  direction: ltr;
}

.floating-item {
  padding: 12px 8px calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.floating-item:first-child {
  border-left: 0;
}

.floating-pill {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.floating-pill.orange {
  background: var(--orange);
}

.floating-pill.green {
  background: #25d366;
}

.floating-pill.dark {
  background: rgba(255, 255, 255, 0.12);
}

.floating-item small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  animation: fadeIn 0.2s ease both;
}

.modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 81;
  width: min(480px, calc(100% - 24px));
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  animation: modalIn 0.26s ease both;
}

.modal-strip {
  height: 6px;
  background: linear-gradient(to left, var(--orange), #fb923c, var(--orange));
}

.modal-inner {
  padding: 30px;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.a11y-trigger {
  position: fixed;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  z-index: 70;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  padding: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(0, 0, 0, 0.38);
  font-size: 16px;
  line-height: 1;
  flex: 0 0 52px;
}

.a11y-trigger svg {
  width: 26px !important;
  height: 26px !important;
  flex: 0 0 26px;
}

.a11y-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: min(360px, 100%);
  max-height: 100vh;
  overflow-y: auto;
  background: var(--surface);
  color: var(--text);
  border-radius: 0;
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.55);
  animation: a11yPanelIn 0.22s ease both;
}

.a11y-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.2s ease both;
}

.a11y-panel-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 3px solid var(--orange);
}

.a11y-panel-body {
  padding: 12px 16px 16px;
  display: grid;
  gap: 12px;
}

.a11y-group-title {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.a11y-size-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.a11y-size-btn,
.a11y-reset,
.a11y-link {
  flex: 1;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.a11y-size-btn:hover,
.a11y-reset:hover,
.a11y-link:hover {
  background: var(--surface-3);
  border-color: rgba(255, 90, 31, 0.4);
}

.a11y-size-value {
  min-width: 74px;
  padding: 10px 12px;
  border-radius: 16px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--orange);
}

.a11y-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  text-align: right;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.a11y-toggle:hover {
  background: var(--surface-3);
}

.a11y-toggle.on {
  background: rgba(255, 90, 31, 0.12);
  border-color: rgba(255, 90, 31, 0.5);
}

.a11y-toggle-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface-3);
  flex: 0 0 auto;
}

.a11y-toggle.on .a11y-toggle-icon {
  background: var(--orange);
  color: #fff;
}

.a11y-toggle-copy {
  flex: 1;
}

.a11y-toggle-copy strong {
  display: block;
  margin-bottom: 0;
}

.a11y-toggle-copy span {
  display: none;
}

.a11y-switch {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: var(--surface-3);
  position: relative;
  flex: 0 0 auto;
  transition: background 0.2s ease;
}

.a11y-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.a11y-toggle.on .a11y-switch {
  background: var(--orange);
}

.a11y-toggle.on .a11y-switch::after {
  transform: translateX(-18px);
}

.a11y-panel-body .table-like {
  gap: 7px;
}

.a11y-actions {
  display: grid;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

[data-reveal].reveal-in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="left"].reveal-in {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

[data-reveal="right"].reveal-in {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: translateY(18px) scale(0.97);
}

[data-reveal="scale"].reveal-in {
  transform: translateY(0) scale(1);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.4s; }

@keyframes pageFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.97); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes a11yPanelIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageFade {
  from { opacity: 0.35; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

.a11y-link {
  background: var(--orange);
  color: #000;
  font-weight: 800;
}

html.a11y-high-contrast .a11y-page-content {
  background: #000 !important;
  color: #fff !important;
}

html.a11y-high-contrast .a11y-page-content *:not(svg):not(path) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background-image: none !important;
}

html.a11y-high-contrast .a11y-page-content a,
html.a11y-high-contrast .a11y-page-content button {
  color: #ffff00 !important;
  text-decoration: underline !important;
}

html.a11y-high-contrast .a11y-page-content svg {
  color: #fff !important;
}

html.a11y-high-contrast .a11y-page-content svg * {
  fill: currentColor !important;
  stroke: currentColor !important;
}

html.a11y-invert .a11y-page-content {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-invert .a11y-page-content img,
html.a11y-invert .a11y-page-content video,
html.a11y-invert .a11y-page-content iframe,
html.a11y-invert .a11y-page-content picture {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-grayscale .a11y-page-content {
  filter: grayscale(1);
}

html.a11y-invert.a11y-grayscale .a11y-page-content {
  filter: invert(1) hue-rotate(180deg) grayscale(1);
}

html.a11y-invert.a11y-grayscale .a11y-page-content img,
html.a11y-invert.a11y-grayscale .a11y-page-content video,
html.a11y-invert.a11y-grayscale .a11y-page-content iframe,
html.a11y-invert.a11y-grayscale .a11y-page-content picture {
  filter: invert(1) hue-rotate(180deg);
}

html.a11y-highlight-links .a11y-page-content a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  outline: 2px dashed #ffd400 !important;
  outline-offset: 2px !important;
  background-color: rgba(255, 212, 0, 0.08) !important;
}

html.a11y-highlight-headings .a11y-page-content :is(h1, h2, h3, h4, h5, h6) {
  outline: 2px solid var(--cyan) !important;
  outline-offset: 4px !important;
  background-color: rgba(0, 220, 255, 0.08) !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
}

html.a11y-readable-font .a11y-page-content,
html.a11y-readable-font .a11y-page-content * {
  font-family: Arial, "Segoe UI", "Helvetica Neue", Helvetica, sans-serif !important;
  letter-spacing: 0.02em !important;
  word-spacing: 0.05em !important;
  line-height: 1.6 !important;
}

html.a11y-no-animations,
html.a11y-no-animations *,
html.a11y-no-animations *::before,
html.a11y-no-animations *::after {
  animation-duration: 0.001ms !important;
  animation-delay: 0ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  transition-delay: 0ms !important;
  scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 1180px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .upgrade-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-desktop,
  .header-actions {
    display: none;
  }

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

  .mobile-menu {
    display: block;
  }

  .split,
  .contact-layout,
  .footer-grid,
  .card-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .split .video-frame {
    order: -1;
  }

  .steps-line::before {
    display: none;
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .gallery-main {
    height: 320px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 67vh;
    padding-top: 60px;
  }

  .site-header {
    background: rgba(10, 10, 20, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-inner {
    min-height: 60px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }

  .brand-mark svg {
    width: 16px;
    height: 16px;
  }

  .mobile-actions {
    gap: 8px;
  }

  .mobile-actions .icon-circle {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    width: min(100%, calc(100% - 28px));
    padding-top: 16px;
  }

  .hero-title-main {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
    line-height: 0.92;
  }

  .hero-title-sub {
    margin-top: 6px;
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin: 16px auto 8px;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0 auto 24px;
    max-width: 340px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-ctas,
  .cta-row,
  .form-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-ctas .btn,
  .hero-ctas .btn-lg {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 0.95rem;
  }

  .stats-grid,
  .price-grid,
  .info-grid,
  .detail-grid,
  .upgrade-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }


  .gallery-main {
    height: 260px;
  }

  .a11y-panel {
    inset: 0;
    width: 100%;
    border-left: none;
    border-radius: 0;
  }

  .a11y-trigger {
    top: auto;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    right: 14px;
    transform: none;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .floating-bar {
    display: block;
  }

  .footer-grid {
    padding-bottom: 96px;
  }
}
   padding-bot