/* Header and navigation */
.header {
  position: sticky;
  top: 0;
  background-color: var(--color-background);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  z-index: 1000;
}

/* Hero section */
.hero {
  padding: clamp(8rem, 12vw, 14rem) 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 85, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37, 160, 112, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(38, 111, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand-dark-primary) 0%, var(--brand-dark-charcoal) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(30deg, rgba(255, 255, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.02) 87.5%, rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.02) 87.5%, rgba(255, 255, 255, 0.02));
  background-size: 80px 140px;
  background-position: 0 0, 40px 70px;
  pointer-events: none;
  opacity: 0.3;
}

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

.hero-copy {
  color: var(--text-on-dark);
}

.terminal-container {
  width: 100%;
  max-width: none;
}

/* Impact Calculator Section */
.impact-calculator {
  background: 
    radial-gradient(circle at 70% 30%, rgba(37, 160, 112, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(0, 85, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand-dark-blue) 0%, var(--brand-dark-slate) 100%);
  padding: clamp(4rem, 10vw, 10rem) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.impact-calculator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
  opacity: 0.4;
}

.calculator-header {
  margin-bottom: var(--space-3xl);
}

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

.timeline {
  margin-bottom: var(--space-3xl);
  background: rgba(255, 255, 255, 0.03);
  padding: var(--space-2xl);
  border-radius: 8px;
}

.weeks-slider {
  margin-bottom: var(--space-2xl);
  position: relative;
}

.slider {
  width: 100%;
  height: 56px;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 24px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: transparent;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 3;
}

.timeline-weeks {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  position: relative;
  margin-bottom: 32px;
  height: 48px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--color-primary);
  opacity: 0.1;
  border-radius: 24px;
}

.timeline-marker {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  pointer-events: none;
}

