:root {
  --bg: #f5fbff;
  --bg-strong: #d7eeff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-dark: #102448;
  --text: #163056;
  --text-muted: #4a6184;
  --brand-red: #ef294b;
  --brand-red-dark: #c81939;
  --brand-blue: #173b84;
  --brand-blue-soft: #3f6ec7;
  --line: rgba(22, 48, 86, 0.12);
  --shadow: 0 18px 48px rgba(18, 45, 91, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1320px, calc(100vw - 56px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(239, 41, 75, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(63, 110, 199, 0.18), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f0f7ff 40%, #ffffff 100%);
  min-height: 100vh;
}

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

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.34;
}

.site-shell::before {
  top: -140px;
  left: -120px;
  background: rgba(239, 41, 75, 0.25);
}

.site-shell::after {
  right: -120px;
  bottom: 80px;
  background: rgba(23, 59, 132, 0.18);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(22, 48, 86, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

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

.brand img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.footer-brand img {
  width: auto;
  height: 88px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--brand-red);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--brand-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--brand-red) 0%, #ff5461 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(239, 41, 75, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(239, 41, 75, 0.22);
}

.button--small {
  padding: 11px 18px;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 59, 132, 0.16);
  color: var(--brand-blue);
  box-shadow: none;
}

.button--light {
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-blue);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.hero,
.feature-strip,
.packages,
.audience,
.faq,
.contact {
  padding: 116px 0;
}

.hero-grid,
.audience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px;
  align-items: start;
}

.hero-copy,
.hero-visual,
.feature-card,
.package-card,
.audience-copy,
.audience-panel,
.contact-copy,
.contact-panel,
.faq-item,
.info-card {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(239, 41, 75, 0.1);
  color: var(--brand-red-dark);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.hero h1,
.section-heading h2,
.audience-copy h2,
.contact-copy h2 {
  margin: 18px 0 16px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  max-width: 11ch;
}

.lead,
.section-heading p,
.audience-copy p,
.contact-copy p,
.feature-card p,
.package-card p,
.faq-item p,
.info-card p,
.contact-card li {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-copy,
.audience-copy,
.contact-copy {
  max-width: 620px;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-points,
.audience-list,
.contact-card ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.hero-points li,
.audience-list li,
.contact-card li {
  position: relative;
  padding-left: 30px;
}

.hero-points li::before,
.audience-list li::before,
.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--brand-red) 0 40%, transparent 42%),
    rgba(239, 41, 75, 0.18);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.metric-card,
.feature-card,
.package-card,
.info-card,
.contact-card,
.faq-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 28px;
  min-height: 132px;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
}

.metric-card span {
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.visual-panel {
  position: relative;
  min-height: 720px;
  border-radius: 40px;
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.96)),
    var(--surface-strong);
  border: 1px solid rgba(23, 59, 132, 0.08);
  box-shadow: 0 28px 80px rgba(17, 48, 97, 0.12);
  overflow: hidden;
}

.visual-panel::before,
.visual-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.visual-panel::before {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -30px;
  background: rgba(239, 41, 75, 0.12);
}

.visual-panel::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -80px;
  background: rgba(23, 59, 132, 0.12);
}

.showcase-card {
  position: relative;
  z-index: 1;
}

.showcase-card {
  display: grid;
  gap: 22px;
  padding: 40px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 245, 255, 0.96));
  border: 1px solid rgba(23, 59, 132, 0.08);
  box-shadow: 0 22px 56px rgba(17, 48, 97, 0.1);
}

.card-tag,
.package-badge,
.package-speed-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-tag {
  background: rgba(23, 59, 132, 0.08);
  color: var(--brand-blue);
}

.card-tag--soft {
  background: rgba(239, 41, 75, 0.1);
  color: var(--brand-red-dark);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.showcase-speed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 59, 132, 0.08);
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-brand {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  align-items: center;
  padding: 14px 0 24px;
  border-bottom: 1px solid rgba(23, 59, 132, 0.08);
}

.showcase-brand img {
  width: 100%;
  max-width: 132px;
  height: auto;
  object-fit: contain;
}

.showcase-brand h3 {
  margin: 0 0 8px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.showcase-brand p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.showcase-highlight {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(23, 59, 132, 0.96), rgba(38, 84, 171, 0.94));
  color: #fff;
}

.showcase-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.showcase-highlight strong {
  display: block;
  margin-top: 14px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.showcase-highlight p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.showcase-price {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-red);
  font-weight: 800;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
}

.showcase-footer span {
  color: var(--text-muted);
  line-height: 1.6;
}

.showcase-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(239, 41, 75, 0.1);
  color: var(--brand-red-dark);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
}

.section-heading h2,
.audience-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}

.feature-grid,
.package-grid,
.faq-list {
  display: grid;
  gap: 26px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.feature-card,
.info-card,
.contact-card {
  padding: 32px;
}

.feature-card h3,
.info-card h3,
.contact-card h3,
.package-card h3 {
  margin: 0 0 14px;
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
}

.packages {
  background:
    radial-gradient(circle at 10% 20%, rgba(239, 41, 75, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(232, 244, 255, 0.76), rgba(255, 255, 255, 0.96));
}

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

.package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 34px;
  background: rgba(255, 255, 255, 0.98);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.package-card:hover,
.package-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(18, 45, 91, 0.14);
  border-color: rgba(23, 59, 132, 0.16);
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue-soft));
}

.package-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -48px;
  top: -48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 41, 75, 0.12), transparent 66%);
  pointer-events: none;
}

