@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,700&display=swap");
html {
  font-size: 0.625em;
}

body {
  background: rgb(73, 41, 108);
  background: linear-gradient(45deg, rgb(73, 41, 108) 0%, rgb(32, 35, 66) 100%);
  color: #fff;
  position: relative;
  z-index: 1;
}
body::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/img-noise-361x370.webp) repeat fixed;
  background-size: 361px;
  mix-blend-mode: overlay;
  opacity: 0.3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.toggle {
  display: none;
}

h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: bold;
}

h1 {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

h2 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

h3 {
  font-size: 2.4rem;
  line-height: 1.3;
}

h4 {
  font-size: 1.8rem;
  line-height: 1.4;
}

p,
a,
button,
ul li {
  font-size: 1.8rem;
}

a * {
  cursor: pointer;
}

p {
  line-height: 1.5;
}

header {
  background: #FFD101;
  padding: 20px;
}
header h3 {
  color: #000;
}
header .ds-container {
  align-items: center;
  justify-content: space-between;
}

.logo {
  flex-basis: 30%;
}
.logo a {
  text-decoration: none;
}

.nav {
  flex-basis: 70%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.main-menu {
  list-style: none;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
}
.main-menu li {
  display: inline-block;
  margin: 0 10px;
}
.main-menu li a {
  color: #000;
  text-decoration: none;
}

.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.ds-container-full {
  max-width: 1600px;
  width: 100%;
  display: flex;
}

.ds-col {
  flex: 1;
}

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

.hcenter {
  justify-content: center;
}

.vcenter {
  align-items: center;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}

section {
  padding: 60px 20px;
}

#hero {
  padding: 60px 20px;
  position: relative;
}
#hero::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/portfolio2.webp) repeat fixed center bottom;
  background-size: cover;
  mix-blend-mode: multiply;
  filter: grayscale(100);
  opacity: 0.05;
}
#hero h2 {
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.25;
}
#hero h1 {
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
}

.ds-hero-text,
.ds-hero-slide {
  flex-basis: 50%;
}

.ds-hero-text {
  padding: 20px 25px;
}

.ds-hero-slide {
  background: #fff;
  height: 55vh;
  overflow: hidden;
  background: url(../images/coverage.png) no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  border: 3px solid #FFD101;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.bold-up {
  font-weight: bold;
  text-transform: uppercase;
  color: #FFD101;
}

.highlight {
  font-weight: bold;
  color: #FFD101;
}

#pricing {
  background: rgba(0, 0, 0, 0.2);
  padding: 80px 20px;
}

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

.pricing-header h2 {
  color: #FFD101;
  margin-bottom: 15px;
}

.pricing-header p {
  font-size: 2rem;
  color: #fff;
}

.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.regular {
  border: 3px solid #FFD101;
}

.pricing-card.special {
  border: 3px solid #ff006e;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.special-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff006e;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(255, 0, 110, 0.3);
}

.pricing-card h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.6rem;
}

.price {
  margin: 20px 0;
}

.currency {
  font-size: 3rem;
  color: #333;
  vertical-align: top;
}

.amount {
  font-size: 6rem;
  font-weight: bold;
  color: #ff006e;
  line-height: 1;
}

.cents {
  font-size: 3rem;
  vertical-align: top;
}

.per {
  font-size: 1.6rem;
  color: #666;
  display: block;
  margin-top: 5px;
}

.savings {
  background: #ff006e;
  color: #fff;
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 15px 0;
  display: inline-block;
}

.pricing-card p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  padding: 0;
}

.pricing-card ul li {
  padding: 8px 0;
  color: #333;
  font-size: 1.6rem;
  position: relative;
  padding-left: 25px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff006e;
  font-weight: bold;
  font-size: 1.8rem;
}

.pricing-card .ds-btn {
  margin-top: 20px;
  width: 100%;
  display: block;
  text-align: center;
}

#pain {
  background: rgba(0, 0, 0, 0.2);
}

.pain-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pain-card {
  flex-basis: calc(25% - 20px);
  padding: 20px;
  margin: 10px;
  border-radius: 20px;
  border: 2px solid transparent;
  border-left: 2px solid #fff;
  transition: ease-in-out 0.4s;
}
.pain-card h3 {
  margin-bottom: 10px;
  color: #FFD101;
}
.pain-card:hover {
  background: #FFD101;
  border-left: 2px solid #ff006e;
}
.pain-card:hover h3 {
  color: #000;
}
.pain-card:hover p {
  color: #222;
}

