@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@100..900&family=League+Spartan:wght@100..900&display=swap");

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

:root {
  --red: #ff0000;
  --black: #000000;
  --white: #ffffff;
  --gray: #777;
}

.sohh-page {
  font-family: "Poppins", sans-serif;
  color: #111;
  background: #fff;
  margin-top: 1rem;
}

.section-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 44px;
  font-weight: 800 !important;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  font-weight: 600 !important;
}

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

.text-red {
  color: var(--red);
}

/* HERO SECTION */
.sohh-hero-simple {
  /* padding: 100px 80px 50px 80px; */
  padding: 90px 20px 70px;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800 !important;
  font-size: 62px;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 12px;
}

.hero-subline {
  font-size: 28px;
  font-weight: 600 !important;
  color: var(--red);
  margin-bottom: 40px;
}

.hero-description {
  font-size: 18px;
  color: #444;
}

.hero-description span {
  font-weight: bold !important;
}

.hero-video-wrapper {
  max-width: 900px;
  margin: 0 auto 30px;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #111, #000);
  transition: all 0.6s ease;
}

.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.video-container:hover {
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.25);
}

.video-container:hover .video-thumbnail {
  transform: scale(1.08);
}

.play-button {
  position: absolute;
  inset: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.play-button i {
  font-size: 20px;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #ff0000;
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: "League Spartan", sans-serif !important;
  font-size: 18px;
  font-weight: 600 !important;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: darkslategray;
  border: 2px solid black;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: "League Spartan", sans-serif !important;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600 !important;
  text-decoration: none;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary i.fa-phone {
  font-size: 20px;
}

.btn-secondary i.fa-whatsapp {
  font-size: 25px;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  transform: scale(1.05);
}

/* PROBLEM SECTION */
.sohh-problem {
  padding: 60px 0;
  background: #f0f0f0;
}

.problem-list {
  max-width: 600px;
  margin: 20px auto 20px;
  list-style: none;
}

.problem-list li {
  font-size: 16px;
  padding: 12px 20px;
  border: 1px solid var(--red);
  border-radius: 8px;
  background-color: white;
  margin-bottom: 12px;
  position: relative;
}

.problem-list li span {
  font-weight: 900 !important;
  margin-right: 10px;
}

.problem-note {
  font-style: italic;
}

.problem-note span {
  font-weight: 600 !important;
}

/* SOLUTION */
.sohh-features {
  padding: 60px 0;
}

.sohh-solutions {
  text-align: center;
}

.solution-title {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 800 !important;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto 20px;
}

.solution-box {
  margin: 0 auto;
  margin-bottom: 30px;
}

.solution-line {
  font-size: 18px;
  color: #444;
  margin-bottom: 0;
}

.solution-bold {
  font-size: 20px;
  font-weight: 500 !important;
  color: #000;
}

.features {
  font-size: 24px;
  font-weight: 800 !important;
  font-family: "Montserrat", sans-serif !important;
}

.features-grid {
  display: grid;
  margin: 0 40px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  background: #f0f0f0;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 1px var(--gray);
  border-radius: 8px;
  padding: 20px 30px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: #ff0000;
  transition: all 0.35s ease;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.4);
}

.feature-card h4 {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px;
}

/* .feature-card p {
  font-size: 15px;
  color: #444;
  margin: 0;
} */

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  color: #ff0000;
  font-size: 25px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: #ff0000;
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

/* TRANSFORMATION */
/* ===============================
   TRANSFORMATION – LIGHT VERSION
================================ */

.sohh-transformation {
  background: #f6f6f6;
  padding: 60px 0;
}

.transformation-grid {
  display: block;
  text-align: center;
}

/* Main heading */
.transformation-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 800 !important;
  line-height: 1.15;
  color: #000;
  margin-bottom: 40px;
}

/* Subtitle */
.transformation-text {
  font-size: 20px;
  color: #555;
  margin-top: 30px;
  font-style: italic;
}

.transformation-text span {
  font-weight: bold !important;
}

