@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap");

/* =====================
   DESIGN TOKENS
===================== */
:root {
  --primary: #14b8a6;
  --primary-dark: #0d9488;

  --bg-page: #ffff;
  --bg-section: #f1f5f9;
  --bg-card: #ffffff;

  --btn-primary: linear-gradient(90deg, #14b8a6, #0d9488);
  --border-soft: rgba(20, 184, 166, 0.25);
  --shadow-soft: 0 24px 60px rgba(15, 118, 110, 0.08);

  --radius: 6px;

  --h1: 56px;
  --h2: 40px;
  --h3: 22px;
  --text: 16px;
}
html {
  scroll-behavior: smooth;
}
/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geist", sans-serif;
  background: var(--bg-page);
  color: #0f172a;
  line-height: 1.7;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

/* =====================
   TYPOGRAPHY
===================== */
h1 {
  font-size: var(--h1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: bold;
}

h2 {
  font-size: var(--h2);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: bold;
}

h3 {
  font-size: var(--h3);
  font-weight: 600;
}

p {
  font-size: var(--text);
  color: #475569;
}

/* =====================
   HEADER / NAVBAR
===================== */

header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px; /* matches SaaS height */
}

/* Logo */
.logo img {
  height: 52px;
  display: block;
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

/* CTA button */
header .btn-primary {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
}

/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* FOOTER */
/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: #0d9689;
  color: #ffffff;
  padding: 80px 16px 32px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* =========================
   BRAND
========================= */
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-desc {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: #ffffff;
  color: var(--primary-dark);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.footer-socials a img {
  background-size: cover;
  transform: scale(1.1);
}
/* =========================
   COLUMNS
========================= */
.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.95;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* =========================
   DIVIDER + BOTTOM
========================= */
.footer-divider {
  max-width: 1400px;
  margin: 48px auto 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.95;
}
/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* =====================
   MOBILE NAV
===================== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  header .btn-primary {
    display: none;
  }
}
/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 768px) {
  .logo img {
    height: 42px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
  }

  .footer-column:first-of-type {
    border-top: none;
    padding-top: 0;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 60px 32px;
}
/* =====================
   BUTTONS
===================== */
.btn {
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--btn-primary);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: black;
  background: transparent;
}

/* =====================
   CARD
===================== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

/* =====================
   PRIVACY POLICY PAGE 
===================== */

.policy-page {
  background: #ffffff;
  padding: 80px 16px;
}

.policy-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Page title */
.page-title {
  font-size: 48px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 48px;
  color: #000;
}

/* Section heading */
.section-title {
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 24px;
  color: #000;
}

/* Body text */
.policy-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
}

/* =========================
   MOBILE VIEW (Exact Match)
========================= */
@media (max-width: 640px) {
  .policy-page {
    padding: 32px 16px;
  }

  .policy-container {
    max-width: 420px;
  }

  .page-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .policy-container p {
    font-size: 13px;
    line-height: 1.7;
  }
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
