@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@700;900&display=swap");

/* General */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus {
  outline: 3px dotted var(--prim-color);
}

:root {
  /* Soft Luxury Romance Palette */
  --prim-color: #C4A484;        /* Champagne Gold */
  --prim-color-shade1: #B39373;
  --prim-color-shade2: #D5B595;
  --accent-color: #D4A5A5;      /* Dusty Rose */
  --secondary-color: #9CAF88;   /* Sage Green */
  --cream: #FDFBF9;             /* Warm Ivory Background */
  
  /* Semantic Colors */
  --background: #FDFBF9;
  --background-alt: #F7F3F0;
  --card-background: rgba(255, 255, 255, 0.7);
  --text-primary: #2D2926;
  --text-secondary: #5C5854;
  --text-muted: #A09B97;
  
  /* Shadows */
  --nav-shadow: 0 4px 20px rgba(196, 164, 132, 0.1);
  --card-shadow: 0 10px 30px rgba(196, 164, 132, 0.08);
  --card-shadow-hover: 0 15px 40px rgba(196, 164, 132, 0.15);
  
  /* Border Radius */
  --border-radius: 20px;
  --border-radius-md: 16px;
  --border-radius-sm: 12px;
  
  /* Breakpoints */
  --tablet: 769px;
  --small-laptop: 1024px;
  --laptop: 1336px;
  --large-laptop: 1920px;
}

html {
  font-size: 16px;
  color: var(--text-primary);
  background-color: var(--background);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--prim-color);
  position: relative;
  display: inline-block;
  transition: 0.3s all ease;
}
a:hover {
  color: var(--prim-color-shade1);
}
a.btn:hover,
a.btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}
.with-arrow {
  text-decoration: none;
}
.with-arrow:hover {
  text-decoration: none;
}
.with-arrow::after {
  content: "";
  background-image: url("./imgs/chevrons-right.svg");
  height: 20px;
  width: 20px;
  position: absolute;
  display: inline-block;
  transition: 0.25s transform;
}
.with-arrow:hover::after {
  transform: translateX(5px);
}
p,
ul,
ol,
li {
  margin-bottom: 1em;
}
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3em;
  color: var(--text-primary);
}
h1 {
  font-size: 3.2em;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2.4em;
}
h3 {
  font-size: 1.6em;
}
img {
  width: 100%;
}
body {
  margin-top: 4.5em;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--text-primary);
}

