/* Hero Section */
.hero-newsletter {
    background:#ef6603;
    color: white;
    padding: 50px;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.newsletter-hero-image {
  position: relative;
  max-width: 100%;
  text-align: center;
  z-index:9;
}

.newsletter-hero-image img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

.hero-newsletter-text h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    color:white;
    line-height: 1.2;
}

.phrase {
    color:#2a2c39;
}

.hero-newsletter-text p {
    width:95%;
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-newsletter-visual {
    position: relative;
    z-index: 2;
}

.cta-hero-button {
  padding: 19px 24px;
  background-color:rgb(255, 255, 255);
  color: #2a2c39;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(26, 16, 8, 0.3);
  z-index:2;
}

.cta-hero-button:hover {
  background-color: #2a2c39;
  color: #fff;
}

.no-credit-card span {
  font-size: 14px;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-credit-card i {
  color: white;
  font-size: 14px;
}

/*------- Responsive ------*/

@media (max-width: 1024px) {
  .hero-newsletter-content {
    gap: 40px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-newsletter-text h1 {
    font-size: 2.4rem;
  }

  .hero-newsletter-text p {
    width: 100%;
    font-size: 1.1rem;
  }

  .newsletter-hero-image img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-newsletter {
    padding: 40px 20px;
    margin-top: 70px;
  }

  .hero-newsletter-content {
    display: flex; /* 🔥 change from grid to flex */
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-newsletter-visual {
    order: 1; 
  }

  .hero-newsletter-text {
    order: 2; 
  }

  .hero-newsletter-text h1 {
    margin-top:25px;
    font-size: 2rem;
  }

  .hero-newsletter-text p {
    font-size: 1rem;
  }

  .cta-hero-button {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .newsletter-hero-image img {
    max-width: 95%;
  }
}

/* Features Section */
.features {
  position: relative;
    overflow: hidden;

  z-index: 1;
}
/* Left Circle */
.circle-left {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ef6603;
  opacity: 0.1;
  border: 4px solid #ef6603;
  z-index: 0;
}

.circle-small-left {
  position: absolute;
  top: 50%;
  left: 80px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ef6603;
  opacity: 0.1;
  border: 4px solid #ef6603;
  z-index: 0;
}

/* Right Circle */
.circle-right {
  position: absolute;
  bottom: 20%;
  right: 170px;
  width: 70px;
  height: 70px;
  background: #ef6603;
  border-radius: 50%;
  border: 4px solid #ef6603;
  opacity: 0.15;
  z-index: 0;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2a2c39;
}
.cards-wrapper {
  padding: 4rem;
}


.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.17);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}

/* Top-left curved border */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 4px solid #ef6603;
  border-left: 4px solid #ef6603;
  border-top-left-radius: 16px;
  z-index: 2;
}

/* Bottom-right curved border */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid #ef6603;
  border-right: 4px solid #ef6603;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #ef6603;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #2a2c39;
  font-weight: 900;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #2a2c39;
  line-height: 1.6;
}

/*first card style*/

.first-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: white;
  color: #ef6603;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.first-card  p {
  color: #ffffff;
  line-height: 1.6;
}
.first-card {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  background: #ef6603;
  transform: rotate(4deg) !important;
  transition: all 0.3s ease;
}
/* Top-left curved border */
.first-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-top-left-radius: 16px;
  z-index: 2;
}
/* bottom right  curved border */

.first-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid white;
  border-right: 4px solid white;
  border-bottom-right-radius: 16px;
  z-index: 2;
}
/* Benefits Section */


.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2c39 70%, #ef6603 30%);
}

.benefits-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2c39 70%, #ef6603 30%);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}



.section-benefits-title{
    color:white;
    font-size:2.5rem;
    font-weight:700;

}
.benefits-title-shape{
    position:relative;  
}
.benefits-title-shape img{
  position: absolute;
  left:20px;
  top:20px;
  width: 30px;
  height: 30px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px; 
}

