body {
  min-height: 100vh;
  margin: 0;
  color: #e3e7eb;
  font-family: 'Outfit', Arial, sans-serif;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background: #fff; /* fallback, for testimonials section */
  overflow-x: hidden;
}

.main-bg-gradient {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(
      ellipse 95% 48% at 75% 0%,
      rgba(160,190,255,0.20) 0%,
      rgba(80,120,200,0.10) 60%,
      rgba(0,0,0,0.00) 100%
    ),
    radial-gradient(
      ellipse 116% 90% at 5% 100%,
      rgba(100,140,200,0.17) 0%,
      rgba(40,60,100,0.07) 56%,
      rgba(0,0,0,0.00) 100%
    ),
    #000;
  z-index: 0;
}

.top-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: transparent; /* Let the main gradient show through */
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(120,140,170,0.10);
}

/* Main wrapper to center everything */
.main-wrapper {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-container,
.steps-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px; /* Add this line for space below */
}

.top-logo {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #f0f2f8;
  opacity: 0.82;
  text-transform: uppercase;
  user-select: none;
  line-height: 52px;
  text-align: center;
}

.top-wrapper.scrolled .top-logo {
  color: #21243a;  /* or use #16181f for an even darker shade */
  opacity: 0.92;
}

.main-container {
  max-width: 600px;
  margin: 48px auto 0 auto;
  text-align: center;
}

.agency-name {
  font-size: 1.07rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #b3bac6;
  margin-bottom: 22px;
  margin-top: 35px; /* Add this line for top margin */
  text-align: center;
  font-family: 'Outfit', Arial, sans-serif;
  opacity: 0.82;
  text-transform: uppercase;
  user-select: none;
  outline: none;
  pointer-events: none;
  text-decoration: none;
}


.main-headline {
  font-size: 2.73rem;
  font-weight: 200;
  letter-spacing: 0.01em;
  line-height: 1.14;
  color: #eef1f5;
  margin: 0;
  text-align: center;
  user-select: none;
  outline: none;
  pointer-events: none;
  text-decoration: none;
}

/* Phone image and button wrapper */
.phone-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.phone-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 48px rgba(0,0,0,0.32));
  border-radius: 36px;
  pointer-events: none !important;
  user-select: none !important;
  outline: none !important;
}

.glass-button {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  padding: 15px 44px;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 400;
  color: #fafdff;
  letter-spacing: 0.13em;
  background: rgba(255,255,255,0.10);
  border-radius: 2em;
  border: 1.5px solid rgba(255,255,255,0.62);
  box-shadow: 0 4px 20px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(22px) saturate(1.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.14);
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition:
    background 0.16s,
    border 0.18s,
    color 0.17s,
    box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 2;
  text-decoration: none;
}

.glass-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.33s;
}

.glass-button > * {
  position: relative;
  z-index: 2;
}

.glass-button:hover {
  background: rgba(255,255,255,0.18);
  color: #fafdff;
  border-color: rgba(255,255,255,0.82);
  box-shadow:
    0 2px 12px 0 rgba(0,0,0,0.13),
    0 0 32px 10px rgba(255,255,255,0.125),
    0 0 64px 32px rgba(255,255,255,0.07);
}

.glass-button:hover::before {
  opacity: 1;
}

/* STEPS SECTION */
.steps-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0 40px 0;
  width: 100%;
  gap: 0;
}

.step-row {
  display: flex;
  align-items: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 132px;
  min-width: 90px;
}

.step-icon i,
.step-icon svg {
  width: 76px !important;
  height: 76px !important;
  stroke-width: 0.5 !important;
  stroke: #b3bac6 !important;
  opacity: 1;
  display: block;
  margin-bottom: 7px;    /* space below icon, above title */
}

