:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #4c1d95;
  --color-secondary: #be123c;
  --color-accent: #d97706;
  --color-mint: #0f766e;
  --color-ink: #171321;
  --color-muted: #5f5a6b;
  --color-border: #e8e1ec;
  --color-bg: #fffaf7;
  --color-soft: #f7f1ff;
  --color-warm: #fff1e7;
  --color-card: #ffffff;
  --color-lilac: #ede9fe;
  --shadow-sm: 0 10px 25px rgba(54, 38, 87, 0.08);
  --shadow-md: 0 20px 50px rgba(54, 38, 87, 0.14);
  --shadow-lg: 0 28px 70px rgba(54, 38, 87, 0.18);
  --radius: 8px;
  --container: 1120px;
  --focus: 0 0 0 3px rgba(124, 58, 237, 0.28);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, #fffaf7 0%, #ffffff 44%, #fff8fb 100%);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

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

h1 {
  font-size: 2.35rem;
  line-height: 1.02;
  margin-bottom: 1rem;
  max-width: 12ch;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--color-soft), rgba(255, 250, 253, 0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p {
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--color-primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 225, 236, 0.85);
  box-shadow: 0 8px 24px rgba(76, 29, 149, 0.04);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--color-ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  font-size: 0.8rem;
  box-shadow: var(--shadow-sm);
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 76px 0 0;
  z-index: 90;
  background: rgba(23, 19, 33, 0.42);
}

.nav-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: 88px 1rem auto 1rem;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  color: var(--color-ink);
  text-decoration: none;
  border-radius: var(--radius);
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: var(--color-soft);
  color: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.24);
  transition: transform 180ms var(--ease), background-color 180ms ease, box-shadow 180ms ease;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-1px);
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: 0 16px 34px rgba(109, 40, 217, 0.32);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.btn-secondary:hover {
  color: var(--color-primary-dark);
  background: #fff;
}

.btn-small {
  min-height: 44px;
  padding: 0.68rem 1rem;
  color: #fff !important;
}

.hero {
  min-height: calc(100dvh - 76px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(5rem, 9vw, 7rem);
  background:
    linear-gradient(135deg, rgba(247, 241, 255, 0.96) 0%, rgba(255, 250, 247, 0.94) 48%, rgba(255, 241, 231, 0.9) 100%);
  border-bottom: 1px solid rgba(232, 225, 236, 0.72);
}

.hero-grid,
.split {
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

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

.hero-text {
  font-size: 1.08rem;
  max-width: 620px;
  color: #41394f;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.hero-actions.center {
  justify-content: center;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.trust-list li,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #453d52;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-proof {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-proof div {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(232, 225, 236, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.06);
}

.hero-proof strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
  line-height: 1.1;
}

.hero-proof span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.product-preview {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 430px);
  margin-inline: auto;
  padding: 1.2rem;
  border: 1px solid rgba(232, 225, 236, 0.9);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.64)),
    linear-gradient(135deg, rgba(237, 233, 254, 0.72), rgba(255, 241, 231, 0.72));
  box-shadow: var(--shadow-lg);
}

.phone-mockup {
  width: min(100%, 300px);
  min-height: 545px;
  padding: 0.9rem;
  border: 9px solid #211a31;
  border-radius: 36px;
  background: #211a31;
  box-shadow: 0 22px 60px rgba(33, 26, 49, 0.28);
}

.phone-top {
  width: 96px;
  height: 18px;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  background: #3a304d;
}

.invite-screen {
  min-height: 482px;
  padding: 1.25rem;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 252, 0.92)),
    linear-gradient(135deg, #f9a8d4, #c4b5fd 55%, #fcd34d);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.82rem;
  text-align: center;
}

.invite-screen h2 {
  font-size: 1.85rem;
  margin-bottom: 0;
}

