/* Florida Health Literacy Project - Complete CSS (Color-Updated) */

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

/* ============= CSS Variables for Consistent Theming ============= */
:root {
  /* Brand / UI */
  --primary-teal: #b4d072;         /* deep teal */
  --primary-teal-dark: #115e59;    /* darker teal */
  --primary-teal-light: #5eead4;   /* light aqua accent */

  --accent-coral: #feb551;         /* warm rust */
  --accent-coral-light: #f4a261;   /* soft amber/rust tint */

  --navy: #1f2937;                 /* ink */
  --warm-gray: #64748b;            /* slate */
  --light-sky: #e7f2ef;            /* soft teal-tinged wash */
  --cream: #fdf7f0;                /* warm cream backgrounds */
  --off-white: #faf7f2;            /* off-white cards */
  --light-gray: #f1f3f5;           /* neutral UI surfaces */

  --success-green: #2e7d32;        /* accessible success green */

  --text-primary: #1f2937;
  --text-secondary: #475569;
  --text-muted: #64748b;

  --border-light: #e2e8f0;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  --border-radius: 12px;
  --border-radius-lg: 20px;

  /* HLVI risk palette (map + legends) */
  --risk-green:  #91cf60;  /* minimal */
  --risk-lime:   #d9ef8b;  /* low */
  --risk-yellow: #fee08b;  /* moderate */
  --risk-orange: #fc8d59;  /* high */
  --risk-red:    #d73027;  /* critical */
  --risk-gray:   #cccccc;  /* no data */
}

/* ============= Global Styles ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--cream);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============= Typography ============= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

.section-title {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-coral));
  border-radius: 2px;
}

.section-intro {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ============= Buttons ============= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(17, 94, 89, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 94, 89, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-teal);
  border: 2px solid var(--primary-teal);
  padding: 12px 28px;
  font-weight: 600;
}

.btn-outline:hover {
  background-color: var(--primary-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(17, 94, 89, 0.3);
}

/* ============= Hero Section ============= */
.hero {
  background-color: var(--cream);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(194, 65, 12, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(94, 234, 212, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(246, 239, 230, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  color: #35312D;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============= Challenge Section ============= */
.challenge {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--light-gray) 100%);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.stat-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--primary-teal), var(--accent-coral));
  border-image-slice: 1;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-coral));
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.insight-box {
  background: #fff;
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 50px;
  position: relative;
  border-left: 5px solid var(--accent-coral);
}

.insight-box::before {
  content: '💡';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 40px;
  background: #fff;
  padding: 0 10px;
}

.insight-box h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.75rem;
}

.insight-box p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============= Expanded Approach Section Styles ============= */

.approach-expanded {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

/* Step Structure */
.approach-step {
  margin-bottom: 120px;
  position: relative;
}

.approach-step:last-child {
  margin-bottom: 0;
}

/* Connecting Line Between Steps */
.approach-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary-teal), transparent);
  transform: translateX(-50%);
}

/* Step Header */
.step-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(17, 94, 89, 0.3);
  position: relative;
  z-index: 2;
}

.step-header h3 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 0;
}

/* ============= Step 1: Index Styles ============= */
.step-1 .step-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.step-text h4 {
  color: var(--primary-teal);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.step-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.index-data-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.index-data-points li {
  padding: 16px;
  margin-bottom: 12px;
  background: var(--light-sky);
  border-radius: 12px;
  border-left: 4px solid var(--primary-teal);
  color: var(--text-secondary);
  line-height: 1.6;
}

.index-data-points li strong {
  color: var(--navy);
  display: inline-block;
  margin-right: 8px;
}

/* Map Visualization */
.map-demo {
  background: #fff;
  padding: 24px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.map-legend {
  background: var(--off-white);
  padding: 20px;
  border-radius: 12px;
}

.map-legend h5 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.legend-color {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  margin-right: 12px;
}

.legend-color.high    { background: linear-gradient(135deg, var(--risk-red),    var(--risk-orange)); }
.legend-color.medium  { background: linear-gradient(135deg, var(--risk-yellow), var(--risk-orange)); }
.legend-color.low     { background: linear-gradient(135deg, var(--risk-lime),   var(--risk-green)); }

/* ============= Step 2: Simplification Demo ============= */
.step-2 .step-content {
  max-width: 1100px;
  margin: 0 auto;
}

.simplification-demo {
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--off-white) 100%);
  padding: 48px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.before, .after { position: relative; }

.before h5, .after h5 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.125rem;
  text-align: center;
}

.document-sample {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 300px;
}

.document-sample.complex { border-top: 4px solid var(--accent-coral); }
.document-sample.simple  { border-top: 4px solid var(--success-green); }

.document-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.document-sample.complex .document-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.document-sample.simple .document-text {
  font-size: 1rem;
  color: var(--text-primary);
}

.document-sample.simple .document-text strong {
  color: var(--navy);
  display: block;
  margin-top: 12px;
  margin-bottom: 8px;
}

