:root {
  --bg: #FBF7FD;
  --bg-soft: #F3E9FB;
  --card: #FFFFFF;
  --purple-deep: #5B2E8C;
  --purple: #7B45B8;
  --purple-mid: #9B6FD1;
  --purple-light: #E4D3F5;
  --gold: #EFB94C;
  --ink: #2E1A47;
  --ink-soft: #7A6B8C;
  --line: #E8DAF5;
  --whatsapp: #3FBE5D;
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 40px -20px rgba(91, 46, 140, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a.btn {
  font: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 253, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 218, 245, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.logo .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--purple-light), #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(91, 46, 140, 0.08), inset 0 0 0 1px rgba(232, 218, 245, 0.8);
}

.logo .mark svg {
  width: 20px;
  height: 20px;
  color: var(--purple-deep);
}

.logo small {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-links {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--purple);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
  will-change: auto;
  letter-spacing: -0.01em;
}

.btn:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(63, 190, 93, 0.55);
}

.btn-whatsapp:hover {
  box-shadow: 0 14px 28px -8px rgba(63, 190, 93, 0.7);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-deep);
  border: 1.5px solid var(--purple-mid);
}

.btn-ghost:hover {
  background: var(--purple-light);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.icon-wa {
  width: 18px;
  height: 18px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  min-width: 18px;
  min-height: 18px;
}

.hero {
  padding: 56px 0 44px;
}

.hero-grid {
  display: grid;
  gap: 48px;
}

.hero h1,
.hero h2,
.hero h3,
.display {
  font-family: 'Fraunces', serif;
  color: var(--purple-deep);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(32px, 7.5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--purple);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-light);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lede {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.blob-1 {
  width: 260px;
  height: 260px;
  background: var(--purple-light);
  top: 0;
  left: -12px;
  opacity: 0.5;
}

.blob-2 {
  width: 180px;
  height: 180px;
  background: #FFF0D6;
  bottom: 16px;
  right: -4px;
  opacity: 0.7;
}

.hero-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px -14px rgba(91, 46, 140, 0.32);
}

.hero-icon svg {
  width: 18px;
  height: 18px;
  color: var(--purple);
}

.phone {
  position: relative;
  width: 220px;
  height: 440px;
  background: linear-gradient(160deg, #ffffff, #F5EFFE);
  border-radius: 42px;
  box-shadow: 0 24px 48px -12px rgba(91, 46, 140, 0.16), 0 0 0 1px var(--line);
  padding: 14px;
  z-index: 3;
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #6B3FA0, #9B6FD1 55%, #C9A6E8);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 24px 18px;
}

.phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 2%);
}

.phone-eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 700;
  z-index: 1;
}

.phone-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  margin: 6px 0 2px;
  z-index: 1;
}

.phone-sub {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  z-index: 1;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.phone-sub svg {
  width: 16px;
  height: 16px;
  color: #F8C7E7;
}

.phone-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 11.5px;
  font-weight: 600;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.phone-btn {
  margin-top: 12px;
  background: #fff;
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 100px;
  z-index: 1;
  animation: pulseBtn 2.4s ease-in-out infinite;
}

.sticker {
  position: absolute;
  top: 24px;
  right: -6px;
  background: var(--gold);
  color: #4a2e00;
  font-weight: 800;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  transform: rotate(8deg);
  box-shadow: 0 12px 28px -6px rgba(217, 166, 20, 0.32);
  z-index: 4;
  animation: floatSticker 5s ease-in-out infinite;
}

.hero-icon,
.sparkle {
  position: absolute;
}

.heart-float {
  position: absolute;
  width: 24px;
  height: 24px;
  color: rgba(123, 69, 184, 0.8);
  opacity: 0.8;
  animation: driftHeart 7s ease-in-out infinite;
}

.heart-float svg {
  width: 100%;
  height: 100%;
}

.heart-float-1 {
  top: 12%;
  left: 6%;
}

.heart-float-2 {
  top: 60%;
  left: 0%;
  animation-delay: 1.5s;
}

.heart-float-3 {
  top: 78%;
  left: 80%;
  animation-delay: 0.8s;
}

.box-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
}

.price-prefix {
  color: rgba(255, 255, 255, 0.8);
}

.sticker-price {
  font-size: 16px;
}

.boxes-desc {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 22px;
}

.card-grid-mt {
  margin-top: 24px;
}

.section--soft {
  background: var(--bg-soft);
}

.sparkle-1 {
  top: 16px;
  left: 8%;
}

.sparkle-2 {
  bottom: 20px;
  right: 10%;
}

.sparkle-3 {
  top: 30%;
  right: 20%;
}

.prefix-featured {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-deep);
  box-shadow: 0 8px 20px -8px rgba(91, 46, 140, 0.3);
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}

.sparkle svg {
  width: 18px;
  height: 18px;
  color: var(--purple);
  opacity: 0.7;
}

@keyframes floatPhone {0%,100%{transform:translateY(0) rotate(-1.2deg)}50%{transform:translateY(-16px) rotate(1deg)}}
@keyframes pulseBtn {0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,.5)}50%{box-shadow:0 0 0 8px rgba(255,255,255,0)}}
@keyframes floatSticker {0%,100%{transform:rotate(8deg) translateY(0)}50%{transform:rotate(4deg) translateY(-10px)}}
@keyframes driftHeart {0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-18px) rotate(8deg)}}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  contain: layout style paint;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.badge {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--purple-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
}

.card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--purple-deep);
}

.price .cents {
  font-size: 16px;
}

