/* ============================================
   Lions Club Dunnellon — Premium Modern Stylesheet
   ============================================ */

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

/* ============================================
   1. Custom Properties
   ============================================ */
:root {
  /* Brand Colors */
  --primary: #004B87;
  --primary-dark: #003462;
  --primary-deep: #001a3a;
  --accent: #FDB913;
  --accent-dark: #D49B0F;
  --accent-light: #FDD85D;

  /* Dark palette */
  --dark-950: #0a0e1a;
  --dark-900: #111827;
  --dark-800: #1f2937;

  /* Neutrals */
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;

  --white: #FFFFFF;
  --radius-sm: 0.75rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--zinc-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ============================================
   3. Typography
   ============================================ */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--zinc-950);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  line-height: 1.75;
  color: var(--zinc-600);
}

.text-highlight {
  color: var(--accent);
}

.section-label {
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 8px 16px;
  border-radius: 9999px;
  background: var(--zinc-100);
  color: var(--zinc-700);
  box-shadow: inset 0 0 0 1px var(--zinc-200);
}

.section-label-accent {
  background: rgba(253, 185, 19, 0.1);
  color: var(--accent-dark);
  border: 1px solid rgba(253, 185, 19, 0.3);
  box-shadow: none;
}

.section-label-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--zinc-500);
}

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

.container-narrow {
  max-width: 800px;
}

section {
  padding: 80px 0;
}

/* ============================================
   5. Accessibility
   ============================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================
   6. Sticky Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-950);
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.logo-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.logo-wrapper img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.logo-wrapper img:hover {
  transform: scale(1.05);
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
}

.nav-left,
.nav-right {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-left a,
.nav-right a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: white;
}

.nav-right a[aria-current="page"],
.nav-left a[aria-current="page"] {
  color: white;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark-950) !important;
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: 600 !important;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  translate: 0 -1px;
}

.hamburger,
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--dark-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav .nav-cta {
  display: inline-block;
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   7. Hero Section
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark-950), var(--dark-900), #0a1628);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 75, 135, 0.25), transparent 50%),
    radial-gradient(circle at bottom left, rgba(253, 185, 19, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  box-shadow: var(--shadow-2xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-logo-card img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  background: white;
  padding: 24px;
  box-shadow: var(--shadow-2xl);
}

.hero-text {
  color: white;
}

.hero-text h1 {
  color: white;
  max-width: 640px;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 2;
  color: var(--zinc-300);
  max-width: 560px;
}

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

.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hero-stat {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--zinc-300);
  margin-top: 4px;
}

/* ============================================
   8. Buttons
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white,
.btn-ghost {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark-950);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(253, 185, 19, 0.3);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 185, 19, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  border: 2px solid rgba(253, 185, 19, 0.4);
}

.btn-secondary:hover {
  background: rgba(253, 185, 19, 0.1);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--primary);
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-white {
  background: white;
  color: var(--dark-950);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 1rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ============================================
   9. Cards (Modern)
   ============================================ */
.card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0, 75, 135, 0.05);
  box-shadow: inset 0 0 0 1px rgba(0, 75, 135, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-badge {
  display: inline-flex;
  background: var(--accent);
  color: var(--dark-950);
  padding: 4px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.card h3 {
  color: var(--zinc-950);
  margin-bottom: 12px;
}

.card p {
  color: var(--zinc-600);
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 16px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 8px;
}

/* ============================================
   10. Problem Cards
   ============================================ */
.problem-section {
  background: var(--zinc-50);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.problem-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.problem-card .card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.problem-card h3 {
  color: var(--zinc-950);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.problem-card p {
  color: var(--zinc-600);
}

/* ============================================
   11. Guide Section
   ============================================ */
.guide-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.guide-content .section-label {
  margin-bottom: 16px;
}

.guide-content h2 {
  margin-bottom: 24px;
}

.guide-content p {
  font-size: 1.125rem;
  line-height: 2;
  max-width: 560px;
}

.guide-highlights {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.guide-highlight {
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-200);
  background: white;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
}

.guide-highlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.guide-highlight p {
  font-weight: 500;
  color: var(--zinc-800);
}

.guide-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  background: var(--zinc-50);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.guide-card-inner {
  border-radius: var(--radius-lg);
  background: white;
  padding: 24px;
  box-shadow: var(--shadow);
}

.guide-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--primary);
  color: white;
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent);
}

.stat-card .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* ============================================
   12. Plan Section
   ============================================ */
.plan-section {
  background: var(--zinc-50);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.plan-step {
  text-align: center;
  counter-increment: step;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark-950);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(253, 185, 19, 0.3);
}

.plan-step h3 {
  color: var(--zinc-950);
  margin-bottom: 8px;
}

.plan-step p {
  color: var(--zinc-500);
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   13. CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #001a3a);
  color: white;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(253, 185, 19, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  position: relative;
}

/* ============================================
   14. Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

/* ============================================
   15. Scroller (Dark Section)
   ============================================ */
.scroller-section {
  background: var(--dark-950);
  padding: 80px 0;
  overflow: hidden;
}

.scroller-section h2 {
  color: white;
}

.scroller-section p {
  color: var(--zinc-400);
}

.scroller-wrapper {
  position: relative;
  overflow: hidden;
}

.scroller-wrapper::before,
.scroller-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.scroller-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-950), transparent);
}

