/* ======================
   RESET
====================== */

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

/* body {
  font-family: "Poppins", sans-serif;
} */
body {
  padding-top: 45px;
  margin: 0;
  font-family: Poppins, sans-serif;
  background: #f7f8ff;
}

/* ======================
   HERO SECTION
====================== */

.hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  /* RESPONSIVE BACKGROUND IMAGE */
  background-image: url("image/hero_indexpage3.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  padding: clamp(80px, 10vw, 140px) clamp(20px, 8vw, 120px);
  color: white;
}

/* DARK OVERLAY */

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 30%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.2)
  );
}

/* ======================
   CONTENT WRAPPER
====================== */

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1350px;
}

/* ======================
   TEXT CONTENT
====================== */

.hero-content {
  max-width: 600px;
}

.tagline {
  font-size: 16px;
  color: #e5b567;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: clamp(28px, 6vw, 60px);
  line-height: 1.2;
  font-weight: 700;
}

.hero-content span {
  color: #e5b567;
}

.hero-desc {
  margin: 20px 0;
  color: #e0e0e0;
  font-size: clamp(13px, 2vw, 17px);
}

/* ======================
   BUTTONS
====================== */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.btn-primary {
  background: #e5b567;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.btn-primary:hover {
   transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(196, 107, 45, 0.15);
}

.btn-outline {
  border: 1px solid #e5b567;
  color: #e5b567;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
	font-weight: 700;
}

.btn-outline:hover {
  background: #e5b567;
  color: black;
 transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(196, 107, 45, 0.15);
}

/* ======================
   RATING + FEATURES
====================== */

/* WRAPPER */
.hero-bottom {
  margin-top: 30px;
}

/* ======================
   USERS + RATING
====================== */

.rating-row {
  display: flex;
  align-items: center;
 /* text-align: center; */
  gap: 15px;
  margin-bottom: 18px;
}

/* USER IMAGES */
.users {
  display: flex;
}

.users img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid #000;
  margin-left: -12px;
}

/* first image no overlap */
.users img:first-child {
  margin-left: 0;
}

/* STARS */
.stars {
  color: #e5b567;
  font-size: 14px;
  margin-bottom: 2px;
}

/* TEXT */
.rating-text span {
  font-size: 14px;
  color: #ddd;
}

/* ======================
   FEATURES ROW
====================== */

.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ITEM */
.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #ccc;
  font-size: 12px;
}

/* ICON STYLE */
.feature-item i {
  width: 26px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 12px;

  color: #e5b567;

  background: rgba(229, 181, 103, 0.1);

  /* GOLD GLOW */
  box-shadow:
    0 0 6px rgba(229, 181, 103, 0.6),
    inset 0 0 6px rgba(229, 181, 103, 0.3);
}

/* ======================
   FLOATING STATS
====================== */
/* CONTAINER (right side vertical layout) */
.stats-container {
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* CARD STYLE */
.stat-card {
  display: flex;
  align-items: center; /* vertical center */
  gap: 15px;

  width: 190px;
  padding: 28px;

  border-radius: 14px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 181, 103, 0.25);

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}
/* HOVER EFFECT (gold glow border) */
.stat-card:hover {
  transform: translateY(-5px);
  border: 1px solid #e5b567;
  box-shadow: 0 0 18px rgba(229, 181, 103, 0.5);
}

/* ICON */
.icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  font-size: 20px;

  color: #e5b567;
  background: rgba(229, 181, 103, 0.08);

  box-shadow:
    0 0 8px rgba(229, 181, 103, 0.6),
    inset 0 0 10px rgba(229, 181, 103, 0.3);

  flex-shrink: 0; /* prevents shrinking */
}

/* ICON HOVER GLOW */
.stat-card:hover .icon {
  transform: scale(1.1);
  box-shadow:
    0 0 15px rgba(229, 181, 103, 0.9),
    inset 0 0 12px rgba(229, 181, 103, 0.5);
}

/* TEXT */
.stat-text h3 {
  color: #e5b567;
  font-size: 20px;
  margin: 0;
}

.stat-text p {
  color: #ccc;
  font-size: 13px;
  margin: 0;
}
/* =====================Care SECTION===================== */
.care-section {
  background: #f8f6f3;
  padding: 70px 20px;
}

/* CONTAINER */
.container {
  max-width: 1350px;
  margin: auto;
}

/* HEADER */
.care-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 30px;
}

.sub-tag {
  font-size: 16px;

  /* color: #8b8b8b; */
	color:  #e5b567;
  margin-bottom: 10px;
}

.care-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 10px 0;
}

.care-header span {
  color: #e5b567;
}

