* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  /* background: linear-gradient(135deg, #fef3e2 0%, #fff8f0 50%, #fffbf5 100%); */
  background: linear-gradient(to right, #e2d812, #fae4ee, #e2d812);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.hero-background {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 193, 7, 0.08);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.hero-background:nth-child(1) {
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-background:nth-child(2) {
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
  opacity: 0.4;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  /* padding: 2px; */
  position: relative;
  overflow: auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
  animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 .highlight {
  color: #cf0c0c;
  box-shadow: #8bd86a;
}

.hero-content p {
  font-size: 1.05rem;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: slideInLeft 0.8s ease-out 0.1s backwards;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: slideInLeft 0.8s ease-out 0.2s backwards;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.btnn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
  background: #f5f5f5;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  transform: translateY(-3px);
}

.hero-image {
  display: flex;
  height: 240px;
  justify-content: center;
}

.hero-image img {
  height: 100%;
}
.hero-form {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  animation: slideInRight 0.8s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-form h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-form p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: #e0e0e0;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffc107;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1a1a1a;
  padding: 12px;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* STATS SECTION */
/* ═══════════════════════════════════════════════════════════ */

.stats {
  background: #f8f8f8;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════ */
/* ABOUT SECTION */
/* ═══════════════════════════════════════════════════════════ */

.about {
  padding: 80px 20px;
  background: #ffffff;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.section-header p {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-illustration {
  background: linear-gradient(135deg, #fef3e2 0%, #fff8f0 100%);
  /* height: 400px; */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out;
}


.illustration-icon {
  font-size: 120px;
  /* opacity: 0.3; */
  /* width: 100%; */
  height: 350px;
  overflow: hidden;
  background: transparent;
}
.illustration-icon img{
    /* height: 100%; */
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* ═══════════════════════════════════════════════════════════ */
/* PROCESS SECTION */
/* ═══════════════════════════════════════════════════════════ */

.process {
  background: linear-gradient(135deg, #f8f8f8 0%, #faf9f7 100%);
  padding: 80px 20px;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.process-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.8s ease-out;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.process-card:hover::before {
  transform: scaleX(1);
}

.process-number {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1a1a1a;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.process-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* BENEFITS SECTION */
/* ═══════════════════════════════════════════════════════════ */

.benefits {
  background: #1a1a1a;
  padding: 80px 20px;
  color: #ffffff;
}

.benefits .section-header h2 {
  color: #ffffff;
}

.benefits .section-header p {
  color: #b0b0b0;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255, 193, 7, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 193, 7, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffc107;
  transform: translateY(-8px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffc107;
}

.benefit-card p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* CTA FINAL SECTION */
/* ═══════════════════════════════════════════════════════════ */

.final-cta {
  /* background: linear-gradient(135deg, #f7c42e 10%, rgb(253, 253, 253) 0%, #f7c42e 100%); */
  background: linear-gradient(to right, #fff212, #fae4ee, #fff212);
  padding: 80px 20px;
  text-align: center;
  color: #1a1a1a;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgba(26, 26, 26, 0.8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta .btnn {
  background: #1a1a1a;
  color: #ffc107;
  border: 2px solid #1a1a1a;
  font-weight: 700;
}

.final-cta .btnn:hover {
  background: rgba(26, 26, 26, 0.9);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    margin-top: 20px;
    font-size: 2.2rem;
  }
  .hero-image {
    width: 100%;
  }

  .hero-image img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .hero-form {
    max-width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btnn {
    width: 100%;
  }

  .about {
    padding: 40px 20px;
    background: #ffffff;
}

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 20px;
  }


  .section-header h2 {
    font-size: 2rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .illustration-icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .stats {
    gap: 40px;
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta .btnn {
    width: 100%;
  }

  .hero-background {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-form {
    padding: 24px;
  }

  .hero-form h2 {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .process-card,
  .benefit-card {
    padding: 24px;
  }

  .btnn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
