/* Modern Tailwind-inspired CSS Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: rgb(229 231 235);
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: rgb(255 255 255);
  color: rgb(15 23 42);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: 40px;
  /* Optimize rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Optimize scrolling performance */
.is-scrolling * {
  transition-duration: 0ms !important;
  animation-duration: 0ms !important;
}

/* Typography - Modern Scale */
h1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: rgb(15 23 42);
}

h3 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: rgb(30 41 59);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgb(71 85 105);
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 36px;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.btn-primary {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
  border-radius: 6px;
}

.btn-primary:hover {
  background: #1a3a5c;
}

.btn-secondary {
  background: transparent;
  color: #0E2641;
  font-weight: 700;
  border: 1.5px solid rgba(14, 38, 65, 0.5);
  border-radius: 6px;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
}

.btn-secondary:hover {
  background: rgba(236, 227, 209, 0.5);
  color: #0E2641;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Flexbox Utilities */
.flex { display: flex; }

/* Spacing */
.gap-4 { gap: 1rem; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.glass-nav {
  background: #FFFFFF;
}

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

.Fortuna-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Main Content Container */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px; /* Account for fixed navigation */
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 2vh 0;
  background: linear-gradient(
    135deg,
    rgb(248, 252, 251) 0%,
    rgb(241, 242, 249) 100%
  );
  position: relative;
  overflow: hidden;
  width: 90vw;
  margin: 2rem auto 0 auto;
  border-radius: 10px;
}

.hero-flex-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  opacity: 0.7;
}

/* Hero Feature Cards */
.hero-feature-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 60%;
}

.hero-feature-card {
  width: 100%;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
}


