/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #0f2;
  --dark-bg: #000;
  --text-primary: #f6f5f5;
  --text-secondary: #c4c4c4;
  --primary-pink: #ff3df2;
  --text-muted: #7c8079;

  --white-bg: #fff;
  --white-text-primary: #1f221e;
  --white-text-secondary: #51534f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.light-mode {
  background: var(--white-bg);
}
body.light-mode .header {
  background-color: var(--white-bg);
}
body.light-mode .header .logo {
  display: none;
}
body.light-mode .header .white-logo {
  display: block;
}

body.light-mode .cta-button {
  color: #fff;
}

body.light-mode .features .feature-card p {
  color: var(--white-text-secondary);
}

body.light-mode .features .feature-card h3 {
  color: var(--white-text-primary);
}

body.light-mode .features .feature-card {
  background: rgba(7, 3, 18, 0.1);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.4) inset, 1px 1px 1px -0.5px rgba(0, 255, 34, 0.26) inset,
    0 32px 64px 0 rgba(0, 255, 34, 0.08) inset;
}

body.light-mode .library::before {
  background: rgba(255, 255, 255, 0.5);
}

body.light-mode .library .section-title {
  color: var(--white-text-primary);
}

body.light-mode .library .section-subtitle {
  color: var(--white-text-secondary);
}

body.light-mode .pricing {
  background: var(--white-bg);
}

body.light-mode .pricing .section-title {
  color: var(--white-text-primary);
}

body.light-mode .playlists {
  background: var(--white-bg);
}

body.light-mode .playlists .section-title {
  color: var(--white-text-primary);
}

body.light-mode .playlists .section-subtitle {
  color: var(--white-text-secondary);
}

body.light-mode .pricing-card {
  background: rgba(7, 3, 18, 0.3);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.08) inset, 1px 1px 1px -0.5px rgba(0, 255, 34, 0.1) inset,
    0 32px 64px 0 rgba(0, 255, 34, 0.04) inset;
}

body.light-mode .pricing-card.featured {
  background: #fff !important;
  box-shadow: none;
}

body.light-mode .plan-type {
  color: var(--white-text-primary);
  background: rgba(7, 3, 18, 0.3);
}

body.light-mode .plan-access {
  color: var(--white-text-secondary);
}

body.light-mode .price {
  color: var(--white-text-primary);
}

body.light-mode .period {
  color: var(--white-text-secondary);
}

body.light-mode .plan-save {
  color: var(--primary-green);
}
body.light-mode .logos img {
  filter: invert(1);
}
body.light-mode .footer {
  background-color: #f1f1f1;
}

body.light-mode a.social-link {
  color: #f1f1f1;
}
body.light-mode h4 {
  color: var(--white-text-primary);
}


section {
  overflow: hidden;
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(3) {
  transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(4) {
  transition-delay: 0.4s;
}
.animate-on-scroll:nth-child(5) {
  transition-delay: 0.5s;
}
.animate-on-scroll:nth-child(6) {
  transition-delay: 0.6s;
}
.animate-on-scroll:nth-child(7) {
  transition-delay: 0.7s;
}
.animate-on-scroll:nth-child(8) {
  transition-delay: 0.8s;
}

.transition-delay-none {
  transition-delay: unset !important;
}

/* Header */
.header {
  background-color: var(--dark-bg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0f2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
  border: 2px solid #0f2;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  bottom: 2px;
  background-color: #51534f;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  background-image: url('assets/images/icons/moon.svg');
  /*background-size: 22px 22px;*/
  background-repeat: no-repeat;
  background-position: center;
  /*filter: contrast(0.5);*/
}

input:checked + .slider {
  background-color: #ccc;
  border-color: #ccc;
  /*border-color: #51534f;*/
}

/*input:focus + .slider {*/
/*  box-shadow: 0 0 1px #0f2;*/
/*}*/

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-image: url('assets/images/icons/sun.svg');
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 32px;
  margin: 0 auto;
  height: 70px;
  /*border-bottom: 1px solid var(--white-text-secondary);*/
}

.nav-logo {
  height: 30px;
}

.logo {
  width: 120px;
  height: 30px;
}

.white-logo {
  width: 120px;
  height: 30px;
  display: none;
}

.nav-mail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;

  img {
    height: 15px;
    width: 15px;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 6rem;
  position: relative;
  overflow: hidden;
  background: url('assets/images/bg/mian-bg.png') center center / cover no-repeat fixed;
  will-change: background-position;
}

.hero-content {
  text-align: left;
  width: 45%;
  z-index: 2;
  position: relative;
  overflow: visible;
}

.hero-title {
  font-size: 96px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.highlight {
  font-weight: 700;
  font-size: 80px;
}

.hero-subtitle {
  font-size: 34px;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
  font-weight: 400;
}

.cta-button {
  background: var(--primary-green);
  color: var(--dark-bg);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 255, 8, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 255, 17, 0.4);
}

/* Lines Background */
.lines-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: visible;
  object-fit: contain;
}

.lines-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transform: translate(0, 10%);
  object-fit: cover;
  filter: brightness(1.1);
}

