@font-face {
  font-family: "Monster";
  src: url("../font/MontserratAlternates-Bold.otf");
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-Black.ttf");
  font-weight: 900;
}

.monster__font {
  font-family: "Monster", sans-serif;
}

.poppins__font {
  font-family: "Poppins", sans-serif;
}

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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.modern-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    135deg,
    #0f0f23 0%,
    #1a1a2e 25%,
    #16213e 50%,
    #0f3460 75%,
    #1e1e1e 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #4a4a4a, #2d2d2d);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #6b6b6b, #404040);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #545454, #353535);
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #5a5a5a, #3a3a3a);
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, #505050, #2f2f2f);
  bottom: 40%;
  right: 10%;
  animation-delay: -7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(10px) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

.container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  margin: 20px auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  background: linear-gradient(120deg, #6366f1 0%, #a855f7 100%);
  color: white;
  padding: 50px 20px;
  margin: -20px -20px 40px -20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2);
  /* border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px; */
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 150%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% -50%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 50%
    );
}

.header h1 {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.header .subtitle {
  font-size: 1.4em;
  margin-bottom: 20px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.header .promise {
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 25px;
  display: inline-block;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.shock-value {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(238, 90, 36, 0.15),
    0 8px 16px rgba(238, 90, 36, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
}

.shock-value h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.shock-value p {
  font-size: 1.2em;
  line-height: 1.7;
}

.pain-points {
  background: #fff8e1;
  border: 2px solid rgba(255, 183, 77, 0.3);
  padding: 30px;
  margin: 40px 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(255, 183, 77, 0.1),
    0 8px 16px rgba(255, 183, 77, 0.08), 0 4px 8px rgba(0, 0, 0, 0.03);
}

.pain-points h3 {
  color: #e65100;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: center;
}

.pain-points ul {
  list-style: none;
  columns: 2;
  column-gap: 30px;
}

.pain-points li {
  margin: 15px 0;
  padding-left: 35px;
  position: relative;
  break-inside: avoid;
}

.pain-points li:before {
  content: "😤";
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

.calculator-section {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 40px;
  margin: 50px 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2),
    0 8px 16px rgba(102, 126, 234, 0.15), 0 4px 8px rgba(0, 0, 0, 0.05);
}

.calculator-section h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator {
  background: rgba(255, 255, 255, 0.98);
  color: #333;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.calc-row {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.calc-row label {
  min-width: 150px;
  font-weight: bold;
  color: #667eea;
}

.calc-row input,
.calc-row select {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  flex: 1;
  width: 100%;
}

.calc-row input:focus,
.calc-row select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.calculate-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: 30px auto;
  transition: transform 0.3s ease;
}

.calculate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.results {
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  display: none;
}

.results h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.macro-result {
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.macro-result .label {
  font-weight: bold;
  font-size: 1.1em;
}

.macro-result .value {
  font-size: 1.3em;
  font-weight: bold;
}

.section {
  margin: 50px 0;
  padding: 40px;
  border: 3px solid #f1f2f6;
  border-radius: 15px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.section h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 20px 30px;
  margin: -40px -40px 30px -40px;
  font-size: 2em;
  border-radius: 12px 12px 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.step {
  background: #fff;
  border-left: 5px solid #667eea;
  padding: 25px;
  margin: 25px 0;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08),
    0 4px 8px rgba(102, 126, 234, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.12),
    0 6px 10px rgba(102, 126, 234, 0.08);
}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4em;
  margin-right: 20px;
  float: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step h4 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #333;
  margin-left: 70px;
}

.step p,
.step ul {
  margin-left: 70px;
  clear: both;
  font-size: 1.1em;
  line-height: 1.7;
}

.step ul {
  margin-top: 15px;
}

.step li {
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
}

.step li:before {
  content: "✓";
  color: #00b894;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.flexibility-scale {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
  color: white;
  padding: 40px;
  margin: 40px 0;
  border-radius: 15px;
}

.flexibility-scale h3 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.scale-levels {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.scale-level {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.scale-level h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.scale-level p {
  font-size: 0.95em;
  line-height: 1.5;
}

.myth-buster {
  background: #2d3436;
  color: white;
  padding: 40px;
  margin: 50px 0;
  border-radius: 15px;
}

.myth-buster h3 {
  color: #ff6b6b;
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 30px;
}

.myth {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  margin: 25px 0;
  border-radius: 10px;
  border-left: 5px solid #ff6b6b;
}

.myth h4 {
  color: #fdcb6e;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.myth p {
  font-size: 1.1em;
  line-height: 1.6;
}

.transformation-proof {
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: white;
  padding: 40px;
  text-align: center;
  margin: 50px 0;
  border-radius: 15px;
}

.transformation-proof h3 {
  font-size: 2.2em;
  margin-bottom: 25px;
}

.image-placeholder {
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  padding: 40px;
  text-align: center;
  margin: 25px 0;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 1.1em;
}

.damaging-admission {
  background: #e74c3c;
  color: white;
  padding: 35px;
  margin: 40px 0;
  border-radius: 12px;
  border: 3px solid #c0392b;
}

.damaging-admission h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
}

.damaging-admission p {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
}

.call-to-action {
  background: linear-gradient(135deg, #fd79a8, #fdcb6e);
  color: white;
  padding: 50px;
  text-align: center;
  margin: 50px 0;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.call-to-action h3 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.call-to-action p {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  background: #000;
  color: #fff;
  padding: 20px 40px;
  font-size: 1.3em;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.social-proof {
  background: #f8f9fa;
  padding: 30px;
  margin: 30px 0;
  border-radius: 24px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.08),
    0 8px 16px rgba(102, 126, 234, 0.06), 0 4px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease;
}

.social-proof:hover {
  transform: translateY(-2px);
}

/* Swiper Slider Styles */
.swiper {
  width: 100%;
  margin: 40px 0;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

/* Custom navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #667eea;
  background: rgba(255, 255, 255, 0.9);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
  transform: scale(0.7);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #667eea;
}

.social-proof .quote {
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.social-proof .author {
  font-weight: bold;
  color: #667eea;
  text-align: right;
}

@media (max-width: 768px) {
  .pain-points ul {
    columns: 1;
  }

  .scale-levels {
    flex-direction: column;
  }

  .calc-row {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-row label {
    min-width: auto;
  }

  .section {
    padding: 0px !important;
  }
  .section h2 {
    margin: 0 !important;
  }

  /* Step responsive styling */
  .step {
    padding: 18px;
    margin: 20px 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    margin-right: 15px;
  }

  .step h4 {
    font-size: 1.2em;
    margin-bottom: 12px;
    margin-left: 55px;
  }

  .step p,
  .step ul {
    margin-left: 55px;
    font-size: 1em;
    line-height: 1.6;
  }

  .step ul {
    margin-top: 12px;
  }

  .step li {
    margin: 6px 0;
    padding-left: 20px;
  }
}
.swiper-button-next {
  width: 45px !important;
  height: 45px !important;
}
.swiper-button-prev {
  width: 45px !important;
  height: 45px !important;
}