.benefit-card {
    background: #464753;
    border:1px solid white;
    padding: 20px; 
    transition: all 0.3s ease;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.benefit-card p {
    color: white;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 200;

}
/*---- Responsive ----*/

@media (max-width: 1024px) {
  .section-benefits-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .benefits-title-shape img {
    width: 30px;
    height: 30px;
    left: 10px;
    top: 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 18px;
  }

  .benefit-card h3 {
    font-size: 1.6rem;
  }

  .benefit-card p {
    font-size: 1rem;
  }
}

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


  .section-benefits-title {
    font-size: 2rem;
    text-align: center;
    line-height:1.5em;
  }

  .benefits-title-shape img {
    width: 28px;
    height: 28px;
    left: 33px;
    top: 25px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-card {
    padding: 16px;
  }

  .benefit-card h3 {
    font-size: 1.5rem;
  }

  .benefit-card p {
    font-size: 0.95rem;
  }
}
/* Examples Section */
.examples-section {
  padding: 10px;
  padding-bottom:50px;
  background-color: white;
  color: #2a2c39;
}

.examples-section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight:700;
  color: #2a2c39;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #2a2c39;
  max-width: 700px;
  margin: 0 auto 60px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  
}
.examples-grid > div:nth-child(1) {
  border-left: none;
  border-right: 2px solid #ef6603;
  border-bottom: 2px solid #ef6603;
    background-color: rgba(239, 102, 3, 0.05);

}
.examples-grid > div:nth-child(2) {
  border-right: 2px solid #ef6603;
  border-bottom: 2px solid #ef6603;
}
.examples-grid > div:nth-child(3) {
  border-bottom: 2px solid #ef6603;
  background-color: rgba(239, 102, 3, 0.05);

}
.examples-grid > div:nth-child(4) {
  border-right: 2px solid #ef6603;
}
.examples-grid > div:nth-child(5) {
  border-right: 2px solid #ef6603;
    background-color: rgba(239, 102, 3, 0.05);

}

.example-card {
  padding: 20px;
  
  background-color: white;
  transition: background-color 0.3s;
}

.example-icon {
  font-size: 2.8rem;
  color: #ef6603;
  margin-bottom: 20px;
}

.example-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2a2c39;
  font-weight: 700;
}

.example-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}


/* ----Responsive-----*/

@media (max-width: 1024px) {
  .examples-section-title {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .examples-grid > div {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:nth-child(2),
  .examples-grid > div:nth-child(4) {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:nth-child(1),
  .examples-grid > div:nth-child(3),
  .examples-grid > div:nth-child(5) {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }
}

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

  .examples-section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .examples-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .examples-grid > div {
    border-right: none;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:last-child {
    border-bottom: none;
  }

  .examples-grid > div:nth-child(odd) {
    background-color: rgba(239, 102, 3, 0.05);
  }
}

/* CTA Section */
.final-cta {
  padding: 80px 0;
  background: rgba(239, 101, 3, 0.05);
  color: #2a2c39;
  text-align: center;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-title span {
  color: #ef6603;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444444;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px 0;
  padding: 0;
}

.features-list li {
  border: 1px solid rgba(42, 44, 57, 0.22);
  background-color: transparent;
  padding: 20px;
  list-style: none;
  font-size: 1rem;
  color: #2a2c39;
  transition:all 0.3s ease;
  position: relative;
}
.features-list li:nth-child(1) {
  border:1px solid #2a2c39;
  background-color: #ef6603;
  padding: 20px;
  list-style: none;
  font-size: 1rem;
  color: white;
  transition:all 0.3s ease;
  position: relative;
}
.features-list li:nth-child(1):hover {
    border:1px solid  #2a2c39;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
}
.features-list li:nth-child(1)::before {
  content: "✓";
  color: white;
  font-weight: bold;
  margin-right: 8px;
}
.features-list li::before {
  content: "✓";
  color: #ef6603;
  font-weight: bold;
  margin-right: 8px;
}

.features-list li:hover {
  border:1px solid  #ef6603;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);

}

.cta-button {
  display: inline-block;
  background-color: #ef6603;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  display: inline-block;
  background-color: #2a2c39;
  color:#fff

}
.cta-note {
  margin-top: 30px;
  font-size: 1rem;
  color: #444444;
}

/* Responsive */
@media (max-width: 768px) {
    .features-list {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      margin: 40px 0;
      padding: 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .commerce-content,
    .tech-content {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
.phone-mockup {
        width: 250px;
        height: 500px;
    }
    .phone-screen {
        width: 210px;
        height: 420px;
    }
}