/* Features Section */
.features {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

.feature-card {
  padding: 40px;
  border-radius: 32px;
  background: rgba(7, 3, 18, 0.04);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.4) inset, 1px 1px 1px -0.5px rgba(0, 255, 34, 0.26) inset,
    0 32px 64px 0 rgba(0, 255, 34, 0.08) inset;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  width: 100%;
  stop:nth-child(1) {
    stop-color: var(--primary-green);
  }
  stop:nth-child(2) {
    stop-color: #009914;
    stop-opacity: 0.2;
  }
  stop {
    transition: all 0.3s ease;
  }
}

.login-button {
  border-radius: 5px;
  padding: 0.7rem 1rem;
  background: var(--primary-green);
  color: var(--dark-bg);
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  height: 40px;
}

.feature-card:hover {
  transform: scale(1.1);
}

.feature-icon {
  width: 112px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: absolute;
  bottom: 0px;
  right: 20px;
  color: var(--primary-green);
  opacity: 0.1;
}

.feature-card h3 {
  font-size: 34px;
  font-weight: 400;
  color: var(--primary-green);
}

.feature-card p {
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive Features Section */
@media (max-width: 1440px) {
  .features-grid {
    padding: 2rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .feature-card {
    width: 280px;
    height: 280px;
  }
}
@media (max-width: 1024px) {
  .features {
    min-height: unset;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .feature-card {
    width: 220px;
    height: 220px;
    padding: 20px;
  }
  .feature-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature-card {
    width: 220px;
    min-height: 220px;
    height: auto;
    padding: 20px;
  }
}

/* Library Section */
.library {
  padding: 2rem 6rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url('assets/images/bg/extensive-lib-bg.jpg') center center / cover no-repeat fixed;
  z-index: 1;
}

.library::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.75);
  z-index: 2;
  pointer-events: none;
}

.library > * {
  position: relative;
  z-index: 3;
}

.library-records {
  display: flex;
  justify-content: center;
  width: 80%;
  gap: 2rem;
}

.library-record-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(20%-6rem);
}

.library-record-row:nth-child(even) {
  margin-top: 2rem;
}

.library-record-row img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.library-record-row img:hover {
  transform: scale(1.1);
}

.library-image {
  width: 60%;
}

