/* Import Google Fonts - Sora */
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap");

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

body {
  font-family: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #212121;
  background: #f8f9fa;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  color: #00897b;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  color: #00695c;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: #424242;
}

/* Layout Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-title h2 {
  font-size: 2.5rem;
  color: #00897b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  color: #757575;
  font-size: 1.125rem;
}

/* Navigation */
.navbar {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00897b;
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  flex-shrink: 0;
}

.nav-links li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #424242;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #00897b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: #00897b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features {
  padding: 6rem 2rem;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: #f8f9fa;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.feature-card h3 {
  color: #00695c;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.coming-soon-badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Privacy Section */
.privacy-section {
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 24px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.privacy-section p {
  color: white;
  font-size: 1.125rem;
  opacity: 0.8;
}

/* Download Section */
.download-section {
  padding: 6rem 2rem;
  background: white;
  text-align: center;
}

.download-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  transition: transform 0.3s;
}

.store-badge:hover {
  transform: translateY(-4px);
}

.store-badge img {
  height: 60px;
  width: auto;
}

/* Footer */
.footer {
  background: #1e1e1e;
  color: #b3b3b3;
  padding: 3rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: white;
  opacity: 0.75;
}

.footer-section ul {
  margin-left: 0;
  list-style: none;
}

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

.footer-section a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #00bfa5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.875rem;
}

.footer-bottom p {
  color: #b3b3b3;
  margin-bottom: 0.5rem;
}

/* Policy Pages Styles */
.header {
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.header p {
  font-size: 1rem;
  opacity: 0.9;
  color: #f8f9fa;
}

.policy-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

ul,
ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: #424242;
}

.highlight {
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #00897b 0%, #00bfa5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.alert {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.policy-footer {
  text-align: center;
  padding: 2rem;
  color: #757575;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .header h1 {
    font-size: 2rem;
  }

  .card {
    padding: 2rem;
  }

  .policy-container {
    margin: 2rem auto;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1.1rem;
    gap: 0.25rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }
}