.transformation-right {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.transform-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 30px;
  text-align: left;
  border: 1px solid #e5e5e5;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.transform-card.full-width {
  grid-column: auto;
}

.transform-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Card heading */
.transform-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800 !important;
  color: var(--red);
  margin-bottom: 20px;
}

/* List */
.transform-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transform-card ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
  padding-left: 34px;
  position: relative;
}

/* Red check icon */
.transform-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TRUST SECTION */
/* ===============================
   TRUST SECTION – MODERN
================================ */

.sohh-trust {
  padding: 60px 0;
}

.sohh-trust .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sohh-trust .sohh-trust-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 48px;
  font-weight: 800 !important;
  margin-bottom: 40px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-box {
  background: #f0f0f0;
  border-radius: 14px;
  padding: 30px 20px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.stat-box h3 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 36px;
  font-weight: 800 !important;
  color: var(--red);
  margin-bottom: 3px;
}

.stat-box h3 span {
  color: gold;
  margin-left: 4px;
  font-size: 26px;
}

.stat-box p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.trust-points-box {
  background: #f0f0f0;
  border-radius: 16px;
  padding: 30px 40px;
  margin: 40px 0;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  text-align: left;
}

.trust-points li {
  font-size: 17px;
  padding-left: 36px;
  position: relative;
}

.trust-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 0, 0, 0.15);
  color: var(--red);
  border-radius: 6px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-highlight {
  font-size: 18px;
  margin-top: 25px;
}

.trust-highlight strong {
  color: var(--red);
}

@media (max-width: 576px) {
  .sohh-trust .section-title {
    font-size: 34px;
  }
}

/* GUARANTEE */
.sohh-guarantee {
  background-color: #f0f0f0;
  padding: 60px 0;
}

.guarantee-box {
  border: 1px solid var(--red);
  border-top: 6px solid var(--red);
  max-width: 960px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 40px 30px 40px;
}

.guarantee-icon {
  font-size: 64px;
  color: var(--red);
}

.guarantee-title {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 800 !important;
  margin: 20px 0;
}

.guarantee-text {
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  max-width: 760px;
  margin: 0 auto 30px;
}

.guarantee-text span {
  font-weight: 900 !important;
  color: #000;
}

.guarantee-conditions {
  display: inline-block;
  background: #f5f5f5;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  color: #555;
}

/* =========================
   SLIDING TESTIMONIAL
========================= */
.sohh-testimonials {
  padding: 60px 0;
}

.testimonial-title {
  font-size: 48px;
  font-weight: 700 !important;
  font-family: "Montserrat", sans-serif !important;
  margin-bottom: 25px;
}

.testimonial-viewport {
  overflow: hidden;
  max-width: 1000px;
  border-radius: 15px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  border-radius: 15px;
  transition: transform 0.7s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  background: #f1eded;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 80px rgba(0, 0, 0, 0.6);
}

.stars {
  color: #ffb703;
  font-size: 40px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-slide h4 {
  font-size: 18px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  margin-bottom: 4px;
}

.testimonial-slide span {
  font-size: 15px;
  color: #111;
  font-family: "Montserrat", sans-serif !important;
}

.testimonial-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #e50914;
  transform: scale(1.2);
}

/* mobile */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 35px 25px;
  }
}

/* PRICING PLAN */
/* =========================
   PRICING SECTION
========================= */

.sohh-pricing {
  padding: 40px 0 60px 0;
  background: #f0f0f0;
}

.batch-schedule-card {
  background: #000;
  color: #fff;
  border-radius: 22px;
  padding: 25px 20px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.batch-schedule-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: var(--red);
}

.batch-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.batch-title i {
  font-size: 30px;
  color: var(--red);
}

.batch-title h2 {
  font-family: "Montserrat", sans-serif !important;
  font-size: 34px;
  color: var(--white);
  font-weight: 800 !important;
}

.label {
  color: var(--red);
  font-size: 13px !important;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 700 !important;
}

.batch-box {
  display: flex;
  justify-content: space-around;
  font-family: "Poppins", sans-serif !important;
}

.icon-text {
  font-size: 18px !important;
  margin-bottom: 6px;
  color: #ddd;
}

