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

:root {
  /* Colors from app theme */
  --primary-gold: #e0c680;
  --primary-dark-blue: #012d6d;
  --primary-orange: #d2694a;
  --light-bg: #c5c5c5; /* Soft white background */
  --white-bg: #ffffff;
  --dark-text: #0a0a0a;
  --muted-text: rgba(10, 10, 10, 0.7);
  --border-color: rgba(224, 198, 128, 0.2);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    #ecde88 0%,
    #e0c680 50%,
    #d4a574 100%
  );
  --gradient-secondary: linear-gradient(135deg, #e0c680 0%, #012d6d 100%);
  --gradient-accent: linear-gradient(135deg, #e0c680 0%, #d2694a 100%);
  --gradient-border: linear-gradient(
    135deg,
    rgba(224, 198, 128, 0.3) 0%,
    rgba(236, 222, 136, 0.2) 100%
  );
}

body {
  font-family: "Cabin", sans-serif;
  background: linear-gradient(
    to bottom,
    var(--white-bg),
    rgba(250, 245, 235, 0.3)
  );
  background-attachment: fixed;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 198, 128, 0.2);
  box-shadow: 0 2px 15px rgba(224, 198, 128, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(89%) saturate(3119%)
    hue-rotate(201deg) brightness(95%) contrast(101%);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--muted-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--primary-dark-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-text {
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: box-shadow 0.3s ease, border 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #012d6d;
  font-weight: 600;
  /* box-shadow: 0 4px 20px rgba(224, 198, 128, 0.4); */
  /* border: 2px solid transparent; */
}

.btn-primary:hover {
  box-shadow: 0 6px 30px rgba(224, 198, 128, 0.6);
  border: 2px solid rgba(1, 45, 109, 0.1);
}

.cta-note {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-dark-blue);
  border: 2px solid var(--primary-dark-blue);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--primary-dark-blue);
  color: var(--white-bg);
  box-shadow: 0 4px 20px rgba(1, 45, 109, 0.3);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 85%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(224, 198, 128, 0.25));
  border-radius: 20px;
  border: 2px solid rgba(224, 198, 128, 0.3);
}

/* Features Section */
.features {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: var(--white-bg);
  border: 1px solid rgba(224, 198, 128, 0.2);
  box-shadow: 0 2px 10px rgba(224, 198, 128, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: rgba(224, 198, 128, 0.5);
  box-shadow: 0 8px 25px rgba(224, 198, 128, 0.2);
  background: linear-gradient(
    to bottom,
    rgba(250, 245, 235, 0.5),
    var(--white-bg)
  );
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(224, 198, 128, 0.2);
  overflow: visible;
}

.feature-icon img {
  width: 200%;
  height: 200%;
  filter: brightness(0) invert(1);
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.feature p {
  color: var(--muted-text);
  line-height: 1.8;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
}

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

.benefits-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--muted-text);
  line-height: 1.8;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-list strong {
  color: var(--dark-text);
  display: block;
  margin-bottom: 0.25rem;
}

.benefits-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-image img {
  width: 50%;
  max-width: 300px;
  height: auto;
}

/* Download Section */
.download {
  padding: 80px 0;
  text-align: center;
}

.download-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  background: var(--primary-dark-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-content p {
  font-size: 1.25rem;
  color: var(--muted-text);
  margin-bottom: 3rem;
}

.download-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
  transform: scale(1.05);
}

.app-store-btn img,
.google-play-btn img {
  height: 60px;
  width: auto;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(224, 198, 128, 0.2);
}

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

.footer-logo img {
  height: 32px;
  margin-bottom: 0.5rem;
  filter: brightness(0) saturate(100%) invert(10%) sepia(89%) saturate(3119%)
    hue-rotate(201deg) brightness(95%) contrast(101%);
}

.footer-logo p {
  color: var(--muted-text);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--muted-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Privacy Policy Styles */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #e0c680 0%, #ecde88 50%, #012d6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: var(--muted-text);
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.privacy-content h2 {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.privacy-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.privacy-content ul,
.privacy-content ol {
  color: var(--muted-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

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

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

  .hero-cta {
    align-items: center;
  }

  .hero-image {
    margin-top: 2rem;
    justify-content: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-content {
    grid-template-columns: 1fr;
  }

  .benefits-image {
    order: -1;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
