@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #0030D4;
  --color-secondary: #032082;
  --color-bg: #0a0a0a;
  --color-bg-alt: #121212;
  --color-text: #ffffff;
  --color-silver: #a0a0a0;
  --color-border: #222222;
  --border-radius: 16px;
  --shadow: 0 8px 32px rgba(0, 48, 212, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 40px 0;
  text-align: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 0 80px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #ffffff, var(--color-silver));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--color-silver);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Contact Button */
.btn-contact {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 48, 212, 0.25);
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* App Store Button */
.btn-appstore {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-appstore:hover {
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background-color: var(--color-bg-alt);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 48, 212, 0.5);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.faq-item p {
  color: var(--color-silver);
  font-size: 15px;
}

/* Content Pages (Privacy, Terms) */
.content-page {
  padding: 40px 0 80px;
}

.content-page h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.content-page h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.content-page p {
  margin-bottom: 16px;
  color: var(--color-silver);
  font-size: 16px;
}

.content-page ul {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--color-silver);
}

.content-page li {
  margin-bottom: 8px;
}

.content-page a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.content-page a:hover {
  color: #4a7dff;
}

.content-page strong {
  color: var(--color-text);
}

/* Footer */
footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin-top: 40px;
}

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

.footer-links a {
  color: var(--color-silver);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-copy {
  color: rgba(160, 160, 160, 0.6);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .content-page h1 {
    font-size: 28px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}