/* ========================================
   My BF's Agenda - Website Styles
   ======================================== */

:root {
  --purple: #7350A6;
  --purple-dark: #5a3c87;
  --pink: #D98CB3;
  --pink-light: #f5d4e2;
  --bg: #fafafa;
  --bg-card: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #a0a0a0;
  --border: #ececec;
  --gradient: linear-gradient(135deg, #7350A6 0%, #D98CB3 100%);
  --gradient-soft: linear-gradient(135deg, rgba(115, 80, 166, 0.08) 0%, rgba(217, 140, 179, 0.08) 100%);
  --shadow-sm: 0 2px 8px rgba(115, 80, 166, 0.06);
  --shadow-md: 0 8px 24px rgba(115, 80, 166, 0.1);
  --shadow-lg: 0 20px 60px rgba(115, 80, 166, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 14px 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.nav-brand .paw {
  width: 28px;
  height: 28px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--purple);
  opacity: 1;
}

.nav-cta {
  background: var(--gradient);
  color: white !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(217, 140, 179, 0.18) 0%, transparent 60%);
  z-index: -1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-paw {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: block;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 18px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: white !important;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
}

.hero-cta:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-note {
  display: block;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* App preview mockup */
.hero-preview {
  margin-top: 60px;
  position: relative;
}

.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.phone-screen {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border-radius: 28px;
  padding: 30px 20px;
  text-align: center;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-screen .paw {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.phone-screen h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.phone-screen p {
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
}

.phone-pets {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  font-size: 26px;
}

/* ========================================
   Features
   ======================================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.feature-card {
  background: var(--bg-card);
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(115, 80, 166, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.feature-icon.purple { background: rgba(115, 80, 166, 0.12); color: var(--purple); }
.feature-icon.pink   { background: rgba(217, 140, 179, 0.18); color: #c44d8a; }
.feature-icon.blue   { background: rgba(64, 156, 255, 0.12); color: #2b7fd6; }
.feature-icon.green  { background: rgba(48, 176, 99, 0.12); color: #1f8a4d; }
.feature-icon.orange { background: rgba(255, 149, 0, 0.12); color: #cc7a00; }
.feature-icon.red    { background: rgba(255, 87, 87, 0.12); color: #cc4444; }

.feature-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ========================================
   Pawsome Advisor (AI section)
   ======================================== */
.advisor {
  background: var(--gradient-soft);
  border-radius: 32px;
  padding: 64px 48px;
  margin: 40px 0;
  text-align: center;
}

.advisor-badge {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.advisor h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
}

.advisor-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}

.advisor-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 36px;
}

.advisor-feature {
  background: var(--bg-card);
  padding: 22px 18px;
  border-radius: var(--radius-sm);
  text-align: left;
}

.advisor-feature-emoji {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.advisor-feature h4 {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.advisor-feature p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.advisor-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--bg-card);
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  color: var(--text-secondary);
}

.advisor-price strong {
  font-size: 22px;
  color: var(--purple);
  font-weight: 700;
}

/* ========================================
   Why us
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 24px;
}

.why-card-emoji {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ========================================
   CTA section
   ======================================== */
.cta-section {
  text-align: center;
  background: var(--gradient);
  color: white;
  border-radius: 32px;
  padding: 72px 32px;
  margin: 60px 0;
}

.cta-section h2 {
  color: white;
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .hero-cta {
  background: white;
  color: var(--purple) !important;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-card);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 17px;
}

.footer-brand .paw {
  width: 22px;
  height: 22px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ========================================
   Legal pages (Privacy, Support)
   ======================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal h1 {
  font-size: 42px;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
}

.legal p, .legal li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal ul {
  margin-left: 22px;
  margin-bottom: 14px;
}

.legal a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-contact {
  background: var(--gradient-soft);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  text-align: center;
}

.legal-contact a {
  font-weight: 600;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 720px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .hero {
    padding: 56px 0 40px;
  }
  .section {
    padding: 56px 0;
  }
  .advisor {
    padding: 48px 24px;
    border-radius: 24px;
  }
  .cta-section {
    padding: 56px 24px;
    border-radius: 24px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
