* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}

.content {
  width: 100%;
  max-width: 340px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  max-width: 130px;
  height: auto;
  margin-bottom: 16px;
}



/* Logo Header */
    .logo-header {
      text-align: center;
      padding: 12px 0 8px;
      background: #ffffff;
      margin-bottom: 16px;
    }

    .logo-costco {
      font-size: 46px;
      font-weight: 800;
      color: #E31837;
      letter-spacing: -1px;
	   /* IMPORTANT FIXES */
	  line-height: 1;
	  display: inline-block;
	  margin-bottom: 0;
    }

    .wholesale-row {
      display: flex;
      align-items: center;
      justify-content: center;
     /* margin-top: -9px;*/
	 /* controlled spacing */
		margin-top: 2px	
    }

    .blue-lines {
      display: flex; 
      flex-direction: column;
      /*margin-right: 1px;*/
	  margin-right: 6px;
	  
	  /* SAFETY RESET */
		line-height: 0;
    }

    .blue-lines span {
      /*display: block;*/
      width: 75px;
      height: 2px;
      background: #005DAA;
      margin: 1px 0;
	   /* HARD RESET */
	  border: 0;
	  outline: 0;
	  box-shadow: none;
    }

    .logo-wholesale {
      font-size: 14px;
      font-weight: 700;
      color: #005DAA;
      letter-spacing: 1px;
	  line-height: 1;
    }

.header h1 {
  font-size: 20px;
  font-weight: 700;
  color: #005DAA;
  margin-bottom: 4px;
  margin-top:1em;
}

.subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step-number {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.step-text {
  font-size: 14px;
  color: #1a1a1a;
}

.step-content {
  display: flex;
  flex-direction: column;
}

.step-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  background-color: #E31837;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 9999px;
  margin-bottom: 16px;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #d97706;
}

/* Urgency */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 16px;
}

.clock-icon {
  width: 14px;
  height: 14px;
}

.urgency span {
  font-size: 12px;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
 
}

.trustpilot-logo {
  margin-bottom: 4px;
}

.trustpilot-icon {
  height: 16px;
  width: auto;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 4px;
}

.star {
  width: 16px;
  height: 16px;
}

.trust-text {
  font-size: 12px;
  color: #6b7280;
}

.trust-score {
  font-weight: 600;
  color: #1a1a1a;
}

.reviews {
  color: #059669;
}

/* FAQ */
.faq h2 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span {
  font-size: 12px;
  color: #1a1a1a;
  flex: 1;
  padding-right: 8px;
}

.chevron {
  width: 16px;
  height: 16px;
  color: #6b7280;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.accordion-content p {
  font-size: 12px;
  color: #6b7280;
  padding-bottom: 12px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

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


/* Tablet and up */
@media (min-width: 640px) {
  .container {
    padding: 40px 24px;
  }

  .content {
    max-width: 448px;
  }

  .header {
    margin-bottom: 32px;
  }

  .logo {
    max-width: 160px;
    margin-bottom: 24px;
  }

  .header h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 16px;
  }

  .steps {
    gap: 16px;
    margin-bottom: 32px;
  }

  .step-number,
  .step-text {
    font-size: 16px;
  }

  .step-hint {
    font-size: 14px;
    margin-top: 4px;
  }

  .cta-button {
    font-size: 18px;
    padding: 20px 24px;
    margin-bottom: 24px;
  }

  .clock-icon {
    width: 16px;
    height: 16px;
  }

  .urgency span {
    font-size: 14px;
  }

  .urgency {
    margin-bottom: 24px;
  }

  .trust-badge {
    margin-bottom: 32px;
  }

  .trustpilot-icon {
    height: 20px;
  }

  .star {
    width: 20px;
    height: 20px;
  }

  .stars {
    gap: 4px;
  }

  .trust-text {
    font-size: 14px;
  }

  .faq h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .accordion-trigger span {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }
}

/* Desktop */
@media (min-width: 768px) {
  .logo {
    max-width: 180px;
  }

  .header h1 {
    font-size: 28px;
  }
}


/**/