.pain-cta .ds-btn {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

.pain-cta {
  background: rgba(0, 0, 0, 0.5);
}

.pain-cta:hover {
  background: #000;
}
.pain-cta:hover h3 {
  color: #FFD101;
}

.ds-btn-row {
  margin-top: 30px;
}

.ds-btn,
.outline {
  padding: 12px 32px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  transition: background ease-in-out 0.4s;
}
.ds-btn h4,
.outline h4 {
  font-size: 2.6rem;
  font-weight: bold;
}

.outline {
  color: #fff;
  margin-left: 10px;
  background: rgba(0, 0, 0, 0.05);
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.35), 0 8px 0 rgba(0, 0, 0, 0.3);
}
.outline:hover {
  background: #49296c;
}

.ds-btn {
  border: 2px solid #FFD101;
  background: rgb(255, 209, 1);
  background: linear-gradient(45deg, rgb(255, 209, 1) 0%, rgb(255, 224, 83) 50%, rgb(255, 209, 1) 100%);
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.35), 0 8px 0 rgba(0, 0, 0, 0.3);
}
.ds-btn:hover h4 {
  background: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-btn h4 {
  background: -webkit-linear-gradient(#890195, #4E0093);
  background: linear-gradient(#890195, #4E0093);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: ease-in-out 0.4s;
}

#promise,
#content {
  background: #f1f1f1;
  position: relative;
  z-index: 1;
}
#promise h2,
#content h2 {
  color: #111;
}
#promise h3,
#content h3 {
  color: #333;
}
#promise::after,
#content::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/img-noise-361x370.webp) repeat fixed;
  background-size: 361px;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.reviews {
  overflow: hidden;
  padding: 45px 0;
  position: relative;
  z-index: 1;
}
.reviews::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/review-bg.webp) repeat center center fixed;
  background-size: 1000px;
  mix-blend-mode: overlay;
  filter: grayscale(100) blur(2px);
  opacity: 0.1;
}
.reviews .review-slider {
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  flex-basis: 100%;
}
.reviews .review-slider .review-card {
  display: block;
  padding: 0 20px;
  margin: 10px;
  height: 400px;
  border-radius: 20px;
  padding: 0 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.reviews .review-slider .review-card img {
  width: 438px;
  background: rgba(255, 255, 255, 0.118);
  overflow: hidden;
  border-radius: 10px;
  padding: 0 20px;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.4);
}

.promise-wrap {
  flex-wrap: wrap;
  margin-top: 20px;
}

#promise .promise-card {
  flex-basis: calc(33.3333333333% - 20px);
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  text-align: center;
}
#promise .promise-card h3 {
  margin-bottom: 10px;
  color: #890195;
}
#promise .promise-card p {
  color: #222;
}

.promise-icon {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border-radius: 100%;
  background: #49296c;
  margin: 0 auto 20px;
  border: 3px solid #890195;
}
.promise-icon img {
  width: 64px;
  height: 64px;
}

#promise .ds-cta {
  margin-top: 40px;
  padding: 45px;
  max-width: 900px;
  border-radius: 20px;
  background: rgb(73, 41, 108);
  background: linear-gradient(45deg, rgb(73, 41, 108) 0%, rgb(32, 35, 66) 100%);
  color: #fff;
}
#promise .ds-cta h2,
#promise .ds-cta h3 {
  color: #fff;
}
#promise .ds-cta h4 {
  margin-bottom: 10px;
}
#promise .ds-cta .ds-btn {
  margin-top: 20px;
  margin-bottom: 20px;
}
#promise .ds-cta .ds-btn h4 {
  margin-bottom: 0;
}

footer {
  padding: 25px 20px;
  background: #1b1b1b;
  color: #999;
}
footer h4 {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 2rem;
  color: #f9f9f9;
}

.footer-links {
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 5px;
}
.footer-links li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #999;
}

.support-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4CAF50;
  border-radius: 50%;
  margin-left: 8px;
  animation: pulse 2s infinite;
  vertical-align: middle;
  flex-shrink: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

