* {
  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 - Brandy Melville */
.logo-header {
  text-align: center;
  padding: 16px 0 10px;
  background: #ffffff;
  margin-bottom: 16px;
}

.bm-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: 36px;
  color: #231f20;
  letter-spacing: 0.03em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.bm-text {
  display: inline-block;
}

/* CSS Heart */
.bm-heart {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 26px;
  flex-shrink: 0;
  transform: translateY(2px);
}

.bm-heart::before,
.bm-heart::after {
  content: '';
  position: absolute;
  top: 0;
  width: 14px;
  height: 22px;
  background: #fae4e1;
  border-radius: 14px 14px 0 0;
}

.bm-heart::before {
  left: 14px;
  transform-origin: 0% 100%;
  transform: rotate(-45deg);
}

.bm-heart::after {
  left: 0;
  transform-origin: 100% 100%;
  transform: rotate(45deg);
}

.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: #ff07c124; 
  color: #000000; */
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 999px;
  margin-bottom: 16px;
  transition: background-color 0.2s ease;
  
  background-color: #d4556e;   /* medium rose */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 16px rgba(192, 67, 90, 0.35); /* glow effect — draws the eye */
  
}
/*
.cta-button:hover {
  background-color: #ff07c124;
  color:#000000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
} */

@media (hover: hover) and (pointer: fine) {
  .cta-button:hover {
    background-color: #b83d58;
    box-shadow: 0 6px 20px rgba(192, 67, 90, 0.5);
    transform: translateY(-1px); /* subtle lift */
  }
}

.cta-button:active {
  background-color: #b83d58;
  transform: scale(0.97);
  box-shadow: none;
}


/* 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;
  }
}
/*
.footer {
    display: block;
    unicode-bidi: isolate;
}

.footer-text {
    font-size: clamp(0.5625rem, 2.2vw, 0.6875rem);
}
*/

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

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



/**/