.scroller-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-950), transparent);
}

.scroller-track {
  display: flex;
  gap: 20px;
  animation: scroll 60s linear infinite;
  width: max-content;
}

.scroller-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.scroller-card {
  min-width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: white;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.scroller-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.scroller-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.scroller-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   16. Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.testimonial {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--zinc-600);
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 600;
  color: var(--zinc-950);
}

.testimonial .cite-detail {
  font-weight: 400;
  color: var(--zinc-500);
  font-size: 0.875rem;
}

/* ============================================
   17. Challenges Grid
   ============================================ */
.challenges-section {
  background: var(--zinc-50);
}

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

.challenge-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--zinc-200);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.challenge-card h3 {
  font-size: 1rem;
  color: var(--zinc-950);
  margin-bottom: 8px;
}

.challenge-card p {
  font-size: 0.9rem;
  color: var(--zinc-500);
}

/* ============================================
   18. Two-Column Feature Blocks
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-dark {
  background: var(--dark-950);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: white;
  box-shadow: var(--shadow-2xl);
}

.feature-dark .feature-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.feature-dark h3 {
  color: white;
  margin-top: 16px;
  font-size: 1.75rem;
}

.feature-dark p {
  color: var(--zinc-300);
  margin-top: 20px;
  line-height: 2;
}

.feature-light {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.feature-light .feature-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.feature-light h3 {
  color: var(--zinc-950);
  margin-top: 16px;
  font-size: 1.75rem;
}

.feature-light p {
  color: var(--zinc-600);
  margin-top: 20px;
  line-height: 2;
}

/* ============================================
   19. Footer
   ============================================ */
.site-footer {
  background: var(--dark-950);
  color: white;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand img {
  width: 80px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  color: var(--zinc-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

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

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

.footer-col a {
  color: var(--zinc-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 48px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--zinc-500);
}

.footer-bottom a {
  color: var(--zinc-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

.footer-bottom ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 8px;
  padding: 0;
}

.footer-bottom ul li a {
  color: var(--zinc-400);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom ul li a:hover {
  color: white;
}

/* ============================================
   20. Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .scroller-track {
    animation: none;
  }
}

/* ============================================
   21. Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--zinc-800);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--zinc-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--zinc-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info-card {
  background: var(--zinc-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--zinc-200);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(0, 75, 135, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--zinc-800);
  font-size: 0.9rem;
}

.contact-info-value {
  color: var(--zinc-600);
  font-size: 0.9rem;
}

.map-placeholder {
  margin-top: 24px;
  background: var(--zinc-200);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zinc-500);
  font-size: 0.9rem;
}

/* ============================================
   22. Article Pages
   ============================================ */
.article-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 75, 135, 0.25), transparent 50%),
    radial-gradient(circle at bottom left, rgba(253, 185, 19, 0.08), transparent 40%);
  pointer-events: none;
}

.article-hero h1 {
  color: white;
  position: relative;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--zinc-500);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--zinc-300);
}

.article-content {
  padding: 48px 0;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--zinc-100);
}

.article-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.article-content p {
  margin-bottom: 16px;
}

.article-content blockquote {
  border-left: 3px solid var(--accent);
  background: var(--zinc-50);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--zinc-700);
}

.article-content ul,
.article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: var(--zinc-600);
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.key-takeaway {
  background: var(--primary);
  color: white;
  padding: 32px;
  border-radius: var(--radius-xl);
  margin: 32px 0;
}

.key-takeaway h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.key-takeaway p {
  color: rgba(255, 255, 255, 0.9);
}

.faq-section {
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--zinc-200);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--zinc-950);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--zinc-600);
}

.related-articles {
  background: var(--zinc-50);
  padding: 48px 0;
}

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

/* ============================================
   23. Page Hero (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark-950), var(--dark-900), #0a1628);
  color: white;
  padding: 130px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 75, 135, 0.25), transparent 50%),
    radial-gradient(circle at bottom left, rgba(253, 185, 19, 0.08), transparent 40%);
  pointer-events: none;
}

.page-hero h1 {
  color: white;
  position: relative;
}

.page-hero p {
  color: var(--zinc-300);
  position: relative;
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 1.125rem;
}

/* ============================================
   24. Responsive — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-logo-area {
    order: -1;
  }
}

/* ============================================
   25. Responsive — 768px
   ============================================ */
@media (max-width: 768px) {
  .site-header {
    height: 60px;
  }

  .logo-wrapper img {
    width: 60px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger,
  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    top: 60px;
  }

  .hero {
    min-height: 70vh;
  }

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

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

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

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

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

  .page-hero {
    padding: 100px 0 48px;
  }

  section {
    padding: 56px 0;
  }

  .guide-highlights {
    grid-template-columns: 1fr;
  }

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

/* ============================================
   26. Responsive — 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary,
  .hero-buttons .btn-ghost {
    width: 100%;
  }

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