* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #0f172a;
    line-height: 1.6;
}

/* NEW HERO */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #83eea4, #165812);
}

.hero-container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4f46e5;
  background: #e0e7ff;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #374151;
  max-width: 800px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: transparent;
  border: 1px solid #165812;
  color: #ffffff;
}

.btn-primary:hover {
  background: #165812;
}

.btn-outline {
  border: 1px solid #83eea4;
  color: #83eea4;
}

.btn-outline:hover {
  background: #e0e7ff;
}

/* NEW HERO */

.hero-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ff9800;
    border-radius: 50%;
    top: -120px;
    right: -120px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(25px); }
    100% { transform: translateY(0); }
}

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

.hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.hero-tags {
    margin-top: 22px;
}

.hero-tags span {
    display: inline-block;
    margin: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
}


/* PARTNER SECTIONS */
.partner {
    padding: 90px 20px;
}

.merchant {
    background: #f8fafc;
}

.fleet {
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
}

.partner-header {
    text-align: center;
    margin-bottom: 55px;
}

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

.partner-header p {
    color: #475569;
}

/* FEATURES */
.feature-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    padding: 34px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-top: 4px solid #ff9800;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

.feature-card .icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.feature-card h3 {
    color: #2563eb;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    margin-top: 65px;
    text-align: center;
}

.cta h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.store-buttons a {
    padding: 14px 34px;
    border-radius: 50px;
    background: #ff9800;
    color: black;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-buttons a.dark {
    background: #0f172a;
    color: white;
}

.store-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(80deg,#83eea4, #ff9800 );
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.final-cta p {
    font-size: 18px;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .partner-header h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 30px;
    }
}

/* Laundry Program */

.laundry-program {
  padding: 90px 20px;
  background: linear-gradient(135deg, #ffffff, #f4f9ff);
}

.program-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.program-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #000000;
  position: relative;
}

.program-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #FF9800;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 4px;
}

.program-content p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1rem;
}

.highlight-line {
  font-weight: 600;
  color: #0d47a1;
  margin-top: 10px;
}

.program-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #FF9800;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.program-btn:hover {
  background: #e68900;
  transform: translateY(-3px);
}

/* Illustration Block */

.program-illustration {
  display: flex;
  justify-content: center;
}

.illustration-box {
  position: relative;
  width: 320px;
  height: 320px;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.circle.big {
  width: 280px;
  height: 280px;
  background: #FF9800;
  top: 20px;
  left: 20px;
}

.circle.small {
  width: 180px;
  height: 180px;
  background: #0d47a1;
  bottom: 10px;
  right: 10px;
}

.card {
  position: absolute;
  top: 90px;
  left: 40px;
  background: #ffffff;
  padding: 24px;
  width: 240px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.card h4 {
  margin-bottom: 10px;
  color: #000;
}

.card p {
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */

@media (max-width: 992px) {
  .program-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .program-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .program-illustration {
    margin-top: 40px;
  }
}
