@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap");

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

:root {
  /* Playful Companion Palette */
  --prim-color: #FF6B6B;        /* Coral */
  --prim-color-shade1: #E55A5A;
  --prim-color-shade2: #FF8585;
  --sky-blue: #4ECDC4;          /* Sky Blue */
  --sunshine: #FFE66D;          /* Sunny Yellow */
  --mint: #95E1D3;              /* Mint Green */
  --terracotta: #E07A5F;        /* Warm Terracotta */
  --purple: #C77DFF;            /* Soft Purple */
  --cream: #FFF8F0;             /* Cream Background */
  
  /* Semantic Colors */
  --background: #FFFAF5;
  --background-alt: #FFF5ED;
  --card-background: #FFFFFF;
  --text-primary: #2D3436;
  --text-secondary: #636E72;
  --text-muted: #B2BEC3;
  
  /* Shadows */
  --nav-shadow: 0 2px 16px rgba(255, 107, 107, 0.12);
  --card-shadow: 0 4px 24px rgba(255, 107, 107, 0.08);
  --card-shadow-hover: 0 8px 32px rgba(255, 107, 107, 0.16);
  
  /* 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: "Outfit", -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-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.3em;
  color: var(--text-primary);
}
h1 {
  font-size: 2.8em;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.4em;
}
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(--cream);
}
.container {
  padding: 0 4%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navigation */
.nav {
  padding: 0.875rem 0;
  box-shadow: var(--nav-shadow);
  position: fixed;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  border-bottom: 1px solid rgba(255, 107, 107, 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-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--prim-color), var(--terracotta));
  -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(--cream);
}
.nav__hamburger::after,
.nav__hamburger::before {
  content: "";
  position: absolute;
  height: 2.5px;
  display: block;
  width: 70%;
  left: 15%;
  background: var(--prim-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav__hamburger::after {
  top: 28%;
}
.nav__hamburger::before {
  bottom: 28%;
}
.nav__mobile-nav {
  display: none;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 107, 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(--cream);
}
.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(--cream);
}
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(255, 107, 107, 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(--cream);
  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(255, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.header__container {
  display: flex;
  flex-direction: column;
  padding-top: 4em;
  padding-bottom: 3em;
  position: relative;
  z-index: 1;
}

/* Utility */
.highlighted {
  color: var(--prim-color);
  background: linear-gradient(135deg, var(--prim-color), var(--terracotta));
  -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(--terracotta) 100%);
  color: white;
}

/* Buttons */
.btn {
  background: linear-gradient(135deg, var(--prim-color) 0%, var(--terracotta) 100%);
  color: white;
  border: 0;
  font: inherit;
  text-decoration: none;
  border-radius: var(--border-radius);
  padding: 0.875em 1.5em;
  display: block;
  line-height: 1;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.25);
  transition: all 0.3s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 107, 0.35);
}
.btn-group {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1em;
  gap: 1em;
}
.btn.btn-secondary {
  color: var(--prim-color);
  border: 2px solid var(--prim-color);
  background: white;
  box-shadow: none;
}
.btn.btn-secondary:hover {
  background: var(--cream);
}

/* App Store Button */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a1a1a 100%);
  color: white !important;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: white !important;
}
.app-store-btn .apple-icon {
  width: 20px;
  height: 20px;
  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.7rem;
  opacity: 0.8;
  font-weight: 400;
  line-height: 1.2;
}
.app-store-btn .btn-title {
  font-size: 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(255, 107, 107, 0.2);
}
.patterns-left::before,
.patterns-right::before {
  background: var(--prim-color);
  transform: translateY(-50%) rotate(35deg);
  filter: blur(40px);
  opacity: 0.4;
}
.patterns-left::after,
.patterns-right::after {
  background: var(--sky-blue);
  transform: translateY(-50%) rotate(-35deg);
  filter: blur(40px);
  opacity: 0.4;
}
.cta .btn-group {
  margin: 0 auto;
}
.cta .btn {
  border: 2px solid white;
}

/* Sections */
.section {
  padding: 4em 0 3em;
}
.section__heading {
  margin-bottom: 0.5em;
}
.section__heading-small {
  font-size: 0.875rem;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75em;
  color: var(--prim-color);
  letter-spacing: 0.1em;
}
.section__text-content {
  margin-bottom: 1.5em;
}
.cta__container {
  z-index: 1;
  position: relative;
}
.section__text {
  margin-bottom: 0.5em;
  color: var(--text-secondary);
}
.section__container {
  display: flex;
  flex-direction: column;
}

