:root {
  --primary: #ff385c;
  --secondary: #e61e4d;
  --accent: #ff7e5f;
  --bg: #f7f7f7;
  --text: #222222;
  --subtitle: #717171;
  --divider: #ebebeb;
  --card: #ffffff;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

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

/* Header / nav */
header {
  background: var(--card);
  border-bottom: 1px solid var(--divider);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand .logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* Hero */
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  text-align: center;
}

.hero .logo-lg {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 12px 30px rgba(255, 56, 92, 0.25);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.hero p.subtitle {
  font-size: 1.15rem;
  color: var(--subtitle);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 56, 92, 0.3);
}

.btn-primary:hover {
  text-decoration: none;
  opacity: 0.92;
}

.btn-secondary {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--divider);
}

.btn-secondary:hover {
  text-decoration: none;
  border-color: var(--subtitle);
}

/* Feature grid */
.features {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}

.feature-card .emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--subtitle);
  font-size: 0.92rem;
}

/* Content pages (privacy / terms / support) */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.page h1 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.page .updated {
  color: var(--subtitle);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.page h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.page p,
.page li {
  color: #3c3c3c;
}

.page ul {
  padding-left: 22px;
}

.page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.92rem;
}

.page th,
.page td {
  border: 1px solid var(--divider);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.page th {
  background: #fafafa;
  font-weight: 700;
}

.card-box {
  background: var(--card);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list .label {
  font-weight: 700;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-item h3 {
  margin-bottom: 6px;
}

/* Footer */
footer {
  border-top: 1px solid var(--divider);
  padding: 32px 24px;
  text-align: center;
  color: var(--subtitle);
  font-size: 0.88rem;
}

footer a {
  color: var(--subtitle);
  font-weight: 600;
}

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2rem;
  }
  .nav-links {
    gap: 16px;
    font-size: 0.85rem;
  }
}
