/* ============================================
   Whit Did Ye Say? — Brand Stylesheet v2
   Dark mode | Lilita One + League Spartan
   Brand blue: #1A5FB4 | Accent: #5B9BD5
   Optimised for 1440p+ screens
   ============================================ */

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

:root {
  --bg-dark: #0B0F1A;
  --bg-card: #111827;
  --bg-card-hover: #1A2332;
  --bg-elevated: #0E1525;
  --brand-blue: #1A5FB4;
  --brand-blue-light: #5B9BD5;
  --brand-blue-glow: rgba(26, 95, 180, 0.3);
  --brand-blue-subtle: rgba(91, 155, 213, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #B0BEC5;
  --text-muted: #6B7B8D;
  --border-color: rgba(91, 155, 213, 0.15);
  --discord-purple: #5865F2;
  --youtube-red: #FF0000;
  --tiktok-pink: #FE2C55;
  --success-green: #4CAF50;
  --font-heading: 'Lilita One', cursive;
  --font-body: 'League Spartan', sans-serif;
  --container-max: 1200px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a {
  color: var(--brand-blue-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #fff;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Tartan Background Overlay (CSS-only)
   Very subtle, adds Scottish character
   ============================================ */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(26, 95, 180, 0.4) 40px,
      rgba(26, 95, 180, 0.4) 42px,
      transparent 42px,
      transparent 80px,
      rgba(91, 155, 213, 0.3) 80px,
      rgba(91, 155, 213, 0.3) 81px,
      transparent 81px,
      transparent 120px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(26, 95, 180, 0.4) 40px,
      rgba(26, 95, 180, 0.4) 42px,
      transparent 42px,
      transparent 80px,
      rgba(91, 155, 213, 0.3) 80px,
      rgba(91, 155, 213, 0.3) 81px,
      transparent 81px,
      transparent 120px
    );
}

/* ============================================
   Celtic Knot Divider
   ============================================ */
.celtic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  opacity: 0.35;
}

.celtic-divider .celtic-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-blue-light), transparent);
}

.celtic-divider .celtic-knot {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.celtic-divider .celtic-knot svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.nav-logo:hover {
  color: var(--text-primary);
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--brand-blue);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #2470CC;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(11, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  z-index: 999;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
}

.mobile-link.cta {
  background: var(--brand-blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 4px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Faint Highland background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/highlands-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, var(--brand-blue-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--border-color);
  color: var(--brand-blue-light);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-tagline strong {
  color: var(--text-primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 95, 180, 0.4);
}

.btn-primary:hover {
  background: #2470CC;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 180, 0.5);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-blue-light);
  border: 2px solid var(--brand-blue);
  padding: 12px 26px;
}

.btn-outline:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--brand-blue-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 320px;
  background: #1A1F2E;
  border-radius: 40px;
  padding: 14px;
  border: 2px solid rgba(91, 155, 213, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--brand-blue-glow);
}

.phone-notch {
  width: 130px;
  height: 26px;
  background: #0B0F1A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
}

.phone-screen {
  background: var(--bg-dark);
  border-radius: 26px;
  overflow: hidden;
  padding: 20px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 18px;
}

.app-logo-small {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.app-header-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-primary);
}

.app-content {
  padding: 4px 0;
}

.app-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue-light);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.app-field {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  min-height: 70px;
}

.app-field-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.app-field-text {
  display: block;
  font-size: 0.92rem;
  color: var(--text-primary);
  font-style: italic;
  transition: opacity 0.4s ease;
}

.app-field-text.fade-out {
  opacity: 0;
}

