/* ==================================================
   WHY CHOOSE PAGE - COMMON + HERO SECTION
================================================== */

:root {
  --why-primary: #1769f5;
  --why-primary-dark: #08295c;
  --why-heading: #09275a;
  --why-text: #4b5563;
  --why-light: #f3f8ff;
  --why-white: #ffffff;
  --why-border: #e4ecf7;
  --why-shadow: 0 18px 45px rgba(9, 39, 90, 0.08);
}

body.why-page {
  margin: 0;
  background: #ffffff;
  color: var(--why-text);
  font-family: "Poppins", Arial, sans-serif;
}

.why-page .main {
  overflow: hidden;
}

.why-page img {
  max-width: 100%;
  display: block;
}

.why-page a {
  text-decoration: none;
}

/* ===============================
   HERO SECTION
================================ */

.why-hero {
  position: relative;
  padding: 58px 0 62px;
  background:
    radial-gradient(circle at 18% 25%, rgba(23, 105, 245, 0.10), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 55%, #eaf7ff 100%);
  overflow: hidden;
}

.why-hero::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  right: 10%;
  top: 42%;
  border-radius: 50%;
  background: #6a9df7;
  animation: whyFloat 3s ease-in-out infinite;
}

.why-hero::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: linear-gradient(90deg, var(--why-primary), #09bde8);
}

.why-hero .container {
  position: relative;
  z-index: 2;
}

.why-hero h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--why-heading);
  letter-spacing: -0.8px;
}

.why-hero p {
  max-width: 820px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  color: #566274;
}

/* reveal animation common */

.why-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-reveal.why-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whyFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===============================
   HERO RESPONSIVE
================================ */

@media (max-width: 991px) {
  .why-hero {
    padding: 50px 0 56px;
  }

  .why-hero p {
    font-size: 15.5px;
  }
}

@media (max-width: 575px) {
  .why-hero {
    padding: 42px 0 50px;
  }

  .why-hero h1 {
    font-size: 29px;
  }

  .why-hero p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .why-hero::after {
    bottom: 26px;
    width: 62px;
  }
}














/* ==================================================
   FEATURE SECTION - 4 CARD TOP + 3 CARD BOTTOM
================================================== */

.why-features-section {
  padding: 52px 0 60px;
  background: #ffffff;
}

.why-section-header {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.why-section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(20px, 3.0vw, 28px);
  line-height: 1.15;
  font-weight: 600;
  color: #08295c;
  letter-spacing: -0.8px;
}

.why-section-header p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #4b5563;
}

.why-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card-row {
  display: grid;
  gap: 24px;
}

.why-card-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

.why-card-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.why-feature-card {
  position: relative;
  min-height: 285px;
  padding: 28px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e4ecf7;
  box-shadow: 0 16px 42px rgba(8, 41, 92, 0.07);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(23, 105, 245, 0.07), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: 0.35s ease;
}

.why-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23, 105, 245, 0.55);
  box-shadow: 0 26px 55px rgba(23, 105, 245, 0.15);
}

.why-feature-card:hover::before {
  opacity: 1;
}

.why-feature-card > * {
  position: relative;
  z-index: 2;
}

.why-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 17px;
  background: #eaf2ff;
  color: #1769f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.35s ease;
}

.why-feature-card:hover .why-icon {
  background: #1769f5;
  color: #ffffff;
  transform: translateY(-4px) rotate(6deg) scale(1.06);
  box-shadow: 0 14px 30px rgba(23, 105, 245, 0.28);
}

.why-feature-card h3 {
  margin: 0 0 15px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 850;
  color: #08295c;
  letter-spacing: -0.4px;
}

.why-feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 14.8px;
  line-height: 1.55;
}

.why-feature-list li:last-child {
  margin-bottom: 0;
}

.why-feature-list i {
  margin-top: 3px;
  color: #1769f5;
  font-size: 17px;
  flex-shrink: 0;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .why-card-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card-row-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .why-features-section {
    padding: 45px 0 52px;
  }

  .why-card-row-3 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .why-feature-card {
    min-height: 260px;
  }
}