.value {
  font-size: 22px !important;
  font-weight: 600;
  color: #e5e5e5;
}

.batch-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.batch-footer p {
  font-size: 14px;
  color: #aaa;
  font-style: italic;
}

.pricing-header p {
  font-family: "Poppins", sans-serif !important;
  color: var(--black);
  font-weight: 500 !important;
  font-size: 25px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 16px;
  padding: 30px;
  background: #fff;
  border: 1px solid #eee;
  margin: 0 10px;
  position: relative;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--red);
  transform: scale(1.04);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.08),
    0 25px 60px rgba(229, 9, 20, 0.25);
}

.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 999px;
}

.plan-name {
  font-size: 22px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  margin-bottom: 18px;
}

.plan-price {
  font-size: 40px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  margin-bottom: 10px;
}

.plan-duration {
  display: block;
  font-size: 16px;
  color: #777;
  font-weight: 500;
}

.plan-description {
  line-height: 1.2;
}

.plan-description span {
  font-size: 12px;
  font-weight: 600 !important;
  font-family: "Poppins", sans-serif !important;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.plan-features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #444;
}

.pricing-btn {
  width: 100%;
  padding: 14px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700 !important;
  border: 2px solid var(--black);
  background: #000;
  color: #fff;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.05);
}

.pricing-card.popular .pricing-btn {
  background: var(--red);
  border-color: var(--red);
}

.pricing-card.popular .pricing-btn:hover {
  background: #000;
  border-color: #000;
}

.pricing-meta {
  margin: 0 0 20px;
}

.pricing-save {
  font-size: 14px;
  font-weight: 600 !important;
  color: var(--red);
  margin: 0;
}

.plan-duration {
  font-size: 16px;
  color: #777;
}

/* WHO FOR / FOR NOT */
.sohh-who-for {
  padding: 60px 0;
}

.who-main-title {
  font-size: 44px;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  margin-bottom: 30px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.who-card {
  background: #eeeaea;
  border-radius: 18px;
  padding: 40px 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.who-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700 !important;
  font-size: 38px;
  margin-bottom: 25px;
}

.who-card ul {
  list-style: none;
  padding: 0;
}

.who-card ul li {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  padding-left: 36px;
  position: relative;
}

.who-card.for h3 {
  color: var(--red);
}

.who-card.for ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.who-card.not-for h3 {
  color: var(--black);
}

.who-card.not-for ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =========================
   FINAL CTA SECTION
========================= */

.sohh-final-cta {
  padding: 90px 0;
  background-color: #f0f0f0;
  color: #fff;
}

.final-cta-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 56px;
  font-weight: 800 !important;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 45px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: black;
}