hr {
  border: 0;
  border-bottom: 2px solid var(--background-alt);
}
.container {
  padding: 0 6%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.nav {
  padding: 1rem 0;
  box-shadow: var(--nav-shadow);
  position: fixed;
  width: 100%;
  z-index: 100;
  background: rgba(253, 251, 249, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  border-bottom: 1px solid rgba(196, 164, 132, 0.1);
}
.nav__container {
  display: flex;
  justify-content: space-between;
  max-width: 1800px;
}
.nav__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__left a {
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 8px;
}
.nav__left a:hover,
.nav__left a:active {
  text-decoration: none;
}
.nav__logo-name {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--prim-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo {
  margin-right: 4px;
}
.nav__hamburger {
  height: 32px;
  width: 32px;
  border: 0;
  position: relative;
  cursor: pointer;
  background: inherit;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.nav__hamburger:hover {
  background: var(--background-alt);
}
.nav__hamburger::after,
.nav__hamburger::before {
  content: "";
  position: absolute;
  height: 2px;
  display: block;
  width: 70%;
  left: 15%;
  background: var(--prim-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger::after {
  top: 35%;
}
.nav__hamburger::before {
  bottom: 35%;
}
.nav__mobile-nav {
  display: none;
  background-color: rgba(253, 251, 249, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196, 164, 132, 0.1);
}
.nav__mobiile-item {
  list-style-type: none;
  margin: 0.75em 0 0;
  text-align: center;
}
.nav__mobiile-item:last-child {
  margin-bottom: 0.5em;
}
.nav__mobile-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  transition: all 0.3s ease;
}
.nav__mobile-link:hover,
.nav__mobile-link:active {
  text-decoration: none;
  color: var(--prim-color);
  background: var(--background-alt);
}
.nav__nav-desktop {
  display: none;
}
.nav__desktop-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5em 1em;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
}
.nav__desktop-link:hover {
  color: var(--prim-color);
  background: var(--background-alt);
}
body.mobile-nav-open .nav__mobile-nav {
  display: block;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--card-shadow);
  padding: 0.5em 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  z-index: 10;
  border: 1px solid rgba(196, 164, 132, 0.1);
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  margin: 0;
}
.dropdown-menu a {
  display: block;
  padding: 0.75em 1.25em;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  background: var(--background-alt);
  color: var(--prim-color);
}

/* Header */
.header {
  background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
  position: relative;
  overflow: hidden;
}
.header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(196, 164, 132, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 165, 165, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.header__container {
  display: flex;
  flex-direction: column;
  padding-top: 6em;
  padding-bottom: 5em;
  position: relative;
  z-index: 1;
}

/* Utility */
.highlighted {
  color: var(--prim-color);
  background: linear-gradient(135deg, var(--prim-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grey-background {
  background: var(--background-alt);
}
.text-centered {
  text-align: center;
}
.prim-background {
  background: linear-gradient(135deg, var(--prim-color) 0%, var(--accent-color) 100%);
  color: white;
}

/* Buttons */
.btn {
  background: linear-gradient(135deg, var(--prim-color) 0%, var(--accent-color) 100%);
  color: white;
  border: 0;
  font: inherit;
  text-decoration: none;
  border-radius: var(--border-radius);
  padding: 1em 2em;
  display: block;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(196, 164, 132, 0.2);
  transition: all 0.3s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(196, 164, 132, 0.3);
}
.btn-group {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1em;
  gap: 1.5em;
}
.btn.btn-secondary {
  color: var(--prim-color);
  border: 2px solid var(--prim-color);
  background: transparent;
  box-shadow: none;
}
.btn.btn-secondary:hover {
  background: rgba(196, 164, 132, 0.05);
}

/* App Store Button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2D2926;
  color: white !important;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: white !important;
}
.app-store-btn .apple-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.app-store-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.app-store-btn .btn-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.2;
}
.app-store-btn .btn-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* CTA Patterns */
.patterns-left::after,
.patterns-left::before,
.patterns-right::after,
.patterns-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: left center;
  width: 10em;
  height: 6.25em;
  z-index: -10;
}
.patterns-left,
.patterns-right {
  position: absolute;
  height: 6em;
  width: 12.5em;
  top: 50%;
  transform: translateY(-50%);
  right: -10%;
  display: block;
}
.patterns-left {
  left: -10%;
}
.patterns-right {
  transform: translateY(-50%) rotate(180deg);
}
.patterns-right::after,
.patterns-right::before {
  background: rgba(196, 164, 132, 0.2);
}
.patterns-left::before,
.patterns-right::before {
  background: var(--prim-color);
  transform: translateY(-50%) rotate(35deg);
  filter: blur(40px);
  opacity: 0.3;
}
.patterns-left::after,
.patterns-right::after {
  background: var(--accent-color);
  transform: translateY(-50%) rotate(-35deg);
  filter: blur(40px);
  opacity: 0.3;
}
.cta .btn-group {
  margin: 0 auto;
}
.cta .btn {
  border: 2px solid white;
}

/* Sections */
.section {
  padding: 6em 0 5em;
}
.section__heading {
  margin-bottom: 0.75em;
}
.section__heading-small {
  font-size: 0.9rem;
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--prim-color);
  letter-spacing: 0.15em;
}
.section__text-content {
  margin-bottom: 2em;
}
.cta__container {
  z-index: 1;
  position: relative;
}
.section__text {
  margin-bottom: 0.75em;
  color: var(--text-secondary);
}
.section__container {
  display: flex;
  flex-direction: column;
}

/* Features Section */
.features {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  gap: 2.5em;
}
.features .section__heading {
  margin-bottom: 2em;
}
.features__feature-text {
  margin-bottom: 0.5em;
  color: var(--text-secondary);
  line-height: 1.8;
}
.features__feature {
  max-width: 400px;
  margin: 0 auto 1em;
  background: var(--card-background);
  padding: 2.5em;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(196, 164, 132, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.features__feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.features__feature-heading {
  margin-bottom: 0.75em;
  color: var(--text-primary);
}
.features__icon {
  background: linear-gradient(135deg, var(--prim-color), var(--accent-color));
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin: 0 auto 1.5em;
  box-shadow: 0 8px 16px rgba(196, 164, 132, 0.2);
}
.features__icon svg {
  width: 32px;
  height: 32px;
  color: white;
}
.features .section__container {
  display: block;
}

.header__text-text,
.section__text {
  max-width: 520px;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* CTA Section */
.cta {
  color: white;
  padding: 7em 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--prim-color) 0%, var(--accent-color) 100%);
}
.cta h2 {
  color: white;
}
.cta p {
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto 2em;
  font-size: 1.25rem;
}

/* Premium Section */
.premium-section {
  background: var(--background-alt);
  padding: 6em 0;
}
.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5em;
  margin-top: 3em;
}
.premium-card {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 3em;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(196, 164, 132, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.premium-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75em;
  margin-bottom: 1em;
}
.premium-card .badge {
  font-size: 0.8rem;
  background: linear-gradient(135deg, var(--prim-color), var(--accent-color));
  color: white;
  padding: 0.35em 1em;
  border-radius: 20px;
  font-weight: 700;
}
.premium-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.premium-card li {
  padding: 0.6em 0;
  padding-left: 2em;
  position: relative;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.premium-card li::before {
  content: "✧";
  position: absolute;
  left: 0;
  color: var(--prim-color);
  font-weight: 700;
}

/* Footer */
.footer {
  background: #2D2926;
  color: white;
  padding: 5rem 0 3rem;
  margin-top: 0;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer__section {
  display: flex;
  flex-direction: column;
}
.footer__heading {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--prim-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__subheading {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: white;
}
.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 0;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  margin-bottom: 1rem;
}
.footer__links li:last-child {
  margin-bottom: 0;
}
.footer__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.footer__link:hover {
  color: var(--prim-color);
}
.footer__app-btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.footer__contact p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer__contact a {
  color: var(--prim-color);
  text-decoration: none;
}
.footer__contact a:hover {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}
.footer__copyright p {
  margin: 0;
}
.footer .app-store-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .app-store-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--prim-color);
}

/* Support/FAQ Section */
.support-section {
  background: var(--background);
  padding: 5rem 0;
  animation: fadeIn 0.3s ease-in-out;
}
.support-section h2 {
  margin-bottom: 3rem;
  text-align: center;
}
.faq-content {
  max-width: 850px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-background);
  border-radius: var(--border-radius-md);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(196, 164, 132, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.faq-item h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.faq-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.8;
}
.faq-item a {
  color: var(--prim-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Legal Pages */
.legal-page {
  padding: 6rem 0;
  background: var(--background);
}
.legal-page h1 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.legal-page .last-updated {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.legal-section {
  background: var(--card-background);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(196, 164, 132, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.legal-section h2 {
  color: var(--text-primary);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}
.legal-section h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-section p {
  color: var(--text-secondary);
  line-height: 1.9;
}
.legal-section ul {
  color: var(--text-secondary);
  padding-left: 2rem;
}
.legal-section li {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-section a {
  color: var(--prim-color);
}
.contact-info {
  background: var(--background-alt);
  border-radius: var(--border-radius-sm);
  padding: 2rem;
  margin: 1.5rem 0;
}
.contact-info p {
  margin-bottom: 0.75rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}

/* Screenshots/Header Image */
.header__img {
  width: 90%;
  max-width: 550px;
  aspect-ratio: 1/1;
  margin: 3em auto 0;
}
.screenshots-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.screenshot {
  position: absolute;
  width: 65%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.12));
}
.screenshot img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--border-radius);
}
.screenshot-1 {
  transform: translate(-45%, 5%) rotate(-6deg);
  z-index: 1;
}
.screenshot-2 {
  transform: translateY(0);
  z-index: 3;
}
.screenshot-3 {
  transform: translate(45%, 5%) rotate(6deg);
  z-index: 2;
}
.screenshots-container:hover .screenshot-1 {
  transform: translate(-55%, 3%) rotate(-10deg);
}
.screenshots-container:hover .screenshot-2 {
  transform: scale(1.05);
}
.screenshots-container:hover .screenshot-3 {
  transform: translate(55%, 3%) rotate(10deg);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.8em;
  }
  .header__container {
    padding-top: 3em;
  }
  .section {
    padding: 4em 0 3em;
  }
  .footer {
    padding: 3.5rem 0 2rem;
  }
  .footer__content {
    gap: 2.5rem;
  }
  .footer__section {
    text-align: center;
  }
  .footer__app-btn {
    align-self: center;
  }
  .legal-section {
    padding: 2rem;
  }
  .faq-item {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom {
    text-align: center;
  }
  .footer__contact {
    text-align: center;
  }
  .premium-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 769px) {
  .header__container {
    align-items: center;
    flex-direction: row;
  }
  .header__container div:first-child {
    margin-right: 3em;
  }
  .header__container > *,
  .section__container > * {
    flex: 1;
  }
  .section__container {
    align-items: center;
    flex-direction: row;
  }
  .features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
  }
  .features__feature {
    flex: 0 1 calc(50% - 1.5em);
    margin: 0;
  }
  .nav__hamburger {
    display: none;
  }
  .nav__nav-desktop {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-bottom: 0;
    gap: 1rem;
  }
  .nav__desktop-item {
    margin: 0;
  }
  .header__img {
    width: 80%;
    margin: 0;
  }
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .features__feature {
    flex: 0 1 calc(33.333% - 2em);
  }
  h1 {
    font-size: 4em;
  }
  h2 {
    font-size: 3em;
  }
}

@media screen and (min-width: 1366px) {
  :root {
    font-size: 18px;
  }
}

/* Floating Romance Decorations */
.romance-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}
.romance-element {
  position: absolute;
  font-size: 2.5rem;
  animation: float 8s ease-in-out infinite;
}
.romance-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.romance-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 1.5s; }
.romance-element:nth-child(3) { top: 60%; left: 15%; animation-delay: 3s; }
.romance-element:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

/* Feature Icons */
.icon-dashboard::before { content: "✨"; }
.icon-tasks::before { content: "📋"; }
.icon-guests::before { content: "🥂"; }
.icon-seating::before { content: "🪑"; }
.icon-budget::before { content: "💎"; }
.icon-ai::before { content: "🕊️"; }

/* Subscription Notice */
.footer__subscription-notice {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