.divider-line-horizontal {
  width: 44px;
  height: 1.3px;
  background: linear-gradient(90deg, #8c8c8c 0%, #232323 100%);
  opacity: 0.19;
  border-radius: 1px;
  margin: 0 0;
}

.step-num {
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  color: #e4e4e4;
  font-weight: 400;
  margin-bottom: 8px;    /* space below number, above icon */
  margin-top: 0;
}
.step-title {
  font-size: 0.98rem;
  color: #eaeaea;
  opacity: 0.86;
  letter-spacing: 0.01em;
  font-weight: 300;
  margin-bottom: 0;
  text-align: center;
  margin-top: 0;
  white-space: nowrap;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.how-it-works-title {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: 0.21em;
  color: #e4e4e4;
  opacity: 0.84;
  text-transform: uppercase;
  margin: 70px 0 10px 0;
  font-family: 'Outfit', Arial, sans-serif;
  line-height: 1.1;
}

.how-it-works-subtitle {
  text-align: center;
  color: #b3bac6;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.86;
  margin-bottom: 0px;   /* smaller gap */
  margin-top: 0;
  line-height: 1.5;
  font-family: 'Outfit', Arial, sans-serif;
}

.testimonials-bg {
  width: 100%;
  max-width: 1100px;
  padding: 32px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.testimonials-title {
  text-align: center;
  font-family: 'Outfit', Arial, sans-serif;
  color: #191919;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0;        /* Remove space above */
  margin-bottom: 36px;  /* Keep/balance space below */
}


.testimonials-list.no-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.testimonial-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.testimonial-block {
  flex: 1 1 0;
  min-width: 200px;
  max-width: 340px;
  padding: 0 18px;
  text-align: center;
  background: none;
  box-shadow: none;
}

.testimonial-row-divider {
  width: 100%; /* Much wider, adjust as needed */
  height: 1.2px;
  background: linear-gradient(
    90deg,
    rgba(180,180,190,0) 0%,
    rgba(120,120,130,0.15) 22%,
    rgba(100,100,110,0.36) 50%,
    rgba(120,120,130,0.15) 78%,
    rgba(180,180,190,0) 100%
  );
  opacity: 0.25;
  margin: 28px auto 28px auto;
  border-radius: 1.5px;
  pointer-events: none;
}



.testimonial-stars {
  color: #ffcb22;
  font-size: 1.12rem;  /* Was 2.8rem, now 2.5x smaller */
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  font-family: inherit;
  font-weight: 400;
  opacity: 0.93;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(220,200,60,0.07);
  background: linear-gradient(90deg, #ffe45c 30%, #ffcc33 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.testimonial-text {
  color: #17181a;
  font-size: 1.1rem;
  font-weight: 350;
  line-height: 1.57;
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: 0.01em;
  opacity: 0.93;
  font-family: 'Outfit', Arial, sans-serif;
  text-wrap: pretty;
}
.testimonials-caption {
  color: #8a8a99;
  text-align: center;
  font-size: 0.97rem;
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 400;
  margin: -20px 0 30px 0;   /* Negative top margin pulls it closer to the title */
  letter-spacing: 0.02em;
  line-height: 1.5;
  opacity: 0.83;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-name {
  font-size: 1.02rem;
  font-weight: 500;
  color: #b3bac6;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.87;
  margin: 0;
  font-family: 'Outfit', Arial, sans-serif;
}


.section-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 40px auto;  /* <-- margin-bottom of 40px */
  background: rgba(255,255,255,0.87);
  border-left: 1.3px solid #eaeaea;
  border-right: 1.3px solid #eaeaea;
  border-bottom: 1.3px solid #eaeaea;
  border-top: none;
  border-radius: 0 0 24px 24px;
  padding: 48px 36px 36px 36px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 30px 0 rgba(120,140,150,0.06);
  backdrop-filter: blur(2px);
}


.section-container + .section-container {
  border-top: none;
  border-radius: 0 0 24px 24px;
  margin-top: -1.3px; /* borders connect perfectly */
}

.main-reassurance {
  color: #b3bac6;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.04em;
  opacity: 0.74;
  margin: 28px 0 0 0; /* Top margin increased for more separation */
  line-height: 1.55;
  font-family: 'Outfit', Arial, sans-serif;
}
.main-reassurance strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-style: normal;
}

body, .main-container, .agency-name, .main-headline, .phone-image {
  -webkit-user-modify: read-only !important;
  user-modify: read-only !important;
  caret-color: transparent !important;
  user-select: none !important;
  pointer-events: auto;
}

.packages-section {
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 80px 0;
}
.packages-title {
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.14em;
  color: #101010;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 36px 0;
  font-family: 'Outfit', Arial, sans-serif;
  opacity: 0.86;
}
.packages-switch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 28px;
}
.packages-switch {
  background: #f6f7fa;
  border-radius: 30px;
  box-shadow: 0 1px 6px rgba(180,200,220,0.04);
  padding: 4px 6px;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ececec;
}
.switch-btn, .switch-btn2 {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #9098b8;
  padding: 6px 24px;
  border-radius: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin: 0 1px;
  outline: none;
  transition: background 0.13s, color 0.13s;
  letter-spacing: 0.02em;
}
.switch-btn.active, .switch-btn2.active {
  background: #fff;
  color: #16181f;
  box-shadow: 0 2px 12px rgba(160,200,255,0.04);
  font-weight: 600;
}
.section-container.packages-container {
  margin-top: 0;
  margin-bottom: 0;
  padding: 38px 22px 32px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.84);
  border: 1.2px solid #eaeaea;
  max-width: 460px;
  min-width: 260px;
  box-shadow: 0 6px 32px 0 rgba(120,140,160,0.07);
  align-items: center;
}
.package-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.package-label {
  font-size: 1.13rem;
  font-weight: 400;
  color: #88a4bb;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Outfit', Arial, sans-serif;
}
.package-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20202d;
  letter-spacing: 0.03em;
  margin-bottom: 7px;
  margin-top: 0;
  font-family: 'Outfit', Arial, sans-serif;
}
.package-desc {
  font-size: 1.11rem;
  color: #585a68;
  font-weight: 400;
  margin-bottom: 13px;
  font-family: 'Outfit', Arial, sans-serif;
  text-align: center;
}
.package-note {
  color: #b3bac6;
  font-size: 0.99rem;
  font-style: italic;
}
.package-videos {
  color: #1a9742;
  font-size: 1.07rem;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Outfit', Arial, sans-serif;
}
.package-caption {
  font-size: 0.99rem;
  color: #7d8b9c;
  text-align: center;
  line-height: 1.55;
  opacity: 0.87;
}
.package-longdesc {
  font-size: 1.05rem;
  color: #727a8d;
  margin: 16px 0 28px 0;
  text-align: center;
  line-height: 1.7;
  font-family: 'Outfit', Arial, sans-serif;
  opacity: 0.87;
}

