/* Base styles */
:root {
  --primary-color: #0071e3;
  --secondary-color: #1d1d1f;
  --light-color: #f5f5f7;
  --border-color: #d2d2d7;
  --text-color: #1d1d1f;
  --light-text-color: #86868b;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Header & Navigation */
header {
  background-color: var(--light-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-nav {
  height: 6.4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 3.6rem;
}

.nav-links {
  display: flex;
  gap: 3.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary-color);
  transition: color 0.3s ease;
  padding: 0.8rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.account-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  color: var(--secondary-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.account-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.account-link .material-icons {
  font-size: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 4rem;
}

.btn-primary:hover {
  background-color: #0062c4;
  transform: scale(1.05);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 4rem;
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8rem 0 10rem;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f7;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 54rem;
}

.tag-line {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(0, 113, 227, 0.08);
  padding: 0.6rem 1.4rem;
  border-radius: 3rem;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #555 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 2rem;
  color: var(--light-text-color);
  margin-bottom: 3rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 1rem;
}

.play-icon .material-icons {
  color: white;
  font-size: 1.8rem;
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ratings {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stars {
  display: flex;
  color: #FFB800;
}

.stars .material-icons {
  font-size: 2rem;
}

.rating-text, .users span {
  font-size: 1.4rem;
  color: var(--light-text-color);
  font-weight: 500;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.device-mockup {
  max-height: 65rem;
  object-fit: contain;
  filter: drop-shadow(0 2.5rem 2.5rem rgba(0, 0, 0, 0.12));
  z-index: 2;
  position: relative;
}

.gradient-circle {
  position: absolute;
  width: 55rem;
  height: 55rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, rgba(245, 245, 247, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Custom hamburger icon */
.hamburger {
  width: 2.4rem;
  height: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Close icon */
.close-icon {
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon span {
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.close-icon span:first-child {
  transform: rotate(45deg);
}

.close-icon span:last-child {
  transform: rotate(-45deg);
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(249, 249, 249, 0.98);
  z-index: 200;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
}

.mobile-menu.active {
  right: 0;
  opacity: 1;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 2.5rem;
  border-bottom: none;
}

.close-menu {
  cursor: pointer;
  padding: 0.8rem;
}

.close-icon {
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-icon span {
  position: absolute;
  display: block;
  height: 1.5px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem;
}

.mobile-menu-links a {
  font-size: 2.2rem;
  font-weight: 400;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: color 0.3s ease, transform 0.3s ease;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.mobile-menu-links a.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px) translateY(0);
}

.mobile-menu-links a:last-child {
  border-bottom: none;
}

.mobile-menu-links .mobile-cta {
  margin-top: 5rem;
  text-align: center;
  border: none;
  font-size: 1.7rem;
  max-width: 20rem;
  align-self: center;
  border-radius: 2.5rem;
  padding: 1.2rem 3rem;
}

.mobile-menu-links .mobile-cta:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .nav-links {
    position: static;
    transform: none;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 4.8rem;
  }
  
  .hero p {
    font-size: 1.8rem;
  }
  
  .device-mockup {
    max-height: 55rem;
  }
}

@media (max-width: 768px) {
  .desktop-menu, .desktop-cta {
    display: none;
  }

  .account-link {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    height: 8rem; /* 80px */
    padding: 0 2rem;
  }
  
  .logo img {
    height: 3.6rem;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .tag-line {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-content {
    order: 2;
    max-width: 100%;
  }
  
  .hero-image {
    order: 1;
    justify-content: center;
    margin-bottom: 5rem;
  }
  
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-proof {
    align-items: center;
  }
  
  .device-mockup {
    max-height: 50rem;
  }

  .hero img {
    transform: scale(1.2);
  }
  
  .gradient-circle {
    width: 40rem;
    height: 40rem;
  }

  .mobile-menu-toggle {
    transform: scale(1.2);
  }
  
  .hamburger {
    width: 2.8rem;
    height: 2.4rem;
  }
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

/* Features Showcase */
.features-showcase {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 5rem;
  text-align: center;
}

.features-container {
  position: relative;
  margin-bottom: 5rem;
  margin-right: -2rem;
  margin-left: -2rem;
}

.features-scroll {
  width: 100%;
  overflow-x: auto;
  padding: 2rem 0;
  padding-left: calc(2rem + ((100vw - 120rem) / 2));
  padding-right: 2rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.features-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.features-row {
  display: flex;
  gap: 3rem;
  padding-left: 1rem;
  padding-right: 5rem;
  width: max-content;
}

.feature-card {
  min-width: 48rem;
  max-width: 48rem;
  height: 80vh; /* 80% of viewport height */
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.12);
}

.feature-content {
  padding: 3rem 2.5rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0.8) 90%, rgba(255, 255, 255, 0));
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #0071e3;
  font-weight: 600;
}

.feature-card h3 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #1d1d1f;
}

.feature-card p {
  font-size: 1.6rem;
  color: #86868b;
  line-height: 1.5;
}

.section-header {
  margin-bottom: 5rem;
}

.scroll-controls {
  position: absolute;
  bottom: -6rem;
  right: 200px;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.scroll-button {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-button:hover {
  background-color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}

.scroll-button:focus {
  outline: none;
}

.scroll-button:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.scroll-button .material-icons {
  font-size: 2.8rem;
  color: #1d1d1f;
}

@media (max-width: 992px) {
  .feature-card {
    min-width: 38rem;
    max-width: 38rem;
    height: 70vh;
  }
  
  .feature-card h3 {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .features-showcase {
    padding: 6rem 0;
  }
  
  .feature-card {
    min-width: 32rem;
    max-width: 32rem;
    height: 65vh;
  }
  
  .feature-card h3 {
    font-size: 2rem;
  }
  
  .feature-content {
    padding: 2.5rem 2rem;
  }
  
  .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  
  .scroll-button {
    width: 4rem;
    height: 4rem;
  }

  .scroll-controls {
    right: 20px;
  }
}

/* Adjust for smaller screens */
@media (max-width: 1200px) {
  .features-scroll {
    padding-left: 5%;
  }
}

@media (max-width: 768px) {
  .features-scroll {
    padding-left: 2rem;
  }
}

/* Download Section */
.download-section {
  padding: 12rem 0;
  background: linear-gradient(to bottom, #f5f5f7 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.download-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}

.download-content {
  flex: 1;
  max-width: 54rem;
}

.overline {
  display: inline-block;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 600;
}

.download-section h2 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.download-section p {
  font-size: 2rem;
  color: var(--light-text-color);
  margin-bottom: 4rem;
  line-height: 1.5;
}

.download-platforms {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 6rem;
}

.platform-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.platform-button:hover {
  transform: scale(1.05);
}

.store-badge {
  height: 5rem;
  width: auto;
}

.google-badge {
  height: 6.6rem;
}

.download-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 45rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-stars {
  display: flex;
  color: #FFB800;
  margin-bottom: 0.5rem;
}

.stat-stars .material-icons {
  font-size: 1.6rem;
}

.stat-label {
  font-size: 1.4rem;
  color: var(--light-text-color);
}

.divider {
  width: 1px;
  height: 5rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.download-visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60rem;
}

.device-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
}

.device-front {
  position: relative;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  transform: rotate(-5deg);
  filter: drop-shadow(0 2.5rem 3.5rem rgba(0, 0, 0, 0.15));
}

.device-back {
  position: absolute;
  height: 90%;
  object-fit: contain;
  right: 0;
  top: 5%;
  z-index: 2;
  transform: translateX(-20%) rotate(5deg);
  filter: drop-shadow(0 2.5rem 3.5rem rgba(0, 0, 0, 0.1));
}

.download-circle {
  position: absolute;
  width: 65rem;
  height: 65rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, rgba(245, 245, 247, 0) 70%);
  top: 50%;
  right: -15rem;
  transform: translateY(-50%);
  z-index: 1;
}

@media (max-width: 992px) {
  .download-section .container {
    flex-direction: column-reverse;
  }
  
  .download-content {
    max-width: 100%;
    text-align: center;
  }
  
  .download-section h2 {
    font-size: 4.2rem;
  }
  
  .download-platforms {
    justify-content: center;
  }
  
  .download-stats {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .download-visual {
    height: 50rem;
    width: 100%;
  }
  
  .device-front {
    height: 90%;
  }
  
  .device-back {
    height: 80%;
  }
  
  .download-circle {
    width: 50rem;
    height: 50rem;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

@media (max-width: 768px) {
  .download-section {
    padding: 8rem 0;
  }
  
  .download-section h2 {
    font-size: 3.6rem;
  }
  
  .download-section p {
    font-size: 1.8rem;
  }
  
  .download-visual {
    height: 40rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .download-stats {
    flex-direction: column;
    gap: 3rem;
  }
  
  .divider {
    display: none;
  }
}

/* FAQ Section */
.faq-section {
  padding: 12rem 0;
  background-color: #fbfbfd;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 8rem;
}

.faq-container {
  max-width: 86rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 2.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-answer p {
  padding: 0 0 2.4rem 0;
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.6;
  color: var(--light-text-color);
}

/* Open state for FAQ items */
.faq-item.active .faq-question {
  color: var(--primary-color);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 1s ease-in-out, padding 0.3s ease;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 8rem 0;
  }
  
  .faq-section .section-title {
    margin-bottom: 5rem;
  }
  
  .faq-question {
    padding: 2rem 0;
    font-size: 1.8rem;
  }
  
  .faq-answer p {
    padding: 0 0 2rem 0;
    font-size: 1.6rem;
  }
}

/* Footer */
.main-footer {
  padding: 10rem 0 5rem;
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 6rem;
  margin-bottom: 8rem;
}

.footer-column h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: var(--secondary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  font-size: 1.4rem;
  color: var(--light-text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.branding p {
  font-size: 1.4rem;
  color: var(--light-text-color);
  line-height: 1.6;
  margin-top: 1.6rem;
}

.footer-logo img {
  height: 3rem;
  width: auto;
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright p {
  font-size: 1.2rem;
  color: var(--light-text-color);
}

.locale {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.locale .material-icons {
  font-size: 1.6rem;
  color: var(--light-text-color);
}

.locale a {
  font-size: 1.2rem;
  color: var(--light-text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.locale a:hover {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .branding {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 7rem 0 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .copyright {
    order: 2;
  }
  
  .locale {
    order: 1;
    justify-content: center;
  }
}

/* Pricing Page Styles */
.pricing-section {
  padding: 12rem 0;
  background-color: #ffffff;
}

.pricing-header {
  text-align: center;
  margin-bottom: 8rem;
}

.pricing-header h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  letter-spacing: -0.02em;
}

.pricing-header .section-subtitle {
  font-size: 2rem;
  color: var(--light-text-color);
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing-card-container {
  max-width: 58rem;
  margin: 0 auto;
}

.pricing-card {
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  padding: 5rem;
  border: 1px solid #d2d2d7;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.free {
  position: relative;
}

.pricing-label {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(0, 113, 227, 0.05);
  border-radius: 4rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.pricing-price {
  font-size: 8rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 1.5rem;
  color: var(--light-text-color);
  font-weight: 400;
  margin-bottom: 4rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 4rem;
  max-width: 38rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  font-size: 1.7rem;
  color: var(--secondary-color);
  font-weight: 400;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features .check {
  color: var(--primary-color);
  font-size: 2rem;
  flex-shrink: 0;
  background-color: rgba(0, 113, 227, 0.05);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-cta {
  width: 100%;
  display: block;
  text-align: center;
  padding: 1.5rem;
  font-size: 1.7rem;
  border-radius: 4rem;
  transition: all 0.3s ease;
  font-weight: 500;
  background: linear-gradient(90deg, var(--primary-color), #0091ff);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 113, 227, 0.2);
}

.pricing-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 0.7rem 2rem rgba(0, 113, 227, 0.25);
}

.pricing-note {
  margin-top: 7rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background-color: #f8fafc;
  padding: 3rem;
  border-radius: 1.6rem;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.note-icon {
  color: var(--primary-color);
  font-size: 2.8rem;
  background-color: rgba(0, 113, 227, 0.08);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-note p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--light-text-color);
  margin: 0;
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 8rem 0;
  }
  
  .pricing-header {
    margin-bottom: 6rem;
  }
  
  .pricing-header h1 {
    font-size: 3.6rem;
  }
  
  .pricing-header .section-subtitle {
    font-size: 1.8rem;
  }
  
  .pricing-card {
    padding: 3.5rem 2.5rem;
  }
  
  .pricing-price {
    font-size: 6rem;
  }
  
  .pricing-note {
    padding: 2.4rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
} 