/* Home Page Styles - Updated June 20, 2025 */

/* Hero Section */
.hero {
  padding: var(--space-16) 0 var(--space-12);
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px; /* Account for fixed header */
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
}

.version-badge {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-xs);
}

.separator {
  color: var(--medium-gray);
}

.expert-badge {
  color: var(--medium-gray);
  font-weight: 500;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 122, 0, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, rgba(0, 166, 147, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
}

.framework-diagram {
  position: relative;
  width: 400px;
  height: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-12);
  padding: var(--space-8);
}

.diagram-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.diagram-node h3 {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--white);
}

.diagram-node span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.diagram-node:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.diagram-node.responsible {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
}

.diagram-node.ethical {
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
}

.diagram-node.accountable {
  background: linear-gradient(135deg, var(--accent-yellow), #e6c200);
}

.diagram-node.lawful {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.diagram-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-lines {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

/* Value Proposition Section */
.value-proposition {
  padding: var(--space-20) 0;
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.value-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-base);
  border: 1px solid var(--border);
  transition: var(--transition-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-light));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-3xl);
}

.value-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-4);
}

.value-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Framework Overview Section */
.framework-overview {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--background-light) 0%, var(--white) 100%);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.overview-text h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-6);
}

.framework-pillars {
  margin: var(--space-8) 0;
}

.pillar {
  margin-bottom: var(--space-6);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-teal);
}

.pillar h4 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pillar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-teal));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--text-lg);
  font-weight: 800;
}

.pillar p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.overview-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.methodology-cycle {
  position: relative;
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cycle-center {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  position: relative;
}

.cycle-center h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--white);
}

.cycle-center p {
  font-size: var(--text-sm);
  opacity: 0.9;
  margin: 0;
}

.cycle-stages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stage {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
  cursor: pointer;
}

.stage:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.stage-1 { top: 0; left: 50%; transform: translateX(-50%); }
.stage-2 { right: 0; top: 50%; transform: translateY(-50%); }
.stage-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.stage-4 { left: 0; top: 50%; transform: translateY(-50%); }

/* Industries Section */
.industries {
  padding: var(--space-20) 0;
  background: var(--white);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.industry-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-base);
  border: 1px solid var(--border);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

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

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-light));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.industry-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-3);
}

.industry-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}

.industry-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-features li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}

.industry-features li::before {
  content: '✓';
  color: var(--primary-green);
  font-weight: 700;
  font-size: var(--text-base);
}

/* Regulatory Frameworks */
.regulatory-frameworks {
  margin: var(--space-4) 0;
  padding: var(--space-4);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-green);
}

.regulatory-frameworks h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: var(--space-3);
}

.framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.framework-tag {
  background: var(--primary-navy);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-base);
}

.framework-tag:hover {
  background: var(--primary-green);
  transform: translateY(-1px);
}

/* Pillar Benefits */
.pillar-benefits {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.benefit {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* CTA Section */
.cta-section {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 122, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-section p {
  font-size: var(--text-xl);
  opacity: 0.9;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
  border-color: var(--primary-orange);
}

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

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-teal);
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .pillar-card {
    padding: var(--space-4);
  }
  
  .industry-card {
    padding: var(--space-5);
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-16) 0 var(--space-12);
    margin-top: 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .framework-diagram {
    width: 300px;
    height: 300px;
    gap: var(--space-6);
  }
  
  .diagram-node {
    width: 80px;
    height: 80px;
  }
  
  .diagram-node h3 {
    font-size: var(--text-2xl);
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .methodology-cycle {
    width: 280px;
    height: 280px;
  }
  
  .cycle-center {
    width: 140px;
    height: 140px;
  }
  
  .stage {
    width: 60px;
    height: 60px;
    font-size: var(--text-xs);
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .pillar-card {
    padding: var(--space-4);
  }
  
  .pillar-letter {
    width: 50px;
    height: 50px;
    font-size: var(--text-xl);
  }
  
  .value-grid,
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: var(--text-3xl);
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
  
  .framework-diagram {
    width: 350px;
    height: 350px;
  }
  
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .diagram-node,
  .value-card,
  .industry-card,
  .stage {
    transition: none;
  }
  
  .diagram-node:hover,
  .value-card:hover,
  .industry-card:hover,
  .stage:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .hero {
    margin-top: 0;
    background: transparent;
  }
  
  .cta-section {
    background: transparent;
    color: var(--text-dark);
  }
  
  .cta-section h2,
  .cta-section p {
    color: var(--text-dark);
  }
  
  .btn {
    display: none;
  }
}

/* Framework Comparison Matrix */
.framework-comparison-section {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.comparison-matrix-container {
  margin: var(--space-8) 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.matrix-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Enhanced scroll bar visibility for accessibility */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) var(--light-gray);
}

.matrix-scroll-wrapper::-webkit-scrollbar {
  height: 12px;
}

.matrix-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
}

.matrix-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: var(--radius-lg);
  border: 2px solid var(--light-gray);
}

.matrix-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--primary-navy);
}

