/* ============================================
   Growwithmee — Home Page Styles
   ============================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
  background: linear-gradient(
    120deg,
    var(--color-navy) 0%,
    var(--color-navy-light) 45%,
    var(--color-navy) 100%
  );
  background-size: 200% 200%;
  animation: gradientShift 16s ease infinite;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.hero::before {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.28),
    transparent 70%
  );
}
.hero::after {
  width: 500px;
  height: 500px;
  bottom: -220px;
  right: -160px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.18),
    transparent 70%
  );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.hero-eyebrow {
  color: var(--color-gold-light);
}
.hero-heading {
    min-height: 200px;
}
.hero-eyebrow::before {
  background: var(--color-gold-light);
}

.hero-heading {
  color: var(--color-white);
  font-size: clamp(32px, 5vw, 50px);
  margin-top: 18px;
  line-height: 1.15;
}
.hero-heading .line-wrap {
  display: block;
  overflow: hidden;
}
.hero-heading .line-inner {
  display: block;
  transform: translateY(110%);
}
.rotate-word-wrap {
  color: var(--color-gold-light);
  position: relative;
  display: inline-block;
}
.rotate-word-wrap::after {
  content: "|";
  margin-left: 3px;
  animation: blink 1s step-end infinite;
  color: var(--color-gold-light);
}
html {
  scroll-behavior: smooth;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17.5px;
  margin-top: 22px;
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
section.about-preview.section-pad {
    padding-top: 0;
}
.hero-trust-badges {
  display: flex;
  gap: 26px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-trust-badges .badge-item i {
  color: var(--color-gold-light);
  font-size: 16px;
}

.hero-visual {
  position: relative;
}
.hero-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-visual-frame img {
  width: 100%;
  object-fit: cover;
}

.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}
.float-badge .fb-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 16px;
  flex-shrink: 0;
}
.float-badge .fb-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-navy);
}
.float-badge .fb-label {
  font-size: 11.5px;
  color: var(--color-gray-700);
}
.float-badge-1 {
  top: -6%;
  left: -8%;
  animation-delay: 0s;
}
.float-badge-2 {
  bottom: -6%;
  right: -10%;
  animation-delay: 1.4s;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }
  .float-badge {
    padding: 10px 14px;
  }
}
@media (max-width: 480px) {
  .float-badge-1,
  .float-badge-2 {
    position: static;
    margin-top: 14px;
    animation: none;
  }
}

/* ---------- Stats ---------- */
.stats-section {
  background: var(--color-white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 30px 12px;
  border-radius: var(--radius-md);
  background: var(--color-off-white);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: var(--color-navy);
}
.stat-number span.suffix {
  color: var(--color-gold-dark);
}
.stat-label {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--color-gray-700);
  font-weight: 500;
}
@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Generic slider section ---------- */
.slider-section {
  background: var(--color-off-white);
  overflow: hidden;
}
.slider-section.alt {
  background: var(--color-white);
}

/* Certification cards (slick) */
.cert-slider .slick-slide {
  margin: 0px 14px;
  height: auto;
}
.cert-slider .slick-list .slick-track {
    display: flex;
    flex-wrap: wrap;
}
.cert-slider .slick-list {
  margin: 0 -14px;
  padding: 6px 0 30px;
}
.cert-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  height: 100%;
}
.cert-card:hover {
  transform: translateY(-8px);
}
.cert-card-media {
  padding: 26px 26px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    160deg,
    var(--color-cream),
    var(--color-off-white)
  );
}
.cert-card-media img {
  height: 120px;
  width: 100%;
}
.cert-card-body {
  padding: 22px 26px 28px;
}
.cert-card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  background: rgba(212, 160, 23, 0.12);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.cert-card-body h3 {
  font-size: 19px;
}
.cert-card-body p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--color-gray-700);
}
.cert-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-gray-700);
}
.cert-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cert-card-meta i {
  color: var(--color-gold);
}
.cert-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--color-navy);
  transition:
    gap 0.3s var(--ease),
    color 0.3s var(--ease);
}
.cert-card-link:hover {
  gap: 12px;
  color: var(--color-gold-dark);
}

/* Testimonials (slick) */
.testi-slider .slick-slide {
  padding: 10px 14px;
  margin: 0px 14px;
  height: auto;
}
.testi-slider .slick-list {
  margin: 0 -14px;
  padding-bottom: 40px;
}
.testi-slider  .slick-track {
    display: flex;
    flex-wrap: wrap;
}
.testi-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 37, 64, 0.06);
  height: 100%;
}
.testi-stars {
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 15.5px;
  color: var(--color-gray-700);
  font-style: italic;
  line-height: 1.75;
}
.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.testi-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-light);
}
.testi-person h5 {
  font-size: 15px;
}
.testi-person span {
  font-size: 13px;
  color: var(--color-gray-500);
}

/* Slick shared nav/dots overrides */
.slick-arrow-group {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 32px;
}
.slick-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: transparent;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.slick-arrow-btn:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: scale(1.08);
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.slick-dots {
  position: relative;
  bottom: -6px;
}
.slick-dots li button:before {
  font-size: 9px;
  color: var(--color-gray-300);
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: var(--color-gold);
}

@media (max-width: 640px) {
  .slick-arrow-group {
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0;
    order: 3;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- About preview ---------- */
.about-preview {
  background: var(--color-white);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-preview-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-preview-media img {
  width: 100%;
}
.about-preview-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 37, 64, 0.9);
  color: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}
.about-preview-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-gold-light);
}
.about-preview-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 34px;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-gray-700);
}
.about-highlights i {
  color: var(--color-gold);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
  }
  .about-preview-media {
    max-width: 460px;
  }
}

/* ---------- Why Us ---------- */
.why-us {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 160, 23, 0.14),
    transparent 70%
  );
  border-radius: 50%;
}
.why-us .section-header .eyebrow {
  color: var(--color-gold-light);
}
.why-us .section-header .eyebrow::before {
  background: var(--color-gold-light);
}
.why-us .section-title {
  color: var(--color-white);
}
.why-us .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}
.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 160, 23, 0.4);
}
.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 22px;
  margin-bottom: 20px;
}
.why-card h3 {
  color: var(--color-white);
  font-size: 18.5px;
}
.why-card-detail {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 10px;
  transition:
    max-height 0.4s var(--ease),
    opacity 0.4s var(--ease),
    margin-top 0.4s var(--ease);
}
.why-card:hover .why-card-detail {
  opacity: 1;
}
.why-cta-banner {
  margin-top: 56px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.why-cta-banner p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  margin-bottom: 26px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process ---------- */
.process-section {
  background: var(--color-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 18px;
  position: relative;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 20px;
  width: calc(100% - 36px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-gold) 0 8px,
    transparent 8px 16px
  );
}
/* .process-grid .process-step:last-child::after {
  display: none;
} */
.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-off-white);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-navy);
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
}
.process-step i {
  color: var(--color-gold-dark);
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
.process-step h4 {
  font-size: 16.5px;
  margin-top: 6px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--color-gray-700);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .process-step::after {
    display: none;
  }
}
@media (max-width: 560px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Trust bar marquee ---------- */
.trust-bar {
  background: var(--color-cream);
  padding: 56px 0;
  overflow: hidden;
}
.trust-bar-label {
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-700);
  font-weight: 600;
  margin-bottom: 30px;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track .badge-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  margin: 0 14px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  font-size: 15px;
  white-space: nowrap;
}
.marquee-track .badge-chip i {
  color: var(--color-gold);
}