@media (max-width: 767px) {
  .why-section-header {
    margin-bottom: 28px;
  }

  .why-section-header h2 {
    font-size: 30px;
  }

  .why-section-header p {
    font-size: 15px;
  }

  .why-card-wrapper {
    gap: 18px;
  }

  .why-card-row {
    gap: 18px;
  }

  .why-card-row-4,
  .why-card-row-3 {
    grid-template-columns: 1fr;
  }

  .why-feature-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .why-feature-card h3 {
    font-size: 21px;
  }

  .why-feature-list li {
    font-size: 14.5px;
  }
}

















/* ==================================================
   TRUST COUNTER SECTION
================================================== */

.why-trust {
  padding: 42px 0;
  background: #102a55;
  position: relative;
  overflow: hidden;
}

.why-trust::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -90px;
  top: -120px;
  border-radius: 50%;
  background: rgba(23, 105, 245, 0.22);
}

.why-trust::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.why-trust .container {
  position: relative;
  z-index: 2;
}

.why-trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-stat {
  min-height: 118px;
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  transition: all 0.35s ease;
}

.why-stat:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.why-stat-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #ffffff;
  color: #1769f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.why-stat:hover .why-stat-icon {
  background: #1769f5;
  color: #ffffff;
  transform: rotate(8deg) scale(1.06);
}

.why-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.why-stat span:last-child {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .why-trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .why-stat {
    padding: 20px 16px;
    gap: 12px;
  }

  .why-stat-icon {
    width: 54px;
    height: 54px;
    font-size: 25px;
  }

  .why-stat strong {
    font-size: 34px;
  }

  .why-stat span:last-child {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .why-trust {
    padding: 35px 0;
  }

  .why-trust-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .why-stat {
    min-height: 105px;
    justify-content: flex-start;
  }
}





















/* ==================================================
   PATIENT CARE IMAGE + CONTENT SECTION
   UPDATED COMPACT HEIGHT VERSION
================================================== */

.why-care-section {
  position: relative;
  padding: 38px 0;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(23, 105, 245, 0.07),
      transparent 28%
    ),
    #ffffff;
  overflow: hidden;
}

.why-care-section::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(23, 105, 245, 0.06);
  pointer-events: none;
}

.why-care-section .container {
  position: relative;
  z-index: 2;
}

/* ==================================================
   MAIN TWO-COLUMN CONTAINER
================================================== */

.why-care-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ==================================================
   LEFT IMAGE
================================================== */

.why-care-image-box {
  height: 100%;
}

.why-care-image {
  position: relative;
  height: 100%;
  min-height: 350px;
  border-radius: 24px;
  overflow: hidden;
  background: #eef5ff;
  box-shadow: 0 20px 50px rgba(8, 41, 92, 0.12);
  isolation: isolate;
}

.why-care-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(4, 29, 66, 0.35) 100%
    );
  pointer-events: none;
}

.why-care-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 17px;
  pointer-events: none;
}

.why-care-image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.75s ease,
    filter 0.75s ease;
}

.why-care-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

/* ==================================================
   IMAGE BADGE
================================================== */

.why-image-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 40px);
  padding: 10px 14px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(8, 41, 92, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.why-care-image:hover .why-image-badge {
  transform: translateY(-5px);
  background: rgba(23, 105, 245, 0.9);
}

.why-image-badge > i {
  font-size: 23px;
  color: #ffffff;
  flex-shrink: 0;
}

.why-image-badge div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.why-image-badge strong {
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 750;
}

.why-image-badge span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11.5px;
  line-height: 1.3;
}

/* ==================================================
   RIGHT CONTENT
================================================== */

.why-care-content {
  height: 100%;
  min-height: 350px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e4ecf7;
  box-shadow: 0 18px 46px rgba(8, 41, 92, 0.07);

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.why-care-content:hover {
  transform: translateY(-5px);
  border-color: rgba(23, 105, 245, 0.3);
  box-shadow: 0 24px 56px rgba(23, 105, 245, 0.11);
}

/* ==================================================
   SMALL TOP LABEL
================================================== */

.why-care-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1769f5;
  background: #edf4ff;
  border: 1px solid rgba(23, 105, 245, 0.13);
  font-size: 12.5px;
  line-height: 1;
  font-weight: 700;
}