#page-header {
  padding: 20px 0 25px;
}
#page-header h3 {
  font-weight: 400;
}

#content h1,
#content h2 {
  color: #000;
}
#content h3 {
  color: #111;
}
#content h4 {
  color: #222;
}
#content p,
#content ul li,
#content a {
  color: #333;
}

.page-header {
  flex-basis: 100%;
  padding: 0 20px;
}

#content .package-wrap {
  flex-basis: calc(33.3333333333% - 20px);
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 10px;
}
#content .package-wrap h3 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px 0;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-top: -20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#content .package-wrap h3.standard {
  background: #333;
}
#content .package-wrap h3.premium {
  background: #49296c;
}
#content .package-wrap h3.premium-plus {
  background: #890195;
}
#content .package-wrap ul.package-features {
  margin-top: 10px;
  -webkit-padding-start: 40px;
  -moz-padding-start: 40px;
  list-style: none;
}
#content .package-wrap ul.package-features li {
  color: #222;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  position: relative;
}
#content .package-wrap ul.package-features li::before {
  display: block;
  width: 25px;
  height: 25px;
  content: "";
  background: url(../images/check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -40px;
  top: 0;
}
#content .package-wrap .price {
  font-size: 40px;
  text-align: center;
  margin-top: 10px;
  color: #000;
  margin-bottom: 15px;
}
#content .package-wrap .ds-btn {
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.35), 0 8px 0 #e1b600;
}
#content .package-wrap span.express {
  color: #000;
  background: #FFD101;
  position: absolute;
  right: 20px;
  top: -28px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

span.new {
  display: inline-block;
  padding: 3px 10px;
  font-size: 14px;
  border-radius: 5px;
  margin-left: 5px;
  vertical-align: middle;
  margin-top: -2px;
  background: #ff006e;
  color: #fff;
}

#content .package-wrap.express {
  margin-top: 40px;
}

/* Style the tab */
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab-wrap {
  margin-bottom: 20px;
}

.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 22px;
  transition: 0.3s;
  font-size: 17px;
  height: 50px;
  color: #000;
  background: #fff;
}

.tab button:first-child {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.tab button:last-child {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #890195;
  color: #fff;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #49296c;
  color: #fff;
}
foo
/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  animation: fadeEffect 1s;
}

.pricing-notices {
  flex-basis: 100%;
  padding: 0 20px;
}

/* Fade in tabs */
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#revamp-header {
  padding: 65px 0;
  position: relative;
}
#revamp-header::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/revamp-overlay.webp) repeat fixed center bottom;
  background-size: cover;
  mix-blend-mode: multiply;
  filter: grayscale(100);
  opacity: 0.05;
}
#revamp-header h2 {
  font-size: 28px;
}

.revamp-header {
  max-width: 900px;
}

.pricing {
  display: flex;
  margin: 30px auto 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  max-width: 800px;
}
.pricing .old-price {
  text-decoration: line-through;
  font-size: 26px;
  color: #f3f3f3;
  margin: 0 10px;
}
.pricing .sale-price {
  font-size: 32px;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
}
.pricing .ds-btn {
  margin: 0 10px;
}

.content-wrap {
  max-width: 960px;
}
.content-wrap h4 {
  font-size: 22px;
}
.content-wrap p {
  font-size: 20px;
}
.content-wrap .ds-btn {
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.35), 0 8px 0 #e1b600;
}

.about-me {
  display: flex;
  margin-top: 30px;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 30px;
}
.about-me .thumbnail {
  flex-basis: 156px;
  height: 156px;
  border-radius: 50%;
  margin-right: 10px;
}
.about-me .thumbnail img {
  border-radius: 50%;
  max-width: 100%;
}
.about-me .desc {
  flex-basis: calc(100% - 166px);
  padding: 0 20px;
  text-align: left;
}

#guarantee {
  background: #1b1b1b;
}

.guarantee-wrap,
.cta-in {
  max-width: 900px;
}

#cta {
  background: #f2f2f2;
}
#cta h2,
#cta h3 {
  color: #000;
}
#cta p {
  color: #333;
}
#cta .pricing {
  background: #49296c;
}

