/* ================================
   HYBRID DESIGN
   Your purple brand + Modern cards
   ================================ */

/* Color Palette - YOUR PURPLE THEME */
:root {
  /* Your brand colors */
  --brand-purple: #8968CD;
  --brand-blue: #0D4F8B;
  --brand-light-blue: #B9D3EE;
  --brand-lavender: #E6E8FA;
  
  /* Neutrals */
  --bg-light: #f4f4f4;
  --bg-white: #ffffff;
  --text-primary: #333;
  --text-secondary: #666;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

/* Base Typography - YOUR READABLE SIZE */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: var(--bg-light);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-principle {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--brand-lavender);
  font-size: 1.125rem;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.hero-principle strong {
  color: var(--brand-lavender);
}

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* QUICK SEARCH SECTION */
.quick-search-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-light));
}

.search-header {
  text-align: center;
  margin-bottom: 2rem;
}

.search-header h2 {
  font-size: 2rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.search-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.search-container {
  max-width: 700px;
  margin: 0 auto;
}

.search-form {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid var(--brand-light-blue);
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(137, 104, 205, 0.1);
}

.search-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  padding: 0.75rem 0;
  background: transparent;
}

.search-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.search-button {
  background: var(--brand-purple);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: var(--brand-blue);
  transform: scale(1.05);
}

/* Search Suggestions Dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  margin-top: 0.5rem;
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}

.search-suggestions.hidden {
  display: none;
}

.suggestion-item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--bg-light);
  transition: background 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: var(--brand-lavender);
}

.suggestion-title {
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 0.25rem;
}

.suggestion-type {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Popular & Recent Searches */
.popular-searches,
.recent-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.recent-searches.hidden {
  display: none;
}

.popular-label,
.recent-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-tag,
.recent-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand-lavender);
  color: var(--brand-blue);
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.popular-tag:hover,
.recent-tag:hover {
  background: var(--brand-purple);
  color: white;
  transform: translateY(-2px);
}

.recent-tag {
  background: var(--bg-light);
  position: relative;
  padding-right: 2rem;
}

.recent-tag-remove {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recent-tag-remove:hover {
  color: var(--brand-purple);
}

#recent-searches-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* FEATURED VISUALS SECTION */
.featured-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.featured-card {
  background: white;
  border: 2px solid var(--brand-light-blue);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.featured-card:hover::before {
  transform: scaleX(1);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-purple);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-purple);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.featured-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.featured-intro {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--bg-light);
}

.featured-type {
  font-size: 0.875rem;
  color: var(--brand-purple);
  font-weight: 600;
}

.featured-arrow {
  font-size: 1.5rem;
  color: var(--brand-purple);
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-arrow {
  transform: translateX(5px);
}

/* CASE STUDIES SECTION */
.case-studies-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.case-study-card {
  background: white;
  border: 2px solid var(--brand-light-blue);
  border-radius: 16px;
  padding: 2.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.case-study-card:hover::before {
  transform: scaleX(1);
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: var(--brand-purple);
}

.case-badge {
  display: inline-block;
  background: var(--brand-lavender);
  color: var(--brand-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.case-study-card h3 {
  font-size: 1.75rem;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.case-summary {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--brand-lavender);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--brand-blue);
  font-weight: 600;
}

.case-cta {
  color: var(--brand-purple);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-study-card:hover .case-cta {
  gap: 1rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, var(--bg-light), var(--bg-white));
}

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

.testimonial-card {
  background: white;
  border: 2px solid var(--brand-light-blue);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: var(--brand-lavender);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(137, 104, 205, 0.15);
  border-color: var(--brand-purple);
}

.testimonial-quote {
  flex: 1;
}

.testimonial-quote p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-primary);
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--brand-lavender);
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--brand-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 700;
  color: var(--brand-blue);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* HERO CTA BUTTONS */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: white;
  color: var(--brand-blue);
}

.btn-hero-primary:hover {
  background: var(--brand-lavender);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* QUICK FEATURES SECTION */
.quick-features {
  padding: 3rem 2rem;
  background: var(--bg-white);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

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

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

.feature-card {
  background: var(--bg-white);
  border: 2px solid var(--brand-light-blue);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-purple);
  background: linear-gradient(to bottom, white, var(--brand-lavender));
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

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

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FRAMEWORK SECTION */
.framework-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
}

.insight-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.insight-card {
  background: var(--bg-white) !important;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 2px solid var(--brand-light-blue);
  color: var(--text-primary) !important;
}

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

.insight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.insight-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-blue) !important;
  margin-bottom: 0.75rem;
}