.why-care-label i {
  font-size: 15px;
}

/* ==================================================
   HEADING
================================================== */

.why-care-content h2 {
  margin: 0 0 12px;
  color: #08295c;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.8px;
}

/* ==================================================
   DESCRIPTION
================================================== */

.why-care-content p {
  margin: 0 0 9px;
  color: #4b5563;
  font-size: 14.5px;
  line-height: 1.6;
}

.why-care-content p:last-of-type {
  margin-bottom: 0;
}

/* ==================================================
   FOUR ASSURANCE ITEMS
================================================== */

.why-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 17px;
}

.why-assurance-item {
  min-height: 50px;
  padding: 8px 11px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #08295c;
  background: #f1f6ff;
  border: 1px solid transparent;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-assurance-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1769f5;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(23, 105, 245, 0.1);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.why-assurance-icon i {
  font-size: 16px;
}

.why-assurance-item span {
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 750;
}

.why-assurance-item:hover {
  color: #ffffff;
  background: #1769f5;
  border-color: #1769f5;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23, 105, 245, 0.2);
}

.why-assurance-item:hover .why-assurance-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(7deg) scale(1.05);
}

/* ==================================================
   REVEAL ANIMATION
================================================== */

.why-care-section .why-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.why-care-section .why-reveal.why-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   RESPONSIVE - LAPTOP
================================================== */

@media (max-width: 1199px) {
  .why-care-section {
    padding: 34px 0;
  }

  .why-care-wrapper {
    gap: 22px;
  }

  .why-care-image,
  .why-care-image img,
  .why-care-content {
    min-height: 335px;
  }

  .why-care-content {
    padding: 22px 24px;
  }

  .why-care-content h2 {
    font-size: 33px;
  }

  .why-care-content p {
    font-size: 14px;
  }

  .why-assurance-item span {
    font-size: 13px;
  }
}

/* ==================================================
   RESPONSIVE - TABLET
================================================== */

@media (max-width: 991px) {
  .why-care-section {
    padding: 34px 0;
  }

  .why-care-wrapper {
    grid-template-columns: 1fr;
    max-width: 760px;
    gap: 20px;
  }

  .why-care-image,
  .why-care-image img {
    height: 330px;
    min-height: 330px;
  }

  .why-care-content {
    min-height: auto;
    padding: 25px;
  }

  .why-care-content h2 {
    font-size: 32px;
  }
}

/* ==================================================
   RESPONSIVE - MOBILE
================================================== */

@media (max-width: 767px) {
  .why-care-section {
    padding: 30px 0;
  }

  .why-care-wrapper {
    gap: 17px;
  }

  .why-care-image {
    border-radius: 19px;
  }

  .why-care-image,
  .why-care-image img {
    height: 275px;
    min-height: 275px;
  }

  .why-care-image::after {
    inset: 9px;
    border-radius: 14px;
  }

  .why-image-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    padding: 9px 11px;
  }

  .why-care-content {
    padding: 21px 19px;
    border-radius: 19px;
  }

  .why-care-content h2 {
    font-size: 27px;
    margin-bottom: 11px;
  }

  .why-care-content p {
    font-size: 14px;
    line-height: 1.55;
  }

  .why-assurance-grid {
    gap: 9px;
    margin-top: 16px;
  }

  .why-assurance-item {
    min-height: 48px;
    padding: 8px 9px;
  }

  .why-assurance-item span {
    font-size: 12.8px;
  }

  .why-assurance-icon {
    width: 32px;
    height: 32px;
  }
}

