html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(248, 113, 113, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.10), transparent 22%),
    linear-gradient(180deg, #0b0c10 0%, #12151b 38%, #161a22 100%);
  color: #f8fafc;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.16;
}

.glow-ring {
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.24),
    0 0 70px rgba(220, 38, 38, 0.10);
}

.panel-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
}

.panel-red {
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.20), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 113, 113, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-2.jpg") center 22% / cover no-repeat;
  opacity: 0.62;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 13, 16, 0.28) 0%, rgba(12, 13, 16, 0.56) 44%, rgba(12, 13, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 13, 16, 0.58) 0%, rgba(12, 13, 16, 0.16) 40%, rgba(12, 13, 16, 0.52) 100%),
    radial-gradient(circle at 16% 18%, rgba(220, 38, 38, 0.22), transparent 20%);
}

.hero-noise {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 35%, rgba(255, 255, 255, 0.03));
  mix-blend-mode: screen;
  opacity: 0.18;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.text-glow {
  text-shadow: 0 0 30px rgba(248, 113, 113, 0.16);
}

.hero-headline {
  display: block;
}

.hero-word {
  display: inline-block;
  margin: 0 0.18em 0 0;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: heroWordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes heroWordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-word--accent {
  background: linear-gradient(120deg, #fff 0%, #fff 30%, #fca5a5 45%, #fff 60%, #fff 100%);
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation:
    heroWordReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    heroAccentShimmer 3.5s ease-in-out 1.2s infinite;
  animation-delay: var(--d, 0ms), calc(var(--d, 0ms) + 1.2s);
}

@keyframes heroAccentShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subheadline {
  opacity: 0;
  transform: translateY(14px);
  animation: heroSubReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 800ms;
}

@keyframes heroSubReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-word,
  .hero-word--accent,
  .hero-subheadline {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
    background-position: 0% 50%;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 9rem;
  height: 9rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.12);
  filter: blur(28px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 113, 113, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.feature-card--accent {
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.28), rgba(255, 255, 255, 0.06));
  border-color: rgba(248, 113, 113, 0.28);
}

.app-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(12px);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.app-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.10);
  filter: blur(36px);
  pointer-events: none;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.28);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-card--accent {
  border-color: rgba(239, 68, 68, 0.32);
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(239, 68, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-card__head {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.app-card--accent .app-card__badge {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.app-card__title {
  margin-top: 0.7rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.app-card__sub {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.78);
}

.app-card__list {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(226, 232, 240, 0.85);
}

.app-card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.app-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}

.compare-card {
  position: relative;
  padding: 1.1rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.compare-card:hover {
  border-color: rgba(239, 68, 68, 0.25);
  transform: translateY(-2px);
}

.compare-card__category {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fca5a5;
}

.compare-card__old {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.7);
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.4);
  text-decoration-thickness: 1px;
}

.compare-card__new {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.compare-card__new::before {
  content: "→";
  color: #ef4444;
  font-weight: 800;
  flex-shrink: 0;
}

.launch-offer {
  position: relative;
  background: linear-gradient(120deg, #000 0%, #b91c1c 35%, #ef4444 50%, #b91c1c 65%, #000 100%);
  background-size: 220% 220%;
  animation: launchOfferShift 6s ease-in-out infinite;
  box-shadow:
    0 22px 60px rgba(220, 38, 38, 0.18),
    0 0 0 1px rgba(239, 68, 68, 0.18);
}

@keyframes launchOfferShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.launch-offer__inner {
  position: relative;
  overflow: hidden;
}

.launch-offer__inner::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -10%;
  width: 30%;
  height: 180%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.06) 50%, transparent 70%);
  transform: rotate(8deg);
  animation: launchOfferSheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes launchOfferSheen {
  0%, 100% { transform: translateX(-30%) rotate(8deg); opacity: 0; }
  40% { opacity: 1; }
  60% { transform: translateX(380%) rotate(8deg); opacity: 0; }
}

.launch-offer__pulse {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle at top right, rgba(239, 68, 68, 0.40), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
  animation: launchOfferGlow 2.4s ease-in-out infinite;
}

@keyframes launchOfferGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.launch-offer__dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: #ef4444;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  animation: launchOfferPing 1.6s ease-out infinite;
}

@keyframes launchOfferPing {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    transform: scale(1);
  }
}

