/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2ecc71;
  --green-dark: #27ae60;
  --navy: #0f1f2e;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== Nav ===== */
nav {
  background: var(--navy);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav-brand .dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* ===== Hero ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 24px 100px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(46,204,113,0.15);
  color: var(--green);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  margin-left: 12px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--white);
}

/* ===== Features Grid ===== */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Privacy Card ===== */
.privacy-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.privacy-cta h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.privacy-cta p { color: var(--muted); font-size: 0.92rem; }

/* ===== Privacy Policy Page ===== */
.policy-header {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px 60px;
  text-align: center;
}

.policy-header h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 10px; }

.policy-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.policy-meta span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.policy-meta strong { color: rgba(255,255,255,0.85); }

.policy-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.policy-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 52px;
  box-shadow: var(--shadow);
}

.toc-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
}

.toc-table {
  width: 100%;
  border-collapse: collapse;
}

.toc-table td {
  padding: 6px 40px 6px 0;
  width: 50%;
  font-size: 0.9rem;
  vertical-align: top;
}

.toc-table td:last-child {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--border);
}

.toc-table a {
  color: var(--text);
  text-decoration: none;
}

.toc-table a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.policy-section { margin-bottom: 52px; }

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.policy-section p { margin-bottom: 14px; color: #374151; }
.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.policy-section ul li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: #374151;
  font-size: 0.97rem;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.third-party-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}

.third-party-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.third-party-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.contact-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.contact-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.contact-box p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 4px; }
.contact-box a { color: var(--green); }
.contact-box a:hover { color: var(--green-dark); }

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 28px 24px;
  font-size: 0.85rem;
}

footer a { color: rgba(255,255,255,0.7); }
footer a:hover { color: var(--white); }
footer .footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
footer .footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 16px; }
footer .footer-socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
footer .footer-socials a:hover { color: var(--green); }
footer .footer-socials svg { width: 20px; height: 20px; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
.privacy-cta { flex-direction: column; text-align: center; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  .hero { padding: 60px 20px 80px; }
}
