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

:root {
  --primary: #6b73ff;
  --primary-dark: #5a62e5;
  --secondary: #ffb86c;
  --text-dark: #2d2d2d;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --gradient: linear-gradient(135deg, #6b73ff 0%, #8b5cf6 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo-image {
  height: 60px;
  width: auto;
  max-width: 200px;
}

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

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

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

.cta-button {
  background: var(--gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 115, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 115, 255, 0.4);
}

/* Hero Section */
.hero {
  padding: 120px 5% 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eaff 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text .subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.secondary-button {
  background: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background: var(--primary);
  color: white;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(107, 115, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.phone-mockup {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
  border-radius: 30px;
  border: 8px solid #1a1a1a;
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: #1a1a1a;
  border-radius: 38px;
  z-index: -1;
}

.phone-mockup::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Features Section */
.features {
  padding: 80px 5%;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.feature-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Privacy Section */
.privacy {
  padding: 80px 5%;
  background: var(--bg-light);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.privacy-icon {
  font-size: 8rem;
  text-align: center;
}

.privacy-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.privacy-points {
  list-style: none;
  margin-top: 2rem;
}

.privacy-points li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.privacy-points li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

/* About Section */
.about {
  padding: 80px 5%;
  background: white;
  text-align: center;
}

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

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.made-with-love {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--primary);
  font-style: italic;
}

/* CTA Section */
.cta-section {
  padding: 80px 5%;
  background: var(--gradient);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button-white {
  background: white;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.email-signup {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  min-width: 300px;
  outline: none;
}

.signup-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Footer */
footer {
  padding: 40px 5%;
  background: var(--text-dark);
  color: white;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 1.5rem;
    align-items: center;
  }

  .nav-links.active {
    display: flex;
  }

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

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

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

  .hero-text .subtitle {
    font-size: 1.2rem;
  }

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

  .phone-mockup {
    max-width: 280px;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .privacy-icon {
    font-size: 6rem;
  }

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

/* Privacy Policy Page Styles */
.privacy-page header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.privacy-page nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.privacy-page .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.privacy-page .logo svg {
  width: 40px;
  height: 40px;
}

.privacy-page .last-updated {
  color: var(--text-light);
  font-size: 0.9rem;
}

.privacy-page main {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 5% 3rem;
}

.privacy-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

.privacy-page h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.privacy-page p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.privacy-page ul,
.privacy-page ol {
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.privacy-page li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.privacy-page .highlight {
  background: linear-gradient(135deg, #e8eeff 0%, #f0f5ff 100%);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}

.privacy-page .highlight h3 {
  margin-top: 0;
  color: var(--primary);
}

.privacy-page .contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.privacy-page .contact-info h3 {
  margin-top: 0;
}

.privacy-page a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.privacy-page a:hover {
  border-bottom-color: var(--primary);
}

.privacy-page .cta-button {
  color: var(--text-dark);
}

.privacy-page footer {
  background: var(--text-dark);
  color: white;
  padding: 2rem 5%;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .privacy-page h1 {
    font-size: 2rem;
  }

  .privacy-page h2 {
    font-size: 1.5rem;
  }

  .privacy-page main {
    padding: 2rem 5%;
  }
}
