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

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible for accessibility - improves keyboard navigation */
*:focus-visible {
  outline: 2px solid #00b0ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}

html {
  scroll-behavior: smooth;
  zoom: 1;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Google Sans", sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: white;
  border: 20px solid #f8f9fa;
  border-radius: 20px;
  min-height: 100vh;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  body {
    border: 10px solid #f8f9fa;
    border-radius: 10px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #f8f9fa;
  border-radius: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header::before {
  display: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 20px;
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.logo:visited,
.logo:active,
.logo:focus,
.logo:focus-visible {
  text-decoration: none !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.lantern-icon {
  width: 32px;
  height: 40px;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #00b0ff;
}

.header-demo-button {
  background: #ffd700;
  color: #333;
  border: none;
  padding: 14px 28px;
  min-height: 44px;
  min-width: 44px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-family: "Google Sans", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  position: absolute;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.header-demo-button:hover {
  background: #f5c300;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: stretch; /* make children take full height */
  justify-content: center;
  background: url("6 (2)_almost.png") no-repeat;
  background-size: 100% 100%;
  background-color: #f8f9fa;
  border-radius: 15px;
  margin: 0;
  padding: 40px 0 30px 0;
}

/* Hero Content */
.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 75px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: "Google Sans", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 1;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-description strong {
  font-weight: 700;
}

.hero-sub-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* CTA Form Styles */
.cta-form {
  display: flex;
  max-width: 500px;
  margin: 20px auto 0 auto;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.email-field {
  display: flex;
  align-items: center;
  flex: 1;
  background: white;
  padding: 16px 20px;
  border: none;
  border-radius: 0;
}

.email-icon {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.email-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
  flex: 1;
  font-family: "Google Sans", sans-serif;
}

.email-input::placeholder {
  color: #999;
}

.demo-button-cta {
  background: #ffd700;
  color: #333;
  border: none;
  padding: 18px 32px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 25px;
  font-family: "Google Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 4px solid white;
  border-top: 4px solid white;
  border-bottom: 4px solid white;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.demo-button-cta:hover {
  background: #f5c300;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.6);
}

/* Partner Logos Section */
.partner-logos {
  margin-top: 280px;
  margin-bottom: 10px;
}

.trusted-by-text {
  font-family: "Google Sans", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  max-width: 41.667vw;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}

.partner-logo {
  height: 2.431vw;
  width: auto;
  max-width: 150px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1);
}

.partner-logo[src="SY.svg"] {
  filter: brightness(0) invert(1);
}

.partner-logo[src="CAPP.png"] {
  height: 1.944vw;
  max-width: 120px;
}

.partner-logo[src="2021-Lesman-Kele-Logo.png"] {
  margin-left: -10px;
}

.partner-logo:hover {
  opacity: 1;
}

/* Large screens - adjust header alignment */
@media (min-width: 1600px) {
  .logo {
    left: 40px;
  }
  .header-demo-button {
    right: 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .logo {
    left: 30px;
  }
  .header-demo-button {
    right: 30px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 10px;
  }

  .header-content {
    padding: 0 15px;
    max-width: calc(100vw - 30px);
  }

  .logo {
    left: 15px;
  }

  .lantern-icon {
    width: 28px;
    height: 35px;
  }

  .logo-text {
    font-size: 20px;
  }

  .header-demo-button {
    padding: 10px 20px;
    font-size: 13px;
    right: 15px;
  }

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

  .hero-description {
    font-size: 1.3rem;
  }

  .hero-sub-description {
    font-size: 1rem;
  }

  .cta-form {
    flex-direction: column;
    max-width: 300px;
  }

  .email-field {
    padding: 14px 16px;
  }
  .cta-form {
    max-width: unset;
    margin: auto;
  }
  .demo-button-cta {
    padding: 8px 16px;
    font-size: 15px;
    width: 100%;
    min-height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 4px solid white;
    border-radius: 8px 8px 25px 25px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
    max-width: 50.781vw;
  }

  .partner-logo {
    height: 3.906vw;
  }

  .partner-logo[src="CAPP.png"] {
    height: 3.125vw;
    max-width: 100px;
  }

  .partner-logo[src="2021-Lesman-Kele-Logo.png"] {
    margin-left: -8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 30px 0 20px 0;
    overflow: hidden;
  }

  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5))
      no-repeat;
    background-size: 100% 100%;
  }

  .hero-content {
    padding: 0 15px;
    margin-top: 55px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-sub-description {
    font-size: 0.95rem;
  }

  .cta-form {
    max-width: 280px;
  }

  .partner-logos {
    margin-top: 60px;
  }

  .trusted-by-text {
    font-size: 18px;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }

  .partner-logo {
    height: 7.292vw;
  }

  .partner-logo[src="CAPP.png"] {
    height: 4.167vw;
    max-width: 90px;
  }

  .partner-logo[src="2021-Lesman-Kele-Logo.png"] {
    margin-left: -5px;
  }
}

/* New Content Section */
.content-section {
  min-height: auto;
  background: #ffffff;
  padding: 0 0 20px 0;
  margin-top: 0;
}

.content-container {
  margin: 0 auto;
  padding: 30px 40px 0 40px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: stretch;
  height: auto;
}

/* Left Content Area - Content and Features */
.left-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 10px;
  justify-content: flex-start;
}

.content-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.content-section .left-content {
  gap: 10px;
}

.content-section .content-header {
  margin-bottom: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.section-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  color: #333;
  margin: 0;
}

.title-accent {
  color: #00b0ff;
}

.section-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.cta-button {
  background: #333;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-family: "Google Sans", sans-serif;
  width: fit-content;
}

.cta-button:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Right Content Area - Product Image */
.right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-image-container {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.3s ease-in-out;
  display: none;
  align-items: center;
  justify-content: center;
}

.product-image.active {
  display: flex;
}

/* Desktop only: Progressive vertical positioning for feature images */
@media (min-width: 769px) {
  /* Demand Forecasting - perfect position (baseline) */
  #image-1.active {
    transform: translateY(0);
  }

  /* Forward Buying - slight move down */
  #image-2.active {
    transform: translateY(15px);
  }

  /* Product Classification - move down more */
  #image-3.active {
    transform: translateY(30px);
  }

  /* Smart Order Cycles - continue moving down */
  #image-4.active {
    transform: translateY(45px);
  }

  /* Dynamic Safety Stock - further down */
  #image-5.active {
    transform: translateY(60px);
  }

  /* Network Flexibility - near bottom */
  #image-6.active {
    transform: translateY(75px);
  }

  /* External Data - bottom position */
  #image-7.active {
    transform: translateY(90px);
  }
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 18px;
  font-weight: 500;
  border: 2px dashed #ccc;
  text-align: center;
  line-height: 1.4;
}