.app-divider {
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.app-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.app-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.app-action-btn.active {
  background: var(--brand-blue);
  color: #fff;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

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

.section-badge {
  display: inline-block;
  background: var(--brand-blue-subtle);
  border: 1px solid var(--border-color);
  color: var(--brand-blue-light);
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   Features Section
   ============================================ */
.features {
  padding: 90px 0;
  background: var(--bg-elevated);
  position: relative;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-blue-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-blue-light);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   Go Pro / Pricing Section
   ============================================ */
.go-pro {
  padding: 90px 0;
  position: relative;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--brand-blue);
  box-shadow: 0 0 30px var(--brand-blue-glow);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #fff;
  padding: 5px 18px;
  border-radius: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.currency {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
}

.price {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--text-primary);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-save {
  display: inline-block;
  background: rgba(76, 175, 80, 0.15);
  color: var(--success-green);
  padding: 3px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Community Section
   ============================================ */
.community {
  padding: 90px 0;
  background: var(--bg-elevated);
  position: relative;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  display: block;
  color: var(--text-primary);
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  color: var(--text-primary);
}

.community-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.community-icon svg {
  width: 28px;
  height: 28px;
}

.community-icon.discord {
  background: rgba(88, 101, 242, 0.15);
  color: var(--discord-purple);
}

.community-icon.youtube {
  background: rgba(255, 0, 0, 0.12);
  color: var(--youtube-red);
}

.community-icon.tiktok {
  background: rgba(254, 44, 85, 0.12);
  color: var(--tiktok-pink);
}

.community-icon.merch {
  background: var(--brand-blue-subtle);
  color: var(--brand-blue-light);
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.community-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.community-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.community-extra-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 28px;
}

.community-extra-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brand-blue-light);
  margin-bottom: 10px;
}

.community-extra-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--brand-blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.cta-content blockquote {
  font-style: italic;
  color: var(--brand-blue-light);
  font-size: 1.2rem;
  margin-bottom: 36px;
  padding: 18px 28px;
  border-left: 3px solid var(--brand-blue);
  display: inline-block;
  text-align: left;
}

.cta-content blockquote span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: normal;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-dark);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 400px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-blue-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   1440p+ Large Screen Scaling
   ============================================ */
@media (min-width: 1440px) {
  :root {
    --container-max: 1400px;
  }

  body {
    font-size: 18px;
  }

  .nav-container {
    height: 80px;
  }

  .nav-logo {
    font-size: 1.4rem;
  }

  .nav-logo-img {
    width: 44px;
    height: 44px;
  }

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

  .nav-cta {
    padding: 12px 28px;
    font-size: 1.1rem;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .hero-container {
    gap: 80px;
  }

  .hero-badge {
    font-size: 1.1rem;
    padding: 10px 24px;
  }

  .hero-title {
    font-size: 5.5rem;
    margin-bottom: 24px;
  }

  .hero-tagline {
    font-size: 1.4rem;
  }

  .hero-desc {
    font-size: 1.2rem;
    max-width: 580px;
  }

  .btn {
    padding: 16px 32px;
    font-size: 1.15rem;
  }

  .btn-icon {
    width: 22px;
    height: 22px;
  }

  .phone-frame {
    width: 380px;
    border-radius: 44px;
    padding: 16px;
  }

  .phone-notch {
    width: 150px;
    height: 30px;
  }

  .phone-screen {
    border-radius: 30px;
    padding: 24px;
  }

  .app-logo-small {
    width: 36px;
    height: 36px;
  }

  .app-header-title {
    font-size: 1.15rem;
  }

  .app-label {
    font-size: 0.85rem;
  }

  .app-field {
    padding: 18px;
    min-height: 80px;
  }

  .app-field-label {
    font-size: 0.8rem;
  }

  .app-field-text {
    font-size: 1.05rem;
  }

  .app-action-btn {
    width: 46px;
    height: 46px;
  }

  .app-action-btn svg {
    width: 22px;
    height: 22px;
  }

  .section-header {
    margin-bottom: 64px;
  }

  .section-badge {
    font-size: 1.05rem;
    padding: 10px 24px;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .features, .go-pro, .community {
    padding: 100px 0;
  }

  .features-grid {
    gap: 28px;
  }

  .feature-card {
    padding: 36px 32px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .feature-card h3 {
    font-size: 1.4rem;
  }

  .feature-card p {
    font-size: 1.1rem;
  }

  .pricing-card {
    padding: 40px 32px;
  }

  .pricing-header h3 {
    font-size: 1.4rem;
  }

  .price {
    font-size: 3.6rem;
  }

  .pricing-features li {
    font-size: 1.1rem;
    padding: 12px 0;
  }

  .community-card {
    padding: 36px 28px;
  }

  .community-icon {
    width: 64px;
    height: 64px;
  }

  .community-icon svg {
    width: 32px;
    height: 32px;
  }

  .community-card h3 {
    font-size: 1.2rem;
  }

  .community-card p {
    font-size: 1.05rem;
  }

  .community-extra-card {
    padding: 32px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-content blockquote {
    font-size: 1.3rem;
  }

  .footer {
    padding: 64px 0 32px;
  }

  .footer-logo {
    font-size: 1.3rem;
  }

  .footer-brand p {
    font-size: 1.05rem;
  }

  .footer-links h4 {
    font-size: 1.15rem;
  }

  .footer-links a {
    font-size: 1.05rem;
  }

  .celtic-divider {
    max-width: 500px;
  }

  .celtic-divider .celtic-knot {
    width: 34px;
    height: 34px;
  }
}

/* Even larger screens (4K) */
@media (min-width: 2000px) {
  :root {
    --container-max: 1600px;
  }

  body {
    font-size: 20px;
  }

  .hero-title {
    font-size: 6.5rem;
  }

  .phone-frame {
    width: 420px;
  }
}

/* ============================================
   Responsive Design — Tablet & Mobile
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-container {
    height: 64px;
    padding: 0 20px;
  }

  .mobile-menu {
    top: 64px;
  }

  .hero {
    padding: 80px 0 40px;
    min-height: auto;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .phone-frame {
    width: 260px;
  }

  .section-container {
    padding: 0 20px;
  }

  .features, .go-pro, .community {
    padding: 60px 0;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-extras {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .celtic-divider {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

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

  .section-title {
    font-size: 1.6rem;
  }
}

/* ============================================
   Privacy Page Styles
   ============================================ */
.privacy-page {
  padding: 110px 0 60px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

.privacy-content h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.privacy-content .last-updated {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--brand-blue-light);
  margin-top: 36px;
  margin-bottom: 14px;
}

.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.privacy-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.privacy-content ul {
  margin: 10px 0 18px 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-content li {
  margin-bottom: 8px;
}

.privacy-content a {
  color: var(--brand-blue-light);
}

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

.privacy-content strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .privacy-page {
    padding: 80px 0 40px;
  }

  .privacy-content {
    padding: 0 20px;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.hero-visual {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card,
.pricing-card,
.community-card {
  animation: fadeInUp 0.5s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.25s; }
.feature-card:nth-child(5) { animation-delay: 0.3s; }
.feature-card:nth-child(6) { animation-delay: 0.35s; }