/* Features Section */
.features {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  gap: 2em;
}
.features .section__heading {
  margin-bottom: 1.5em;
}
.features__feature-text {
  margin-bottom: 0.5em;
  color: var(--text-secondary);
  line-height: 1.7;
}
.features__feature {
  max-width: 400px;
  margin: 0 auto 1em;
  background: var(--card-background);
  padding: 2em;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 107, 107, 0.08);
  transition: all 0.3s ease;
}
.features__feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.features__feature-heading {
  margin-bottom: 0.5em;
  color: var(--text-primary);
}
.features__icon {
  background: linear-gradient(135deg, var(--prim-color), var(--terracotta));
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin: 0 auto 1em;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}
.features__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.features .section__container {
  display: block;
}

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

/* CTA Section */
.cta {
  color: white;
  padding: 5em 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--prim-color) 0%, var(--terracotta) 100%);
}
.cta h2 {
  color: white;
}
.cta p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5em;
}

/* Premium Section */
.premium-section {
  background: var(--background-alt);
  padding: 4em 0;
}
.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  margin-top: 2em;
}
.premium-card {
  background: var(--card-background);
  border-radius: var(--border-radius);
  padding: 2.5em;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 107, 107, 0.08);
}
.premium-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.75em;
}
.premium-card .badge {
  font-size: 0.75rem;
  background: linear-gradient(135deg, var(--prim-color), var(--terracotta));
  color: white;
  padding: 0.25em 0.75em;
  border-radius: 20px;
  font-weight: 600;
}
.premium-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.premium-card li {
  padding: 0.5em 0;
  padding-left: 1.75em;
  position: relative;
  color: var(--text-secondary);
  margin-bottom: 0;
}
.premium-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}
.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__section {
  display: flex;
  flex-direction: column;
}
.footer__heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--prim-color), var(--sunshine));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer__subheading {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}
.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 0;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  margin-bottom: 0.75rem;
}
.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: 0.95rem;
}
.footer__link:hover {
  color: var(--prim-color);
}
.footer__app-btn {
  margin-top: 1rem;
  align-self: flex-start;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.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.9rem;
}
.footer__copyright p {
  margin: 0;
}
.footer .app-store-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .app-store-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--prim-color);
}

/* Support/FAQ Section */
.support-section {
  background: var(--background);
  padding: 4rem 0;
  animation: fadeIn 0.3s ease-in-out;
}
.support-section h2 {
  margin-bottom: 2rem;
  text-align: center;
}
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-background);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 107, 107, 0.08);
}
.faq-item h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.faq-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}
.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: 4rem 0;
  background: var(--background);
}
.legal-page h1 {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.legal-page .last-updated {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.legal-section {
  background: var(--card-background);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 107, 107, 0.08);
}
.legal-section h2 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.legal-section h3 {
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-section p {
  color: var(--text-secondary);
  line-height: 1.8;
}
.legal-section ul {
  color: var(--text-secondary);
  padding-left: 1.5rem;
}
.legal-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.legal-section a {
  color: var(--prim-color);
}
.contact-info {
  background: var(--background-alt);
  border-radius: var(--border-radius-sm);
  padding: 1.5rem;
  margin: 1rem 0;
}
.contact-info p {
  margin-bottom: 0.5rem;
}
.contact-info p:last-child {
  margin-bottom: 0;
}

/* Screenshots/Header Image */
.header__img {
  width: 90%;
  max-width: 500px;
  aspect-ratio: 1/1;
  margin: 2em auto 0;
}
.screenshots-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.screenshot {
  position: absolute;
  width: 60%;
  height: auto;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}
.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(-52%, 3%) rotate(-9deg);
}
.screenshots-container:hover .screenshot-2 {
  transform: scale(1.05);
}
.screenshots-container:hover .screenshot-3 {
  transform: translate(52%, 3%) rotate(9deg);
}

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

@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .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: 2em;
  }
  .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: 1.5em;
  }
  .features__feature {
    flex: 0 1 calc(50% - 1em);
    margin: 0;
  }
  .nav__hamburger {
    display: none;
  }
  .nav__nav-desktop {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin-bottom: 0;
    gap: 0.5em;
  }
  .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% - 1.5em);
  }
  h1 {
    font-size: 3.5em;
  }
  h2 {
    font-size: 2.5em;
  }
}

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

/* Floating Dog Paw Print Decorations */
.paw-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.05;
}
.paw-print {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}
.paw-print:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.paw-print:nth-child(2) { top: 20%; right: 10%; animation-delay: 1s; }
.paw-print:nth-child(3) { top: 60%; left: 15%; animation-delay: 2s; }
.paw-print:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 3s; }

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

/* Feature Icons */
.icon-whistle::before { content: "🎵"; }
.icon-training::before { content: "🐕"; }
.icon-progress::before { content: "📊"; }
.icon-sounds::before { content: "🔊"; }
.icon-voice::before { content: "🎤"; }
.icon-premium::before { content: "⭐"; }

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