.step-heading {
  flex-basis: 100%;
  max-width: 900px;
}

.step-wrap {
  flex-basis: calc(33.3333333333% - 20px);
  margin: 10px;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
}
.step-wrap h3 {
  margin-bottom: 10px;
}
.step-wrap .step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}
.step-wrap .step-icon img {
  max-width: 100%;
}

@keyframes height {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 160px;
    opacity: 1;
  }
}
#case-study {
  position: relative;
  padding: 60px 20px;
}
#case-study h1{
    font-size: 4.5rem;
}
#case-study::after {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/case-study.webp) repeat fixed center bottom;
  background-size: cover;
  mix-blend-mode: multiply;
  filter: grayscale(100);
  opacity: 0.05;
}

.case-study-wrap {
  max-width: 800px;
}

.form-wrap {
  max-width: 700px;
  margin: 20px auto;
  flex-basis: 100%;
  color: #000 !important;
  background: #fff;
  border-radius: 10px;
}

#mc_embed_signup .indicates-required {
  margin: 0;
}

.ds-btn#form-btn {
  box-shadow: inset 1px 2px 2px rgba(0, 0, 0, 0.35), 0 8px 0 #e1b600;
  margin: 0 auto 30px;
  display: block;
}

.policy-wrap {
  max-width: 800px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
}
.policy-wrap ul {
  -webkit-padding-start: 20px;
  -moz-padding-start: 20px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.policy-wrap ul li {
  font-size: 15px;
  margin-bottom: 10px;
}
.policy-wrap h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 10px;
}
.policy-wrap h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.policy-wrap h4 {
  font-size: 18px;
}
.policy-wrap p {
  font-size: 15px;
  margin-bottom: 10px;
}
.footer-col{
    padding: 0 20px;
}

/* Responsive Utility Classes */
.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

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

@media screen and (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
    
    .show-mobile {
        display: block;
    }
    
    .text-center-mobile {
        text-align: center;
    }
}