.launch-offer__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  vertical-align: -2px;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .launch-offer,
  .launch-offer__inner::before,
  .launch-offer__pulse,
  .launch-offer__dot {
    animation: none;
  }
}

.feature-icon {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.20);
}

.why-shell {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(239, 68, 68, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 32%, rgba(255, 255, 255, 0.02)),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.45;
}

.why-point {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
}

.why-point--accent {
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.24), rgba(255, 255, 255, 0.05));
  border-color: rgba(248, 113, 113, 0.24);
}

.why-point__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(220, 38, 38, 0.14);
  color: #f87171;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-visual {
  position: relative;
  min-height: 36rem;
}

.why-visual__frame {
  position: absolute;
  overflow: hidden;
  padding: 0.9rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 10, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 70px rgba(220, 38, 38, 0.10);
}

.why-visual__frame--primary {
  top: 3.5rem;
  right: 0;
  width: min(100%, 35rem);
  transform: rotate(-3deg);
}

.why-visual__frame--secondary {
  left: 0;
  bottom: 1.25rem;
  width: min(62%, 21rem);
  transform: rotate(5deg);
}

.why-visual__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-visual__stat,
.why-visual__badge {
  position: absolute;
  z-index: 2;
  max-width: 16rem;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  background: rgba(10, 12, 16, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.why-visual__stat {
  top: 0;
  left: 0;
}

.why-visual__badge {
  right: 1.5rem;
  bottom: 0;
}

.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-panel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  isolation: isolate;
}

.gallery-panel::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.gallery-info {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.gallery-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 68, 68, 0.32);
  background: rgba(239, 68, 68, 0.10);
  color: #fca5a5;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-pill__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  animation: galleryPing 1.6s ease-out infinite;
}