.screenshot-image {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* .demand-forecast-image {
    transform: scale(1.1) translateY(0);
    }

    .smart-leadtimes-image {
    transform: scale(1.1) translateY(10px);
    }

    .smart-ordercycles-image {
    transform: scale(1.1) translateY(20px);
    }

    .dynamic-safetystock-image {
    transform: scale(1.1) translateY(30px);
    }

    .network-flexibility-image {
    transform: scale(1.1) translateY(40px);
    }

    .bulk-buying-image {
    transform: scale(1.1) translateY(50px);
    }

    .external-data-image {
    transform: scale(1.1) translateY(60px);
    } */

/* Product Interface Styles */
.product-interface {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Exact Screenshot Interface */
.product-interface-exact {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  overflow: hidden;
  font-family: "Google Sans", sans-serif;
}

.sidebar {
  width: 50px;
  background: #f8f9fa;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 12px;
}

.sidebar-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
}

.sidebar-icon-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  margin-top: auto;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.interface-header-exact {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.main-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.search-and-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-container {
  position: relative;
}

.search-input {
  width: 300px;
  padding: 8px 12px 8px 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: white;
}

.search-input::before {
  content: "🔍";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.header-buttons {
  display: flex;
  gap: 8px;
}

.header-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
}

.primary-header-btn {
  padding: 8px 16px;
  background: #007bff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  color: white;
}

.last-updated-exact {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.table-container {
  flex: 1;
  overflow: auto;
}

.table-header-exact {
  display: grid;
  grid-template-columns: 120px 250px 100px 200px 80px 100px 80px 100px 100px 60px 60px 180px;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 12px;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-cell {
  padding: 12px 8px;
  border-right: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.data-row {
  display: grid;
  grid-template-columns: 120px 250px 100px 200px 80px 100px 80px 100px 100px 60px 60px 180px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
  color: #333;
}

.data-row:hover {
  background: #f8f9fa;
}

.data-cell {
  padding: 12px 8px;
  border-right: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.class-badge {
  background: #28a745;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.row-btn {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
  margin-right: 4px;
  background: white;
  color: #333;
}

.row-btn.override,
.row-btn.approve {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.row-btn.forecast {
  background: #f8f9fa;
  color: #666;
  border-color: #ddd;
}

.table-footer-exact {
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.results-summary {
  color: #666;
}

.pagination-exact {
  display: flex;
  gap: 4px;
  align-items: center;
}

.page-btn-exact {
  padding: 6px 10px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  color: #333;
}

.page-btn-exact.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.pagination-dots {
  color: #666;
  padding: 0 4px;
}

.per-page-selector {
  color: #666;
}

.interface-header {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}

.interface-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px 0;
}

.last-updated {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
}

.search-bar {
  display: flex;
  margin-bottom: 16px;
}

.search-bar input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-btn {
  padding: 8px 12px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-left: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.header-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.action-btn {
  padding: 8px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.action-btn:hover {
  background: #f0f0f0;
}

.primary-btn {
  padding: 8px 16px;
  background: #00b0ff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.primary-btn:hover {
  background: #0099e6;
}

.data-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 2fr 0.8fr 1.5fr 0.6fr 0.8fr 0.8fr 0.8fr 0.8fr 0.6fr 0.6fr 1.2fr;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  font-size: 12px;
  color: #333;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 0.8fr 1.5fr 0.6fr 0.8fr 0.8fr 0.8fr 0.8fr 0.6fr 0.6fr 1.2fr;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
}

.table-header .col,
.table-row .col {
  padding: 8px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.table-row:hover {
  background: #f8f9fa;
}

.product-class-a {
  background: #28a745;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.action-btn.small {
  padding: 4px 8px;
  font-size: 11px;
  margin-right: 4px;
}

.table-footer {
  padding: 16px 20px;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.results-info {
  color: #666;
}

.pagination {
  display: flex;
  gap: 4px;
  align-items: center;
}

.page-btn {
  padding: 4px 8px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}

.page-btn.active {
  background: #00b0ff;
  color: white;
  border-color: #00b0ff;
}

.per-page {
  color: #666;
}

/* Features List */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: 450px;
  margin: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  min-height: 60px;
  width: 100%;
  box-sizing: border-box;
}

.feature-item.active {
  align-items: flex-start;
  padding: 18px 0;
}

.feature-item:last-child {
  border-bottom: none;
  padding-bottom: 10px;
}

.feature-item.active:last-child {
  padding-bottom: 10px;
}

.feature-item.clickable {
  cursor: pointer;
}

.feature-item.clickable:hover {
  background: #f5f5f5;
  border-radius: 8px;
}

.feature-icon {
  min-width: 32px;
  height: 32px;
  margin-top: 0;
  margin-right: 4px;
  /* flex-shrink: 0; */
  color: #00b0ff;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-item.active .feature-content {
  justify-content: flex-start;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
  font-family: "Google Sans", sans-serif;
}

.feature-item.active .feature-content h3 {
  margin-bottom: 8px;
}

.feature-item.active h3 {
  color: #00b0ff;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Hide mobile images on desktop (above 1200px) */
.feature-mobile-image {
  display: none;
}

.feature-description {
  display: none;
  margin-top: 8px;
  animation: slideDown 0.3s ease-out;
  width: 100%;
  min-height: auto;
  height: auto;
  overflow: hidden;
}

.feature-description.default-open {
  display: block;
}

.feature-description p {
  margin: 0;
  padding: 0;
  overflow-y: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* New Section Styles */
.new-section {
  background: #f8f9fa;
  padding: 0 0 40px 0;
}

/* Quote Section Styles */
.quote-sections-container {
  position: relative;
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px; */
}

.quote-section {
  /* position: absolute; */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
  border-radius: 24px;
  height: auto;
  width: 100%;
  /* opacity: 0; */
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  /* transform: translateY(20px); */
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.quote-section.active-quote {
  display: flex;
  transform: translateY(0);
}

.quote-section.yellow-bg {
  border-left: 6px solid #ffd700;
}

.quote-section.cyan-bg {
  border-left: 6px solid #00b0ff;
}

.quote-section.green-bg {
  border-left: 6px solid #4caf50;
}

.quote-section.orange-bg {
  border-left: 6px solid #ff9800;
}

.quote-container {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Reduce spacing for all customer quotes */
.quote-section.yellow-bg .quote-container,
.quote-section.cyan-bg .quote-container,
.quote-section.green-bg .quote-container,
.quote-section.orange-bg .quote-container {
  gap: 20px;
}

.headshot-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 4px solid white;
}

/* Monte - properly zoomed to fill circle with face */
.monte-headshot {
  object-fit: cover;
  object-position: 130% 0%;
  /* Positioned further right and at top to center face */
}

/* Jonathan - zoomed in (larger face, crops edges) */
.jonathan-headshot {
  /* Cover fills the circle and naturally creates a zoom effect */
  object-fit: cover;
  /* Center horizontally, adjust vertical to focus on face */
  object-position: center 20%;
}

.main-quote {
  font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2c2c2c;
  margin: 0;
  position: relative;
  padding-left: 30px;
}

.main-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: #00b0ff;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.highlight-lantern {
  color: #00b0ff;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
}

.author-name-quote {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.author-title-quote {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.stats-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 60px;
  margin-top: 40px;
  padding: 48px 0 0 0;
  border-top: 1px solid #e5e5e5;
}

.stat-box {
  text-align: center;
  flex: 1;
}

.stat-number-large {
  font-family: "Google Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #00b0ff;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label-quote {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.stat-divider {
  display: none;
}

.cta-link {
  margin-top: 40px;
}

.case-study-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.case-study-link:hover {
  gap: 12px;
}

.case-study-link span {
  font-size: 1.5rem;
}

.new-section-container {
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.section-header-right {
  text-align: right;
  max-width: 450px;
  margin-left: auto;
  margin-right: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00b0ff;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-main-title {
  font-family: "Google Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

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

.stat-number {
  font-family: "Google Sans", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #00b0ff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.blocks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.blocks-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.block-item {
  background: transparent;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  min-height: 60px;
  cursor: pointer;
}

.block-item.active {
  align-items: flex-start;
  padding: 24px 0;
}

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

.block-item:hover {
  background: #f5f5f5;
  border-radius: 8px;
}

.block-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.block-icon-circle svg {
  width: 24px;
  height: 24px;
}

.block-icon-circle.yellow {
  background: #f5e6d3;
}

.block-icon-circle.cyan {
  background: #d4f0f0;
}

.block-icon-circle.green {
  background: #d8e9dd;
}

.block-icon-circle.orange {
  background: #f5e6d3;
}

.block-logo-container {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  align-self: center;
}

.block-item.active .block-logo-container {
  align-self: flex-start;
  margin-top: 4px;
}

.company-logo-icon {
  width: 50px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.block-content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-item.active .block-content {
  justify-content: flex-start;
}

.block-title {
  font-family: "Google Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.block-item.active .block-title {
  color: #00b0ff;
  margin-bottom: 8px;
}

.block-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  display: none;
  animation: slideDown 0.3s ease-out;
  width: 100%;
  min-height: 80px;
  height: 80px;
  overflow: hidden;
}

.block-description.default-open {
  display: block;
}

.block-description p {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-y: auto;
}

/* Mobile quote sections - hidden on desktop */
.block-mobile-quote {
  display: none;
  width: 100%;
  flex-basis: 100%;
}

.block-mobile-quote .quote-section {
  position: relative;
  display: flex;
  padding: 30px 20px;
  margin: 0;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Floating logos for page 3 */
.floating-logo-page3 {
  position: absolute;
  background: white;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 1;
  padding: 16px;
}

.floating-logo-page3 img {
  max-height: 48px;
  max-width: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* SAP - bottom right upper */
.floating-logo-page3.logo-4 {
  bottom: 3%;
  right: 5%;
}

/* P21 - bottom right middle */
.floating-logo-page3.logo-5 {
  bottom: 3%;
  right: 20%;
}

/* Eclipse - bottom right lower */
.floating-logo-page3.logo-6 {
  bottom: 3%;
  right: 35%;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-left h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.content-left p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.primary-cta {
  background: #ffd700;
  color: #333;
  border: none;
  padding: 18px 40px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Google Sans", sans-serif;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-cta:hover {
  background: #f5c300;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.6);
}

/* Ghost / Outline Style for Secondary CTAs */
.secondary-cta {
  background: transparent;
  color: #00b0ff;
  border: 2px solid #00b0ff;
  padding: 16px 38px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Google Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.secondary-cta:hover {
  background: #00b0ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 176, 255, 0.3);
}

.testimonial {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #00b0ff;
}

.quote {
  font-size: 1.2rem;
  color: #333;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.author-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.author-title {
  color: #666;
  font-size: 14px;
}

/* Responsive Design for New Section */
@media (max-width: 1024px) {
  .new-section-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 20px 0px;
  }

  .section-header-right {
    text-align: left;
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .blocks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-main-title {
    font-size: 2.5rem;
  }
  .main-quote {
    font-size: 22px;
  }
  .block-description {
    min-height: auto;
    height: auto;
  }

  /* Hide right-side quote container on mobile */
  .quote-sections-container {
    display: none;
  }

  /* Show mobile quotes below active block-item */
  .block-item.active .block-mobile-quote {
    display: block;
  }
}

@media (max-width: 768px) {
  .new-section {
    padding: 0px 0;
    min-height: auto;
  }
  .stats-container {
    gap: 20px;
  }
  .new-section-container {
    padding: 20px 0px;
    grid-template-columns: 1fr;
    height: auto;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }
  .stat-label-quote {
    font-size: 12px;
  }
  .block-title {
    font-size: 14px;
  }
  .blocks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .headshot-image {
    width: 60px;
    height: 60px;
  }
  .quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 0px;
  }

  .section-main-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }

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

  .primary-cta,
  .secondary-cta {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
    min-height: 48px;
  }

  .quote-section {
    padding: 30px 20px;
  }

  .main-quote {
    font-size: 1rem;
    padding-left: 20px;
  }

  .main-quote::before {
    font-size: 2.5rem;
  }

  .stats-container {
    flex-direction: row;
    gap: 15px;
    margin-top: 0px;
    padding: 18px 0 0 0;
  }

  .stat-number-large {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .content-section {
    padding: 20px 0;
    min-height: auto;
  }

  .content-container {
    grid-template-columns: 1fr;
    /* grid-template-rows: auto auto; */
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    gap: 40px;
  }
  .features-list {
    max-width: 100%;
  }
  .left-content {
    width: 100%;
    max-width: 100%;
  }
  .section-description {
    line-height: 1.3;
  }
  .section-title {
    font-size: 24px;
    text-align: left;
    font-weight: 600;
  }

  .feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 12px;
    padding: 20px 0;
    width: 100%;
  }

  .panel-content {
    padding: 30px 20px;
  }

  .right-content {
    display: none;
  }

  .product-image-container {
    /* height: 320px; */
    margin-bottom: 20px;
    flex-direction: column;
  }

  /* Mobile images - hidden by default, shown when feature is active */
  .feature-mobile-image {
    display: none;
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
  }

  .feature-item.active .feature-mobile-image {
    display: block;
  }

  .feature-mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .feature-item.clickable:hover {
    background: transparent;
    border-radius: 8px;
  }
  .content-section {
    padding: 0;
    min-height: auto;
  }

  .content-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 20px 0px;
    gap: 40px;
  }

  .left-content {
    width: 100%;
    max-width: 100%;
    padding: 8px;
  }

  .section-title {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
  }

  .feature-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px 12px;
    align-items: start;
    padding: 20px 0;
    width: 100%;
  }

  .feature-icon {
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    margin-top: 0;
  }

  .feature-content {
    grid-row: 1;
    grid-column: 2;
    display: contents;
  }
  .feature-icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-top: 0;
    margin-right: 0px;
    /* flex-shrink: 0; */
    color: #00b0ff;
  }
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  .feature-content h3 {
    grid-row: 1;
    grid-column: 2;
    font-size: 16px;
    margin: 0;
    line-height: 32px;
  }

  .feature-description {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 8px;
    width: 100%;
  }

  .feature-item.active .feature-content {
    grid-row: 1;
    grid-column: 2;
  }

  .feature-item.active .feature-content h3 {
    margin-bottom: 0;
  }

  .feature-item.active .feature-description {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .feature-mobile-image {
    grid-row: 3;
    grid-column: 1 / -1;
    margin-top: 0px;
    padding-top: 0px;
    width: 100%;
  }

  .feature-item.active .feature-mobile-image {
    display: block;
  }

  .feature-mobile-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
  }

  .panel-content {
    padding: 30px 20px;
  }

  .right-content {
    display: none;
  }

  .product-image-container {
    /* height: 320px; */
    margin-bottom: 20px;
    flex-direction: column;
  }
}

/* ERP Integration Section */
.erp-section {
  position: relative;
  background: #ffffff;
  padding: 120px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 50vh;
}

.erp-container {
  position: relative;
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.erp-badge {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.erp-title {
  font-family: "Google Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #4a4a4a;
  margin: 0 0 40px 0;
}

.erp-button {
  background: transparent;
  color: #ff6b4a;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-family: "Google Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.erp-button:hover {
  background: rgba(255, 107, 74, 0.1);
  transform: translateX(4px);
}

.floating-logo {
  position: absolute;
  background: white;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  z-index: 1;
  padding: 16px;
}

.floating-logo img {
  max-height: 48px;
  max-width: 108px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Infor - top left corner */
.logo-1 {
  top: 5%;
  left: 5%;
}

/* Odoo - left side */
.logo-2 {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
}

/* Oracle - bottom left corner */
.logo-3 {
  bottom: 5%;
  left: 5%;
}

/* Responsive Design for ERP Section */
@media (max-width: 768px) {
  .erp-section {
    padding: 80px 20px;
  }

  .erp-title {
    font-size: 2.2rem;
  }

  .floating-logo {
    width: 100px;
    height: 60px;
    padding: 12px;
  }

  .floating-logo img {
    max-height: 36px;
    max-width: 76px;
  }

  .floating-logo-page3 {
    width: 100px;
    height: 60px;
    padding: 12px;
  }

  .floating-logo-page3 img {
    max-height: 36px;
    max-width: 76px;
  }

  .floating-logo-page3.logo-5,
  .floating-logo-page3.logo-6 {
    display: none;
  }
}

/* Proof of Concept Section */
.poc-section {
  background: #ffffff;
  padding: 120px 0 200px 0;
  min-height: 100vh;
}

.poc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.poc-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 16px;
}

.poc-subtitle {
  font-family: "Google Sans", sans-serif;
  font-size: 1rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.poc-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
}

.poc-timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #ccc;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
}

.step-header {
  padding: 8px 16px;
  border-radius: 4px;
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.step-header.orange {
  background: #ff8c42;
}

.step-header.green {
  background: #6b8e23;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 3;
}

.orange-icon {
  background: #ff8c42;
}

.green-icon {
  background: #6b8e23;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-details li {
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.step-details li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #999;
  font-weight: bold;
}

.poc-footer {
  font-family: "Google Sans", sans-serif;
  font-size: 14px;
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Responsive Design for PoC Section */
@media (max-width: 1024px) {
  .poc-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .poc-timeline::before {
    display: none;
  }

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

@media (max-width: 768px) {
  .poc-section {
    padding: 80px 0;
  }

  .poc-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .poc-title {
    font-size: 1.8rem;
  }

  .poc-container {
    padding: 0 20px;
  }
}

/* Board of Advisors Section */
.advisors-section {
  min-height: 100vh;
  background: #ffffff;
  padding: 70px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.advisors-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 80px 0;
  text-align: center;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* Desktop: First row - 4 advisors evenly spaced */
.advisors-grid .advisor-card:nth-child(1) {
  grid-column: 1 / span 6;
}

.advisors-grid .advisor-card:nth-child(2) {
  grid-column: 7 / span 6;
}

.advisors-grid .advisor-card:nth-child(3) {
  grid-column: 13 / span 6;
}

.advisors-grid .advisor-card:nth-child(4) {
  grid-column: 19 / span 6;
}

/* Desktop: Second row - 4 advisors evenly spaced */
.advisors-grid .advisor-card:nth-child(5) {
  grid-column: 1 / span 6;
}

.advisors-grid .advisor-card:nth-child(6) {
  grid-column: 7 / span 6;
}

.advisors-grid .advisor-card:nth-child(7) {
  grid-column: 13 / span 6;
}

.advisors-grid .advisor-card:nth-child(8) {
  grid-column: 19 / span 6;
}

/* First row: 4 advisors, each spanning 2 columns (fills 8 columns) */
/* .advisors-grid .advisor-card:nth-child(1) {
  grid-column: 1 / span 2;
}

.advisors-grid .advisor-card:nth-child(2) {
  grid-column: 3 / span 2;
}

.advisors-grid .advisor-card:nth-child(3) {
  grid-column: 5 / span 2;
}

.advisors-grid .advisor-card:nth-child(4) {
  grid-column: 7 / span 2;
} */

/* Second row: 4 advisors, each spanning 2 columns (fills 8 columns) */
/* .advisors-grid .advisor-card:nth-child(5) {
  grid-column: 1 / span 2;
}

.advisors-grid .advisor-card:nth-child(6) {
  grid-column: 3 / span 2;
}

.advisors-grid .advisor-card:nth-child(7) {
  grid-column: 5 / span 2;
}

.advisors-grid .advisor-card:nth-child(8) {
  grid-column: 7 / span 2;
} */

.advisor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.advisor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advisor-photo {
  width: 140px;
  height: 140px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advisor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advisor-name {
  font-family: "Google Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.advisor-description {
  font-family: "Google Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  margin: 0 0 20px 0;
  min-height: 60px;
}

.advisor-company {
  margin-top: auto;
  padding-top: 10px;
}

.company-name {
  font-family: "Google Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.5px;
}

/* Responsive Design for Advisors Section */
@media (max-width: 1024px) {
  .advisors-grid {
    grid-template-columns: repeat(24, 1fr);
    gap: 15px 15px;
  }
  .advisor-card {
    padding: 15px 10px;
  }
}

@media (max-width: 768px) {
  .advisors-section {
    padding: 55px 0 35px 0;
  }

  .advisors-container {
    padding: 0 20px;
  }

  .advisors-title {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .advisors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Reset all desktop grid positioning for mobile */
  .advisors-grid .advisor-card:nth-child(1),
  .advisors-grid .advisor-card:nth-child(2),
  .advisors-grid .advisor-card:nth-child(3),
  .advisors-grid .advisor-card:nth-child(4),
  .advisors-grid .advisor-card:nth-child(5),
  .advisors-grid .advisor-card:nth-child(6),
  .advisors-grid .advisor-card:nth-child(7),
  .advisors-grid .advisor-card:nth-child(8) {
    grid-column: auto;
  }

  .advisor-card {
    padding: 0px;
  }

  .advisor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
  }

  .advisor-name {
    font-size: 1rem;
  }

  .advisor-description {
    font-size: 0.85rem;
    min-height: auto;
    line-height: 1.1rem;
  }
}

/* FAQ Section */
.faq-section {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.faq-title {
  font-family: "Google Sans", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 80px 0;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 60px;
  cursor: pointer;
  font-family: "Google Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s ease;
  min-height: 80px;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  min-width: 20px;
  text-align: center;
}

.faq-icon.active {
  transform: rotate(45deg);
  color: #00b0ff;
}

.faq-answer {
  display: none;
  padding: 0 60px 30px 60px;
  border-top: 1px solid #f0f0f0;
  animation: slideDown 0.3s ease-out;
}

.faq-answer.show {
  display: block;
}

.faq-answer p {
  font-family: "Google Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 15px 0 0 0;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-container {
    padding: 0 20px;
  }

  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }

  .faq-question {
    padding: 25px 30px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 30px 25px 30px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Letter Section - Static */
.letter-section-static {
  min-height: auto;
  background: #f8f9fa;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.letter-container-static {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
}

.letter-section-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 40px 0;
  text-align: center;
}

.letter-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.letter-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.letter-title {
  font-family: "Google Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: #00b0ff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.letter-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
}

.founder-with-headshot {
  display: inline;
  margin: 0;
}

.founder-headshot-inline {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #f0f0f0;
  border: 1px solid #ddd;
  vertical-align: middle;
  margin-right: 6px;
}

.conor-zoomed {
  width: 64px;
  height: 64px;
}

.envelope-container {
  position: relative;
  margin: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  background: transparent;
  isolation: isolate;
}

/* .envelope-wrapper - removed, no longer used */

.envelope {
  position: relative;
  width: 600px;
  height: 400px;
  transform: rotate(10deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 2;
  border: none !important;
  outline: none !important;
  display: inline-block;
}

.envelope:hover {
  transform: rotate(15deg) scale(1.03);
}

.envelope-css {
  width: 320px;
  height: 200px;
  position: relative;
  background: #f5f5f5;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  overflow: visible;
}

/* Envelope body - back layer */
.envelope-css::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  border: 2px solid #d8d8d8;
  border-radius: 4px;
  z-index: 1;
}

/* Top flap - closed */
.envelope-css::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;
}

/* Left side flap */
.envelope-flap-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 160px solid #dcdcdc;
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  z-index: 2;
  filter: brightness(0.95);
}

/* Right side flap */
.envelope-flap-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 160px solid #dcdcdc;
  border-top: 100px solid transparent;
  border-bottom: 100px solid transparent;
  z-index: 2;
  filter: brightness(0.95);
}

/* Top flap (closed over the envelope) */
.envelope-flap-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-right: 160px solid transparent;
  border-top: 100px solid #e0e0e0;
  z-index: 4;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

/* Envelope seal/closure */
.envelope-seal {
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00b0ff 0%, #0090d9 100%);
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 176, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.envelope-seal::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("Logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
}

/* Removed unused envelope-body and envelope-flap styles */

.letter-inside {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  border-radius: 2px;
  padding: 20px;
  font-size: 8px;
  line-height: 1.2;
  color: #333;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.letter-inside h2 {
  font-size: 12px;
  margin: 0 0 8px 0;
  color: #00b0ff;
  font-weight: 600;
}

.letter-inside p {
  margin: 0 0 4px 0;
}

.letter-inside .signatures {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.letter-inside .signature {
  text-align: center;
  flex: 1;
}

.letter-inside .signature-line {
  border-bottom: 1px solid #333;
  margin-bottom: 2px;
}

.letter-inside .signature-name {
  font-size: 7px;
  font-weight: 600;
}

.opened-letter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
  padding: 20px;
  box-sizing: border-box;
}

.opened-letter.show {
  opacity: 1;
  pointer-events: auto;
}

.opened-letter.show ~ * {
  overflow: hidden;
}

body.letter-open {
  overflow: hidden;
}

.close-letter-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-letter-btn:hover {
  background: #e0e0e0;
  transform: scale(1.1);
  color: #333;
}

.letter-paper {
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  padding: 40px;
  max-width: 1200px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  border: none;
  position: relative;
  margin: 0 auto;
}

.letter-layout {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 4.167vw;
  max-width: 100%;
}

.letter-content {
  width: 100%;
  flex-shrink: 0;
  background: white;
  padding: 4.167vw;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.letter-left-column {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 380px;
  align-self: flex-start;
  margin-top: 40px;
  margin-left: -10px;
}

.letter-side-image {
  width: 100%;
}

.letter-right-column {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 380px;
  align-self: flex-start;
  margin-top: 40px;
  margin-left: 10px;
}

.letter-side-right {
  width: 250px;
  flex-shrink: 0;
  align-self: center;
}

.modern-polaroid {
  background: white;
  padding: 12px 12px 40px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid-left-1 {
  transform: rotate(-3deg);
}

.polaroid-left-2 {
  transform: rotate(-5deg);
}

.polaroid-right-1 {
  transform: rotate(3deg);
}

.polaroid-right-2 {
  transform: rotate(5deg);
}

.letter-side-right .modern-polaroid {
  transform: rotate(3deg);
}

.modern-polaroid:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.polaroid-letter-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.polaroid-caption-letter {
  text-align: center;
  font-family: "Google Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  margin-top: 12px;
  padding: 0 8px;
  line-height: 1.3;
}

.letter-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 5px;
  padding-bottom: 8px;
  background: transparent;
}

.letter-lantern-icon {
  width: 52px;
  height: 65px;
  display: block;
  background: transparent;
  opacity: 0.9;
}

.letter-logo-text {
  font-size: 39px;
  font-weight: 600;
  color: #00b0ff;
}

.letter-intro {
  margin-bottom: 20px;
}

.letter-intro p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

.letter-main-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

.letter-text {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

.letter-text p {
  margin-bottom: 20px;
  text-align: left;
}

.letter-greeting {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 400;
  font-style: normal;
  color: #333;
}

.signatures {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.signatures-inline {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5vw;
}

.signature-name-cursive {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 1.458vw;
  font-weight: 400;
  color: #333;
  transform: rotate(-2deg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.signature {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.signature-line {
  border-bottom: 1px solid #333;
  height: 1px;
  margin-bottom: 6px;
  position: relative;
}

.signature-line::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 4px solid #333;
}

.signature-name {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

/* Polaroid Styles */
.polaroid-left,
.polaroid-right {
  flex-shrink: 0;
  width: 200px;
}

.polaroid-left-column {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.polaroid-right-column {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.polaroid-right {
  margin-top: 175px;
}

.polaroid-left-bottom {
  flex-shrink: 0;
  width: 200px;
  margin-top: 50px;
}

.polaroid-right-bottom {
  flex-shrink: 0;
  width: 200px;
}

.polaroid-photo {
  background: white !important;
  padding: 8px 8px 25px 8px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  border-radius: 2px !important;
  transform: rotate(-2deg) !important;
  margin-bottom: 10px !important;
  border: 1px solid #eee !important;
}

.polaroid-right .polaroid-photo {
  transform: rotate(2deg) !important;
}

.polaroid-left-bottom .polaroid-photo {
  transform: rotate(3deg) !important;
}

.polaroid-right-bottom .polaroid-photo {
  transform: rotate(-3deg) !important;
}

.polaroid-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.polaroid-caption {
  text-align: center !important;
  font-size: 0.9rem !important;
  color: #666 !important;
  line-height: 1.3 !important;
  background: white !important;
  padding: 5px !important;
  margin-top: -5px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.polaroid-caption div:first-child {
  font-weight: 600;
  color: #333;
}

.polaroid-caption div:last-child {
  font-size: 0.8rem;
  color: #888;
}
@media (max-width: 1024px) {
  .letter-content {
    padding: 30px 20px;
  }
  .letter-layout {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 25px;
    max-width: 100%;
  }
  .signatures-inline {
    gap: 1.5vw;
    align-items: center;
  }
  .signature-name-cursive {
    font-size: 0.8rem;
  }
}

/* Responsive Design for Mobile */
@media (max-width: 900px) {
  .opened-letter {
    padding: 10px;
  }

  .letter-paper {
    width: 95vw;
    max-height: 95vh;
    padding: 20px;
  }

  .letter-layout {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    grid-template-columns: 1fr;
  }

  .polaroid-left,
  .polaroid-right {
    width: 150px;
  }

  .polaroid-img {
    height: 120px;
  }

  .letter-main-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .signatures {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .signature {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .letter-paper {
    padding: 15px;
  }

  .letter-main-title {
    font-size: 1.5rem;
  }

  .letter-text {
    font-size: 0.9rem;
  }

  .polaroid-left,
  .polaroid-right {
    width: 120px;
  }

  .polaroid-img {
    height: 100px;
  }
}

/* .stamp - removed unused styles */

.stamp-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
}

.stamp-top {
  font-size: 7px;
  font-weight: 600;
  color: #666666;
  line-height: 1;
  text-align: center;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}

.stamp-bottom {
  font-size: 8px;
  font-weight: 700;
  color: #666666;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.3px;
}

.stamp-bird {
  position: absolute;
  font-size: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.7;
}

.letter-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.letter-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Google Sans", sans-serif;
  background: #ddd;
  color: #444;
  border: 1px solid #ccc;
  letter-spacing: 0.2px;
}

.letter-btn:hover {
  background: #d0d0d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.read-btn {
  background: #f5f2ed;
  border-color: #e0d6c4;
  color: #4a3d2a;
}

.read-btn:hover {
  background: #f0ede4;
  border-color: #d0c0a8;
}

/* Responsive Design for Letter Section */
@media (max-width: 768px) {
  .letter-section {
    padding: 60px 0;
  }

  .letter-container {
    padding: 0 20px;
  }

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

  .letter-subtitle {
    font-size: 1rem;
  }

  .founder-headshot-inline {
    width: 28px;
    height: 28px;
  }

  .conor-zoomed {
    width: 56px;
    height: 56px;
  }

  .envelope {
    width: 300px;
    height: 210px;
    transform: rotate(5deg);
  }

  .envelope-flap {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 45px solid #f5f3ed;
  }

  .envelope-flap::after {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 15px solid #e8e0d0;
  }

  .stamp {
    width: 60px;
    height: 60px;
    bottom: 15px;
    left: 15px;
  }

  .stamp-top {
    font-size: 6px;
  }

  .stamp-bottom {
    font-size: 8px;
  }

  .stamp-bird {
    font-size: 18px;
  }

  .letter-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .letter-btn {
    width: 200px;
  }
}

/* Envelope container should have transparent background but allow child styling */
.envelope-container {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.envelope-wrapper {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.envelope {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Responsive Design for Envelope Animation */
@media (max-width: 900px) {
  .envelope-container {
    margin: 40px 0;
    min-height: 300px;
  }

  .envelope {
    width: 400px;
    height: 280px;
  }

  .envelope-css {
    width: 240px;
    height: 150px;
  }

  .envelope-flap-left {
    border-left-width: 120px;
    border-top-width: 75px;
    border-bottom-width: 75px;
  }

  .envelope-flap-right {
    border-right-width: 120px;
    border-top-width: 75px;
    border-bottom-width: 75px;
  }

  .envelope-flap-top {
    border-left-width: 120px;
    border-right-width: 120px;
    border-top-width: 75px;
  }

  .envelope-seal {
    top: 72px;
    width: 40px;
    height: 40px;
  }

  .envelope-seal::before {
    width: 24px;
    height: 24px;
  }

  .letter-inside {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
    font-size: 6px;
  }

  .letter-inside h2 {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .letter-inside p {
    margin-bottom: 3px;
  }

  .letter-paper {
    padding: 30px 20px;
    max-width: 95vw;
  }

  .letter-layout {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .letter-content {
    order: 1;
    width: 100%;
  }

  .polaroid-left,
  .polaroid-right {
    width: 150px;
    order: 2;
  }

  .polaroid-right {
    order: 3;
  }

  .polaroid-img {
    height: 120px;
  }

  .letter-main-title {
    font-size: 1.8rem;
  }

  .letter-text {
    font-size: 0.95rem;
  }

  .signatures {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .signatures {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .letter-section-static {
    padding: 40px 0;
  }

  .letter-container-static {
    gap: 25px;
  }

  .letter-section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .letter-content {
    padding: 30px 14px;
  }

  .letter-left-column,
  .letter-right-column,
  .letter-side-right,
  .letter-side-image {
    display: none;
  }

  .letter-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .letter-greeting {
    font-size: 1rem;
  }

  .letter-logo {
    margin-bottom: 0px;
    padding: 0;
  }

  .letter-lantern-icon {
    width: 40px;
    height: 50px;
  }

  .letter-logo-text {
    font-size: 28px;
  }

  .signatures-inline {
    gap: 20px;
    align-items: center;
  }

  .signature-name-cursive {
    font-size: 1rem;
  }
}
/* Team Section Styles */
.team-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.team-container {
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.team-title {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 60px 0;
}

.team-scroll-container {
  padding: 20px 0;
  margin: 0 auto;
  margin-bottom: 60px;
  max-width: 1200px;
}

.team-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  row-gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card-image {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 15px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conor-headshot-zoom {
  transform: scale(1.65);
  transform-origin: center 40%;
  object-position: 45% 75%;
}

.shaurya-headshot-zoom {
  transform: scale(1.4);
  transform-origin: center 25%;
  object-position: 18% 60%;
}

.jay-headshot-zoom {
  transform: scale(1.9);
  transform-origin: center 30%;
  object-position: 30% center;
}

.matt-headshot-zoom {
  transform: scale(1.6);
  transform-origin: center 35%;
  object-position: 45% 72%;
}

.team-overlay {
  text-align: center;
  padding: 0;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}

.team-role {
  font-size: 1rem;
  color: #666666;
  font-weight: 300;
  white-space: nowrap;
  text-align: center;
}

.team-linkedin {
  color: #0077b5;
  text-decoration: none;
  margin-top: 10px;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

/* Company Experience Section */
.company-experience-section {
  margin-top: 60px;
  text-align: center;
}

.company-experience-title {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin: 0 0 40px 0;
}

.company-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.company-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

/* Mobile responsiveness for team section */
@media (max-width: 1200px) {
  .team-scroll {
    gap: 15px;
    row-gap: 24px;
  }

  .team-card-image {
    width: 140px;
    height: 140px;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-role {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .team-scroll {
    gap: 10px;
    row-gap: 24px;
  }

  .team-card-image {
    width: 120px;
    height: 120px;
  }
  .team-scroll-container {
    margin-bottom: 30px;
  }
  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.85rem;
  }
  .company-experience-section {
    margin-top: 30px;
  }
  .company-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
  }

  .company-logo-img {
    height: 35px;
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .team-scroll {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
    row-gap: 24px;
  }

  .team-card-image {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .team-name {
    font-size: 0.9rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .company-experience-title {
    font-size: 1.2rem;
  }

  .company-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .company-logo-img {
    height: 30px;
    max-width: 100px;
  }

  /* Make Walmart and McKinsey logos larger on mobile */
  .company-logo-img[alt*="Walmart"] {
    height: 40px;
    max-width: 130px;
  }

  .company-logo-img[alt*="McKinsey"] {
    height: 40px;
    max-width: 130px;
  }
}

@media (max-width: 600px) {
  /* Keep Walmart and McKinsey logos larger */
  .company-logo-img[alt*="Walmart"] {
    height: 40px;
    max-width: 130px;
  }

  .company-logo-img[alt*="McKinsey"] {
    height: 40px;
    max-width: 130px;
  }

  .team-scroll {
    gap: 5px;
    padding: 0 5px;
    row-gap: 24px;
  }

  .team-card-image {
    width: 80px;
    height: 80px;
  }

  .team-name {
    font-size: 0.8rem;
  }

  .team-role {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .company-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 15px;
  }

  /* Keep Walmart and McKinsey logos larger on small mobile */
  .company-logo-img[alt*="Walmart"] {
    height: 40px;
    max-width: 130px;
  }

  .company-logo-img[alt*="McKinsey"] {
    height: 40px;
    max-width: 130px;
  }
}

/* Footer Styles */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 0 25px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-lantern-icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.footer-tagline {
  font-family: "Google Sans", sans-serif;
  font-size: 0.95rem;
  color: #999;
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00b0ff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: "Google Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  font-family: "Google Sans", sans-serif;
  font-size: 0.9rem;
  color: #999;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00b0ff;
}

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

.footer-copyright {
  font-family: "Google Sans", sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  /* Logo column stays in first column alone */
  .footer-column:first-child {
    grid-column: 1;
    grid-row: 1 / 3; /* Spans 2 rows to align with the 2x2 grid */
  }

  /* Product and Company in second column, rows 1 and 2 */
  .footer-column:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-column:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  /* Legal and Contact in third column, rows 1 and 2 */
  .footer-column:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
  }

  .footer-column:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    padding: 0 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }

  /* Reset grid positions from 1024px media query */
  .footer-column:first-child {
    grid-column: span 2;
    grid-row: auto; /* Reset grid-row */
  }

  .footer-column:nth-child(2),
  .footer-column:nth-child(3),
  .footer-column:nth-child(4),
  .footer-column:nth-child(5) {
    grid-column: auto; /* Reset grid-column */
    grid-row: auto; /* Reset grid-row */
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer-column:first-child {
    grid-column: span 1;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* Data Flow Section */
.data-flow-section {
  padding: 60px 20px;
  background: #f8f9fa;
  position: relative;
  overflow-x: hidden;
}

.data-flow-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.data-flow-title {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.data-flow-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.data-flow-tagline {
  display: none;
}

.flow-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  transform: scaleX(1.05);
  transform-origin: center;
  margin: 20px 0;
}

.data-flow-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.data-flow-mobile {
  display: none;
}

.data-flow-desktop {
  display: block;
}

.flow-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
}

.flow-inputs {
  flex: 1;
  gap: 40px;
}

.flow-center {
  flex: 0 0 auto;
  justify-content: center;
}

.flow-outputs {
  flex: 1;
  justify-content: center;
  gap: 60px;
}

.data-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.group-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-align: center;
}

.internal-label {
  color: #64748b;
}

.external-label {
  color: #8b7bb8;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  min-width: 200px;
}

.flow-node:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.internal-node {
  border-left: 3px solid #94a3b8;
}

.external-node {
  border-left: 3px solid #a78bcc;
}

.output-node {
  background: #00b0ff;
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 176, 255, 0.25);
}

.output-node:hover {
  box-shadow: 0 6px 16px rgba(0, 176, 255, 0.35);
}

.node-icon {
  flex-shrink: 0;
  color: #64748b;
}

.internal-node .node-icon {
  color: #64748b;
}

.external-node .node-icon {
  color: #8b7bb8;
}

.output-node .node-icon {
  color: white;
}

/* ML Hub Center */
.ml-hub {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-rings {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ml-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 176, 255, 0.15);
}

.ring-1 {
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  background: radial-gradient(
    circle,
    rgba(0, 176, 255, 0.03) 0%,
    transparent 70%
  );
}

.ring-2 {
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background: radial-gradient(
    circle,
    rgba(0, 176, 255, 0.05) 0%,
    transparent 70%
  );
}

.ring-3 {
  top: 30%;
  left: 30%;
  right: 30%;
  bottom: 30%;
  background: radial-gradient(
    circle,
    rgba(0, 176, 255, 0.08) 0%,
    transparent 70%
  );
}

.ml-core {
  position: relative;
  width: 120px;
  height: 120px;
  background: #00b0ff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 176, 255, 0.3);
  z-index: 10;
}

.ml-logo-icon {
  width: 40px;
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.ml-label {
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Connection Lines */
.flow-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-line {
  fill: none;
  stroke-width: 3;
  opacity: 0.7;
}

.internal-line {
  stroke: #555555;
}

.external-line {
  stroke: #555555;
}

.output-line {
  stroke: #00b0ff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .flow-diagram {
    gap: 40px;
    transform: scale(1.05);
  }

  .flow-node {
    min-width: 180px;
    font-size: 13px;
    padding: 12px 16px;
  }

  .ml-hub {
    width: 160px;
    height: 160px;
  }

  .ml-core {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 900px) {
  .data-flow-section {
    padding: 40px 20px;
  }

  .data-flow-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .data-flow-subtitle {
    font-size: 18px;
    margin-bottom: 45px;
    white-space: normal;
  }

  .data-flow-tagline {
    display: none;
  }

  .flow-diagram {
    flex-direction: column;
    gap: 60px;
    min-height: auto;
    transform: scale(1);
    margin: 10px 0;
  }

  .data-flow-desktop {
    display: none;
  }

  .data-flow-mobile {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    max-width: 375px;
    width: 100%;
    object-fit: contain;
  }

  .flow-column {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .flow-inputs {
    gap: 30px;
  }

  .flow-connections {
    display: none;
  }

  .flow-node {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .data-flow-section {
    padding: 30px 0px;
  }

  .data-flow-title {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .data-flow-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.4;
    white-space: normal;
  }

  .data-flow-tagline {
    display: none;
  }

  .flow-node {
    font-size: 13px;
    padding: 12px 16px;
  }

  .flow-column {
    max-width: 100%;
  }

  .ml-hub {
    width: 140px;
    height: 140px;
  }

  .ml-core {
    width: 90px;
    height: 90px;
  }

  .group-label {
    font-size: 11px;
  }
}

/* How to Get Started Section */
.get-started-section {
  padding: 120px 40px;
  background: #f8f9fa;
}

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

.get-started-title {
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 80px;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #00b0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 176, 255, 0.25);
  color: white;
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.step-connector {
  position: absolute;
  top: 40px;
  left: calc(50% + 40px);
  width: calc(100% + 40px);
  height: 2px;
  background: linear-gradient(to right, #00b0ff 0%, #94a3b8 100%);
  z-index: 1;
}

.timeline-step:last-child .step-connector {
  display: none;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.5;
  max-width: 280px;
}

.pricing-comparison {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.comparison-title {
  display: none;
}

.comparison-table {
  display: flex;
  gap: 20px;
  position: relative;
}

.comparison-column {
  flex: 1;
  padding: 28px 32px;
  border-radius: 16px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-column.traditional {
  background: #ffffff;
  border: 2px solid #e5e7eb;
}

.comparison-column.lantern {
  background: linear-gradient(135deg, #00b0ff 0%, #0090d0 100%);
  color: white;
  box-shadow: 0 16px 40px rgba(0, 176, 255, 0.25);
  transform: scale(1.02);
}

.comparison-column:hover {
  transform: translateY(-4px);
}

.comparison-column.traditional:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.comparison-column.lantern:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 176, 255, 0.3);
}

.column-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(229, 231, 235, 0.3);
}

.header-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  filter: grayscale(0);
}

.header-logo-icon {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  display: block;
  margin: 0 auto;
}

.comparison-column.traditional .header-icon {
  filter: grayscale(100%);
  opacity: 0.6;
}

.column-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.comparison-column.traditional h4 {
  color: #6b7280;
}

.comparison-column.lantern h4 {
  color: white;
}

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

.comparison-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.comparison-column.traditional li {
  color: #6b7280;
}

.comparison-column.lantern li {
  color: white;
  font-weight: 500;
}

.x-mark,
.check-mark {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.x-mark {
  background: #fee2e2;
  color: #ef4444;
}

.check-mark {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.comparison-divider {
  display: none;
}

.comparison-footer {
  display: none;
}

.get-started-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.get-started-button {
  background: #ffd700;
  color: #333;
  padding: 18px 48px;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Google Sans", sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.get-started-button:hover {
  background: #f5c300;
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.6);
}
@media (max-width: 1200px) {
  .get-started-section {
    padding: 60px 0px 60px 0px;
  }
  .get-started-title {
    font-size: 32px;
    margin-bottom: 60px;
  }
}
/* Responsive Design */
@media (max-width: 900px) {
  .get-started-section {
    padding: 40px 0px 40px 0px;
  }

  .get-started-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .timeline-container {
    flex-direction: column;
    gap: 60px;
  }
  .step-icon-wrapper {
    margin-bottom: 0px;
    flex-shrink: 0;
  }
  .step-icon {
    margin-bottom: 0px;
    flex-shrink: 0;
  }
  .timeline-step {
    flex-direction: row;
    gap: 20px;
    /* max-width: 400px; */
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
  }

  .step-connector {
    display: none;
  }

  .step-title {
    text-align: left;
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
  }
}

@media (max-width: 900px) {
  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-title {
    font-size: 16px;
    text-align: left;
    line-height: 1.5;
  }

  .pricing-comparison {
    margin-top: 40px;
    padding: 0px;
  }

  .comparison-table {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-column {
    padding: 24px 20px;
  }

  .comparison-column.lantern {
    transform: scale(1);
    margin-top: 0;
  }

  .header-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .header-logo-icon {
    width: 40px;
    height: 40px;
  }

  .column-header h4 {
    font-size: 20px;
  }

  .comparison-list li {
    font-size: 15px;
    margin-bottom: 14px;
    padding-left: 28px;
  }

  .x-mark,
  .check-mark {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .get-started-cta {
    margin-top: 36px;
  }

  .get-started-button {
    padding: 16px 36px;
    font-size: 15px;
    min-height: 48px;
  }
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 14px;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 600px) {
  .step-icon {
    width: 60px;
    height: 60px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 14px;
    top: -6px;
    right: -6px;
  }
}

@media (max-width: 480px) {
  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon svg {
    width: 18px;
    height: 18px;
  }

  .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    top: -6px;
    right: -6px;
  }
}