/* ==================================================
   RESPONSIVE - SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  .why-care-section {
    padding: 26px 0;
  }

  .why-care-image,
  .why-care-image img {
    height: 230px;
    min-height: 230px;
  }

  .why-image-badge {
    padding: 8px 10px;
  }

  .why-image-badge > i {
    font-size: 21px;
  }

  .why-image-badge strong {
    font-size: 13.5px;
  }

  .why-image-badge span {
    font-size: 10.5px;
  }

  .why-care-content {
    padding: 19px 16px;
  }

  .why-care-label {
    margin-bottom: 10px;
    font-size: 11.5px;
  }

  .why-care-content h2 {
    font-size: 24px;
    margin-bottom: 11px;
  }

  .why-care-content p {
    font-size: 13.5px;
  }

  .why-assurance-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .why-assurance-item {
    min-height: 46px;
  }
}

/* ==================================================
   REDUCED MOTION SUPPORT
================================================== */

@media (prefers-reduced-motion: reduce) {
  .why-care-section *,
  .why-care-section *::before,
  .why-care-section *::after {
    animation: none !important;
    transition: none !important;
  }

  .why-care-section .why-reveal {
    opacity: 1;
    transform: none;
  }
}

















/* ==================================================
   CTA SECTION
   Compact height | Center aligned | Responsive
================================================== */

.why-cta {
  position: relative;
  min-height: 210px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      110deg,
      rgba(23, 105, 245, 0.96),
      rgba(8, 41, 92, 0.97)
    ),
    url("../assets/img/health/skg-lab.jpeg") center / cover no-repeat;
}

/* Decorative circle left */

.why-cta::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: -70px;
  top: -85px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  animation: whyCtaFloat 5s ease-in-out infinite;
}

/* Decorative circle right */

.why-cta::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  right: -50px;
  bottom: -75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: whyCtaFloatReverse 6s ease-in-out infinite;
}

.why-cta .container {
  position: relative;
  z-index: 2;
}

.why-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */

.why-cta h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -0.8px;
}

/* Description */

.why-cta p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  line-height: 1.55;
}

/* Contact Button */

.why-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 172px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #1769f5;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* Button light sweep */

.why-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(23, 105, 245, 0.16),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.why-cta-btn:hover::before {
  left: 140%;
}

.why-cta-btn:hover {
  color: #ffffff;
  background: #08295c;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-cta-btn span,
.why-cta-btn i {
  position: relative;
  z-index: 2;
}

.why-cta-btn i {
  font-size: 17px;
  transition: transform 0.35s ease;
}

.why-cta-btn:hover i {
  transform: translateX(6px);
}

/* Reveal animation */

.why-cta .why-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.why-cta .why-reveal.why-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative animations */

@keyframes whyCtaFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(12px) scale(1.05);
  }
}

@keyframes whyCtaFloatReverse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.04);
  }
}

/* ==================================================
   RESPONSIVE - TABLET
================================================== */

@media (max-width: 991px) {
  .why-cta {
    min-height: 200px;
    padding: 28px 0;
  }

  .why-cta h2 {
    font-size: 36px;
  }

  .why-cta p {
    font-size: 15px;
    margin-bottom: 16px;
  }
}

/* ==================================================
   RESPONSIVE - MOBILE
================================================== */

@media (max-width: 767px) {
  .why-cta {
    min-height: 190px;
    padding: 25px 0;
  }

  .why-cta h2 {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .why-cta p {
    max-width: 540px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .why-cta-btn {
    min-width: 160px;
    min-height: 45px;
    padding: 11px 21px;
    font-size: 14px;
  }
}

/* ==================================================
   RESPONSIVE - SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  .why-cta {
    min-height: 185px;
    padding: 24px 15px;
  }

  .why-cta h2 {
    font-size: 27px;
  }

  .why-cta p {
    font-size: 13.5px;
    margin-bottom: 14px;
  }

  .why-cta-btn {
    width: auto;
    min-width: 155px;
    min-height: 44px;
  }

  .why-cta::before {
    width: 135px;
    height: 135px;
  }

  .why-cta::after {
    width: 110px;
    height: 110px;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .why-cta *,
  .why-cta *::before,
  .why-cta *::after {
    animation: none !important;
    transition: none !important;
  }

  .why-cta .why-reveal {
    opacity: 1;
    transform: none;
  }
}