.hero-feature-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.hero-feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  box-shadow: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-title {
  background: linear-gradient(135deg, rgb(15 23 42) 0%, rgb(71 85 105) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  font-weight: 600;
  color: rgb(107 114 128);
  margin-bottom: 2.5rem;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.hero-buttons .btn {
  padding: 0.6rem 2.25rem;
  min-height: 44px;
}

.text-gradient-blue {
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 50%, #020e34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underlined-text {
  text-decoration: underline;
  text-decoration-color: rgba(107, 114, 128, 0.6);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Problem Section */
.problem-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgb(248, 252, 252) 0%,
    rgb(241, 243, 249) 100%
  );
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  box-sizing: border-box;
}

.problem-title {
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  /* Hardware acceleration */
  transform: translateZ(0);
  will-change: transform;
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #F4D09E;
  font-weight: bold;
}

.problem-text {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  font-weight: 400;
  color: rgb(15 23 42);
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.problem-bracket {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: rgb(93, 105, 122, 0.5);
  font-weight: 500;
  margin-left: 1rem;
  flex-shrink: 0;
}

.problem-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 500;
  color: rgb(71 85 105);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
}

/* Responsive Design for Problem Section */
@media (max-width: 768px) {
  .problem-list {
    gap: 1rem;
  }
  
  .problem-item {
    padding: 0.75rem 1rem;
  }
  
  .problem-title {
    margin-bottom: 2rem;
  }
  
  .problem-text {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .problem-bracket {
    margin-left: 0;
    margin-top: 0.25rem;
    align-self: flex-end;
  }
}

/* Average Result Section */
.average-result-section {
  min-height: 90vh;
  padding: 8rem 0;
  background: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
}

.average-result-title {
  font-size: clamp(1.3rem, 2.5vw + 0.4rem, 2.2rem);
  font-weight: 700;
  color: rgb(15 23 42);
  margin-bottom: 6rem;
  line-height: 1.3;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.average-result-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.average-result-card-item {
  background: linear-gradient(135deg, rgb(248, 252, 249) 0%, rgb(241, 242, 249) 100%);
  border-radius: 15px;
  padding: 4.5rem 2.5rem;
  text-align: center;
  min-width: 250px;
  flex: 1;
  max-width: 400px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  transform: translateZ(0);
  transition: transform 0.3s ease;
  will-change: transform;
  /* Hardware acceleration */
  transform: translateZ(0);
}


.average-result-percentage {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  font-weight: 800;
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 50%, #020e34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
}

.average-result-category {
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 600;
  color: rgb(71 85 105);
  line-height: 1.4;
}

/* Responsive Design for Average Result Section */
@media (max-width: 768px) {
  .average-result-cards {
    flex-direction: column;
    gap: 2rem;
  }
  
  .average-result-card-item {
    max-width: 100%;
    min-width: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  }
  
  .average-result-title {
    margin-bottom: 3rem;
  }
}

/* Comparison Table Section */
.comparison-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgb(248, 252, 252) 0%, rgb(241, 243, 249) 100%);
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden; /* Ensure no horizontal scrollbar appears */
}

.comparison-title {
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 500;
  color: rgb(71 85 105);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.comparison-table {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background: white;
}

.comparison-header {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.comparison-header .comparison-col {
  padding: 1.75rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0E2641;
}

.comparison-header .fortuna {
  color: #3B82F6;
}

.comparison-header .others {
  color: #64748b;
}

.comparison-row {
  display: flex;
  border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-feature {
  flex: 1.2;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  text-align: left;
  color: #0E2641;
  background: #f8f9fa;
  display: flex;
  align-items: center;
}

.comparison-col {
  flex: 2.5;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
  font-size: 1.2rem;
}

.x-icon {
  color: #ef4444;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive Design for Comparison Table */
@media (max-width: 768px) {
  .comparison-table {
    margin: 0 1rem;
  }
  
  .comparison-col {
    font-size: 0.9rem;
    padding: 1rem;
  }
  
  .comparison-feature {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .comparison-row {
    flex-direction: column;
  }
  
  .comparison-header {
    display: none;
  }
  
  .comparison-feature {
    border-bottom: 1px solid #e9ecef;
    background: #f1f5f9;
  }
  
  .comparison-col {
    padding: 0.75rem 1rem;
  }
  
  .comparison-col.fortuna {
    background: rgba(59, 130, 246, 0.05);
  }
  
  .comparison-col.others {
    border-bottom: 1px solid #e9ecef;
  }
  
  .comparison-row:last-child .comparison-col.others {
    border-bottom: none;
  }
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  min-height: 40vh;
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-title {
  font-size: clamp(0.25rem, 2vw + 0.1rem, 0.75rem);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
  line-height: 1.4;
  opacity: 0.6;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.partner-link:hover {
  transform: scale(1.05);
}

.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.partner-link:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
}


/* Responsive Design for Partners Section */
@media (max-width: 768px) {
  .partners-logos {
    gap: 2rem;
  }
  
  .partner-link {
    padding: 0.5rem;
  }
  
  .partner-logo {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .partners-logos {
    gap: 1.5rem;
  }
  
  .partner-logo {
    height: 40px;
  }
}


/* Process Section */
.process-section {
  padding: 6rem 0;
  background: #ffffff;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-title {
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.process-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 500;
  color: rgb(71 85 105);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.process-container {
  display: flex;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding: 0.5rem;
}

/* Remove the vertical line completely */
.process-steps::before {
  content: none;
}

.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: opacity 0.7s ease, border-color 0.7s ease;
  cursor: pointer;
  border: 1px solid transparent;
  opacity: 0.7;
  will-change: opacity, border-color;
}

.process-step:hover, .process-step.active {
  border: 1px solid #0E2641;
  opacity: 1;
}

.process-step:hover .step-number, .process-step.active .step-number {
  background-color: #0E2641;
}

.process-step:hover .step-number span, .process-step.active .step-number span {
  color: white;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgb(248, 252, 252);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E2641;
}

.step-content {
  padding-top: 0.5rem;
  text-align: left;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgb(71 85 105);
  line-height: 1.6;
  margin: 0;
}

.process-visualization {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  position: relative;
  min-height: 400px;
  /* Remove overflow: hidden to allow shadows to be visible */
  padding: 15px; /* Add padding to ensure shadows are fully visible */
}

.process-visualization.active {
  opacity: 1;
}

.visualization-container {
  width: 100%;
  max-width: 500px;
  transition: opacity 0.7s ease;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  visibility: hidden;
  /* Add margin to ensure shadows are fully visible */
  margin: 15px 0;
  will-change: opacity, visibility;
}

/* Special handling for step 3 visualization */
#step3Visualization {
  z-index: 1;
}

#step2Visualization {
  z-index: 2;
}

.visualization-container.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  visibility: visible;
}

/* Booking Calendar Styles */
.booking-calendar {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  /* Ensure shadow is visible */
  position: relative;
  z-index: 1;
}

.calendar-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.calendar-header h3 {
  color: #0E2641;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.calendar-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.calendar-month {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0E2641;
  margin-bottom: 1rem;
  text-align: center;
}

.calendar-weekdays {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.weekday {
  flex: 1;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  padding: 0.5rem 0;
  background-color: #f8fcfc;
  border-radius: 6px;
}

.calendar-dates {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.date-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.date {
  font-weight: 600;
  font-size: 1rem;
  color: #0E2641;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.date.today {
  background-color: #0E2641;
  color: #F4D09E;
}

.time-slot {
  width: 90%;
  padding: 0.5rem 0.25rem;
  text-align: center;
  font-size: 0.8rem;
  background-color: #f8fcfc;
  border-radius: 6px;
  border: 1px solid transparent;
}

.booking-action {
  text-align: center;
  margin-top: 1.5rem;
}

.booking-button {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}

.booking-button:hover {
  background: #1a3a5c;
}

.authorization-content {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.auth-button {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}

.auth-button:hover {
  background: #1a3a5c;
}

.browser-mockup {
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: white;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
}

.browser-dots {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: #f1f5f9;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
}

.browser-dot:nth-child(1) {
  background: #f87171;
}

.browser-dot:nth-child(2) {
  background: #fbbf24;
}

.browser-dot:nth-child(3) {
  background: #4ade80;
}

.browser-content {
  padding: 1.5rem;
  background: white;
}

/* Platform label removed */

.analysis-container {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
}

.analysis-container.no-border {
  border: none;
}

.project-description {
  margin-bottom: 1.5rem;
}

.project-description h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.project-description p {
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.5;
}

.analysis-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.analysis-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analysis-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
}

.analysis-meter {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin: 0 1rem;
  position: relative;
  overflow: hidden;
}

.analysis-meter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 100%);
  border-radius: 3px;
}

.analysis-meter.high::after {
  width: 90%;
}

.analysis-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E2641;
}

/* Responsive Design for Process Section */
@media (max-width: 1024px) {
  .process-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .process-steps {
    flex: 0 0 100%;
    order: 1;
    width: 100%;
    max-width: 100%;
  }
  
  .process-visualization {
    flex: 0 0 100%;
    order: 2;
    width: 100%;
  }
  
  .visualization-container {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .process-step {
    gap: 1.5rem;
    padding: 0.75rem;
  }
  
  .step-number {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .step-number span {
    font-size: 1rem;
  }
  
  .step-title {
    font-size: 1.125rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 4rem 0;
  }
  
  .process-step {
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .step-number {
    width: 2rem;
    height: 2rem;
  }
  
  .step-number span {
    font-size: 0.875rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .hero-flex-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-feature-cards {
    max-width: 100%;
    order: 1;
  }
  
  .hero-content {
    max-width: 100%;
    padding: 0;
    text-align: center;
    order: 2;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-feature-card {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  .hero { 
    padding: 2rem 0;
    min-height: auto;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-flex-container {
    gap: 1.5rem;
  }
  
  .hero-feature-card {
    width: 100%;
    max-width: 400px;
  }
  
  .hero-feature-card-content {
    padding: 0;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }
}

/* Scroll Animation - Removed */

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html { scroll-behavior: auto; }
}

/* Decorative Underline */
.decorative-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.underline-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: block;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Adjust highlighter for very small screens where problem-title breaks to 3 lines */
@media (max-width: 400px) {
  .underline-image {
    bottom: 0;
    width: 100%;
    left: 0;
    height: auto;
    transform: scale(0.8);
  }
}

/* Footer Styles */
.footer {
  padding: 2rem 0;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85vw;
  height: 1px;
  background-color: #e5e7eb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-email {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 30px;
  width: auto;
}

.footer-linkedin {
  color: #6b7280;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-linkedin:hover {
  color: #4b5563;
}

.footer-email:hover {
  color: #4b5563;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-social {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-email {
    margin-right: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 0;
  background-color: #121e2d;
  color: white;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.cta-content {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #6b8aab;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #a0aec0;
  max-width: 90%;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #e2e8f0;
}

.cta-benefits-wrapper {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-action {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-button {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 1rem 2.5rem;
  min-height: 50px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.check-circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}

.cta-form-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #121e2d;
  position: relative;
}

.cta-form {
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15%;
  right: 0;
}

.form-container {
  width: 80%;
  max-width: 450px;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 0.5rem;
  text-align: left;
}

.form-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0E2641;
  text-align: left;
}

.form-group input {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #3B82F6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
  width: 100%;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
}

.form-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #3B82F6;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.submit-button {
  background-color: #4F46E5;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: #4338CA;
}

.form-footer {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-top: 1.5rem;
}

.form-footer a {
  color: #3B82F6;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .cta-container {
    flex-direction: column;
  }
  
  .cta-content {
    padding: 4rem 2rem;
  }
  
  .cta-description {
    max-width: 100%;
  }
  
  .cta-benefits-wrapper {
    padding: 0 2rem 4rem;
  }
}

@media (max-width: 768px) {
  .cta-content {
    padding: 3rem 1.5rem;
  }
  
  .cta-benefits-wrapper {
    padding: 0 1.5rem 3rem;
  }
  
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    min-height: 45px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 8rem 0;
  background: #ffffff;
  text-align: center;
}

.faq-title {
  font-size: clamp(1.6rem, 3.5vw + 0.7rem, 2.8rem);
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  will-change: transform;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: white;
  transition: background-color 0.3s ease;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E2641;
  margin: 0;
  text-align: left;
}

.faq-icon {
  color: #3B82F6;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  transform: scale(0.9);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
  font-size: 0.9rem;
}

.faq-item.active .faq-question {
  background-color: #f8f9fa;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-answer p {
    font-size: 0.85rem;
  }
}