:root {
  --cream: #FFF8F5;
  --blush: #F2C4CE;
  --rose: #B76E79;
  --rose-light: #E8B4BC;
  --lavender: #E8E0F0;
  --gold: #C9A227;
  --champagne: #F7E7CE;
  --text: #3D2A30;
  --text-muted: #8B6A72;
  --white: #ffffff;
  --glass: rgba(255, 248, 245, 0.75);
  --border-rose: rgba(183, 110, 121, 0.25);
  --shadow: 0 8px 32px rgba(183, 110, 121, 0.15);
  --shadow-lg: 0 20px 60px rgba(183, 110, 121, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(233, 30, 77, 0.15);
}

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

a {
  color: var(--rose);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-rose {
  background: linear-gradient(135deg, #FF3B5C, #E91E4D, #C1121F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Petals ---- */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 12px;
  height: 16px;
  background: var(--blush);
  border-radius: 50% 50% 50% 0;
  opacity: 0.4;
  animation: petalFall linear infinite;
}

.petal:nth-child(1) { left: 5%; animation-duration: 14s; animation-delay: 0s; }
.petal:nth-child(2) { left: 15%; animation-duration: 18s; animation-delay: 2s; }
.petal:nth-child(3) { left: 25%; animation-duration: 12s; animation-delay: 4s; }
.petal:nth-child(4) { left: 35%; animation-duration: 16s; animation-delay: 1s; }
.petal:nth-child(5) { left: 45%; animation-duration: 20s; animation-delay: 3s; }
.petal:nth-child(6) { left: 55%; animation-duration: 13s; animation-delay: 5s; }
.petal:nth-child(7) { left: 65%; animation-duration: 17s; animation-delay: 0.5s; }
.petal:nth-child(8) { left: 75%; animation-duration: 15s; animation-delay: 2.5s; }
.petal:nth-child(9) { left: 85%; animation-duration: 19s; animation-delay: 4.5s; }
.petal:nth-child(10) { left: 95%; animation-duration: 11s; animation-delay: 1.5s; }
.petal:nth-child(11) { left: 10%; animation-duration: 16s; animation-delay: 6s; }
.petal:nth-child(12) { left: 50%; animation-duration: 14s; animation-delay: 7s; }
.petal:nth-child(13) { left: 70%; animation-duration: 18s; animation-delay: 3.5s; }
.petal:nth-child(14) { left: 30%; animation-duration: 12s; animation-delay: 8s; }

@keyframes petalFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .petal { animation: none; display: none; }
  .nav__badge { animation: none; }
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__heart {
  animation: heartPulse 1.2s ease-in-out infinite;
  margin: 0 auto 16px;
}

.preloader__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 20px;
}

.preloader__bar {
  width: 120px;
  height: 3px;
  background: var(--blush);
  border-radius: 3px;
  margin: 0 auto;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--rose), var(--champagne));
  border-radius: 3px;
  animation: shimmer 1s ease-in-out infinite;
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---- Nav ---- */
.nav {
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.nav__heart {
  filter: drop-shadow(0 2px 8px rgba(233, 30, 77, 0.45));
}

.nav__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.nav__name em {
  font-style: italic;
  color: #E91E4D;
}

.nav__badge {
  display: block;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(193, 18, 31, 0.35));
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(242, 196, 206, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(232, 224, 240, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(247, 231, 206, 0.3) 0%, transparent 60%);
  z-index: 0;
}

.hero__orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.hero__orb--1 { width: 300px; height: 300px; background: var(--blush); top: 10%; left: -5%; animation: orbFloat 8s ease-in-out infinite; }
.hero__orb--2 { width: 250px; height: 250px; background: var(--lavender); top: 50%; right: -5%; animation: orbFloat 10s ease-in-out infinite reverse; }
.hero__orb--3 { width: 200px; height: 200px; background: var(--champagne); bottom: 10%; left: 40%; animation: orbFloat 12s ease-in-out infinite; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero__floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__float {
  position: absolute;
  font-size: 1.5rem;
  color: var(--rose);
  opacity: 0.2;
  font-weight: 300;
}

.hero__float:nth-child(1) { top: 20%; left: 8%; }
.hero__float:nth-child(2) { top: 35%; right: 12%; }
.hero__float:nth-child(3) { top: 60%; left: 15%; }
.hero__float:nth-child(4) { top: 75%; right: 20%; }
.hero__float:nth-child(5) { top: 45%; left: 45%; }

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 20px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #229ED9, #1a8bc7);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 24px;
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.hero__cta svg {
  width: 20px;
  height: 20px;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(34, 158, 217, 0.45);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.hero__title-accent {
  font-style: italic;
  background: linear-gradient(135deg, #FF4D6D, #E91E4D, #C1121F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

.hero__income {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 28px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__income-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__income-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #E91E4D;
}

.hero__income-suffix {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-rose);
  transition: transform var(--transition);
}

.hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__card-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  line-height: 0;
  filter: drop-shadow(0 4px 12px rgba(193, 18, 31, 0.4));
}

.hero__card-badge img {
  display: block;
  width: 56px;
  height: 56px;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

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

.section__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---- Benefits ---- */
.benefits {
  background: linear-gradient(180deg, transparent, rgba(242, 196, 206, 0.15));
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 28px 24px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow);
}

.benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Lifestyle ---- */
.lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lifestyle__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-rose);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.lifestyle__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.lifestyle__item figcaption {
  padding: 16px 20px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: var(--rose);
}

/* ---- CTA ---- */
.cta-section {
  padding: 60px 0;
}

.cta-box {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.1), rgba(247, 231, 206, 0.3));
  border: 1px solid var(--border-rose);
  border-radius: var(--radius);
}

.cta-box__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-box__text {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-btn--primary {
  background: linear-gradient(135deg, #229ED9, #1a8bc7);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.3);
}

.cta-btn--secondary {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
  color: var(--white);
  box-shadow: 0 6px 24px var(--shadow);
}

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

/* ---- SEO Content ---- */
.seo-content {
  background: rgba(232, 224, 240, 0.2);
}

.seo-content__grid {
  display: grid;
  gap: 32px;
}

.seo-content__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.seo-content__block {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-rose);
  border-radius: var(--radius);
}

.seo-content__block p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.seo-content__block p:last-of-type {
  margin-bottom: 0;
}

.seo-content__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-content__link {
  padding: 8px 16px;
  background: var(--blush);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rose);
  transition: background var(--transition);
}

.seo-content__link:hover {
  background: var(--rose-light);
}

/* ---- FAQ ---- */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border-rose);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  min-height: 48px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: color var(--transition);
  touch-action: manipulation;
}