/* ===============================
   GLOBAL MOBILE ADJUSTMENTS
================================ */
/* ===============================
   ≤ 1200px (Small laptops)
================================ */
@media (max-width: 1200px) {
  .hero-heading {
    font-size: 48px;
  }

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

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

  .pricing-grid {
    max-width: 100%;
  }

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

/* ===============================
   ≤ 992px (Tablets)
================================ */
@media (max-width: 992px) {
  .sohh-page {
    margin-top: 2rem;
  }
  /* HERO */
  .sohh-hero-simple {
    padding: 70px 30px 50px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-subline {
    font-size: 22px;
  }

  /* FEATURES */
  .features-grid {
    grid-template-columns: 1fr;
    margin: 0 30px;
  }

  /* TRANSFORMATION */
  .transformation-right {
    grid-template-columns: 1fr;
  }

  .transform-card.full-width {
    grid-column: auto;
  }

  /* TRUST — IMPORTANT CONDITION */
  .trust-stats {
    grid-template-columns: repeat(2, 1fr); /* 2x2 */
  }

  /* PRICING */
  .pricing-card.popular {
    transform: none;
  }

  .plan-price {
    font-size: 32px;
  }

  /* WHO FOR */
  .who-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   ≤ 768px (Mobile)
================================ */
@media (max-width: 768px) {
  .sohh-problem,
  .sohh-features,
  .sohh-transformation,
  .sohh-trust,
  .sohh-guarantee,
  .sohh-testimonials,
  .sohh-pricing {
    padding: 30px 0;
  }
  /* GLOBAL */
  .section-title {
    font-size: 25px;
  }

  .transformation-right {
    gap: 15px;
  }

  /* HERO */
  .sohh-hero-simple {
    padding: 60px 20px 40px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-subline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 14px;
  }

  .who-grid {
    gap: 25px;
  }

  .hero-cta {
    gap: 12px;
  }

  /* VIDEO */
  .play-button {
    width: 32px;
    height: 32px;
  }

  /* SOLUTION */
  .solution-title {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .solution-bold {
    line-height: 1.4;
  }

  .features-grid {
    margin: 0 20px;
    gap: 12px;
  }

  /* FEATURES */
  .feature-card {
    padding: 18px;
  }

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

  .trust-points {
    grid-template-columns: repeat(1, 1fr);
  }

  /* TESTIMONIAL */
  .testimonial-slide {
    padding: 30px 22px;
  }

  .stars {
    font-size: 28px;
  }

  /* PRICING */
  .pricing-header h2 {
    font-size: 32px;
  }

  .pricing-header p {
    margin-bottom: 40px;
  }

  .pricing-card {
    margin: 0;
    padding: 22px;
    border-radius: 12px;
  }

  .plan-price {
    font-size: 28px;
  }

  /* WHO FOR */
  .sohh-who-for {
    padding: 50px 10px;
  }

  .sohh-trust .sohh-trust-title {
    font-size: 36px;
  }

  .stat-box h3 {
    font-size: 26px;
  }

  .stat-box {
    border-radius: 8px;
    padding: 18px;
  }

  .who-main-title {
    font-size: 32px;
  }

  .who-card {
    padding: 22px;
  }

  .who-card h3 {
    font-size: 22px;
  }

  .who-card ul li {
    font-size: 14px;
  }

  .trust-stats {
    gap: 16px;
  }

  .batch-title h2 {
    font-size: 26px;
  }

  .batch-box {
    flex-direction: column;
  }

  .batch-schedule-card {
    padding: 18px;
  }

  .label {
    font-size: 10px !important;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .icon-text {
    font-size: 16px !important;
    margin-bottom: 4px;
  }

  .value {
    font-size: 18px !important;
    font-weight: 600 !important;
  }

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

  .final-cta-title {
    font-size: 36px;
  }

  .final-cta-subtitle {
    font-size: 15px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================
   ≤ 480px (Small Mobile)
================================ */
@media (max-width: 480px) {
  .solution-title {
    font-size: 26px;
  }

  .feature-card h4 {
    font-size: 13px;
  }
  .pricing-header h2 {
    font-size: 20px;
    margin-bottom: 0px;
  }

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

  .feature-icon i {
    font-size: 20px;
  }

  .label {
    margin-bottom: 0;
  }

  .who-card {
    padding: 16px;
  }

  /* HERO */
  .hero-heading {
    font-size: 26px;
  }

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

  .hero-cta {
    gap: 6px;
  }

  .hero-video-wrapper {
    margin: 0 auto 10px;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    font-size: 15px;
    padding: 12px 24px;
  }

  .features-grid {
    margin: 0 8px;
  }

  /* PRICING */
  .plan-price {
    font-size: 24px;
  }

  .pricing-btn {
    font-size: 14px;
  }

  .pricing-header p {
    font-size: 20px !important;
    /* margin-bottom: 20px; */
  }

  .plan-description {
    line-height: 1.4;
  }

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

  .sohh-trust .sohh-trust-title {
    font-size: 30px;
  }

  .trust-points-box {
    padding: 20px 18px;
  }

  /* TRANSFORMATION */

  .transform-card {
    padding: 20px;
  }

  .btn-secondary i.fa-phone {
    font-size: 18px;
  }

  .play-button i {
    font-size: 10px;
  }

  .hero-description {
    line-height: 1.5;
  }

  /* WHO FOR */
  .who-main-title {
    font-size: 30px;
  }
}