@keyframes galleryPing {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.gallery-caption {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.gallery-caption__count {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 165, 165, 0.85);
  font-variant-numeric: tabular-nums;
}

.gallery-caption__title {
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.gallery-caption__sub {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.75);
}

.gallery-controls {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.gallery-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}

.gallery-nav:hover {
  border-color: rgba(239, 68, 68, 0.55);
  background: linear-gradient(180deg, #ef4444, #dc2626);
  transform: translateY(-2px);
}

.gallery-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.gallery-progress__bar {
  height: 100%;
  width: 20%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f87171, #dc2626);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.45);
  transition: width 0.4s ease;
}

@media (max-width: 480px) {
  .gallery-thumbs {
    gap: 0.35rem;
  }
  .gallery-thumb {
    border-radius: 0.45rem;
  }
}

.site-footer__heading {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 0.85rem;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__col a {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(203, 213, 225, 0.78);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.site-footer__socials {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 232, 240, 0.82);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-footer__socials a:hover {
  color: #fff;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border-color: rgba(239, 68, 68, 0.5);
  transform: translateY(-2px);
}

.site-footer__base {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.7);
}

@media (min-width: 640px) {
  .site-footer__base {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.site-footer__powered a {
  font-weight: 700;
  color: #fca5a5;
  transition: color 0.2s ease;
}

.site-footer__powered a:hover {
  color: #ef4444;
}

.gallery-stage {
  position: relative;
  padding: 1.25rem;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-stage__glow {
  position: absolute;
  inset: -2rem;
  border-radius: 3rem;
  background:
    radial-gradient(circle at 25% 15%, rgba(220, 38, 38, 0.32), transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(248, 113, 113, 0.22), transparent 55%);
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.7;
  animation: galleryGlow 6s ease-in-out infinite;
}

.gallery-stage__orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.gallery-stage__orb--1 {
  top: -1.5rem;
  left: -1rem;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.45), rgba(220, 38, 38, 0.15));
  border: 1px solid rgba(248, 113, 113, 0.35);
  animation: galleryOrbFloat 7s ease-in-out infinite;
}

.gallery-stage__orb--2 {
  bottom: -1rem;
  right: -1.5rem;
  width: 6.5rem;
  height: 6.5rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.25), rgba(248, 113, 113, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.22);
  animation: galleryOrbFloat 8s ease-in-out -2s infinite reverse;
}

@keyframes galleryGlow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes galleryOrbFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(8px, -10px) rotate(180deg); }
}

.browser-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: layout paint;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, #1a1d24 0%, #0c0e13 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(248, 113, 113, 0.18),
    0 0 80px rgba(220, 38, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browser-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(248, 113, 113, 0.28),
    0 0 100px rgba(220, 38, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.browser-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-frame__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.browser-frame__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.browser-frame__dot--red    { background: #ff5f57; }
.browser-frame__dot--yellow { background: #febc2e; }
.browser-frame__dot--green  { background: #28c840; }

.browser-frame__url {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-frame__url svg {
  flex-shrink: 0;
  color: #4ade80;
}

.browser-frame__url-path {
  color: rgba(252, 165, 165, 0.85);
  font-weight: 700;
}

.browser-frame__chrome-spacer {
  width: 2.5rem;
  flex-shrink: 0;
}

.gallery-thumbs {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  pointer-events: none;
}

.gallery-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  border-color: rgba(239, 68, 68, 0.4);
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow:
    0 0 0 2px rgba(239, 68, 68, 0.35),
    0 12px 24px rgba(220, 38, 38, 0.25);
  transform: translateY(-1px);
}

.gallery-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.55rem;
  background: linear-gradient(180deg, transparent 60%, rgba(220, 38, 38, 0.18));
  pointer-events: none;
}

.gallery-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  contain: layout paint;
  border-radius: 0.9rem;
  background: #090b10;
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}

.gallery-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.65rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.form-input::placeholder {
  color: rgba(148, 163, 184, 0.55);
  font-size: 0.85rem;
}

.form-input:focus {
  outline: none;
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

textarea.form-input {
  min-height: 5rem;
  resize: vertical;
}

.form-input--error {
  border-color: rgba(251, 113, 133, 0.9) !important;
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.12);
  background: rgba(127, 29, 29, 0.14);
}

.form-error {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: #fda4af;
}

.lead-tick {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lead-form__head {
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1rem;
}

@media (min-width: 640px) {
  .lead-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lead-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lead-field--full {
  grid-column: 1 / -1;
}

.lead-field label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.85);
  letter-spacing: 0.02em;
}

.lead-field__req {
  color: #f87171;
}

.lead-field__optional {
  color: rgba(148, 163, 184, 0.6);
  font-weight: 500;
  font-size: 0.7rem;
}

.lead-captcha {
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.lead-captcha__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lead-captcha__question {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.lead-captcha__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(252, 165, 165, 0.85);
}

.lead-captcha__expr {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.lead-captcha__refresh {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.3s ease;
}

.lead-captcha__refresh:hover {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(220, 38, 38, 0.18);
  transform: rotate(180deg);
}

.lead-form__submit {
  margin-top: 1.25rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 30px rgba(220, 38, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form__submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.lead-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.lead-form__status {
  margin-top: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.10);
  color: #a7f3d0;
  font-size: 0.85rem;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.faq-shell {
  position: relative;
}

.faq-shell::before {
  content: "";
  position: absolute;
  inset: 2rem 1rem auto;
  height: 60%;
  background:
    radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.10), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(248, 113, 113, 0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.faq-grid {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: stretch;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.faq-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  padding: 1.1rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  height: 100%;
  box-sizing: border-box;
}

.faq-card:hover {
  border-color: rgba(239, 68, 68, 0.28);
  transform: translateY(-2px);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-card[open] {
  border-color: rgba(239, 68, 68, 0.4);
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.10), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(239, 68, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.faq-card__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.4rem;
  align-items: start;
}

.faq-card__summary::-webkit-details-marker {
  display: none;
}

.faq-card__category {
  grid-column: 1;
  grid-row: 1;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fca5a5;
}

.faq-card__question {
  grid-column: 1;
  grid-row: 2;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.faq-card__icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  position: relative;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.28);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card__icon::before,
.faq-card__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fca5a5;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.faq-card__icon::before {
  width: 0.7rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-card__icon::after {
  width: 2px;
  height: 0.7rem;
  transform: translate(-50%, -50%);
}

.faq-card[open] .faq-card__icon {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border-color: rgba(255, 255, 255, 0.18);
  transform: rotate(180deg);
}

.faq-card[open] .faq-card__icon::before,
.faq-card[open] .faq-card__icon::after {
  background: #fff;
}

.faq-card[open] .faq-card__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-card__body {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.85rem;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
  animation: faqReveal 0.3s ease both;
}

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

.faq-footer {
  position: relative;
  z-index: 1;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.faq-footer p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 1rem;
}

.faq-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 26px rgba(220, 38, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-footer__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.pricing-shell {
  position: relative;
}

.plan-card {
  position: relative;
  display: flex;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: rgba(248, 113, 113, 0.14);
  filter: blur(32px);
  pointer-events: none;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.plan-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 2.75rem 1.75rem 2.25rem;
  text-align: center;
}

.plan-card__eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #fca5a5;
  min-height: 0.85rem;
}

.plan-card__price {
  color: #ef4444;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.plan-card__period {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.plan-card__list {
  text-align: left;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.85);
}

.plan-card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}

.plan-card__button {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: auto;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.72rem;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.plan-card__button-wrap {
  margin-top: 1.5rem;
}

.plan-card__button:hover {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border-color: rgba(248, 113, 113, 0.4);
  transform: translateY(-1px);
}

.plan-card--featured {
  border-color: rgba(239, 68, 68, 0.3);
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(239, 68, 68, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.plan-card--featured .plan-card__button {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border-color: rgba(248, 113, 113, 0.4);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.3);
}

.plan-card--featured .plan-card__button:hover {
  background: linear-gradient(180deg, #f87171, #ef4444);
  transform: translateY(-1px);
}

.plan-card__period-note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(148, 163, 184, 0.85);
}

.billing-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 0.25rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.billing-toggle__option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.billing-toggle__option:hover {
  color: #fff;
}

.billing-toggle__option.is-active {
  color: #fff;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  box-shadow:
    0 8px 22px rgba(220, 38, 38, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.billing-toggle__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.billing-toggle__option:not(.is-active) .billing-toggle__badge {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.region-toggle {
  display: inline-flex;
  align-items: stretch;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.region-toggle__option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.region-toggle__option:hover {
  color: #fff;
}

.region-toggle__option.is-active {
  color: #fff;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.8), rgba(220, 38, 38, 0.9));
  box-shadow:
    0 6px 18px rgba(220, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.region-toggle__flag {
  font-size: 1rem;
  line-height: 1;
}

.region-toggle--compact {
  padding: 0.18rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.10);
}

.region-toggle--compact .region-toggle__option {
  padding: 0.32rem 0.55rem;
  gap: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.region-toggle--compact .region-toggle__flag {
  font-size: 0.95rem;
}

.region-toggle--compact .region-toggle__option.is-active {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  box-shadow:
    0 4px 12px rgba(220, 38, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@media (max-width: 640px) {
  .region-toggle--compact .region-toggle__label {
    display: none;
  }
  .region-toggle--compact .region-toggle__option {
    padding: 0.4rem 0.55rem;
  }
}

.addon-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(239, 68, 68, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 38, 38, 0.10), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(8px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .addon-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem 2.5rem;
  }
}

.addon-card__content {
  flex: 1;
}

.addon-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fca5a5;
}

.addon-card__title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.addon-card__text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.85);
}

.addon-card__highlight {
  display: inline-block;
  margin-left: 0.25rem;
  font-weight: 700;
  color: #fff;
}

.addon-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ef4444, #dc2626);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 28px rgba(220, 38, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.addon-card__button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(220, 38, 38, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.animate-fade-up {
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .plan-card__inner {
    padding-top: 4rem;
  }

  .why-shell {
    padding: 2rem;
  }

  .why-visual {
    min-height: 32rem;
  }
}

@media (max-width: 768px) {
  .why-shell {
    padding: 1.5rem;
  }

  .why-visual {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .why-visual__frame,
  .why-visual__stat,
  .why-visual__badge {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .gallery-shell {
    padding: 0.85rem;
    border-radius: 1.5rem;
  }

  .gallery-slide {
    padding: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .feature-card,
  .plan-card,
  .plan-card__button,
  .gallery-dot {
    animation: none;
    transition: none;
  }

  .gallery-track {
    scroll-behavior: auto;
  }
}
