/* ========================================
   Student Athlete Advocates - Main Styles
   Modern, Clean, Professional Design
   ======================================== */

/* CSS Variables / Design Tokens */
:root {
  /* Brand Colors */
  --navy-900: #0A1628;
  --navy-800: #0F2441;
  --navy-700: #182B4D;
  --navy-600: #2A3F5F;
  --steel: #4F6E8E;
  --gold: #F1CC01;
  --gold-hover: #D9B600;
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --mist: #F2F5F7;
  --gray-100: #E6EDF4;
  --gray-200: #D1DCE5;
  --gray-300: #B0BEC5;
  --gray-700: #3A4656;
  --gray-900: #0B1320;
  
  /* Functional Colors */
  --text-primary: #0B1320;
  --text-secondary: #3A4656;
  --text-on-navy: #FFFFFF;
  --text-on-navy-muted: #DBE7F8;
  
  /* Borders & Shadows */
  --border-light: #E6EDF4;
  --border-medium: #D1DCE5;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.20);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing */
  --maxw: 1200px;
  --section-padding: 80px;
  --container-padding: 24px;
}

/* ========================================
   Base Styles & Reset
   ======================================== */

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

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

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

a:hover {
  color: var(--navy-700);
}

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

/* Container */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-cta {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
  color: var(--text-on-navy);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.section-cta h3 {
  margin-bottom: 0.75rem;
  color: var(--text-on-navy);
}

.section-cta p {
  margin-bottom: 1.5rem;
  color: var(--text-on-navy-muted);
}

.section-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ========================================
   Header & Navigation
   ======================================== */

.header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  padding: 0 var(--container-padding);
}

.nav-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
}

/* Keep brand link white across all states and pages */
.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
  color: var(--white);
  text-decoration: none;
}
.brand a,
.brand a:link,
.brand a:visited,
.brand a:hover,
.brand a:active {
  color: var(--white);
  text-decoration: none;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-circle img {
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.brand-name {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-on-navy-muted);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy-900) !important;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.875rem;
  }
  
  .nav-cta {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    display: flex;
    position: fixed;
    top: 70px;
    right: 0;
    left: auto;
    width: 70vw;
    max-width: 320px;
    height: calc(100vh - 70px);
    background: var(--navy-900);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links a {
    font-size: 1.125rem;
    text-align: center;
    padding: 0.75rem;
  }
  
  .nav-cta {
    margin-top: 0.5rem;
  }
  
  .brand-name {
    font-size: 0.875rem;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(241, 204, 1, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

@media (min-width: 768px) {
  .headline {
    font-size: 3.25rem;
  }
}

@media (min-width: 1200px) {
  .headline {
    font-size: 3.75rem;
  }
}

.subheadline {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-on-navy-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-900);
}

.btn-primary-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: var(--radius-md);
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-large:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  max-width: 500px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-on-navy-muted);
  font-weight: 500;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--navy-800);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Section Utilities
   ======================================== */

section {
  padding: var(--section-padding) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-title.text-left {
  text-align: left;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ========================================
   Pain Points Section
   ======================================== */

.pain-points {
  background: var(--mist);
}

.pain-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.pain-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.pain-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   About Section
   ======================================== */

.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.about-images {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.about-image-main,
.about-image-secondary {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--white);
}

.about-image-main {
  grid-column: auto;
}

.about-image-main img,
.about-image-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-text p strong {
  color: var(--text-primary);
  font-weight: 700;
}

.credentials {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .credentials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--mist);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.credential-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-highlights {
  margin-top: 3rem;
}

.about-highlights-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   Services Section
   ======================================== */

.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* All service cards now have matching white background */

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.service-link {
  color: var(--steel);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: gap 0.2s ease;
  margin-top: auto;
}

/* Removed featured card special link color */

.service-link:hover {
  gap: 0.5rem;
}

.services-coming-soon {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--mist);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px dashed var(--border-medium);
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-900);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.services-coming-soon h3 {
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.services-coming-soon p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Process Section
   ======================================== */

.process-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-intro {
  color: var(--text-on-navy-muted);
}

.process-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-step {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--text-on-navy-muted);
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Why SAA Section
   ======================================== */

.why-saa-section {
  background: var(--mist);
}

.why-saa-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .why-saa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-saa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.why-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   Statistics Section
   ======================================== */

.stats-section {
  background: var(--navy-900);
  color: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-block {
  text-align: center;
}

.stat-number-large {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.stat-description {
  color: var(--text-on-navy-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* ========================================
   Testimonials Section
   ======================================== */

.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--mist);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.story-card .story-title {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.story-card .story-sports {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-card .story-text {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, #E1B600 100%);
  color: var(--navy-900);
  padding: 5rem 0;
  text-align: center;
}

.cta-section .btn-secondary {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.cta-section .btn-secondary:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--navy-800);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtext {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--navy-700);
}

/* ========================================
   Free PDF Section
   ======================================== */

.free-pdf-section {
  background: var(--mist);
  text-align: center;
}

.free-pdf-section .section-intro {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pdf-form-wrapper {
  max-width: 640px;
  width: 100%;
  margin: 2rem auto 0;
}

.pdf-form-wrapper .contact-form {
  text-align: left;
  width: 100%;
}

.pdf-success {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--navy-700);
  color: var(--text-on-navy);
  display: none;
  text-align: center;
}

.pdf-success.is-visible {
  display: block;
}

.pdf-success-message {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--text-on-navy);
}

.pdf-success .btn-submit {
  display: inline-block;
  width: auto;
  background: var(--gold);
  color: var(--navy-900);
}

.pdf-success .btn-submit:hover {
  background: var(--gold-hover);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-content {
  display: flex;
  flex-direction: column;
}

.method-label {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-content a {
  color: var(--steel);
  font-weight: 600;
}

.method-content a:hover {
  color: var(--navy-700);
}

.social-links h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy-700);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: var(--navy-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.hs-outreach {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hs-outreach h4 {
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.hs-outreach p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.hs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hs-btn {
  flex: 1 1 220px;
  text-align: center;
}

.hs-outreach .btn-secondary {
  background: var(--navy-700);
  color: var(--white);
  border: none;
}

.hs-outreach .btn-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Free PDF form layout overrides */
.pdf-form-wrapper .form-row {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pdf-form-wrapper .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.pdf-form-wrapper .form-group input,
.pdf-form-wrapper .form-group textarea {
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 204, 1, 0.1);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy-700);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--navy-900);
  color: var(--text-on-navy-muted);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-on-navy-muted);
}

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

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-on-navy-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-btn {
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--navy-900);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-btn:hover {
  background: var(--gold-hover);
}

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

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --container-padding: 20px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .hero {
    padding: 2rem 0 2rem;
  }
  
  .headline {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .subheadline {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .hero-stats {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .stat-number-large {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 1.5rem;
  }
  
  .headline {
    font-size: 1.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}
