:root {
  --primary: #6d28d9;
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}
.logo-link {
  text-decoration: none;
  color: inherit;
}

/* SUPPORT / CONTACT SECTION */

.support-section {
  max-width: 1100px;
  margin: 120px auto 160px;
  padding: 0 20px;
}

.support-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 56px 72px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.support-header {
  text-align: center;
  margin-bottom: 48px;
}

.support-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.support-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* FORM */

.support-form {
  max-width: 720px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-row label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
}

/* ACTIONS */

.form-actions {
  text-align: center;
  margin-top: 32px;
}

/* ALT CONTACT */

.support-alt {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* MOBILE */

@media (max-width: 640px) {
  .support-card {
    padding: 32px 24px;
  }

  .support-header h1 {
    font-size: 28px;
  }
}


/* LEGAL PAGES – REFINED */

.legal-section {
  max-width: 1200px;
  margin: 120px auto 160px;
  padding: 0 20px;
}

/* Page intro */
.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
}

/* Card */
.legal-card {
  background: #ffffff;
  border-radius: 20px;
   padding: 56px 72px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

/* Section blocks */
.legal-card h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 700;
  color: #4338ca; /* calmer than primary */
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #1f2937;
  max-width: none;
}
.legal-card ul {
  max-width: none;
}

/* Lists */
.legal-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.legal-card li {
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #1f2937;
}

/* Subtle dividers */
.legal-card h2::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #e5e7eb;
  margin-bottom: 14px;
}

@media (min-width: 1280px) {
  .legal-section {
    max-width: 1200px;
  }
}


/* Mobile */
@media (max-width: 640px) {
  .legal-card {
    padding: 32px 24px;
  }

  .legal-header h1 {
    font-size: 28px;
  }
}



/* HEADER */
.top-header {
  padding: 24px 32px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 22px;          /* subtle */
  opacity: 0.9;          /* not invisible */
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

/* NAV PILL */
.nav-pill {
  justify-self: center;
  background: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  display: flex;
  gap: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav-pill a {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* HERO */
.hero {
  max-width: 900px;
  margin: 120px auto 140px;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* MOBILE SECTION */
.mobile-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.mobile-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.mobile-section p {
  color: var(--muted);
  margin-bottom: 30px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  min-width: 210px;
  border-radius: 12px;
  text-decoration: none;
}

.store-icon {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* App Store */
.store-badge.appstore {
  background: #000;
  color: #fff;
}

/* Play Store */
.store-badge.playstore {
  background: #111827;
  color: #fff;
}

.store-badge span {
  font-size: 11px;
  opacity: 0.8;
}

.store-badge strong {
  font-size: 16px;
  font-weight: 600;
}



/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  text-align: center;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.footer a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

.copyright {
  font-size: 13px;
  color: var(--muted);
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-pill {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-header {
    padding: 16px 20px;
  }
  
  .top-header {
  position: relative;
  z-index: 10;
  background: transparent;
}


  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-pill {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .login-link {
    display: none; /* optional: keeps header clean */
  }

  .btn-primary {
    padding: 8px 14px;
    font-size: 14px;
  }
}

