/* ===== ZipitApp Shared Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --brand-dark: #0f0d2e;
  --brand-navy: #1a1744;
  --brand-purple: #6c63ff;
  --brand-blue: #4f46e5;
  --brand-accent: #7c73ff;
  --bg-light: #f0f2ff;
  --bg-hero: #eef0fb;
  --text-dark: #0f0d2e;
  --text-mid: #4a4869;
  --text-light: #8886a8;
  --white: #ffffff;
  --border: #e2e4f0;
  --green: #22c55e;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(79,70,229,0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--brand-dark);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }

/* ===== HEADER ===== */
.site-header {
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--brand-dark);
  color: var(--white);
  padding: 48px 60px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}
.footer-brand .logo { color: var(--white); }
.footer-brand .logo-icon { background: rgba(255,255,255,0.15); }
.footer-tagline {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 20px;
}
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding-bottom: 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--brand-dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15,13,46,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-footer { padding: 40px 20px 0; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
}