/* Improved touch targets for mobile */
@media screen and (max-width: 767px) {
    .ds-btn,
    .outline {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-menu li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth transitions for all interactive elements */
.ds-btn,
.outline,
.pricing-card,
.pain-card,
.promise-card {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.ds-btn:focus,
.outline:focus,
.toggle:focus {
    outline: 2px solid #FFD101;
    outline-offset: 2px;
}

/* Improved container max-widths for different screen sizes */
@media screen and (min-width: 1200px) {
    .ds-container {
        max-width: 1200px;
    }
}

@media screen and (min-width: 1400px) {
    .ds-container {
        max-width: 1400px;
    }
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

.ds-img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Better spacing for mobile */
@media screen and (max-width: 767px) {
    .ds-btn-row {
        gap: 15px;
    }
    
    .pricing-cards {
        gap: 15px;
    }
    
    .pain-list {
        gap: 10px;
    }
    
    .promise-wrap {
        gap: 15px;
    }
}

/* Improved button spacing */
.ds-btn + .outline {
    margin-left: 0;
}

@media screen and (min-width: 768px) {
    .ds-btn + .outline {
        margin-left: 10px;
    }
}

/* Better text wrapping */
.highlight {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Improved accessibility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Large Mobile Styles */
@media screen and (max-width: 1024px) {
  .ds-container {
    padding: 0 20px;
  }
  
  section {
    padding: 50px 20px;
  }
  
  h1, #case-study h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  #hero h2 {
    font-size: 2.2rem;
  }
  
  .pricing-cards {
    gap: 20px;
  }
  
  .pricing-card {
    min-width: 280px;
    max-width: 400px;
  }
  
  .pain-card {
    flex-basis: calc(33.333% - 20px);
  }
  
  #promise .promise-card {
    flex-basis: calc(50% - 20px);
  }
}

/* Tablet Styles */
@media screen and (max-width: 992px) {
  .ds-hero-text {
    padding: 25px;
    text-align: center;
  }
  .ds-hero-slide {
    height: 40vh;
  }
  h1, #case-study h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.8rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  #hero h2 {
    font-size: 2.4rem;
  }
  #hero .ds-btn,
  #hero .outline {
    width: 100%;
    text-align: center;
  }
  section {
    padding: 25px 20px;
  }
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    min-width: 100%;
    max-width: 500px;
  }
  
  .pain-card {
    flex-basis: calc(50% - 20px);
  }
  .ds-pain-in {
    text-align: center;
  }
  #content .ds-container {
    flex-wrap: wrap;
  }
  #content .package-wrap {
    flex-basis: 100%;
  }
  #revamp-header {
    padding: 45px 20px;
  }
  #revamp-header h2 {
    font-size: 20px;
  }
  
  /* Promise cards responsive */
  #promise .promise-card {
    flex-basis: calc(50% - 20px);
  }
  
  /* Review cards responsive */
  .reviews .review-slider .review-card {
    height: 350px;
  }
  .reviews .review-slider .review-card img {
    width: 350px;
  }
  
  /* Special Badge Tablet */
  .special-badge {
    font-size: 1.3rem;
    padding: 7px 18px;
    top: -13px;
  }
}
/* Mobile Styles */
@media screen and (max-width: 767px) {
  /* Header and Navigation */
  header {
    padding: 10px;
    position: relative;
  }
  
  .logo {
    flex-basis: auto;
  }
  
  .toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: 44px;
    height: 35px;
    padding: 8px;
    border-radius: 4px;
    transition: ease-in-out 0.4s;
    cursor: pointer;
  }
  .toggle .line {
    width: 100%;
    content: "";
    display: block;
    border-radius: 2px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
  }
  .toggle.toggle-active {
    background: #000;
  }
  .toggle.toggle-active .line {
    background-color: #fff;
  }
  .toggle.toggle-active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .toggle.toggle-active .line:nth-child(2) {
    opacity: 0;
  }
  .toggle.toggle-active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav {
    display: none;
  }
  
  .nav.nav-active {
    position: absolute;
    top: 100%;
    width: 100%;
    display: block;
    left: 0;
    right: 0;
    padding: 20px 5px;
    background: #FFD101;
    z-index: 999;
    animation: height 0.2s forwards ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  }
  .nav.nav-active ul li {
    display: block;
    padding: 10px;
    text-align: center;
  }
  .nav.nav-active ul li a {
    padding: 10px;
    display: block;
    font-size: 1.6rem;
  }
  
  /* Typography */
  h1, #case-study h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  h3 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  h4 {
    font-size: 1.6rem;
  }
  p, a, button, ul li {
    font-size: 1.6rem;
  }
  
  /* Layout */
  .ds-container,
  .ds-container-full {
    flex-wrap: wrap;
    padding: 0 15px;
  }
  
  section {
    padding: 30px 15px;
  }
  section,
  section::after {
    background-attachment: scroll !important;
  }
  
  /* Hero Section */
  .ds-hero-text,
  .ds-hero-slide {
    flex-basis: 100%;
  }
  .ds-hero-text {
    padding: 25px 0;
    text-align: center;
  }
  .ds-hero-slide {
    height: 30vh;
    margin-top: 20px;
  }
  #hero h2 {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  #hero {
    padding: 20px 15px;
  }
  #hero .ds-btn-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  #hero .ds-btn,
  #hero .outline {
    margin: 0 !important;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Pricing Section */
  #pricing {
    padding: 40px 15px;
  }
  
  .pricing-cards {
    flex-direction: column;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 20px;
    margin: 0;
    min-width: 100%;
    max-width: 100%;
  }
  
  .amount {
    font-size: 4rem;
  }
  
  .cents {
    font-size: 2rem;
  }
  
  .currency {
    font-size: 2.2rem;
  }
  
  .per {
    font-size: 1.3rem;
  }
  
  /* Pain Cards */
  .pain-card {
    flex-basis: 100%;
    margin: 10px 0;
  }
  
  /* Promise Cards */
  #promise .promise-card {
    flex-basis: 100%;
    margin: 15px 0;
  }
  
  /* Special Badge Mobile */
  .special-badge {
    font-size: 1.2rem;
    padding: 6px 16px;
    top: -12px;
    letter-spacing: 0.5px;
  }
  
  .promise-icon {
    width: 80px;
    height: 80px;
  }
  .promise-icon img {
    width: 40px;
    height: 40px;
  }
  
  /* Reviews */
  .reviews .review-slider .review-card {
    height: 250px;
    margin: 5px;
  }
  .reviews .review-slider .review-card img {
    width: 280px;
    max-width: 90%;
  }
  
  /* Footer */
  .footer-col {
    flex-basis: 100%;
    padding: 20px 0;
    text-align: center;
  }
  footer .ds-container {
    flex-direction: column;
  }
  
  /* Buttons */
  .ds-btn h4,
  .outline h4 {
    font-size: 1.8rem;
  }
  
  /* Utility classes */
  span.new {
    padding: 2px 4px;
    font-size: 12px;
    margin-left: 4px;
  }
  
  /* Tab styles */
  .tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tab button:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .tab button:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .tab button {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 15px;
    transition: 0.3s;
    font-size: 15px;
    height: 50px;
    background: #fff;
  }
  
  /* Content sections */
  #content {
    padding: 20px 0;
  }
  #revamp-header,
  #case-study {
    padding: 35px 15px;
  }
  #revamp-header h1,
  #case-study h1 {
    font-size: 2.5rem;
  }
  #revamp-header h2,
  #case-study h2 {
    font-size: 1.8rem;
  }
  #revamp-header h3,
  #case-study h3 {
    font-size: 1.6rem;
  }
  
  /* Pricing display */
  .pricing {
    flex-wrap: wrap;
    padding: 10px 20px 30px;
    border-radius: 20px;
  }
  .pricing .old-price,
  .pricing .sale-price {
    margin: 10px;
  }
  .pricing .old-price {
    font-size: 20px;
  }
  .pricing .sale-price {
    font-size: 26px;
  }
  .pricing .ds-btn {
    margin-top: 10px;
  }
  
  /* Content wrap */
  .content-wrap {
    padding: 20px;
  }
  .about-me {
    flex-direction: column;
    padding: 20px;
  }
  .about-me .thumbnail {
    flex-basis: 156px;
    margin: 0 auto 20px;
  }
  .about-me .thumbnail img {
    width: 156px;
  }
  .about-me .desc {
    padding: 0;
    text-align: center;
  }
  .step-wrap {
    flex-basis: 100%;
  }
}