.invite-cover {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.invite-cover span {
  border-radius: 14px;
  background: linear-gradient(135deg, #c4b5fd, #f9a8d4 56%, #fde68a);
}

.invite-cover span:first-child {
  grid-row: span 2;
}

.invite-cover span:nth-child(2) {
  background: linear-gradient(135deg, #99f6e4, #c4b5fd);
}

.invite-cover span:nth-child(3) {
  background: linear-gradient(135deg, #fde68a, #f9a8d4);
}

.screen-label {
  color: var(--color-secondary);
  font-weight: 800;
  margin: 0;
}

.screen-card,
.screen-row span {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.screen-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.screen-card strong {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.countdown-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.countdown-row span {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.25rem;
  border-radius: var(--radius);
  background: rgba(76, 29, 149, 0.08);
  color: var(--color-muted);
  font-size: 0.75rem;
}

.countdown-row strong {
  color: var(--color-primary-dark);
  font-size: 1rem;
  line-height: 1;
}

.invite-screen button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--color-secondary);
  font-weight: 800;
}

.preview-note,
.check-panel,
.mini-dashboard {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.floating-card {
  display: none;
}

.preview-note {
  width: min(100%, 330px);
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
}

.preview-note span {
  color: var(--color-muted);
}

.mini-dashboard {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.mini-dashboard > div {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--color-bg);
}

.metric {
  display: block;
  color: var(--color-primary-dark);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.card-grid,
.pricing-grid,
.content-grid,
.template-grid {
  display: grid;
  gap: 1rem;
}

.card,
.price-card,
.template-card,
.occasion-panel {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.price-card:hover,
.template-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: var(--shadow-md);
}

.card a,
.template-card {
  font-weight: 800;
}

.template-card {
  min-height: 210px;
  color: var(--color-ink);
  text-decoration: none;
  align-content: end;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, #c4b5fd, #f9a8d4 55%, #fcd34d);
}

.template-card:nth-child(2) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, #99f6e4, #c4b5fd 55%, #f9a8d4);
}

.template-card:nth-child(3) {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, #fde68a, #f9a8d4 55%, #93c5fd);
}

.template-card span,
.occasion-panel span {
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.template-card strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
}

.feature-list div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-left: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature-list div::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--color-primary);
}

.feature-list strong {
  color: var(--color-ink);
}

.feature-list span {
  color: var(--color-muted);
}

.check-panel,
.panel-list {
  padding: 1.2rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-mint);
}

.price-card {
  position: relative;
  align-content: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card.highlighted {
  border-color: rgba(109, 40, 217, 0.42);
  box-shadow: var(--shadow-md);
}

.price-card.highlighted::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.price-card .btn {
  margin-top: auto;
}

.price {
  color: var(--color-ink);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.price-features {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.25rem;
  list-style: none;
}

.price-features li {
  position: relative;
  padding-left: 1.25rem;
  color: #453d52;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-mint);
}

.center-link {
  text-align: center;
  margin-top: 1.5rem;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(247, 241, 255, 0.95), rgba(255, 250, 247, 0.98));
}

.page-hero h1 {
  max-width: 13ch;
}

.occasion-panel {
  min-height: 260px;
  align-content: end;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, #f9a8d4, #c4b5fd 60%, #fde68a);
}

.occasion-panel.xv {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, #99f6e4, #c4b5fd 60%, #f9a8d4);
}

.occasion-panel.cumple {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, #fde68a, #93c5fd 60%, #f9a8d4);
}

.occasion-panel strong {
  font-size: 1.75rem;
  line-height: 1.14;
}

.steps {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(124, 58, 237, 0.32);
  box-shadow: var(--shadow-md);
}

summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 800;
}

summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-soft);
  color: var(--color-primary-dark);
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 1rem 1rem;
  margin: 0;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #3b0764 0%, var(--color-primary-dark) 52%, #881337 100%);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  opacity: 0.88;
}

.legal h1 {
  max-width: 100%;
}

.legal h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.not-found {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
}

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.site-footer nav {
  display: grid;
  gap: 0.5rem;
}

.site-footer a {
  color: var(--color-muted);
}

.site-footer .brand {
  color: var(--color-ink);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-text {
    font-size: 1.18rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .card-grid.three,
  .pricing-grid,
  .content-grid,
  .template-grid,
  .steps,
  .feature-list.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 920px) {
  h1 {
    font-size: 4.55rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-text {
    font-size: 1.24rem;
  }

  body.nav-open::before {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-menu a {
    padding: 0.55rem 0.75rem;
  }

  .hero-grid,
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .hero-copy {
    padding-right: 1rem;
  }

  .product-preview {
    justify-self: end;
  }

  .floating-card {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 0.15rem;
    max-width: 190px;
    padding: 0.82rem 0.95rem;
    border: 1px solid rgba(232, 225, 236, 0.94);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
  }

  .floating-card span {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .floating-card strong {
    color: var(--color-ink);
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .floating-card-top {
    top: 2.2rem;
    left: -1.25rem;
  }

  .floating-card-bottom {
    right: -1.25rem;
    bottom: 5.25rem;
  }

  .card-grid.three,
  .template-grid,
  .steps,
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
  }
}

@media (min-width: 1120px) {
  .pricing-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
