* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Google Sans Flex', sans-serif;
}

body {
  background: #faf8f6;
  color: #222;
  overflow-x: hidden;
}

.main-wrapper {
  max-width: 100%;
  margin: auto;
  background: #fff;
  min-height: 100vh;
}















/* ================= WHY SECTION ================= */

.why-section {
  padding: 36px 18px 16px;
  background: #fff;
  overflow: hidden;
}

.why-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.why-subtitle {
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 320px;
  margin: auto;
  margin-bottom: 45px;
}

/* GRID */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  justify-content: center;
}

/* CARD */

.why-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  position: relative;
  padding: 5px;
}

.why-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

/* DIFFERENT ROTATIONS */

.rotate-left {
  transform: rotate(-6deg);
}

.rotate-right {
  transform: rotate(4deg);
}

.rotate-left-two {
  transform: rotate(-4deg);
}

.rotate-right-two {
  transform: rotate(6deg);
}

/* HOVER */

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
}

/* TABLE */

.table-wrapper {
  /* margin-top: 25px; */
  text-align: center;
}

.table-wrapper img {
  width: 100%;
  max-width: 360px;
}

.why_card_head {
  font-size: 8px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

.why_card_head_p {
  font-size: 7px;
  font-weight: 500;
  color: #4e4e4e;
  text-align: center;
}

/* MOBILE */

@media(max-width:576px) {

  .why-title {
    font-size: 24px;
  }

  .why-grid {
    gap: 6px;
  }

  .why-card {
    border-radius: 12px;
  }

}























.bg_foot {
  background: #1a1a1a;
  position: relative;
}




/* ================= SUCCESS STORIES ================= */

.success-section {
  padding: 44px 18px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.success-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.success-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 320px;
  margin: auto;
  margin-bottom: 50px;
}

/* GRID */

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* WRAPPER */

.story-wrapper {
  text-align: center;
}

/* CARD */

.story-card {
  background: #f5f5f5;
  padding: 16px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.story-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

/* PIN */

.pin {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 8px rgb(0 0 0);
  z-index: 2;
}

/* INFO */

.story-info {
  padding-top: 18px;
}

.story-info h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.story-info span {
  font-size: 22px;
  font-weight: 500;
  color: #333;
}

/* TEXT */

.story-text {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  padding: 0 10px;
}

/* BOTTOM CARD */

.bottom-story {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.center-story {
  max-width: 290px;
  position: relative;
  z-index: 2;
}

/* RED SHAPE */

.red-shape {
  position: absolute;
  right: -10px;
  top: 90px;
  width: 140px;
  height: 90px;
  background: linear-gradient(to right, #f36a42, #d9492b);
  border-radius: 0 12px 12px 0;
  z-index: 1;
}

.red-shape::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 22px;
  width: 40px;
  height: 45px;
  background: #fff;
  border-radius: 0 40px 40px 0;
}

/* MOBILE */

@media(max-width:576px) {

  .success-title {
    font-size: 30px;
  }

  .stories-grid {
    gap: 14px;
  }

  .story-card {
    padding: 12px;
  }

  .story-card img {
    height: 210px;
  }

  .story-info h4 {
    font-size: 16px;
  }

  .story-info span {
    font-size: 16px;
  }

  .story-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .center-story {
    max-width: 230px;
  }

  .red-shape {
    width: 110px;
    height: 75px;
    top: 70px;
  }

}


/* ================= ABOUT US SECTION ================= */

.about-section {
  padding: 36px 22px 28px;
  background: #fff;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  display: block;
}

/* ================= ABOUT US BLOCK ================= */

.about-us-block {
  margin-bottom: 28px;
}

.about-us-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.15;
}

.about-us-para {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

.about-divider {
  height: 1.5px;
  background: linear-gradient(to right, #d6422b33, #d6422b, #d6422b33);
  border-radius: 2px;
  margin-bottom: 30px;
}

/* ================= ABOUT HEADER ================= */

.about-header {
  margin-bottom: 18px;
}

.about-tag {
  display: inline-block;
  background: #fce8e3;
  color: #d6422b;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.about-para {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 32px;
}

.vm-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vm-card {
  border-radius: 20px;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.vm-vision {
  background: linear-gradient(135deg, #fff5f3 0%, #fce8e3 100%);
  border: 1.5px solid #f5c4b8;
}

.vm-mission {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede8ff 100%);
  border: 1.5px solid #d4c9ff;
}

.vm-mission .vm-icon svg {
  stroke: #7c5cbf;
}

.vm-mission .vm-label {
  color: #7c5cbf;
}

.vm-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.vm-label {
  font-size: 18px;
  font-weight: 700;
  color: #d6422b;
  margin-bottom: 8px;
}

.vm-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* ================= PROGRAM CARDS ================= */

.program-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.program-card {
  background: #fff;
  border: 1.5px solid #f0eeee;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d6422b, #e8603e);
  border-radius: 4px 0 0 4px;
}

.program-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #d6422b;
  background: #fce8e3;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.program-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.program-card-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ================= BRAND STORY SECTION ================= */

.brand-story-section {
  padding: 36px 22px 28px;
  background: linear-gradient(180deg, #fff 0%, #fdf6f4 100%);
}

.brand-story-header {
  margin-bottom: 20px;
}

.brand-story-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.25;
}

.brand-story-question {
  background: linear-gradient(135deg, #fff5f3 0%, #fce8e3 100%);
  border-left: 4px solid #d6422b;
  border-radius: 0 16px 16px 0;
  padding: 20px 20px 20px 16px;
  margin-bottom: 28px;
  position: relative;
}

.brand-story-quote-mark {
  font-size: 56px;
  font-weight: 700;
  color: #d6422b;
  line-height: 0.6;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.brand-story-question p {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0;
}

.brand-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-story-para {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin: 0;
}

.brand-story-belief {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f5c4b8;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(214, 66, 43, 0.07);
}

.brand-story-belief-icon {
  width: 40px;
  height: 40px;
  background: #fce8e3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-story-belief p {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.65;
  margin: 0;
  padding-top: 8px;
}

.brand-story-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px;
  border: 1.5px solid #eeeeee;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.brand-story-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pillar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d6422b;
  flex-shrink: 0;
}

.brand-story-pillar span {
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
}

.brand-story-tagline {
  margin-top: 32px;
  background: linear-gradient(135deg, #c0321c 0%, #d6422b 50%, #e8603e 100%);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  box-shadow: 0 8px 22px rgba(214, 66, 43, 0.3);
  position: relative;
  overflow: hidden;
}

.tagline-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.tagline-deco-tl {
  width: 90px;
  height: 90px;
  top: -30px;
  left: -25px;
}

.tagline-deco-br {
  width: 70px;
  height: 70px;
  bottom: -22px;
  right: -18px;
  background: rgba(255, 255, 255, 0.06);
}

.tagline-logo {
  width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.tagline-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.tagline-divider span:not(.tagline-dot) {
  display: block;
  width: 28px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
}

.tagline-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.tagline-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* ================= HEADER ================= */

.hero-section {
  padding: 20px 18px 10px;
  position: relative;
  overflow: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo {
  width: 120px;
  font-size: 24px;
  font-weight: 700;
  color: #d6422b;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #f0d8cf;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #d6422b;
  font-size: 18px;
}

.trial-btn {
  background: #d6422b;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

/* mobile  */

.hero-bgg {
  background: url('../images/bg.png') no-repeat center center;
  background-size: cover;
  min-height: 520px;
  width: 100%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-bgg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

/* destop */

.hero-bgg-destop {
  background: url('../images/destop.png');
  background-size: cover;
 background-repeat: no-repeat;
 height: 100vh;
}


.hero-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 15px;
  width: 65%;
}

.hero-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  width: 60%;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 100px;
  width: 190px;
  z-index: 1;
}

/* ================= OFFER CARD ================= */

.offer-card {
  margin-top: 40px;
  background: #f4f1ef;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.offer-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0;
}

.offer-card span {
  font-size: 16px;
  font-weight: 500;
}

.offer-card p {
  color: #666;
  font-size: 13px;
  margin: 12px 0;
  max-width: 180px;
}

.offer-btn {
  background: #d6422b;
  border: none;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.offer-img {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 120px;
}

/* ================= SECTION COMMON ================= */

.section {
  padding: 36px 20px 8px;
  text-align: center;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

/* ================= JOURNEY CARDS ================= */

.journey-card {
  margin-bottom: 28px;
}

.journey-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.journey-card h4 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}

.journey-card p {
  color: #666;
  font-size: 12px;
  min-height: 55px;
  padding: 0 10px;
}

.outline-btn {
  border: 1px solid #d6422b;
  background: transparent;
  color: #d6422b;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 14px;
}

/* ================= WHY SECTION ================= */

.why-image {
  width: 100%;
  border-radius: 22px;
  margin-top: 20px;
}

/* ================= SUCCESS STORIES ================= */

.story-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
}

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

.story-content {
  padding: 15px;
}

.story-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.story-content small {
  color: #666;
  display: block;
  margin-bottom: 10px;
}

.story-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ================= JOIN SECTION ================= */

.join-section {
  padding: 36px 0 36px;
  background: #fff;
  overflow: hidden;
}

.join-img-wrap {
  margin: 0 22px 28px;
  background: linear-gradient(135deg, #fff5f3 0%, #fce8e3 100%);
  border-radius: 22px;
  overflow: hidden;
}

.join-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.join-content {
  padding: 0 22px;
}

.join-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 16px;
}

.join-desc {
  font-size: 15px;
  line-height: 1.78;
  color: #555;
  margin-bottom: 28px;
}

.join-btn {
  background: #d6422b;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ================= CTA ================= */

.cta-section {
  margin: 25px 20px;
  background: #ead8ca;
  border-radius: 25px;
  padding: 25px;
}

.cta-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.cta-list li {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
}

.cta-list li::before {
  content: "✓";
  margin-right: 10px;
  color: #000;
}

.footer-btn {
  width: 100%;
  background: #d6422b;
  border: none;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
}

/* ================= FOOTER ================= */

footer {
  padding: 48px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 4px;
  margin-bottom: 28px;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.footer-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 22px;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #d6422b;
}

.footer-accent {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #666;
  /* border-radius: 50%; */
  margin: 0 1px;
  vertical-align: middle;
}

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

/* --- Fluid wrapper on all phones --- */
@media(max-width:430px) {
  .main-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

/* --- 375px: iPhone SE 3rd gen / iPhone 13 mini / most mid-range Android --- */
@media(max-width:375px) {

  /* Hero */
  .hero-bgg {
    min-height: 460px;
  }

  .hero-title {
    font-size: 21px;
  }

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

  /* About */
  .about-section {
    padding: 28px 16px 22px;
  }

  .about-us-title {
    font-size: 26px;
  }

  .about-us-para {
    font-size: 13px;
  }

  .about-title {
    font-size: 22px;
  }

  .program-card-title {
    font-size: 15px;
  }

  .program-card-desc {
    font-size: 13px;
  }

  .vm-card {
    padding: 20px 16px;
  }

  .vm-label {
    font-size: 16px;
  }

  .vm-text {
    font-size: 12.5px;
  }

  /* Brand Story */
  .brand-story-section {
    padding: 28px 16px 22px;
  }

  .brand-story-title {
    font-size: 24px;
  }

  .brand-story-question p {
    font-size: 15px;
  }

  .brand-story-para {
    font-size: 13px;
  }

  .brand-story-pillar span {
    font-size: 12.5px;
  }

  /* Journey */
  .section {
    padding: 28px 16px 6px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .journey-card h4 {
    font-size: 14px;
  }

  .journey-card p {
    font-size: 11px;
    min-height: 48px;
  }

  /* Why */
  .why-section {
    padding: 30px 14px 12px;
  }

  .why-title {
    font-size: 22px;
  }

  .why-subtitle {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .why-grid {
    gap: 5px;
  }

  /* Success */
  .success-section {
    padding: 36px 14px;
  }

  .success-title {
    font-size: 26px;
  }

  .success-subtitle {
    font-size: 13px;
    margin-bottom: 36px;
  }

  .stories-grid {
    gap: 10px;
  }

  .story-card {
    padding: 10px;
  }

  .story-card img {
    height: 175px;
  }

  .story-info h4 {
    font-size: 14px;
  }

  .story-info span {
    font-size: 14px;
  }

  .story-text {
    font-size: 12px;
    margin-top: 14px;
  }

  .center-story {
    max-width: 200px;
  }

  /* Join */
  .join-section {
    padding: 28px 0 28px;
  }

  .join-img-wrap {
    margin: 0 16px 22px;
  }

  .join-img {
    height: 200px;
  }

  .join-content {
    padding: 0 16px;
  }

  .join-title {
    font-size: 26px;
  }

  .join-desc {
    font-size: 13.5px;
  }

  .join-btn {
    padding: 13px 24px;
    font-size: 14px;
  }

  /* CTA */
  .cta-section {
    margin: 20px 16px;
    padding: 22px 18px;
  }

  .cta-section h2 {
    font-size: 16px;
  }

  .cta-list li {
    font-size: 13px;
  }

  .footer-btn {
    font-size: 14px;
    padding: 13px;
  }

  /* Footer */
  footer {
    padding: 18px 16px;
  }

  footer p {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

/* --- 320px: iPhone SE 1st/2nd gen / very small Android --- */
@media(max-width:320px) {

  /* Hero */
  .hero-bgg {
    min-height: 400px;
  }

  .hero-title {
    font-size: 18px;
    width: 70%;
  }

  .hero-desc {
    font-size: 12px;
    width: 65%;
  }

  /* About */
  .about-section {
    padding: 32px 14px 26px;
  }

  .about-title {
    font-size: 21px;
  }

  .vm-icon {
    width: 42px;
    height: 42px;
  }

  /* Brand Story */
  .brand-story-title {
    font-size: 21px;
  }

  .brand-story-question p {
    font-size: 13.5px;
  }

  /* Journey */
  .journey-card h4 {
    font-size: 13px;
  }

  .journey-card p {
    font-size: 10.5px;
    padding: 0 6px;
  }

  /* Why */
  .why-title {
    font-size: 20px;
  }

  .why-grid {
    gap: 4px;
  }

  .why-card {
    padding: 3px;
  }

  /* Success */
  .success-title {
    font-size: 22px;
  }

  .story-card img {
    height: 150px;
  }

  .story-info h4 {
    font-size: 13px;
  }

  .story-info span {
    font-size: 13px;
  }

  .story-text {
    font-size: 11px;
  }

  .center-story {
    max-width: 180px;
  }

  /* Join */
  .join-title {
    font-size: 22px;
  }

  .join-img {
    height: 175px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 15px;
  }
}


/* ====================================================
   NAVBAR
   ==================================================== */

.promisn-nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  position: relative;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 100px;
  display: block;
}

.nav-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
}

.nav-toggler span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #222;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggler.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggler.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggler.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Desktop nav menu — hidden on mobile, shown on desktop */
.nav-menu {
  display: none;
}

/* Mobile backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1001;
  backdrop-filter: blur(2px);
}

.nav-overlay.open {
  display: block;
}

/* Mobile floating card — outside nav stacking context */
.nav-mobile-card {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1002;
  flex-direction: column;
  background: #FFF5EF;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.nav-mobile-card.open {
  display: flex;
}

/* Card header — logo + close button */
.nav-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
}

.nav-card-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-card-logo img {
  width: 90px;
}

.nav-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.8px solid #bbb;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: border-color 0.2s, color 0.2s;
}

.nav-close-btn:hover {
  border-color: #d6422b;
  color: #d6422b;
}

/* Nav links (shared by both mobile card and desktop menu) */
.nav-link-item {
  display: block;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link-item:hover,
.nav-link-item.active {
  color: #d6422b;
}

/* Card footer — divider, promo, CTA */
.nav-card-footer {
  padding: 0 20px 24px;
}

.nav-card-divider {
  border: none;
  border-top: 1.5px dashed #d0c0b8;
  margin: 8px 0 16px;
}

.nav-card-promo {
  font-size: 13.5px;
  color: #d6422b;
  margin-bottom: 14px;
  line-height: 1.4;
}

.nav-card-promo strong {
  color: #333;
}

.nav-card-cta-btn {
  display: block;
  background: #d6422b;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-card-cta-btn:hover {
  background: #c03520;
  color: #fff;
}


/* ====================================================
   RESPONSIVE: SMALL TABLET (576px+)
   ==================================================== */

@media (min-width: 576px) {

  .hero-bgg {
    min-height: 560px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-title {
    font-size: 30px;
    width: 68%;
  }

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

  .about-section {
    padding: 40px 30px 32px;
  }

  .brand-story-section {
    padding: 40px 30px 32px;
  }

  .why-section {
    padding: 44px 30px 22px;
  }

  .success-section {
    padding: 44px 30px;
  }

  .join-section {
    padding: 40px 0 40px;
  }

  .join-img-wrap {
    margin: 0 30px 28px;
  }
}


/* ====================================================
   RESPONSIVE: TABLET (768px+)
   ==================================================== */

@media (min-width: 768px) {

  /* Navbar: show horizontal menu, hide mobile card */
  .nav-toggler {
    display: none;
  }

  .nav-overlay,
  .nav-mobile-card {
    display: none !important;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
  }

  .nav-link-item {
    padding: 8px 14px;
    font-size: 14px;
  }

  .nav-link-item:hover,
  .nav-link-item.active {
    background: #fce8e3;
    color: #d6422b;
    border-radius: 10px;
  }

  .nav-link-item.nav-cta {
    background: #d6422b;
    color: #fff !important;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 12px;
  }

  .nav-link-item.nav-cta:hover {
    background: #c03520;
    color: #fff !important;
  }

  .nav-container {
    padding: 12px 40px;
  }

  .nav-logo img {
    width: 110px;
  }

  /* Hero */
  .hero-section {
    padding: 0;
  }

  .hero-bgg {
    min-height: 620px;
    padding: 30px 40px 50px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero-title {
    font-size: 38px;
    width: 55%;
    line-height: 1.15;
  }

  .hero-desc {
    font-size: 17px;
    width: 50%;
  }

  /* About */
  .about-section {
    padding: 44px 50px 36px;
  }

  .about-us-title {
    font-size: 40px;
  }

  .about-title {
    font-size: 32px;
  }

  .vm-grid {
    flex-direction: row;
  }

  .vm-card {
    flex: 1;
  }

  .program-cards {
    flex-direction: row;
  }

  .program-card {
    flex: 1;
  }

  /* Brand Story */
  .brand-story-section {
    padding: 44px 50px 36px;
  }

  .brand-story-title {
    font-size: 34px;
  }

  /* Journey section */
  .section {
    padding: 40px 40px 14px;
  }

  .section-title {
    font-size: 32px;
  }

  /* Why section */
  .why-section {
    padding: 48px 50px 28px;
  }

  .why-title {
    font-size: 42px;
  }

  .why-subtitle {
    max-width: 500px;
    font-size: 17px;
  }

  .why_card_head {
    font-size: 10px;
  }

  .why_card_head_p {
    font-size: 9px;
  }

  /* Success */
  .success-section {
    padding: 48px 50px;
  }

  .success-title {
    font-size: 42px;
  }

  .success-subtitle {
    max-width: 500px;
    font-size: 17px;
  }

  .story-card img {
    height: 340px;
  }

  /* Join */
  .join-section {
    display: flex;
    align-items: center;
    padding: 44px 50px;
    gap: 40px;
  }

  .join-img-wrap {
    margin: 0;
    flex: 0 0 300px;
  }

  .join-img {
    height: 320px;
  }

  .join-content {
    padding: 0;
    flex: 1;
  }

  .join-title {
    font-size: 36px;
  }

  /* CTA */
  .cta-section {
    margin: 20px 40px;
    padding: 28px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }

  .cta-section h2 {
    font-size: 22px;
    margin-bottom: 0;
    flex: 1 1 200px;
  }

  .cta-list {
    margin-bottom: 0;
    flex: 1 1 180px;
  }

  .footer-btn {
    flex: 0 0 auto;
    width: auto;
    padding: 14px 36px;
  }

  /* Footer */
  footer {
    padding: 50px 40px 32px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ====================================================
   RESPONSIVE: LAPTOP (992px+)
   ==================================================== */

@media (min-width: 992px) {

  .nav-container {
    padding: 14px 60px;
  }

  .nav-logo img {
    width: 115px;
  }

  .nav-link-item {
    padding: 9px 16px;
    font-size: 15px;
  }

  /* Hero */
  .hero-bgg {
    min-height: 680px;
    padding: 40px 60px 60px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-title {
    font-size: 50px;
    width: auto;
    max-width: 600px;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 19px;
    width: auto;
    max-width: 520px;
    margin-top: 10px;
  }

  /* About */
  .about-section {
    padding: 54px 70px 46px;
  }


  .about-us-title {
    font-size: 48px;
  }

  .about-title {
    font-size: 36px;
  }

  .vm-label {
    font-size: 20px;
  }

  .vm-text {
    font-size: 15px;
  }

  /* Brand story */
  .brand-story-section {
    padding: 54px 70px 46px;
  }

  .brand-story-title {
    font-size: 40px;
  }

  .brand-story-question p {
    font-size: 20px;
  }

  /* Journey: 4 columns */
  .section {
    padding: 48px 70px 20px;
  }

  .section-title {
    font-size: 38px;
  }

  .section .col-6 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  /* Why */
  .why-section {
    padding: 54px 70px 32px;
  }

  .why-title {
    font-size: 48px;
  }

  .why_card_head {
    font-size: 11px;
  }

  .why_card_head_p {
    font-size: 10px;
  }

  .table-wrapper img {
    max-width: 600px;
  }

  /* Success */
  .success-section {
    padding: 54px 70px;
  }

  .success-title {
    font-size: 48px;
  }

  .story-card img {
    height: 380px;
  }

  .story-info h4 {
    font-size: 26px;
  }

  .story-info span {
    font-size: 26px;
  }

  /* Join */
  .join-section {
    padding: 54px 70px;
    gap: 60px;
  }

  .join-img-wrap {
    flex: 0 0 380px;
  }

  .join-img {
    height: 380px;
  }

  .join-title {
    font-size: 42px;
  }

  .join-desc {
    font-size: 17px;
  }

  /* CTA */
  .cta-section {
    margin: 20px 70px;
    padding: 36px 60px;
  }

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

  /* Footer */
  footer {
    padding: 50px 70px 32px;
  }
}


/* ====================================================
   RESPONSIVE: DESKTOP (1200px+)
   ==================================================== */

@media (min-width: 1200px) {

  /* .main-wrapper {
    max-width: 1440px;
  } */

  .nav-container {
    padding: 16px 80px;
  }

  .nav-logo img {
    width: 120px;
  }

  /* Hero */
  .hero-bgg {
    min-height: 740px;
    padding: 50px 80px 70px;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 58px;
    max-width: 700px;
  }

  .hero-desc {
    font-size: 20px;
    max-width: 580px;
    margin-top: 14px;
  }

  /* About */
  .about-section {
    padding: 60px 100px 50px;
  }

  .about-us-title {
    font-size: 54px;
  }

  .about-title {
    font-size: 40px;
  }

  /* Brand story */
  .brand-story-section {
    padding: 60px 100px 50px;
  }

  .brand-story-title {
    font-size: 44px;
  }

  /* Journey */
  .section {
    padding: 56px 100px 26px;
  }

  .section-title {
    font-size: 44px;
  }

  /* Why */
  .why-section {
    padding: 60px 100px 40px;
  }

  .why-title {
    font-size: 54px;
  }

  .why-subtitle {
    font-size: 18px;
    max-width: 600px;
  }

  .why_card_head {
    font-size: 13px;
  }

  .why_card_head_p {
    font-size: 11px;
  }

  .table-wrapper img {
    max-width: 800px;
  }

  /* Success */
  .success-section {
    padding: 60px 100px;
  }

  .success-title {
    font-size: 54px;
  }

  .success-subtitle {
    max-width: 600px;
    font-size: 18px;
  }

  /* Join */
  .join-section {
    padding: 60px 100px;
    gap: 80px;
  }

  .join-img-wrap {
    flex: 0 0 460px;
  }

  .join-img {
    height: 440px;
  }

  .join-title {
    font-size: 48px;
  }

  /* CTA */
  .cta-section {
    margin: 24px 100px;
    padding: 40px 80px;
  }

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

  /* Footer */
  footer {
    padding: 60px 100px 40px;
  }
}


/* popup contact form */

    /* ── Contact Modal ── */
    .contact-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .contact-modal-overlay.open {
      display: flex;
      animation: cmFadeIn 0.22s ease;
    }
    @keyframes cmFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .contact-modal {
      background: #fff;
      border-radius: 18px;
      padding: 24px 28px 20px;
      width: 100%;
      max-width: 480px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
      animation: cmSlideUp 0.25s ease;
    }
    @keyframes cmSlideUp {
      from { transform: translateY(30px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
    .contact-modal-close {
      position: absolute;
      top: 14px;
      right: 18px;
      background: none;
      border: none;
      font-size: 26px;
      line-height: 1;
      color: #888;
      cursor: pointer;
      padding: 0;
      transition: color 0.15s;
    }
    .contact-modal-close:hover { color: #d6422b; }
    .contact-modal-title {
      font-size: 22px;
      font-weight: 700;
      color: #222;
      margin-bottom: 4px;
    }
    .contact-modal-sub {
      font-size: 13.5px;
      color: #666;
      margin-bottom: 14px;
    }
    .contact-form-group {
      margin-bottom: 10px;
    }
    .contact-form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
    }
    .contact-form-group input,
    .contact-form-group textarea {
      width: 100%;
      border: 1.5px solid #e0e0e0;
      border-radius: 10px;
      padding: 11px 14px;
      font-size: 14px;
      color: #222;
      background: #faf8f6;
      outline: none;
      transition: border-color 0.2s;
      resize: none;
      font-family: inherit;
    }
    .contact-form-group input:focus,
    .contact-form-group textarea:focus {
      border-color: #d6422b;
      background: #fff;
    }
    .contact-form-submit {
      width: 100%;
      background: #d6422b;
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 4px;
      transition: background 0.2s, opacity 0.2s;
      font-family: inherit;
    }
    .contact-form-submit:hover  { background: #b83320; }
    .contact-form-submit:disabled { opacity: 0.65; cursor: not-allowed; }
    .contact-form-status {
      text-align: center;
      font-size: 13.5px;
      margin-top: 12px;
      min-height: 18px;
    }
    .contact-form-status.success { color: #2a7d4f; }
    .contact-form-status.error   { color: #d6422b; }