/* Scroll indicator for mobile */
.matrix-scroll-wrapper::after {
  content: "← Scroll to see all frameworks →";
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-style: italic;
  pointer-events: none;
}

.comparison-matrix {
  width: 100%;
  min-width: 1400px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.comparison-matrix th,
.comparison-matrix td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
  vertical-align: top;
}

.comparison-matrix th {
  background: var(--primary-navy);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.capability-header {
  width: 200px;
  background: var(--primary-navy) !important;
  border-right: 2px solid var(--white);
}

.framework-header {
  width: 140px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.framework-header.real-ai {
  background: var(--primary-green) !important;
  border-right: 2px solid var(--white);
}

.capability-name {
  font-weight: 600;
  color: var(--primary-navy);
  background: var(--off-white);
  border-right: 2px solid var(--light-gray);
}

.score-cell {
  text-align: center;
  padding: var(--space-3);
  border-right: 1px solid var(--light-gray);
}

.score-cell.real-ai {
  background: rgba(0, 166, 147, 0.05);
  border-right: 2px solid var(--light-gray);
}

.score-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
  color: var(--white);
}

.score-indicator.score-5 {
  background: var(--success);
}

.score-indicator.score-4 {
  background: var(--primary-green);
}

.score-indicator.score-3 {
  background: var(--accent-gold);
}

.score-indicator.score-2 {
  background: var(--warning);
}

.score-indicator.score-1 {
  background: var(--danger);
}

.score-detail {
  display: block;
  font-size: var(--text-xs);
  color: var(--medium-gray);
  line-height: 1.3;
  max-width: 120px;
  margin: 0 auto;
}

.matrix-summary {
  margin-top: var(--space-8);
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.stat-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-base);
  border: 1px solid var(--light-gray);
}

.stat-value {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  font-weight: 600;
}

.summary-cards {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
}

.summary-card {
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  border: 1px solid var(--light-gray);
}

.summary-card h3 {
  color: var(--primary-navy);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
  font-weight: 700;
}

.real-ai-advantage {
  border-left: 4px solid var(--primary-green);
}

.real-ai-advantage ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.real-ai-advantage li {
  margin-bottom: var(--space-3);
  color: var(--medium-gray);
  line-height: var(--leading-relaxed);
}

.real-ai-advantage li strong {
  color: var(--primary-navy);
}

.scoring-legend {
  border-left: 4px solid var(--accent-gold);
}

.legend-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.legend-item span:last-child {
  color: var(--medium-gray);
  font-size: var(--text-sm);
}

/* Framework Pillars Section */
.framework-pillars {
  padding: var(--space-20) 0;
  background: var(--white);
}

.experience-note {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: rgba(0, 168, 107, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 168, 107, 0.2);
  display: inline-block;
}

.experience-note span {
  color: var(--primary-green);
  font-weight: 600;
  font-size: var(--text-sm);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-16);
}

.pillar-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-green));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-green);
  box-shadow: 0 20px 40px rgba(0, 168, 107, 0.15);
}

.pillar-card:hover::before {
  opacity: 0.05;
}

.pillar-letter {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-green));
  color: var(--white);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 800;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 2;
}

.pillar-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 2;
}

.pillar-subtitle {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 2;
}

.pillar-card p:last-of-type {
  color: var(--medium-gray);
  line-height: var(--leading-relaxed);
  position: relative;
  z-index: 2;
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.pillar-expand {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  background: var(--accent-gold);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.pillar-card:hover .pillar-expand {
  transform: rotate(45deg);
  background: var(--primary-green);
}

/* Financial Validation Section */
.financial-validation {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
  position: relative;
}

.validation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.validation-text h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: var(--space-8);
  line-height: var(--leading-tight);
}

.methodology-components {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.component-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.component-item:hover {
  border-color: var(--primary-green);
  transform: translateX(4px);
}

.component-item i {
  color: var(--primary-green);
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.component-item span {
  color: var(--dark-gray);
  font-weight: 500;
  line-height: var(--leading-relaxed);
}

.future-note {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255, 184, 0, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.future-note i {
  color: var(--accent-gold);
  font-size: var(--text-base);
}

.future-note span {
  color: var(--dark-gray);
  font-size: var(--text-sm);
  font-weight: 500;
}

.calculator-preview {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.calculator-header {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-green));
  color: var(--white);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calculator-header h4 {
  color: var(--white);
  font-weight: 700;
}

.calculator-header h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0;
  color: var(--white);
}

.preview-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--white);
}

.calculator-content {
  padding: var(--space-6);
}

.input-group {
  margin-bottom: var(--space-4);
}

.input-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--space-2);
}

.calculator-content label {
  color: var(--dark-gray);
  font-weight: 600;
}

.result-label {
  color: var(--medium-gray);
  font-weight: 500;
}

.result-value {
  color: var(--primary-navy);
  font-weight: 700;
}

.input-group input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary-navy);
  background: var(--off-white);
}

.result-display {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 2px solid var(--light-gray);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-3);
}

.result-label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
  font-weight: 500;
}

.result-value {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary-green);
}
