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

:root {
  --background: #ffffff;
  --foreground: #252525;
  --primary: #343434;
  --primary-foreground: #fcfcfc;
  --secondary: #f8f8f8;
  --secondary-foreground: #343434;
  --muted: #f8f8f8;
  --muted-foreground: #8e8e8e;
  --card: #ffffff;
  --card-foreground: #252525;
  --border: #ebebeb;
  --radius: 10px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--foreground);
}

p {
  margin-bottom: 1rem;
}

strong {
  color: var(--foreground);
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.text-muted {
  color: var(--muted-foreground);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  transition: color 0.2s;
}

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

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover {
  color: var(--foreground);
}

.nav-link.active {
  color: var(--foreground);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  left: 0;
}

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

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
  }

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

  .nav-link {
    padding: 0.75rem 0;
  }

  .nav-link.active::after {
    display: none;
  }

  .btn-primary {
    margin-top: 1rem;
    text-align: center;
  }
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--muted);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

.icon-arrow {
  width: 1.25rem;
  height: 1.25rem;
}

/* Sections */
.section {
  padding: 5rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto;
}

.section-action {
  text-align: center;
  margin-top: 3rem;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 1.5rem auto;
}

.bg-muted {
  background: var(--muted);
}

/* Hero */
.hero {
  padding: 8rem 1rem 5rem;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(52, 52, 52, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 3rem;
  }

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

  .hero-text {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

/* Trust Section */
.trust-section {
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.card-hover {
  transition: all 0.3s;
}

.card-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.card-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.card-primary .card-text {
  color: rgba(252, 252, 252, 0.9);
}

/* Philosophy */
.philosophy-content {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.philosophy-content p {
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-size: 1.25rem;
  color: var(--foreground);
  font-weight: 500;
  padding: 1rem 0;
}

/* Methodology */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  stroke: var(--primary);
}

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

/* CTA Section */
.cta-section {
  padding: 6rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
}

.cta-title {
  font-size: 2.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}

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

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
  }
}

/* Footer */
.footer {
  padding: 4rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col-wide {
  grid-column: span 1;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* About Page Specific */
.statement-card {
  background: rgba(52, 52, 52, 0.05);
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
}

.statement-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.statement-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.statement-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.journey-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.journey-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.journey-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.journey-title {
  font-size: 1.5rem;
}

.journey-years {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.journey-desc {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.journey-skills {
  margin-top: 1.5rem;
}

.skills-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

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

.skill-item {
  font-size: 0.875rem;
}

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

/* Parallels */
.parallels-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.parallel-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.parallel-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.parallel-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.parallel-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.parallel-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(52, 52, 52, 0.05);
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: calc(var(--radius) - 2px);
}

.insight-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.parallel-insight p {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  margin: 0;
}

/* Differences Grid */
.differences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.difference-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.difference-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.difference-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.difference-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

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

/* Process Page */
.timeline-overview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}

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

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.timeline-number {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (max-width: 480px) {
  .timeline-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phases */
.phases-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.phase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.phase-row-reverse {
  direction: rtl;
}

.phase-row-reverse > * {
  direction: ltr;
}

.phase-number-large {
  font-size: 4rem;
  font-weight: 700;
  color: rgba(52, 52, 52, 0.2);
  margin-bottom: 0.5rem;
}

.phase-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.phase-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.phase-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.phase-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.phase-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(52, 52, 52, 0.05);
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: var(--radius);
}

.phase-insight p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
}

.card-icon-small {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-title-small {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.checklist {
  list-style: none;
}

.checklist li {
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .phase-row,
  .phase-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Approach Grid */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.approach-icon {
  font-size: 3rem;
  margin: 0 auto 1rem;
}

.approach-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.approach-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

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

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.contact-card-icon {
  font-size: 5rem;
  margin: 0 auto 1.5rem;
}

.contact-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-card-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-card-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.contact-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-link {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.contact-info-link:hover {
  color: var(--primary);
}

.contact-info-text {
  color: var(--muted-foreground);
}

.expectations-card {
  background: rgba(52, 52, 52, 0.05);
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.expectations-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.expectations-list {
  list-style: none;
}

.expectations-list li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

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

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.faq-question {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* Case Studies */
.stats-section {
  padding: 3rem 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

.case-study {
  margin-bottom: 6rem;
}

.case-study-header {
  margin-bottom: 2rem;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.tag-primary {
  padding: 0.375rem 0.75rem;
  background: rgba(52, 52, 52, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.tag-secondary {
  padding: 0.375rem 0.75rem;
  background: var(--muted);
  color: var(--muted-foreground);
  border-radius: 50px;
  font-size: 0.875rem;
}

.case-study-title {
  font-size: 2.5rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.case-study-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.challenge-card {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.challenge-title {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.challenge-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

.testimonial-card {
  background: rgba(52, 52, 52, 0.05);
  border: 1px solid rgba(52, 52, 52, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.875rem;
}

.author-name {
  font-weight: 600;
}

.author-role {
  color: var(--muted-foreground);
}

.results-card {
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.results-title {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

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

.result-box {
  text-align: center;
  padding: 1rem;
  background: rgba(252, 252, 252, 0.1);
  border-radius: calc(var(--radius) - 2px);
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.result-metric {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.result-desc {
  font-size: 0.75rem;
  opacity: 0.75;
}

.insight-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.insight-title {
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.insight-text {
  color: var(--muted-foreground);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.case-study-divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* Common Factors */
.common-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.common-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.common-icon {
  font-size: 3rem;
  margin: 0 auto 1rem;
}

.common-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.common-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

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