.insight-question {
  font-size: 1.125rem;
  color: var(--brand-purple) !important;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 600;
}

.insight-detail {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-primary) !important;
}

.insight-detail strong {
  color: var(--brand-blue);
}

.insight-charts {
  font-size: 0.9375rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--brand-light-blue);
  color: var(--text-secondary) !important;
}

.insight-charts strong {
  color: var(--brand-blue);
}

.insight-charts a {
  color: var(--brand-purple) !important;
  text-decoration: none;
  font-weight: 600;
}

.insight-charts a:hover {
  text-decoration: underline;
}

/* PRINCIPLES SECTION */
.principles-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.principle-card {
  background: var(--brand-light-blue) !important;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--brand-purple);
  color: var(--text-primary) !important;
}

.principle-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-blue) !important;
  margin-bottom: 1rem;
}

.principle-card p {
  font-size: 1rem;
  color: var(--text-primary) !important;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.principle-card p:last-child {
  margin-bottom: 0;
}

/* EXAMPLES SECTION */
.examples-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
}

.example-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.example-good,
.example-bad {
  background: var(--bg-white) !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  color: var(--text-primary) !important;
}

.example-good h3 {
  background: #d1fae5;
  color: #059669 !important;
  padding: 1.25rem;
  margin: 0;
  font-size: 1.5rem;
}

.example-bad h3 {
  background: #fee2e2;
  color: #dc2626 !important;
  padding: 1.25rem;
  margin: 0;
  font-size: 1.5rem;
}

.image-wrapper {
  padding: 1rem;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.example-notes {
  padding: 1.5rem;
  background: var(--bg-light);
}

.example-notes h4 {
  font-size: 1.25rem;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.example-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-notes li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-left: 0;
}

/* AUDIENCE SECTION */
.audience-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.audience-card {
  background: var(--bg-white) !important;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--brand-light-blue);
  transition: all 0.3s ease;
  color: var(--text-primary) !important;
}

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

.audience-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.audience-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-blue) !important;
  margin-bottom: 0.5rem;
}

.audience-tag {
  display: inline-block;
  background: var(--brand-purple);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.audience-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brand-blue) !important;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.audience-content p {
  font-size: 1rem;
  color: var(--text-primary) !important;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.audience-tip {
  background: var(--brand-lavender) !important;
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  border-left: 3px solid var(--brand-purple);
  color: var(--text-primary) !important;
}

.audience-tip strong {
  color: var(--brand-purple) !important;
}

/* STORYTELLING SECTION */
.storytelling-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
}

.storytelling-content {
  max-width: 900px;
  margin: 0 auto;
}

.storytelling-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.storytelling-example {
  background: var(--brand-lavender);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--brand-purple);
  margin-top: 2rem;
}

.storytelling-example p {
  font-size: 1.125rem;
  color: var(--brand-blue);
  margin: 0;
}

/* MISTAKES SECTION */
.mistakes-section {
  padding: 4rem 2rem;
  background: var(--bg-light);
}

.mistakes-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}

.mistakes-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mistakes-table thead {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-purple) 100%);
  color: white;
}

.mistakes-table th {
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
}

.mistakes-table td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--brand-light-blue);
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.mistakes-table tbody tr:hover {
  background: var(--brand-lavender);
}

.mistakes-table tbody tr:last-child td {
  border-bottom: none;
}

/* NEXT STEPS SECTION */
.next-steps-section {
  padding: 4rem 2rem;
  background: var(--bg-white);
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.next-step-card {
  background: var(--brand-light-blue);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid var(--brand-purple);
  transition: all 0.3s ease;
}

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

.next-step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1rem;
}

.next-step-card p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--brand-purple);
  color: white;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .insight-types-grid,
  .principles-grid,
  .next-steps-grid {
    grid-template-columns: 1fr;
  }
  
  .example-comparison {
    grid-template-columns: 1fr;
  }
  
  .mistake-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}