.package-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4766 0%, #ef294b 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(239, 41, 75, 0.18);
}

.package-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 20px;
}

.package-head-copy {
  max-width: 22rem;
}

.package-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.package-badge {
  background: rgba(23, 59, 132, 0.09);
  color: var(--brand-blue);
}

.package-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 59, 132, 0.06);
  color: var(--brand-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.package-description {
  margin: 14px 0 0;
  max-width: 38ch;
}

.package-speed-orb {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 118px;
  min-width: 118px;
  height: 118px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(239, 41, 75, 0.12), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(239, 41, 75, 0.14);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package-speed-orb strong {
  font-family: "Bahnschrift", "Trebuchet MS", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand-red);
}

.package-speed-orb span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.package-price-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(23, 59, 132, 0.06);
  border: 1px solid rgba(23, 59, 132, 0.08);
}

.package-price-copy span,
.package-price-cycle {
  color: var(--text-muted);
  font-weight: 700;
}

.package-price-copy strong {
  display: block;
  margin: 8px 0 6px;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  color: var(--brand-blue);
}

.package-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.package-list li {
  position: relative;
  padding: 14px 16px 14px 38px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 59, 132, 0.06);
  color: var(--text-muted);
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--brand-red), #ffa6b3);
}

.package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(23, 59, 132, 0.08);
  color: var(--brand-blue);
  font-weight: 800;
}

.package-footer {
  display: grid;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.package-note {
  margin: 0;
  max-width: 36ch;
  color: var(--text-muted);
  line-height: 1.7;
}

.package-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 249, 255, 0.98));
  border: 1px solid rgba(23, 59, 132, 0.16);
  box-shadow: 0 28px 64px rgba(17, 48, 97, 0.14);
}

.package-card--featured::before {
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-red), #ff8a9d, var(--brand-blue-soft));
}

.package-card--featured::after {
  width: 180px;
  height: 180px;
  right: -56px;
  top: -52px;
  background: radial-gradient(circle, rgba(239, 41, 75, 0.16), transparent 66%);
}

.package-card--featured .package-chip {
  background: rgba(239, 41, 75, 0.1);
  color: var(--brand-red-dark);
}

.package-card--featured .package-badge {
  background: rgba(23, 59, 132, 0.08);
  color: var(--brand-blue);
}

.package-card--featured .package-speed-orb {
  background: linear-gradient(180deg, rgba(239, 41, 75, 0.18), rgba(255, 255, 255, 0.98));
  border-color: rgba(239, 41, 75, 0.2);
  box-shadow: 0 16px 28px rgba(239, 41, 75, 0.12);
}

.package-card--featured .package-action {
  background: linear-gradient(135deg, var(--brand-red) 0%, #ff5461 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(239, 41, 75, 0.18);
}

.audience-panel,
.contact-panel {
  display: grid;
  gap: 26px;
}

.info-card--glow {
  background: linear-gradient(135deg, rgba(23, 59, 132, 0.96), rgba(40, 84, 170, 0.94));
  color: #fff;
}

.info-card--glow p {
  color: rgba(255, 255, 255, 0.82);
}

.info-card--glow .card-tag {
  background: rgba(255, 255, 255, 0.16);
}

.info-card p + p,
.footer-note p + p {
  margin-top: 8px;
}

.info-card-actions {
  margin-top: 20px;
}

.faq-list {
  margin-top: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  padding: 32px;
}

.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.contact {
  padding-bottom: 124px;
}

.contact-card ul {
  margin-top: 18px;
}

.site-footer {
  padding: 38px 0 54px;
  border-top: 1px solid rgba(22, 48, 86, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand p,
.footer-note p {
  margin: 0;
  color: var(--text-muted);
}

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

@media (max-width: 1080px) {
  :root {
    --container: min(1320px, calc(100vw - 44px));
  }

  .hero-grid,
  .audience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .visual-panel {
    min-height: auto;
    padding: 32px;
  }

  .showcase-card {
    padding: 32px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1320px, calc(100vw - 32px));
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(23, 59, 132, 0.08);
    border-radius: 24px;
    box-shadow: 0 18px 60px rgba(17, 48, 97, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .metric-row,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .package-head {
    grid-template-columns: 1fr;
  }

  .package-speed-orb {
    width: 104px;
    min-width: 104px;
    height: 104px;
  }

  .package-footer {
    gap: 16px;
  }

  .footer-row,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .feature-strip,
  .packages,
  .audience,
  .faq,
  .contact {
    padding: 82px 0;
  }

  .brand img {
    height: 42px;
  }

  .footer-brand img {
    height: 72px;
  }

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

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

  .showcase-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-brand {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .showcase-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .visual-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .package-card,
  .feature-card,
  .faq-item,
  .info-card,
  .contact-card {
    padding: 26px;
  }

  .package-ribbon {
    position: static;
    margin-bottom: 18px;
    width: fit-content;
  }

  .package-price-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-card,
  .showcase-highlight {
    padding: 24px;
  }

  .hero h1,
  .section-heading h2,
  .audience-copy h2,
  .contact-copy h2 {
    letter-spacing: -0.02em;
  }

  .metric-card {
    min-height: auto;
  }

  .showcase-brand img {
    max-width: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-copy,
  .hero-visual,
  .feature-card,
  .package-card,
  .audience-copy,
  .audience-panel,
  .contact-copy,
  .contact-panel,
  .faq-item,
  .info-card {
    opacity: 1;
    transform: none;
  }
}
