/* Founding Member Section */
.founding-member-section {
  background-color: #00263E;
  padding: 60px 20px;
}

.founding-member-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: stretch;
}

.founding-left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founding-card {
  padding: 80px 68px;
  background-color: #131313;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}

.founding-right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.claim-spot-card {
  padding: 80px 68px;
  background-color: #131313;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.claim-spot-title {
  color: #F4F4F4;
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 50px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.claim-spot-description {
  color: rgba(244, 244, 244, 0.70);
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.claim-spot-form {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  max-width: 400px;
}

.claim-spot-input {
  flex: 1;
  padding: 14px 16px;
  background-color: #F4F4F4;
  color: rgba(19, 19, 19, 0.30);
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.claim-spot-button {
  background-color: #BE930B;
  color: #131313;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.claim-spot-button:hover {
  background-color: #ca8a04;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.claim-spot-note {
  color: rgba(244, 244, 244, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.social-icon {
  border-radius: 50%;
  border: 1px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 244, 244, 0.7);
  padding: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.founding-member-title {
  color: #F4F4F4;
  font-family: "Proxima Nova";
  font-size: 50px;
  font-style: italic;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.founding-member-description {
  color: rgba(244, 244, 244, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.founding-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 600px;
}

.founding-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-align: left;
}

.founding-benefit-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founding-benefit-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.founding-progress {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.progress-title {
  color: #F4F4F4;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.progress-count {
  color: rgba(244, 244, 244, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: rgba(244, 244, 244, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #BE930B;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.progress-footer {
  text-align: left;
}

.progress-status {
  color: rgba(244, 244, 244, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.progress-number {
  color: #BE930B;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .founding-member-section {
    padding: 80px 60px;
  }

  .founding-member-container {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
  
  .founding-left,
  .founding-right {
    display: flex;
    align-items: stretch;
  }
  
  .founding-card,
  .claim-spot-card {
    display: flex;
    flex-direction: column;
  }

  .founding-left {
    width: 55%;
  }

  .founding-card {
    padding: 50px;
    text-align: left;
    align-items: flex-start;
  }

  .founding-right {
    width: 40%;
  }

  .founding-member-title {
    font-size: 60px;
  }

  .founding-member-description {
    font-size: 18px;
    text-align: left;
  }

  .founding-benefits {
    gap: 8px;
    align-items: flex-start;
  }

  .founding-benefit-item {
    justify-content: flex-start;
  }

  .founding-benefit-text {
    font-size: 18px;
  }

  .progress-title,
  .progress-count {
    font-size: 16px;
  }

  .progress-status {
    font-size: 14px;
  }

  .claim-spot-card {
    padding: 50px;
  }

  .claim-spot-title {
    font-size: 36px;
  }

  .claim-spot-description {
    font-size: 18px;
  }

  .claim-spot-input {
    font-size: 16px;
    padding: 16px 20px;
  }

  .claim-spot-button {
    font-size: 16px;
    padding: 16px 40px;
  }
}

@media (max-width: 768px) {
  .founding-member-section {
    padding: 40px 20px;
  }

  .founding-member-container {
    flex-direction: column;
  }

  .founding-left {
    width: 100%;
  }

  .founding-card {
    padding: 30px;
    text-align: center;
    align-items: center;
  }

  .founding-right {
    width: 100%;
  }

  .founding-member-title {
    font-size: 36px;
    text-align: center;
  }

  .founding-member-description {
    font-size: 14px;
    text-align: center;
  }

  .founding-benefits {
    gap: 12px;
    align-items: center;
  }

  .founding-benefit-item {
    justify-content: center;
  }

  .founding-benefit-text {
    font-size: 14px;
  }

  .progress-title,
  .progress-count {
    font-size: 12px;
  }

  .progress-status {
    font-size: 10px;
  }

  .claim-spot-card {
    padding: 30px;
  }

  .claim-spot-title {
    font-size: 24px;
  }

  .claim-spot-description {
    font-size: 14px;
  }

  .claim-spot-input {
    font-size: 14px;
    padding: 14px 16px;
  }

  .claim-spot-button {
    font-size: 14px;
    padding: 14px 30px;
  }
  
  .social-icons {
    gap: 20px;
  }
}

/* Follow the Build Section */
.follow-build-section {
  background-color: #131313;
  padding: 80px 20px;
}

.follow-build-container {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.follow-build-title {
  color: #F4F4F4;
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 50px;
  font-style: italic;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1px;
}

.follow-build-description {
  color: rgba(244, 244, 244, 0.70);
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}

.follow-build-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.build-steps {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
  gap: 30px;
}

.build-step {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 6px;
  background: #FFF;
}

.step-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  width: 100%;
}

.step-icon-left {
  display: flex;
  padding: 8px;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  border-radius: 25px;
  background: #BE930B;
}

.step-icon-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.step-number {
  font-size: 36px;
  font-weight: 800;
  color: #BE930B;
  min-width: 60px;
  font-style: italic;
}

.step-content {
  flex: 1;
  text-align: center;
}

.step-title {
  color: #1C1C1C;
  font-family: "Proxima Nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.step-description {
  color: rgba(28, 28, 28, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.build-note {
  text-align: center;
}

.build-note-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.build-note-line {
  flex: 1;
  min-width: 0;
}

.build-note-line svg {
  width: 100%;
  height: 1px;
  display: block;
}

.build-note-text {
  color: #BE930B;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  white-space: nowrap;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .follow-build-section {
    padding: 100px 60px;
  }
  
  .follow-build-title {
    font-size: 60px;
  }
  
  .follow-build-description {
    font-size: 20px;
  }
  
  .step-number {
    font-size: 48px;
    min-width: 80px;
  }
  
  .step-title {
    font-size: 28px;
  }
  
  .step-description {
    font-size: 18px;
  }
  
  .build-note-text {
    font-size: 18px;
  }
  
  .build-note-container {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .follow-build-section {
    padding: 60px 20px;
  }
  
  .follow-build-title {
    font-size: 36px;
  }
  
  .follow-build-description {
    font-size: 16px;
  }
  
  .build-steps {
    flex-direction: column;
  }
  
  .build-step {
    gap: 20px;
  }
  
  .step-number {
    font-size: 28px;
    min-width: 50px;
  }
  
  .step-title {
    font-size: 20px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  .build-note-text {
    font-size: 14px;
  }
  
  .build-note-container {
    gap: 20px;
  }
  
  .build-note-line {
    min-width: 50px;
  }
}

/* Two Column Section */
.two-column-section {
  background-color: #131313;
  display: flex;
  justify-content: center;
  align-items: center;
}

.two-column-container {
  width: 100%;
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 400px;
}

.left-column {
  flex: 4;
  padding: 40px 60px;
  background-color: #1C1C1C;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.test-ride-badge {
  display: inline-block;
  padding: 0 0 0 25px;
  position: relative;
}

.test-ride-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background-color: #BE930B;
}

.test-ride-badge span {
  color: #BE930B;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.left-column-title {
  font-size: 48px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.2;
  text-transform: uppercase;
}

.left-column-description {
  font-size: 16px;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
  max-width: 400px;
}

.test-ride-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.test-ride-features li {
  color: rgba(244, 244, 244, 0.70);
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  padding-left: 25px;
}

.test-ride-features li::before {
  content: "•";
  color: #BE930B;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.feature-highlight {
  color: #FFFFFF;
  font-weight: 500;
}

.right-column {
  flex: 6;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.right-column-top {
  flex: 45;
  padding: 40px;
  background-color: #232323;
  border-radius: 0 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.map-city {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.map-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #BE930B;
}

.city-name {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.los-angeles {
  align-items: center;
}

.austin {
  align-items: center;
  margin-top: 150px;
  margin-left: -230px;
}

.new-york {
  align-items: center;
}

.map-line {
  position: absolute;
  top: 70%;
  left: 40px;
  right: 40px;
  z-index: 0;
  transform: translateY(-50%);
  height: 150px;
  width: calc(100% - 80px);
}

.map-city {
  z-index: 1;
}

.right-column-bottom {
  flex: 55;
  flex-direction: column;
  padding: 40px;
  background-color: #1A1A1A;
  border-radius: 0 0 8px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.city-select-hint {
  width: 100%;
  text-align: center;
}

.city-select-hint span {
  font-size: 16px;
  color: rgba(244, 244, 244, 0.70);
  font-style: italic;
}

.test-ride-confirmation {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.confirmation-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.confirmation-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.confirmation-title {
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.confirmation-location {
  font-size: 16px;
  color: #BE930B;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirmation-message {
  font-size: 16px;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
  margin: 0;
}

.confirmation-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.calendar-button,
.share-button {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.calendar-button:hover,
.share-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .left-column-title {
    font-size: 56px;
  }
  
  .left-column-description {
    font-size: 18px;
  }
  
  .test-ride-badge span {
    font-size: 16px;
  }
  
  .test-ride-features li {
    font-size: 18px;
  }
  
  .city-name {
    font-size: 16px;
  }
  
  .map {
    padding: 0 60px;
  }
  
  .confirmation-title {
    font-size: 28px;
  }
  
  .confirmation-location {
    font-size: 18px;
  }
  
  .confirmation-message {
    font-size: 18px;
  }
  
  .calendar-button,
  .share-button {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 768px) {
  .two-column-container {
    flex-direction: column;
  }
  
  .left-column,
  .right-column-top,
  .right-column-bottom {
    padding: 30px;
  }
  
  .left-column-title {
    font-size: 32px;
  }
  
  .left-column-description {
    font-size: 14px;
  }
  
  .test-ride-badge span {
    font-size: 12px;
  }
  
  .test-ride-features li {
    font-size: 14px;
  }
  
  .left-column {
    padding: 30px;
  }
  
  .city-name {
    font-size: 12px;
  }
  
  .map {
    padding: 0 20px;
    min-height: 150px;
  }
  
  .right-column-top {
    padding: 30px;
  }
  
  .confirmation-title {
    font-size: 20px;
  }
  
  .confirmation-location {
    font-size: 14px;
  }
  
  .confirmation-message {
    font-size: 14px;
  }
  
  .confirmation-buttons {
    flex-direction: column;
  }
  
  .calendar-button,
  .share-button {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  .right-column-bottom {
    padding: 30px;
  }
}

/* Certifications Section */
.certifications {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.certification-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  border: none;
}

.certification-text {
  color: #F4F4F4;
  font-family: "Proxima Nova";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px; /* 100% */
  white-space: nowrap;
}

.certification-question {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.certification-question:hover {
  transform: scale(1.1);
}

/* Responsive Adjustments for Certifications */
@media (max-width: 768px) {
  .certifications {
    gap: 8px;
    margin-top: 30px;
  }
  
  .certification-item {
    padding: 0;
  }
  
  .certification-text {
    font-size: 12px;
  }
  
  .certification-question {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
  
  .certification-question svg {
    width: 12px;
    height: 12px;
  }
}

/* Certification Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #F4F4F4;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #BE930B;
}

.modal-close:hover {
  color: #BE930B;
}

.certification-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.certification-card {
  max-width: 300px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.card-header {
  margin-bottom: 30px;
}

.card-header h4 {
  color: #BE930B;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-header h3 {
  color: #F4F4F4;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card-header p {
  color: #F4F4F4;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-qr {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.qr-code {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 4px;
  display: inline-block;
}

.qr-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qr-row {
  display: flex;
  gap: 2px;
}

.qr-black {
  width: 12px;
  height: 12px;
  background-color: #000000;
}

.qr-white {
  width: 12px;
  height: 12px;
  background-color: #FFFFFF;
}

.card-footer {
  text-align: center;
}

.card-footer p {
  color: #F4F4F4;
  font-size: 12px;
  margin: 0 0 15px 0;
  font-weight: 400;
}

.card-footer h3 {
  color: #BE930B;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-footer h2 {
  color: #F4F4F4;
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .certification-cards {
    gap: 20px;
  }
  
  .certification-card {
    padding: 20px;
    max-width: 100%;
  }
  
  .card-header h3 {
    font-size: 24px;
  }
  
  .card-footer h2 {
    font-size: 18px;
  }
  
  .qr-black,
  .qr-white {
    width: 10px;
    height: 10px;
  }
}