/* Four Hawk Social — Website Styles
   Aligned with the SaaS app design system:
   - Brand: #2E75B6 (primary), #0f2d52 (dark navy)
   - Font: Inter
   - Cards: rounded-xl, subtle border, no shadows
   - Clean, minimal SaaS aesthetic
*/

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

:root {
  --brand-50: #f0f4ff;
  --brand-100: #e0eaff;
  --brand-500: #2E75B6;
  --brand-600: #2563a8;
  --brand-700: #1d4f8c;
  --brand-900: #0f2d52;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--brand-500);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-login {
  background: var(--brand-500);
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}

.nav-login:hover {
  background: var(--brand-600);
  color: var(--white) !important;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 100%);
  color: var(--white);
  padding: 100px 0 108px;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 32px;
  opacity: 0.85;
  line-height: 1.7;
  font-weight: 400;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--brand-700);
}

.hero .btn-primary:hover {
  background: var(--brand-50);
}

.hero-sub {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Features ───────────────────────────────────────── */
.features {
  padding: 88px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.15s;
}

.feature-card:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-500);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-500);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── Platforms ───────────────────────────────────────── */
.platforms {
  padding: 88px 0;
  background: var(--white);
  text-align: center;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.platform-icon:hover {
  transform: translateY(-2px);
}

.platform-icon svg {
  width: 26px;
  height: 26px;
}

.platform-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* Platform brand colors */
.platform-facebook { background: #e7f0fe; }
.platform-facebook svg { fill: #1877F2; }
.platform-instagram { background: #fce7f3; }
.platform-instagram svg { fill: #E4405F; }
.platform-x { background: var(--gray-100); }
.platform-x svg { fill: var(--gray-900); }
.platform-linkedin { background: #e0f2fe; }
.platform-linkedin svg { fill: #0A66C2; }
.platform-pinterest { background: #fce7e7; }
.platform-pinterest svg { fill: #BD081C; }
.platform-tiktok { background: var(--gray-100); }
.platform-tiktok svg { fill: var(--gray-900); }
.platform-youtube { background: #fee2e2; }
.platform-youtube svg { fill: #FF0000; }

/* ── CTA ────────────────────────────────────────────── */
.cta {
  padding: 88px 0;
  background: var(--gray-50);
  text-align: center;
}

.cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.cta p {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-500);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--brand-600);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .logo-mark {
  background: var(--brand-500);
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
}

/* ── Legal Pages ────────────────────────────────────── */
.legal-page {
  padding: 64px 0;
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.legal-page .last-updated {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-bottom: 36px;
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px;
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 32px;
  margin-bottom: 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 20px;
  margin-bottom: 6px;
}

.legal-content p {
  margin-bottom: 10px;
  color: var(--gray-700);
  font-size: 0.875rem;
  line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 10px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 4px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.legal-content strong {
  font-weight: 600;
  color: var(--gray-900);
}

.legal-content a {
  color: var(--brand-500);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.875rem;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
}

.legal-content th {
  background: var(--gray-50);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gray-700);
}

.legal-content td {
  color: var(--gray-700);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.8125rem;
  }

  .platform-logos {
    gap: 28px;
  }

  .legal-content {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .section-header h2,
  .cta h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 0 72px;
  }

  .hero h1 {
    font-size: 1.625rem;
  }

  .nav-links {
    gap: 12px;
  }
}

/* ── Pricing page ───────────────────────────────────── */
.pricing-hero {
  padding: 64px 0 32px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.pricing-hero p {
  color: var(--gray-500);
  font-size: 1rem;
  margin-bottom: 32px;
}

.billing-toggle {
  display: inline-flex;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.billing-toggle-btn {
  background: transparent;
  border: 0;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}

.billing-toggle-btn.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.save-pill {
  background: #e6f9ee;
  color: #047857;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.pricing-tiers {
  padding: 32px 0 80px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: var(--brand-500);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(46, 117, 182, 0.12);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-500);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tier-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.tier-tagline {
  color: var(--gray-500);
  font-size: 0.8125rem;
  line-height: 1.5;
  min-height: 38px;
  margin-bottom: 20px;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.tier-amount {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.tier-period {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.tier-billed {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.tier-cta {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--brand-600);
  border: 1px solid var(--brand-500);
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  margin-bottom: 24px;
}

.tier-cta:hover {
  background: var(--brand-50);
}

.tier-cta-primary {
  background: var(--brand-500);
  color: var(--white);
}

.tier-cta-primary:hover {
  background: var(--brand-600);
  color: var(--white);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.tier-features li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
}

.tier-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--brand-500);
  font-weight: 700;
  font-size: 0.875rem;
}

.enterprise-band {
  margin-top: 56px;
  padding: 32px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.enterprise-band h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.enterprise-band p {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.pricing-faq {
  padding: 80px 0;
  background: var(--gray-50);
}

.pricing-faq h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .enterprise-band {
    flex-direction: column;
    text-align: center;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .pricing-hero h1 {
    font-size: 1.75rem;
  }
}