/* Extra Small Mobile Styles */
@media screen and (max-width: 480px) {
  .ds-container {
    padding: 0 10px;
  }
  
  section {
    padding: 20px 10px;
  }
  
  h1, #case-study h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  h4 {
    font-size: 1.4rem;
  }
  
  p, a, button, ul li {
    font-size: 1.4rem;
  }
  
  #hero h2 {
    font-size: 1.6rem;
  }
  
  .pricing-card {
    padding: 15px;
  }
  
  .amount {
    font-size: 3.5rem;
  }
  
  .cents {
    font-size: 1.8rem;
  }
  
  .currency {
    font-size: 2rem;
  }
  
  .per {
    font-size: 1.2rem;
  }
  
  .ds-btn h4,
  .outline h4 {
    font-size: 1.6rem;
  }
  
  .reviews .review-slider .review-card {
    height: 200px;
  }
  
  .reviews .review-slider .review-card img {
    width: 250px;
  }
  
  .promise-icon {
    width: 60px;
    height: 60px;
  }
  
  .promise-icon img {
    width: 30px;
    height: 30px;
  }
  
  .footer-col {
    padding: 15px 0;
  }
  
  .footer-col h4 {
    font-size: 1.6rem;
  }
  
  .footer-links li a {
    font-size: 1.3rem;
  }
  
  /* Special Badge Extra Small Mobile */
  .special-badge {
    font-size: 1rem;
    padding: 4px 12px;
    top: -10px;
    letter-spacing: 0.3px;
    border-radius: 15px;
  }
}

/* Landscape Mobile Styles */
@media screen and (max-width: 767px) and (orientation: landscape) {
  #hero {
    padding: 15px;
  }
  
  .ds-hero-slide {
    height: 25vh;
  }
  
  section {
    padding: 25px 15px;
  }
  
  .reviews .review-slider .review-card {
    height: 200px;
  }
  
  .reviews .review-slider .review-card img {
    width: 300px;
  }
}

/* Print Styles */
@media print {
  .toggle,
  .nav,
  .ds-btn,
  .outline {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  section {
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
}/*# sourceMappingURL=style.css.map */