/* Responsive Library Section */
@media (max-width: 1024px) {
  .library {
    padding: 3rem 2em;
    min-height: unset;
    background-attachment: scroll;
  }
  .library-records {
    width: 100%;
    gap: 1rem;
  }
  .library-record-row {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .library {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  .library-records {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .library-record-row {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 1.2rem;
    margin-top: 0 !important;
  }
  .library-record-row img {
    width: 40vw;
    max-width: 120px;
  }

  .library .section-subtitle {
    padding-left: 0 !important;
    text-align: center !important;
  }
  .library .section-title {
    padding-left: 0 !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .library {
    padding: 1rem 0.1rem;
  }
  .library-record-row img {
    width: 80vw;
    max-width: 80px;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 400;
}

.library .section-subtitle {
  padding-left: 6rem;
  text-align: left;
}

.library .section-title {
  padding-left: 6rem;
  text-align: left;
}

.music-cards-raw-one,
.music-cards-raw-two {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
  will-change: transform;
}

.music-cards-raw-one {
  animation: scrollRight 30s linear infinite;
}

.music-cards-raw-two {
  animation: scrollLeft 35s linear infinite;
}

.music-cards-raw-one:hover,
.music-cards-raw-two:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-50% - 0.75rem));
  }
  100% {
    transform: translateX(0);
  }
}

.music-card {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
  object-fit: cover;
}

.music-card:hover {
  transform: translateY(-10px) scale(1.4);
  z-index: 10;
}

/* Playlists Section */
.playlists {
  padding: 6rem;
  min-height: 100vh;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.playlists-content {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.playlist-cards {
  display: flex;
  position: relative;
  align-self: flex-start;
  justify-self: flex-start;
  height: 30vh;
  width: 50%;
  margin-top: 4rem;
  align-self: end;
}

.playlist-card {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.playlist-card:nth-child(1) {
  left: 0;
  top: 30%;
  width: auto;
  height: 50%;
}

.playlist-card:nth-child(2) {
  left: 28%;
  top: 0;
  height: 65%;
  width: auto;
  z-index: 5;
}

.playlist-card:nth-child(3) {
  left: 23%;
  top: 70%;
  width: auto;
  height: 40%;
}

.playlist-card:nth-child(4) {
  left: 50%;
  top: 60%;
  height: 65%;
  width: auto;
}

.playlist-card:nth-child(5) {
  left: 60%;
  top: -30%;
  height: 40%;
  width: auto;
}

.playlist-card:nth-child(6) {
  left: 80%;
  top: 0;
  height: 60%;
  width: auto;
}

.playlist-card:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Playlists Section */
@media (max-width: 1024px) {
  .playlists {
    padding: 3rem 6rem;
    min-height: unset;
    overflow: visible !important;
  }
  .playlist-cards {
    width: 80%;
    height: 22vh;
    margin-top: 2rem;
  }
  .playlist-card {
    width: 80px;
    height: 80px;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .playlists {
    padding: 2rem;
  }
  .playlist-cards {
    width: 100%;
    height: 18vh;
    margin-top: 1.2rem;
  }
  .playlist-card {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .playlist-cards {
    width: 100%;
    height: 12vh;
    margin-top: 0.5rem;
  }
  .playlist-card {
    width: 38px;
    height: 38px;
    border-radius: 5px;
  }
}

/* Pricing Section */
.pricing {
  padding: 6rem 2rem;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pricing .section-title {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0;
}

.pricing-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.pricing-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: fit-content;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 60px;
  min-width: 200px;
  width: 27vw;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 32px;
  background: rgba(7, 3, 18, 0.04);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.4) inset, 1px 1px 1px -0.5px rgba(0, 255, 34, 0.26) inset,
    0 32px 64px 0 rgba(0, 255, 34, 0.08) inset;
  height: 100%;
}

.pricing-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.pricing-card-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.pricing-card-header div:nth-child(1) {
  font-weight: 700;
}

.pricing-card.featured {
  background: #1f221e !important;
  box-shadow: none;
  transform: scale(1.1);
}

.pricing-card:hover {
  transform: scale(1.05);
}

.pricing-card.featured .cta-button {
  border-radius: 71px;
  background: #4e524b;
  box-shadow: unset;
}

.pricing-card.featured .cta-button:hover {
  transform: unset;
  box-shadow: unset;
}
.plan-type {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 11px;
  background: rgba(147, 150, 145, 0.2);
  padding: 0.5rem 1rem;
}

.plan-access {
  color: var(--text-secondary);
  font-size: 16px;
}

.plan-price {
  margin-bottom: 1rem;
}

.price {
  font-size:2.5vw;
  font-weight: 700;
  color: var(--text-primary);
}

.period {
  color: var(--text-secondary);
  font-size: 2vw;
}

.plan-save {
  color: var(--primary-green);
  font-size: 2vw;
  font-weight: 400;
}

.pricing-note {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-note .logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  padding-top: 2rem;
}

/* Responsive Pricing Section */
@media (max-width: 1024px) {
  .pricing {
    padding: 3rem 0.5rem;
    min-height: unset;
  }
  .pricing-cards {
    gap: 1.2rem;
  }
  .pricing-card {
    padding: 32px 20px;
    width: 45vw;
    min-width: 180px;
    font-size: 1rem;
  }
  .price {
    font-size: 40px;
  }
  .period {
    font-size: 28px;
  }
  .plan-save {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 2rem 0.2rem;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .pricing-card-container {
    width: 100%;
    align-items: stretch;
  }
  .pricing-card {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    padding: 24px 10px;
    font-size: 0.98rem;
  }
  .price {
    font-size: 32px;
  }
  .period {
    font-size: 20px;
  }
  .plan-save {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding: 1rem 0.1rem;
  }
  .pricing-cards {
    gap: 0.7rem;
  }
  .pricing-card {
    padding: 12px 2px;
    font-size: 0.95rem;
  }
  .price {
    font-size: 22px;
  }
  .period {
    font-size: 14px;
  }
  .plan-save {
    font-size: 12px;
  }
}

/* Footer */
.footer {
  background: #1f221e;
  border-top: 1px solid #4e524b;
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 8rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 8rem;
}

.footer-column h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column .footer-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-column .footer-link:hover {
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-link {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f221e;
  background-color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-green);
  color: var(--dark-bg);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--text-muted);
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer-content {
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .footer-links {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-social {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  .footer-brand {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 0.2rem;
  }
  .footer-content {
    gap: 1rem;
    padding: 0 0.2rem;
  }
  .footer-links {
    gap: 1rem;
  }
  .footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.95rem;
  }
}

/* Green Particles Background */
.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

/* Animated Background SVG */
.cards-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 80%;
  height: auto;
  max-width: 915px;
  opacity: 0.6;
  pointer-events: none;
  animation: floatAndPulse 6s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes floatAndPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(-48%, -52%) scale(1.05) rotate(1deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-52%, -48%) scale(1.1) rotate(-1deg);
    opacity: 0.8;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.05) rotate(0.5deg);
    opacity: 0.6;
  }
}

/* Position the playlists section to accommodate the animated background */
.playlists {
  position: relative;
  overflow: hidden;
}

/* Enhance the playlist cards container to work with the background */
.playlist-cards {
  position: relative;
  z-index: 2;
}

@media (max-width: 1440px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero {
    justify-content: center;
    padding: 1rem;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .hero {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