.price .big {
  font-size: 28px;
}

.price .prefix {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  display: inline;
}

.card-cta {
  background: var(--purple-light);
  color: var(--purple-deep);
}

.card-cta:hover {
  background: var(--purple-mid);
  color: #fff;
}

.card.featured {
  background: linear-gradient(160deg, #6B3FA0 0%, #8B54C8 100%);
  border: none;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 32px -12px rgba(91, 46, 140, 0.32);
}

.card.featured h3,
.card.featured .price {
  color: #fff;
}

.card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.card.featured .badge {
  background: rgba(255, 255, 255, 0.18);
}

.card.featured .price-row {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.card.featured .card-cta {
  background: #fff;
  color: var(--purple-deep);
}

.card.featured .card-cta:hover {
  background: var(--gold);
  color: #4a2e00;
}

.card.featured .ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #4a2e00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 16px -6px rgba(217, 166, 20, 0.4);
  z-index: 10;
}

.boxes-wrap {
  background: linear-gradient(180deg, #F3E9FB 0%, #FBF7FD 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  gap: 32px;
}

.boxes-wrap .box-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.box-shape {
  aspect-ratio: 1/1.1;
  border-radius: 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px -8px rgba(91, 46, 140, 0.2);
  transition: transform .25s ease;
  contain: layout style paint;
}

.box-shape:hover {
  transform: translateY(-4px) rotate(-2deg);
}

.box-shape:nth-child(2) {
  transform: translateY(-10px);
}

.box-shape:nth-child(2):hover {
  transform: translateY(-14px) rotate(2deg);
}

.box-shape svg {
  width: 42px;
  height: 42px;
  color: var(--purple);
}

.boxes-info .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 12px 24px;
  margin: 20px 0 28px;
}

.boxes-info .price-tag .price {
  font-size: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag-list span {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all .2s ease;
}

.tag-list span:hover {
  background: var(--purple-light);
  border-color: var(--purple-mid);
}

.combo-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
  contain: layout style paint;
}

.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.combo-card .tier {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
}

.combo-card h3 {
  font-size: 26px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
}

.combo-card ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.combo-card li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.combo-card li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.combo-card.highlight {
  background: linear-gradient(160deg, #6B3FA0 0%, #8B54C8 100%);
  border: none;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 32px -12px rgba(91, 46, 140, 0.32);
}

.combo-card.highlight h3,
.combo-card.highlight .price {
  color: #fff;
}

.combo-card.highlight li {
  color: rgba(255, 255, 255, 0.88);
}

.combo-card.highlight .tier {
  color: var(--gold);
}

.combo-card.highlight .price-row {
  border-top-color: rgba(255, 255, 255, 0.25);
}

.combo-note {
  text-align: center;
  max-width: 680px;
  margin: 44px auto 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, #6B3FA0 0%, #A971D9 100%);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

footer {
  padding: 56px 0 32px;
  text-align: center;
}

.foot-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0 28px;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 15px;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  transition: color .2s ease;
}

.foot-links a:hover {
  color: var(--purple);
}

.foot-links a svg {
  width: 18px;
  height: 18px;
  color: var(--purple);
}

.foot-note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.divider-line {
  width: 60px;
  height: 3px;
  background: var(--purple-light);
  border-radius: 3px;
  margin: 0 auto 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
  margin: 72px 0;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: var(--purple-deep);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 600px) {
  .phone {
    animation: none !important;
  }
  .sticker {
    animation: none !important;
  }
  .heart-float {
    animation: none !important;
  }
  .sparkle {
    display: none;
  }
}

@media (min-width: 700px) {
  .hero {
    padding: 68px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .boxes-wrap {
    padding: 56px;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
  }

  .cta-banner {
    padding: 56px 48px;
  }
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    gap: 12px;
    padding: 16px 0;
  }

  .logo {
    font-size: 18px;
  }

  .logo .mark {
    width: 36px;
    height: 36px;
  }

  .logo .mark svg {
    width: 18px;
    height: 18px;
  }

  .hero {
    padding: 44px 0 32px;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .lede {
    font-size: 15px;
    margin-top: 14px;
  }

  .eyebrow {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .hero-cta {
    margin-top: 28px;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .trust {
    gap: 12px;
    margin-top: 28px;
  }

  .trust-item {
    font-size: 12.5px;
  }

  .phone {
    width: min(86vw, 200px);
    height: min(172vw, 400px);
  }

  .sticker {
    width: 76px;
    height: 76px;
    font-size: 10px;
  }

  .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
  }

  .card {
    padding: 24px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .price-row .btn {
    width: 100%;
    justify-content: center;
  }

  .card.featured .price-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .card.featured .price-row .btn {
    width: 100%;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .combo-card {
    padding: 24px;
  }

  .combo-card h3 {
    font-size: 20px;
  }

  .combo-card li {
    font-size: 14px;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .cta-banner h2 {
    font-size: clamp(22px, 6vw, 28px);
    margin-bottom: 12px;
  }

  .cta-banner p {
    font-size: 15px;
  }

  footer {
    padding: 44px 0 24px;
  }

  .foot-logo {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .foot-links {
    gap: 16px;
    margin: 18px 0 20px;
    font-size: 13px;
  }

  .foot-note {
    font-size: 12px;
  }
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .boxes-wrap {
    display: grid;
  }
}

@media (min-width: 1100px) {
  .hero {
    padding: 80px 0 72px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .section {
    padding: 80px 0;
  }

  .boxes-wrap {
    padding: 64px;
  }
}