.readability-score {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.readability-score.bad  { background: #fde2e2; color: var(--risk-red); }
.readability-score.good { background: #e6f4ea; color: var(--success-green); }

/* Transformation Arrow */
.transformation-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.arrow-label {
  font-size: 0.875rem;
  color: var(--primary-teal);
  font-weight: 600;
  text-align: center;
  max-width: 100px;
}

/* Demo Features */
.demo-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.feature-icon {
  color: var(--success-green);
  font-size: 1.25rem;
  font-weight: bold;
}

/* ============= Step 3: Community Workshops & Partnership ============= */
.step-3 .step-content {
  background: linear-gradient(180deg, var(--off-white) 0%, #fff 100%);
  padding: 0;
  border-radius: var(--border-radius-lg);
}

/* Workshop Showcase Section */
.workshop-showcase {
  padding: 48px;
  background: #fff;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.workshop-intro {
  text-align: center;
  margin-bottom: 48px;
}

.workshop-intro h4 {
  color: var(--primary-teal);
  font-size: 1.875rem;
  margin-bottom: 20px;
}

.workshop-intro p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Workshop Details Layout */
.workshop-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Workshop Visual Side */
.workshop-visual { position: relative; }

.workshop-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
}

.workshop-stats {
  background: var(--light-sky);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.workshop-stats .stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon { font-size: 1.5rem; }

.stat-text {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Workshop Info Side */
.workshop-info h5 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 32px;
}

.workshop-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.workshop-feature {
  display: flex;
  gap: 20px;
  align-items: start;
}

.feature-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.feature-content strong {
  display: block;
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Workshop Partners */
.workshop-partners {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-coral);
}

.workshop-partners h6 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.workshop-partners p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Additional Support Section */
.additional-support {
  background: var(--light-gray);
  padding: 48px;
  border-top: 1px solid var(--border-light);
}

.additional-support h4 {
  color: var(--navy);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 16px;
}

.support-intro {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.support-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.support-card h5 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

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

/* Partnership CTA */
.partnership-cta {
  text-align: center;
  padding: 48px;
  background: #fff;
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  border-top: 1px solid var(--border-light);
}

.partnership-cta p {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 600;
}

/* ============= Impact Section ============= */
.impact {
  padding: 100px 0;
  background: #fff;
}

.impact-highlight {
  max-width: 900px;
  margin: 0 auto 60px;
}

.testimonial {
  font-size: 1.375rem;
  font-style: italic;
  color: var(--text-secondary);
  border-left: 5px solid var(--accent-coral);
  padding-left: 36px;
  margin: 40px 0;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 80px;
  color: var(--accent-coral);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: Georgia, serif;
}

.testimonial cite {
  display: block;
  margin-top: 20px;
  font-size: 1rem;
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.metric {
  text-align: center;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--light-sky) 0%, rgba(231, 242, 239, 0.6) 100%);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.metric h3 {
  color: var(--primary-teal);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.metric p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
}

.founding-partners {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  padding: 56px 48px;
  border-radius: var(--border-radius-lg);
  margin-top: 60px;
  border: 3px solid var(--accent-coral);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founding-partners::before {
  content: '🤝';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  background: #fff;
  padding: 0 20px;
}

.founding-partners h3 {
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.875rem;
}

.founding-partners p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}

/* ============= Leadership Section ============= */
.leadership {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, var(--off-white) 100%);
}

.founder-bio {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 56px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.bio-text {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

.credentials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--border-light);
}

.credentials h4 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1.375rem;
}

.credentials ul { list-style: none; padding-left: 0; }

.credentials li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.credentials li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: bold;
  font-size: 1.25rem;
  top: 14px;
}

.advisory {
  margin-top: 60px;
  padding: 48px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.advisory h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.625rem;
}

.advisory p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============= CTA Section ============= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(194, 65, 12, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(246, 239, 230, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section .section-title { color: #fff; margin-bottom: 24px; }
.cta-section .section-title::after { background: rgba(255, 255, 255, 0.5); }

.cta-intro {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 48px;
  border-radius: var(--border-radius-lg);
  color: var(--text-primary);
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  color: var(--navy);
  margin-bottom: 32px;
  font-size: 1.625rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(17, 94, 89, 0.1);
  background: #fff;
}

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

.contact-info { padding: 48px; }

.contact-info h3 { margin-bottom: 36px; font-size: 1.625rem; }

.contact-method {
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.contact-method h4 { color: #fff; margin-bottom: 12px; font-size: 1.25rem; }

.contact-method p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ============= Footer ============= */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-mission h3 { color: #fff; margin-bottom: 20px; font-size: 1.5rem; }

.footer-mission p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.05rem;
}

.footer-links h4 { color: #fff; margin-bottom: 24px; font-size: 1.25rem; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-coral);
  transition: width 0.3s ease;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { width: 100%; }

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

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ============= Responsive Design ============= */
@media (max-width: 1024px) {
  .step-1 .step-content { grid-template-columns: 1fr; gap: 40px; }
  .before-after { grid-template-columns: 1fr; gap: 32px; }
  .transformation-arrow { transform: rotate(90deg); margin: 20px 0; }
  .workshop-details { grid-template-columns: 1fr; gap: 40px; }
  .support-options { grid-template-columns: 1fr; gap: 24px; }
  .contact-options { grid-template-columns: 1fr; gap: 48px; }
  .footer-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
}

@media (max-width: 768px) {
  h1, .hero-title { font-size: 2.5rem; }
  h2, .section-title { font-size: 2rem; }
  .hero { padding: 80px 0; }
  .hero-subtitle { font-size: 1.25rem; }
  section { padding: 80px 0; }
  .approach-step { margin-bottom: 80px; }
  .step-number { width: 60px; height: 60px; font-size: 1.5rem; }
  .step-header h3 { font-size: 1.5rem; }
  .simplification-demo { padding: 32px 20px; }
  .document-sample { padding: 24px; min-height: auto; }
  .demo-features { flex-direction: column; gap: 16px; }
  .workshop-showcase { padding: 32px 24px; }
  .additional-support { padding: 32px 24px; }
  .workshop-feature { gap: 16px; }
  .feature-number { width: 32px; height: 32px; font-size: 1rem; }
}