/* RIGHT TEXT */
.care-header .right {
  max-width: 400px;
}

.care-header .right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.explore-btn {
  border: 1px solid #c58b55;
  padding: 10px 18px;
  border-radius: 8px;
  color: #e5b567;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.explore-btn:hover {
  background: #e5b567;
  color: white;
}

/* GRID */
/* ===============================
   SERVICES CARD LAYOUT FIX
=================================*/

.care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
  gap: 7px;
	  align-items: stretch;   /* ⭐ makes all cards same height */
}

/* CARD */
.care-card {
  background: #fff;
  padding: 15px 10px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;

  display: flex;            /* ⭐ IMPORTANT */
  flex-direction: column;
  justify-content: space-between;
  height: 100%;             /* ⭐ equal height cards */
}

/* ICON */
.care-card .icon {
  width: 90px;
  height: 90px;
  margin: auto;
  background: #f3ede6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5b567;
  font-size: 22px;
  margin-bottom: 15px;
}

/* TEXT */
.care-card h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.care-card p {
  font-size: 13px;
  color: #777;
}

/* ARROW */
.arrow {
  display: inline-block;
  margin-top: 10px;
  color: #e5b567;
  font-size: 16px;
}

/* HOVER */
.care-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5b567;
}
/* SECTION */
.life-section {
  background: #0b0b0b;
  color: #fff;
  padding: 40px 20px;
}

/* TITLE */
.life-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 40px;
}

.life-section span {
  color: #e5b567;
}

.sub-tag {
  font-size: 16px;
  letter-spacing: 1px;
  color: #e5b567;
  margin-bottom: 10px;
}

.center {
  text-align: center;
  display: block;
  margin-top: 60px;
}