.faq__question:hover {
  color: var(--rose);
}

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq__item.is-open .faq__answer-inner {
  padding: 0 24px 20px;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  position: relative;
  z-index: 5;
  padding: 8px 0 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  font-size: 0.875rem;
}

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

.breadcrumbs__link:hover {
  color: var(--rose);
}

.breadcrumbs__current {
  color: var(--rose);
  font-weight: 500;
}

.breadcrumbs__item:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: var(--text-muted);
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(180deg, transparent, rgba(183, 110, 121, 0.08));
  padding: 60px 0 100px;
  border-top: 1px solid var(--border-rose);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__logo img {
  width: 32px;
  height: 32px;
}

.footer__logo span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__col-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rose);
  margin-bottom: 12px;
}

.footer__col-list {
  list-style: none;
}

.footer__col-list li {
  margin-bottom: 8px;
}

.footer__col-list a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__col-list a:hover {
  color: var(--rose);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-rose);
  text-align: center;
}

.footer__age {
  display: inline-block;
  margin-top: 10px;
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(193, 18, 31, 0.3));
}

/* ---- Float bar ---- */
.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  gap: 0;
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(255, 248, 245, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-rose);
  box-shadow: 0 -4px 24px rgba(183, 110, 121, 0.15);
}

.float-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  transition: transform var(--transition);
  position: relative;
  overflow: hidden;
}

.float-bar__btn--manager {
  background: linear-gradient(135deg, #229ED9, #1a8bc7);
  margin-right: 8px;
}

.float-bar__btn--bot {
  background: linear-gradient(135deg, var(--rose), var(--rose-light));
}

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

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- Ripple ---- */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(2.5); opacity: 0; }
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

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

  .seo-content__grid--2 {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .nav {
    padding: 14px 0;
  }

  .nav__name {
    font-size: 1.2rem;
  }

  .hero__cta {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .cta-box {
    padding: 36px 20px;
  }

  .cta-box__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta-box__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .seo-content__block {
    padding: 24px 20px;
  }

  .petals .petal:nth-child(n+9) {
    display: none;
  }
}

@media (max-width: 640px) {
  .benefits__grid,
  .lifestyle__grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    padding: 48px 0 96px;
  }

  .hero__income {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__income-value {
    font-size: 1.75rem;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .faq__question {
    padding: 16px 18px;
    font-size: 0.9375rem;
  }

  .faq__item.is-open .faq__answer-inner {
    padding: 0 18px 16px;
    font-size: 0.9375rem;
  }

  .float-bar {
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .float-bar__btn {
    min-height: 48px;
    padding: 12px 14px;
  }

  .float-bar__btn span {
    font-size: 0.8125rem;
  }
}

@media (max-width: 380px) {
  .nav__badge {
    width: 38px;
    height: 38px;
  }

  .nav__name {
    font-size: 1.1rem;
  }

  .hero__title {
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .float-bar__btn {
    font-size: 0.8125rem;
    gap: 6px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .benefit-card:hover,
  .cta-btn:hover,
  .hero__cta:hover,
  .float-bar__btn:hover,
  .lifestyle__item:hover {
    transform: none;
  }

  .benefit-card:active,
  .cta-btn:active,
  .hero__cta:active {
    transform: scale(0.98);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero__grid {
    gap: 24px;
  }

  .preloader {
    display: none;
  }
}
