/* Gomate Website Styles */

:root {
  --color-primary: #0891b2;
  --color-primary-dark: #0e7490;
  --color-primary-light: #22d3ee;
  --color-accent: #06b6d4;
  --color-bg: #f8fafc;
  --color-bg-alt: #ffffff;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-lighter: #94a3b8;
  --color-border: #e2e8f0;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1120px;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 96px 24px 72px;
  background: linear-gradient(168deg, #ecfeff 0%, #f0f9ff 50%, var(--color-bg) 100%);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--color-primary);
}

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

.hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-link img {
  height: 54px;
  transition: transform 0.2s;
}

.badge-link:hover img {
  transform: scale(1.05);
}

/* ---------- Features ---------- */

.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--color-text);
}

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

.feature-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ---------- Screenshots ---------- */

.screenshots {
  background: linear-gradient(180deg, var(--color-bg) 0%, #ecfeff 100%);
  padding: 80px 24px;
}

.screenshots h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.screenshots-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-frame {
  width: 220px;
  text-align: center;
}

.screenshot-frame img {
  width: 220px;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s;
}

.screenshot-frame img:hover {
  transform: scale(1.03);
}

.screenshot-label {
  display: block;
  margin-top: 12px;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---------- Download / CTA ---------- */

.download {
  text-align: center;
  padding: 80px 24px;
}

.download h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.download p {
  color: var(--color-text-light);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 24px;
  text-align: center;
  color: var(--color-text-lighter);
  font-size: 0.875rem;
}

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

.footer-links a {
  color: var(--color-text-light);
  font-weight: 500;
}

/* ---------- Support Page ---------- */

.page-header {
  text-align: center;
  padding: 64px 24px 40px;
  background: linear-gradient(168deg, #ecfeff 0%, #f0f9ff 50%, var(--color-bg) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.support-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.contact-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-box h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-box p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.contact-email {
  display: inline-block;
  background: var(--color-primary);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.contact-email:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.faq h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item:first-of-type {
  border-top: 1px solid var(--color-border);
}

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

.faq-item p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ---------- Legal / Privacy Page ---------- */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.legal-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-content ul {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

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

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

  .screenshot-frame {
    width: 180px;
  }

  .screenshot-frame img {
    width: 180px;
  }

  .nav-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 16px 48px;
  }

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

  .nav-inner {
    padding: 0 16px;
  }
}