.week {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.open-roles {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  max-width: fit-content;
  margin: 0 auto;
  color: white;
}

.roles-label {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.counter-btn {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: all 0.2s ease;
  color: white;
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.impact-metrics {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

.perception-status {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 300;
  color: white;
  transition: background-color 0.3s ease;
}

.perception-status.severity-low {
  background-color: var(--color-success);
}

.perception-status.severity-medium {
  background-color: var(--color-warning);
}

.perception-status.severity-high {
  background-color: var(--color-error);
}

.status-label {
  opacity: 0.9;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.metric-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
}

.metric-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
}

.metric-content {
  text-align: left;
}

.metric-value {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.metric-value.severity-low {
  color: var(--color-success);
}

.metric-value.severity-medium {
  color: var(--color-warning);
}

.metric-value.severity-high {
  color: var(--color-error);
}

.metric-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.benchmark-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Deployment Comparison Section */
.deployment-comparison {
  padding: clamp(4rem, 10vw, 10rem) 0;
  background-color: #0e0e12;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.comparison-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

/* Hiring Cost Section */
.hiring-cost {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  color: #ffffff;
}

.hiring-cost-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hiring-cost-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.hiring-cost-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
}

.cost-impacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cost-impacts li {
  margin-bottom: 12px;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.impact-x {
  color: #ff4c4c;
  font-size: 20px;
}

.cost-tracker {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border-radius: 8px;
}

.cost-tracker-header {
  margin-bottom: 32px;
}

.cost-tracker-header h3 {
  margin-bottom: 16px;
  color: white;
}

.cost-tracker-header p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.cost-progress {
  margin-bottom: 16px;
}

.cost-bar {
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.cost-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff7a7a 0%, #ff4c4c 100%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s ease;
}

.week-segments {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 1;
}

.week-segments span {
  padding-top: 18px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.milestone-labels {
  display: none;
}

.cost-labels {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 8px;
  margin-top: 24px;
}

.loss-amount {
  color: #ff4c4c;
}

/* Stats Section */
.stats-section {
  background-color: var(--color-primary);
  padding: clamp(4rem, 10vw, 10rem) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section h2 {
  margin: 0 0 64px;
  color: white;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 64px;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.logo-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
}

.logo-placeholder {
  height: 40px;
  width: 120px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.logo-placeholder:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .stats-section {
    padding: 80px 0;
  }
  
  .stats-section h2 {
    margin-bottom: 48px;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 16px;
  }
  
  .logo-carousel {
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .logo-placeholder {
    height: 32px;
    width: 100px;
    font-size: 12px;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonials h2 {
  margin: 0 0 64px;
  color: white;
  text-align: center;
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 48px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.03);
}

.testimonial-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0;
}

.testimonial-image.placeholder {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  position: relative;
}

.testimonial-image.placeholder::after {
  content: "Portrait";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.testimonial-content blockquote {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
  margin: 0 0 32px;
  position: relative;
}

.testimonial-content cite {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--color-primary);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .testimonials h2 {
    margin-bottom: 48px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 32px;
  }

  .testimonial-image {
    max-width: 200px;
    margin: 0 auto;
  }

  .testimonial-content blockquote {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .testimonial-content cite {
    font-size: 16px;
  }
}

.comparison-container h2 {
  margin: 0 0 24px;
  color: white;
}

.comparison-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 64px;
  font-size: 24px;
  line-height: 1.5;
}

.calendars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.calendar {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.calendar-title {
  text-align: left;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.calendar-month {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.calendar-month.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

.calendar-month.slide-in {
  transform: translateX(100%);
  opacity: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 12px;
  gap: 4px;
  min-height: 180px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.calendar-grid.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

.calendar-grid.slide-in {
  transform: translateX(100%);
  opacity: 0;
}

.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  height: 30px;
}

.calendar-day.day-header {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  height: 20px;
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.3;
}

.calendar-day.pending {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

.calendar-day.highlight {
  background: var(--color-primary);
  color: white;
  transition: all 0.2s ease;
}

.calendar-day.highlight-end {
  background: var(--color-primary);
  color: white;
}

.calendar-day.today {
  background: var(--color-primary);
  color: white;
}

.calendar-day.hr-day {
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.calendar-day.hr-day.highlight {
  background: rgba(207, 34, 46, 0.8);
}

.calendar-day.hr-day.highlight .day-number {
  color: white;
}

.day-icon {
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 10px;
}

.calendar-footer {
  padding: 24px;
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.senla .calendar-footer {
  background: var(--color-primary);
}

.hr .calendar-footer {
  background: var(--color-error);
}

.calendar-benefits {
  padding: 24px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-pill {
  flex: 1 1 calc(33.333% - 8px);
  min-width: 120px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  color: white;
}

.senla .metric-pill {
  background: var(--color-primary);
}

.hr .metric-pill {
  background: var(--color-error);
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .calculator-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .calculator-subtitle {
    font-size: 20px;
  }
  
  .hiring-cost {
    padding: 80px 0;
  }
  
  .hiring-cost-grid {
    gap: 32px;
  }
  
  .hiring-cost-content {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .cost-tracker-header h3 {
    font-size: 36px;
  }

  .cost-tracker-header p {
    font-size: 16px;
  }
  
  .cost-tracker {
    padding: 24px;
  }

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

  .container {
    padding: 0 16px;
  }
  
  .impact-section-wrapper {
    padding: 80px 0;
  }
  
  .impact-calculator {
    padding: 32px 0;
  }

  .calculator-container h2 {
    margin-bottom: 48px;
    text-align: center;
  }
  
  .timeline {
    padding: 24px;
    margin-bottom: 48px;
  }
  
  .timeline-weeks {
    gap: 4px;
    padding: 12px;
  }
  
  .week {
    font-size: 12px;
  }
  
  .metric-card {
    padding: 24px;
  }
  
  .metric-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .metric-value {
    font-size: 28px;
  }
  
  .metric-label {
    font-size: 14px;
  }

  .perception-status {
    height: 64px;
    font-size: 20px;
  }

  .delays-text {
    font-size: 18px;
    margin: 20px 0;
  }

  .calendars {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .calendar-header {
    padding: 12px;
  }

  .calendar-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .calendar-day {
    font-size: 12px;
  }

  .calendar-footer {
    padding: 16px;
    font-size: 16px;
  }

  .calendar-benefits {
    padding: 16px;
    gap: 8px;
  }

  .metric-pill {
    flex: 1 1 calc(50% - 4px);
    font-size: 13px;
    padding: 10px;
  }
}

/* Welcome Package Section */
.welcome-package {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: start;
}

.welcome-package h2 {
  margin-bottom: 64px;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.case-study-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  overflow: hidden;
  height: 240px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.case-study-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.case-title-bar {
  background: var(--color-primary);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.case-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.case-content {
  flex: 1;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-metrics {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.case-metrics li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 400;
}

.case-metrics li:last-child {
  margin-bottom: 0;
}

.resume-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  width: 100%;
}

.resume-card {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.resume-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.resume-icon {
  margin-bottom: 16px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.resume-title {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.resume-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.presentation-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.presentation-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.presentation-title-bar {
  background: var(--color-primary);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.presentation-title {
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.presentation-content {
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url('/img/presentation.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.presentation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.presentation-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

.presentation-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.presentation-heading {
  color: white;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

.download-section {
  text-align: center;
  width: 100%;
}

.btn-xl {
  padding: 16px 32px;
  font-size: 18px;
}

.download-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 768px) {
  .welcome-package {
    padding: 64px 0;
  }
  
  .case-studies {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .resume-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .presentation-placeholder {
    margin-bottom: 48px;
  }
  
  .placeholder-content {
    font-size: 16px;
  }
  
  .btn-xl {
    padding: 12px 24px;
    font-size: 16px;
    width: 100%;
  }
}

/* FAQ Section */
.faq-section {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 64px;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 64px 0;
  }
  
  .faq-section h2 {
    margin-bottom: 48px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .faq-item {
    padding: 24px;
  }
  
  .faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .faq-item p {
    font-size: 15px;
  }
}

/* Unblock Sprint Section */
.unblock-sprint {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.unblock-content {
  max-width: 1000px;
  margin: 0 auto;
}

.unblock-content h2 {
  text-align: center;
  margin-bottom: 24px;
}

.unblock-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 64px;
}

.unblock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.unblock-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.unblock-checklist li {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.unblock-checklist li:last-child {
  margin-bottom: 0;
}

.checklist-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.calendly-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.unblock-footer p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.unblock-footer a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.unblock-footer a:hover {
  color: white;
}

@media (max-width: 768px) {
  .unblock-sprint {
    padding: 64px 0;
  }
  
  .unblock-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }
  
  .unblock-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .unblock-checklist li {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .checklist-note {
    font-size: 14px;
  }
  
  .unblock-footer p {
    font-size: 14px;
  }
}

/* Tech Stack Section */
.tech-stack {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-title {
  margin: 0 0 64px;
  color: white;
}

.tech-logos {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
}

.tech-logo {
  width: 80px; /* Adjust as needed */
  height: 80px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.tech-logo img {
  max-width: 60%; /* Adjust logo size within the container */
  max-height: 60%;
  object-fit: contain; /* Ensure logos fit within their containers */
}

.tech-logo:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tech-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .tech-stack {
    padding: 64px 0;
  }

  .tech-stack-title {
    margin-bottom: 48px;
  }

  .tech-logos {
    gap: 32px;
  }

  .tech-logo {
    width: 60px; /* Adjusted for smaller screens */
    height: 60px; /* Adjusted for smaller screens */
  }

  .tech-caption {
    font-size: 14px;
  }
}

/* Tech Stack Section */
.tech-stack {
  background-color: #0e0e12;
  padding: clamp(4rem, 10vw, 10rem) 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stack-title {
  margin: 0 0 64px;
  color: white;
}

.tech-logos {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap; /* Allow logos to wrap on smaller screens */
}

.tech-logo {
  width: 80px; /* Adjust as needed */
  height: 80px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.tech-logo img {
  max-width: 60%; /* Adjust logo size within the container */
  max-height: 60%;
  object-fit: contain; /* Ensure logos fit within their containers */
}

.tech-logo:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tech-caption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .tech-stack {
    padding: 64px 0;
  }

  .tech-stack-title {
    margin-bottom: 48px;
  }

  .tech-logos {
    gap: 32px;
  }

  .tech-logo {
    width: 60px; /* Adjusted for smaller screens */
    height: 60px; /* Adjusted for smaller screens */
  }

  .tech-caption {
    font-size: 14px;
  }
}