.package-cta-btn {
  display: inline-block;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 500;
  border-radius: 32px;
  border: 1.7px solid rgba(255,255,255,0.46);
  box-shadow: 0 3px 18px rgba(40,70,200,0.08);
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition:
    color 0.18s,
    box-shadow 0.28s,
    border 0.22s;
  font-family: 'Outfit', Arial, sans-serif;
  text-decoration: none;
  padding: 14px 48px;
  margin: 0 auto;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background: linear-gradient(90deg, #22264a 0%, #4676ef 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  /* Animate background position! */
  transition:
    background-position 0.46s cubic-bezier(.45,.05,.22,1),
    color 0.18s,
    box-shadow 0.28s,
    border 0.22s;
}

.package-cta-btn:hover {
  background-position: 100% 0%;
  /* Dramatic shift on hover! */
  color: #fff;
  box-shadow: 0 10px 40px rgba(60,140,255,0.20), 0 1.5px 8px rgba(255,255,255,0.11) inset;
  border: 2.3px solid rgba(255,255,255,0.66);
}

.package-longdesc > .package-important {
  margin-top: 18px;
  font-size: 1.07rem;
  color: #7c8b9d;   /* matches your subtle blue-grey, NOT red */
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  opacity: 0.92;
  text-align: center;
}
.package-longdesc > .package-important strong {
  color: #7c8b9d;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  margin-right: 3px;
  font-style: normal;
  text-transform: uppercase;
}
.package-important-label {
  margin-top: 18px;
  font-size: 0.96rem;
  color: #22264a;
  font-weight: 700;
  letter-spacing: 0.13em;
  opacity: 0.82;
  text-transform: uppercase;
  font-family: 'Outfit', Arial, sans-serif;
  margin-bottom: 4px;
  text-align: center;
  font-style: normal;
}

.package-important-detail {
  color: #7c8b9d;
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
  opacity: 0.92;
  text-align: center;
  font-style: normal;
}
.manual-italic {
  font-style: italic;
  color: inherit;
  opacity: 0.95;
}

.why-social-gradient-section {
  width: 100vw;
  min-height: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    radial-gradient(
      ellipse 95% 48% at 75% 0%,
      rgba(160,190,255,0.20) 0%,
      rgba(80,120,200,0.10) 60%,
      rgba(0,0,0,0.00) 100%
    ),
    radial-gradient(
      ellipse 116% 90% at 5% 100%,
      rgba(100,140,200,0.17) 0%,
      rgba(40,60,100,0.07) 56%,
      rgba(0,0,0,0.00) 100%
    ),
    #101217;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.why-social-content {
  width: 100%;
  max-width: 900px;
  margin: 65px auto 0 auto;
  padding: 0 0 54px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-social-title {
  text-align: center;
  font-size: 1.52rem;
  color: #e3e7eb;
  font-family: 'Outfit', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 32px;
}

.why-social-lead {
  text-align: center;
  color: #f5f6fa;
  font-size: 1.13rem;
  font-weight: 350;
  max-width: 580px;
  margin: 0 auto 32px auto;
  line-height: 1.64;
  letter-spacing: 0.01em;
  opacity: 0.93;
  font-family: 'Outfit', Arial, sans-serif;
}

.why-social-inline-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 800px;
}

.why-social-inline-list span {
  color: #fff;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 400;
  background: rgba(255,255,255,0.06);
  border-radius: 11px;
  padding: 9px 22px;
  margin: 0;
  opacity: 0.97;
  line-height: 1.52;
  text-align: center;
  letter-spacing: 0.01em;
  transition: background 0.14s;
}
.why-social-inline-list span:hover {
  background: rgba(160,190,255,0.19);
  color: #e6f4ff;
}


.free-trial-section {
  width: 100vw;
  background: #fff;
  padding: 0;
  margin: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38vh;
}

.free-trial-container {
  max-width: 480px;
  margin: 48px auto 64px auto;
  background: rgba(255,255,255,0.82);
  border-radius: 30px;
  box-shadow: 0 6px 32px 0 rgba(120,140,160,0.08);
  padding: 44px 28px 36px 28px;
  border: 1.2px solid #eaeaea;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.free-trial-title {
  font-size: 2rem;
  font-weight: 700;
  color: #23243a;
  font-family: 'Outfit', Arial, sans-serif;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.04em;
}

.free-trial-lead {
  color: #6c7a94;
  font-size: 1.07rem;
  font-family: 'Outfit', Arial, sans-serif;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 26px;
  opacity: 0.93;
}

.free-trial-cta {
  display: inline-block;
  background: linear-gradient(90deg, #22264a 60%, #4676ef 100%);
  color: #fff;
  font-size: 1.14rem;
  font-weight: 500;
  border-radius: 32px;
  border: 1.7px solid rgba(255,255,255,0.46);
  box-shadow: 0 3px 18px rgba(40,70,200,0.08);
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  padding: 14px 48px;
  margin-top: 8px;
  transition:
    background 0.45s cubic-bezier(.45,.05,.22,1),
    color 0.18s,
    box-shadow 0.28s,
    border 0.27s;
  position: relative;
  overflow: hidden;
  z-index: 2;
  background-size: 200% 100%;
  background-position: 0% 0%;
}

.free-trial-cta:hover {
  background-position: 100% 0%;
  color: #fff;
  box-shadow: 0 10px 40px rgba(60,140,255,0.18), 0 1.5px 8px rgba(255,255,255,0.11) inset;
  border: 2.3px solid rgba(255,255,255,0.66);
}


.footer-gradient {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background:
    radial-gradient(
      ellipse 95% 48% at 75% 0%,
      rgba(160,190,255,0.25) 0%,
      rgba(80,120,200,0.10) 60%,
      rgba(0,0,0,0.00) 100%
    ),
    radial-gradient(
      ellipse 116% 90% at 5% 100%,
      rgba(100,140,200,0.15) 0%,
      rgba(40,60,100,0.08) 56%,
      rgba(0,0,0,0.00) 100%
    ),
    #101217;
  overflow: hidden;
  padding: 0;
  z-index: 10;
}

.footer-animated-lines {
  width: 100vw;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.footer-lines-svg {
  width: 200vw; /* Ensure enough width for loop */
  height: 120px;
  display: block;
}

.footer-wave-loop {
  animation: footer-wave-loop-move 10s linear infinite;
}

@keyframes footer-wave-loop-move {
  from { transform: translateX(0); }
  to   { transform: translateX(-1600px); }
}

.footer-line {
  fill: none;
  stroke: rgba(255,255,255,0.13);
  stroke-width: 3.5;
  stroke-linecap: round;
  filter: blur(0.3px);
}

.footer-line.delay1 {
  stroke: rgba(255,255,255,0.10);
  stroke-width: 2.2;
}
.footer-line.delay2 {
  stroke: rgba(255,255,255,0.08);
  stroke-width: 2.6;
}

.footer-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 76px 0 38px 0;
}

.footer-logo {
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: 0.23em;
  color: #fff;
  opacity: 0.94;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.97rem;
  color: #d1d6e7;
  opacity: 0.64;
  margin-top: 14px;
  text-align: center;
  font-family: 'Outfit', Arial, sans-serif;
}

@media (max-width: 900px) {
  .main-wrapper {
    width: 100vw;
    max-width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .section-container,
  .testimonials-bg,
  .free-trial-container,
  .packages-container,
  .why-social-content {
    width: 100vw;
    max-width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
.main-wrapper {
  width: 100vw;
  max-width: 100vw;
  padding-left: 6vw;
  padding-right: 6vw;
  box-sizing: border-box;
  margin: 0 auto;
  overflow-x: hidden;
}
.main-container {
  margin-top: 56px;            /* keeps content below fixed header */
  max-width: 100vw;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;         /* ensures horizontal centering of all content */
  justify-content: flex-start;
  margin-left: auto;
  margin-right: auto;
}
  .agency-name,
  .main-headline,
  .main-reassurance {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .agency-name {
    font-size: 0.96rem;
    margin-bottom: 9px;
    margin-top: 16px;
  }
  .main-headline {
    font-size: 1.7rem;
    line-height: 1.22;
  }
  .main-reassurance {
    font-size: 0.79rem;
    margin-top: 13px;
  }
  .phone-image-wrapper,
  .phone-image {
    max-width: 90vw;
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
  }
  .glass-button,
  .package-cta-btn,
  .free-trial-cta {
    font-size: 1.07rem;
    padding: 14px 0.5em;
    width: 88vw;
    max-width: 340px;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }
  .testimonials-title {
    margin-bottom: 30px;
  }
  .how-it-works-title,
  .testimonials-title,
  .packages-title {
    font-size: 2.23rem !important;
    margin-bottom: 14px;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: center;
    font-weight: 700;
    box-sizing: border-box;
  }
  .how-it-works-subtitle {
    font-size: 0.89rem;
    margin-bottom: 6px;
    width: 100%;
    text-align: center;
  }
  .section-container,
  .testimonials-bg,
  .free-trial-container,
  .packages-container,
  .why-social-content {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    padding-left: 6vw;
    padding-right: 6vw;
    box-sizing: border-box;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-icon i,
  .step-icon svg {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 2px;
  }
  .step-title {
    font-size: 0.82rem;
    line-height: 1.13;
    white-space: normal;
    text-overflow: clip;
  }
  .divider-line-horizontal {
    width: 1.3px;
    height: 20px;
    margin: 0 auto;
  }
  .testimonial-row {
    flex-direction: column;
    gap: 0;
    width: 96vw;
    max-width: 96vw;
  }
  .testimonial-block {
    width: 94vw;
    max-width: 94vw;
    min-width: 0;
    padding: 10px 0 7px 0;
    font-size: 0.98rem;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-stars {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .testimonial-row-divider {
    width: 67vw;
    min-width: 34px;
    max-width: 99vw;
    margin: 12px auto;
  }
  .free-trial-title,
  .why-social-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
  }
  .free-trial-lead {
    font-size: 0.94rem;
    margin-bottom: 13px;
    width: 100%;
    text-align: center;
  }
  .packages-switch-row {
    width: 100vw;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    margin: 0 auto 12px auto;
    padding: 0;
    box-sizing: border-box;
  }
  .packages-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0;
    box-sizing: border-box;
  }
  .switch-btn, .switch-btn2 {
    width: 45vw;
    min-width: 110px;
    max-width: 190px;
    margin: 0 4px;
    text-align: center;
    padding: 10px 0;
    font-size: 1.04rem;
    border-radius: 18px;
    box-sizing: border-box;
  }
  .packages-container,
  .free-trial-container {
    padding: 20px 6vw 14px 6vw;
    min-width: 0;
    border-radius: 10px;
    width: 100vw;
    max-width: 100vw;
  }
  .why-social-gradient-section {
    margin: 34px 0 0 0;
    padding-top: 22px;
    padding-bottom: 26px;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
  .steps-section {
  margin: 30px 0 40px 0;
}

  .why-social-content {
    margin: 16px auto 0 auto;
    padding: 0 0 24px 0;
    max-width: 95vw;
    width: 95vw;
  }
  .why-social-lead {
    font-size: 0.85rem;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
  }
    .why-social-inline-list {
        gap: 13px;
        max-width: 90%;
        width: 90%;
        align-items: center;
        margin-top: 17px;
        margin-bottom: 7px;
    }
  .why-social-inline-list span {
    font-size: 0.97rem;
    width: 95vw;
    padding: 11px 2vw;
    text-align: center;
    border-radius: 9px;
    margin: 0 auto;
  }
  .footer-gradient {
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
  .footer-content {
    padding: 22px 0 6px 0;
    width: 100vw;
  }
  .footer-logo {
    font-size: 0.93rem;
    text-align: center;
    width: 100vw;
  }
  .footer-copy {
    font-size: 0.70rem;
    margin-top: 0px;
    text-align: center;
    width: 100vw;
  }
  .top-wrapper {
    width: 100vw;
    min-width: 100vw;
    left: 0;
    margin-left: 0;
    justify-content: center;
    padding: 0;
  }
  .top-logo {
    width: 100vw;
    text-align: center;
    margin: 0 auto;
    left: 0;
    transform: none;
    font-size: 1.13rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