/* GRID */
.life-grid {
  max-width: 1350px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.life-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.life-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* OVERLAY */
.life-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.life-overlay h4 {
  margin-bottom: 5px;
}

.life-overlay p {
  font-size: 13px;
  color: #ccc;
}

/* HOVER */
.life-card:hover {
  border: 1px solid #e5b567;
  transform: translateY(-5px);
  transition: 0.3s;
}

/* ========================================== */

/* REMOVE LINK STYLE */
.care-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ======================
   PROCESS
====================== */

/* ================= PROCESS PREMIUM ================= */

.process-premium {
  background: #0b0b0b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

/* TAG */
.process-tag {
  color: #aaa;
  font-size: 16px;

  margin-bottom: 60px;
}

/* LINE */
.process-line {
  position: relative;
  max-width: 1100px;
  margin: auto;
  border-top: 2px dashed rgba(229, 181, 103, 0.4);
  top: 35px;
  z-index: 0;
}

/* WRAPPER */
.process-wrapper {
  max-width: 1350px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  position: relative;
  z-index: 1;
}

/* ITEM */
.process-item {
  width: 18%;
  text-align: center;
}

/* ================= ICON ================= */

/* OUTER CIRCLE */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: auto;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  /* BORDER */
  border: 2px solid rgba(229, 181, 103, 0.5);

  /* BACKGROUND */
  background: radial-gradient(circle, #111, #000);

  /* GLOW */
  box-shadow:
    0 0 10px rgba(229, 181, 103, 0.4),
    0 0 25px rgba(229, 181, 103, 0.2),
    inset 0 0 10px rgba(229, 181, 103, 0.2);

  margin-bottom: 15px;
}

/* ICON SIZE */
.icon-wrap i {
  font-size: 22px;
  color: #e5b567;
}

/* ================= TEXT ================= */

.step-number {
  display: block;
  color: #e5b567;
  font-size: 13px;
  margin-bottom: 6px;
}

.process-item h4 {
  font-size: 15px;
  margin-bottom: 5px;
}

.process-item p {
  font-size: 12px;
  color: #aaa;
  line-height: 1.4;
}

/* ================= HOVER EFFECT ================= */

.process-item:hover .icon-wrap {
  transform: translateY(-5px) scale(1.05);

  box-shadow:
    0 0 15px rgba(229, 181, 103, 0.6),
    0 0 40px rgba(229, 181, 103, 0.3),
    inset 0 0 15px rgba(229, 181, 103, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .process-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .process-item {
    width: 45%;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-item {
    width: 100%;
  }
}
/* ============================success section======================= */
.success-section {
  padding: 40px 110px;
  background: #fafafa;
}

/* HEADER */
.success-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sub-tag {
  font-size: 16px;
  letter-spacing: 1px;
  color:  #e5b567;
  margin-bottom: 10px;
}

.success-header h2 {
  font-weight: 700;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.2;
}

.success-header h2 span {
  color: #e5b567; /* GOLD */
}

/* BUTTON */
.view-btn {
  border: 1px solid #e5b567;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  color: #e5b567;
  font-weight: 500;
  transition: 0.3s;
}

.view-btn:hover {
  background: #e5b567;
  color: #fff;
}

/* GRID */
.success-grid {
  max-width: 1350px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.success-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent; /* prevents layout jump */
}

.success-card:hover {
  border: 2px solid  #e5b567; /* BLACK BORDER */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* optional smooth effect */
}

/* TITLE */
.success-card h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

/* IMAGE PAIR */
.images {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.images img {
  border-radius: 9px;
  width: 48%;
  height: 120px;
  object-fit: cover;
}

/* TEXT */
.success-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

/* RESULT % */
.success-card h3 {
  color: #e5b567;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
}

/* ================= CTA PREMIUM ================= */
/* =========================================
   PREMIUM CTA SECTION
========================================= */

.cta-premium {
  padding: 40px 20px;
}

.cta-container {
  align-items: center;
  background: url("../image/cta_section.png");
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px 14px 14px 14px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center; /* vertical center */
  text-align: center;
  margin: 0 auto;
  max-width: 1300px;
  padding: 42px 24px 28px;
}

/* GOLD GLOW */
.cta-container::before {
  content: "";

  position: absolute;
  left: -180px;
  bottom: -180px;

  width: 450px;
  height: 450px;

  background: radial-gradient(
    circle,
    rgba(229, 181, 103, 0.22),
    transparent 70%
  );

  pointer-events: none;
}

/* LOGO */
.cta-logo {
  position: relative;
  z-index: 2;
}

.cta-logo img {
  width: 90px;
  object-fit: contain;
  opacity: 0.95;
}

/* TEXT */
.cta-text {
  position: relative;
  z-index: 2;

  text-align: center;
  max-width: 650px;
}

.cta-text h2 {
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-text h2 span {
  color: #e5b567;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.72);
  margin: 6px 0 0;
}

/* BUTTON */
.cta-action {
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 34px;

  border-radius: 16px;

  background: #e5b567;
  color: #000;

  font-size: 1rem;
  font-weight: 700;

  text-decoration: none;

  transition: 0.35s ease;

  box-shadow: 0 0 30px rgba(229, 181, 103, 0.22);
}

.cta-btn:hover {
  transform: translateY(-4px);

  background: #f3c87a;

  box-shadow: 0 0 35px rgba(229, 181, 103, 0.4);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .cta-container {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 58%,
        rgba(0, 0, 0, 0.15) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%),
      url("../image/cta_section.png");
    flex-direction: column;
    gap: 30px;

    text-align: center;

    padding: 50px 40px;
  }

  .cta-text h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .cta-container {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 58%,
        rgba(0, 0, 0, 0.15) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%),
      url("../image/cta_section.png");
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding: 32px 22px;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-text p {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 16px 28px;
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .cta-container {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 58%,
        rgba(0, 0, 0, 0.15) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%),
      url("../image/cta_section.png");
    min-height: auto;
    padding: 40px 20px;
  }

  .cta-logo img {
    width: 72px;
  }

  .cta-text h2 {
    font-size: 1.6rem;
  }

  .cta-text p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .cta-btn {
    width: 100%;
    padding: 15px 24px;
    border-radius: 14px;
  }
}

/* ======================
   RESPONSIVE
====================== */

/* TABLET */
@media (max-width: 992px) {
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-line::before {
    display: none;
  }

  .step {
    width: 40%;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .life-grid {
    grid-template-columns: 1fr;
  }

  .step {
    width: 100%;
  }
}

/* ===============================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 992px) {
  .care-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .care-header {
    flex-direction: column;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================
   TABLET RESPONSIVE
====================== */

@media (max-width: 1024px) {
  .stats-container {
    justify-content: center;
    text-align: center;
  }

  -content {
    margin: auto;
  }

  .stats {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }
}

/* ======================
   MOBILE RESPONSIVE
====================== */

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 120px 20px 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .features {
    justify-content: center;
  }

  .overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.75)
    );
  }
}

@media (max-width: 1024px) {
  .hero {
    background-position: center;
  }
}

@media (max-width: 600px) {
  .hero {
    background-size: cover;
    background-position: center;
  }
}
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .stats-container {
    position: static;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 300px;
  }
  .stat-card h3 {
    padding-left: 25px;
  }
}

@media (max-width: 600px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .rating-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .features-row {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .care-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .life-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-text h2 {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .success-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-btn {
    align-self: flex-start;
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .success-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.rating-row{
	justify-content:center;
}
}

@media (max-width: 600px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .images img {
    height: 140px;
  }
}

@media (max-width: 600px) {
  .success-section {
    padding: 30px 20px;
  }
}

/* =========================================================
   LARGE DESKTOP (1400px+)
========================================================= */
@media (min-width: 1400px) {
  .hero-wrapper,
  .container,
  .life-grid,
  .success-grid,
  .process-wrapper {
    max-width: 1400px;
    margin: auto;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero-content h1 {
    font-size: 68px;
  }

  .stats-container {
    right: 0;
  }
}

/* =========================================================
   LAPTOP (1200px - 1399px)
========================================================= */
@media (max-width: 1399px) {
  .hero {
    padding: 120px 70px;
    background-position: center right;
  }

  .stats-container {
    right: 0;
  }

  .success-section {
    padding: 50px 60px;
  }
}

/* =========================================================
   TABLET LANDSCAPE (1024px)
========================================================= */
@media (max-width: 1024px) {
  /* HERO */
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;

    background-position: center;
    background-size: cover;

    padding: 120px 40px 80px;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-desc {
    max-width: 700px;
    margin-inline: auto;
  }

  /* BUTTONS */
  .hero-buttons {
    justify-content: center;
  }

  /* STATS */
  .stats-container {
    position: static;
    transform: none;

    flex-direction: row;
    flex-wrap: wrap;

    justify-content: center;

    margin-top: 50px;
    gap: 20px;
  }

  .stat-card {
    width: 240px;
  }

  /* CARE */
  .care-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .care-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* LIFE */
  .life-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* PROCESS */
  .process-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .process-item {
    width: 40%;
  }

  .process-line {
    display: none;
  }

  /* SUCCESS */
  .success-section {
    padding: 50px 40px;
  }

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

  /* CTA */
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 50px 35px;
  }
}

/* =========================================================
   TABLET PORTRAIT (768px)
========================================================= */
@media (max-width: 768px) {
  /* HERO */
  .hero {
    min-height: auto;

    padding: 120px 25px 80px;

    background-position: center;
    background-size: cover;
  }

  .overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.92),
      rgba(0, 0, 0, 0.7)
    );
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 15px;
  }

  /* BUTTONS */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* USERS */
  .rating-row {
    flex-direction: column;
    text-align: center;
  }

  .features-row {
    justify-content: center;
  }

  /* STATS */
  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 320px;
  }

  /* CARE */
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-header h2 {
    font-size: 34px;
  }

  /* LIFE */
  .life-section h2 {
    font-size: 34px;
  }

  .life-grid {
    grid-template-columns: 1fr;
  }

  /* PROCESS */
  .process-item {
    width: 100%;
  }

  /* SUCCESS */
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* CTA */
  .cta-container {
    padding: 40px 25px;
  }

  .cta-text h2 {
    font-size: 32px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================================
   MOBILE (600px)
========================================================= */
@media (max-width: 600px) {
  body {
    padding-top: 65px;
  }

  /* HERO */
  .hero {
    padding: 110px 20px 70px;

    background-position: center;
    background-size: cover;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .tagline {
    font-size: 13px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-outline {
    padding: 14px 20px;
    font-size: 14px;
  }

  /* USERS */
  .users img {
    width: 34px;
    height: 34px;
  }

  /* STATS */
  .stat-card {
    padding: 20px;
  }

  .stat-text h3 {
    font-size: 18px;
  }

  /* CARE */
  .care-section {
    padding: 60px 20px;
  }

  .care-grid {
    gap: 15px;
  }

  .care-card {
    padding: 20px 14px;
  }

  .care-card .icon {
    width: 75px;
    height: 75px;
  }

  /* LIFE */
  .life-card img {
    height: 240px;
  }

  /* SUCCESS */
  .success-section {
    padding: 40px 20px;
  }

  .images img {
    height: 140px;
  }

  .success-card {
    padding: 20px;
  }

  /* CTA */
  .cta-text h2 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 14px;
  }

  .cta-btn {
    padding: 16px 24px;
  }
}

/* =========================================================
   SMALL MOBILE (480px)
========================================================= */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-header h2,
  .life-section h2,
  .success-header h2 {
    font-size: 28px;
  }

  .process-item h4 {
    font-size: 14px;
  }

  .process-item p {
    font-size: 11px;
  }

  .cta-text h2 {
    font-size: 22px;
  }

  .cta-logo img {
    width: 70px;
  }
}

/* =========================================================
   EXTRA SMALL DEVICES (360px)
========================================================= */
@media (max-width: 360px) {
  .hero {
    padding-inline: 15px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 13px;
    padding: 13px 16px;
  }

  .stat-card {
    padding: 18px;
  }

  .cta-text h2 {
    font-size: 20px;
  }
}
