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

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: #102016;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

/* HEADER */
.astroHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 12px 40px rgba(15, 118, 64, 0.08);
}

.astroHeader__inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.astroLogo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #15803d;
}

.astroLogo span {
  display: block;
  font-size: 11px;
  color: #16a34a;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.astroNav {
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #355241;
  font-weight: 600;
}

.astroNav a {
  transition: .25s ease;
}

.astroNav a:hover {
  color: #16a34a;
}

.astroBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.26);
  transition: .35s ease;
}

.astroBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(34, 197, 94, 0.36);
}

.astroBtn--outline {
  background: #ffffff;
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, .24);
  box-shadow: 0 12px 35px rgba(15, 118, 64, .08);
}

/* HERO */
.astroHero {
  min-height: 100vh;
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 197, 94, .16), transparent 32%),
    radial-gradient(circle at 12% 25%, rgba(187, 247, 208, .65), transparent 34%),
    linear-gradient(135deg, #ffffff, #f0fdf4 55%, #ffffff);
}

.astroHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, .055) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, #000, transparent);
  pointer-events: none;
}

.astroHero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}

.astroTag {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid rgba(22, 163, 74, .22);
  border-radius: 999px;
  color: #15803d;
  background: rgba(240, 253, 244, .9);
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
}

.astroHero h1 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 26px;
  color: #0f2417;
}

.astroHero h1 span {
  color: #16a34a;
  text-shadow: 0 0 35px rgba(34, 197, 94, .18);
}

.astroHero p {
  max-width: 620px;
  color: #4b6354;
  font-size: 18px;
  margin-bottom: 34px;
}

.astroHero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.astroHero__visual {
  position: relative;
}

.astroOrb {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffffff, #bbf7d0 26%, #22c55e 58%, #14532d);
  box-shadow:
    0 0 90px rgba(34, 197, 94, .32),
    inset 0 0 70px rgba(255, 255, 255, .4);
  position: relative;
}

.astroOrb::before,
.astroOrb::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(22, 163, 74, .28);
}

.astroOrb::after {
  inset: -11%;
  border-style: dashed;
  animation: rotateRing 24s linear infinite;
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

.astroFloatCard {
  position: absolute;
  left: -35px;
  bottom: 40px;
  width: 260px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(22, 163, 74, .16);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 70px rgba(15, 118, 64, .16);
}

.astroFloatCard strong {
  display: block;
  color: #16a34a;
  font-size: 30px;
}

.astroFloatCard span {
  color: #4b6354;
  font-size: 14px;
}

/* COMMON */
section {
  padding: 100px 0;
}

.sectionHead {
  max-width: 760px;
  margin-bottom: 56px;
}

.sectionHead.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sectionHead small {
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.sectionHead h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 14px 0 18px;
  letter-spacing: -2px;
  color: #0f2417;
}

.sectionHead p {
  color: #5f7567;
  font-size: 17px;
}

/* SERVICES */
.astroServices {
  background: #ffffff;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.serviceCard {
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff, #f0fdf4);
  border: 1px solid rgba(22, 163, 74, .13);
  position: relative;
  overflow: hidden;
  transition: .35s ease;
  box-shadow: 0 20px 55px rgba(15, 118, 64, .08);
}

.serviceCard::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  background: rgba(34, 197, 94, .12);
  border-radius: 50%;
  filter: blur(8px);
}

.serviceCard:hover {
  transform: translateY(-10px);
  border-color: rgba(22, 163, 74, .35);
  box-shadow: 0 34px 80px rgba(15, 118, 64, .16);
}

.serviceIcon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, .1);
  color: #16a34a;
  font-size: 26px;
  margin-bottom: 26px;
}

.serviceCard h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #102016;
}

.serviceCard p {
  color: #5f7567;
  font-size: 15px;
}

/* ABOUT */
.astroAbout {
  background:
    radial-gradient(circle at 15% 10%, rgba(34, 197, 94, .12), transparent 28%),
    #f8fff9;
}

.aboutWrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.aboutImage {
  border-radius: 36px;
  overflow: hidden;
  min-height: 560px;
  background: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1200&q=80") center/cover;
  border: 1px solid rgba(22, 163, 74, .18);
  box-shadow: 0 35px 90px rgba(15, 118, 64, .14);
}

.aboutContent h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: #0f2417;
}

.aboutContent h2 span {
  color: #16a34a;
}

.aboutContent p {
  color: #5f7567;
  margin-bottom: 22px;
  font-size: 17px;
}

.aboutStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.aboutStat {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, .12);
  box-shadow: 0 18px 45px rgba(15, 118, 64, .07);
}

.aboutStat strong {
  display: block;
  color: #16a34a;
  font-size: 28px;
}

.aboutStat span {
  color: #5f7567;
  font-size: 13px;
}

/* ZODIAC */
.astroZodiac {
  background: #ffffff;
}

.zodiacGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.zodiacItem {
  padding: 24px 14px;
  text-align: center;
  border-radius: 24px;
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, .12);
  transition: .3s ease;
}

.zodiacItem:hover {
  background: #dcfce7;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(15, 118, 64, .12);
}

.zodiacItem b {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  color: #15803d;
}

.zodiacItem span {
  color: #355241;
  font-size: 14px;
  font-weight: 700;
}

/* WHY */
.astroWhy {
  background:
    linear-gradient(135deg, rgba(34, 197, 94, .08), transparent),
    #f8fff9;
}

.whyGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.whyCard {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, .12);
  box-shadow: 0 22px 60px rgba(15, 118, 64, .08);
  transition: .35s ease;
}

.whyCard:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, .32);
}

.whyCard span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #15803d, #22c55e);
  font-weight: 900;
  margin-bottom: 24px;
}

.whyCard h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #102016;
}

.whyCard p {
  color: #5f7567;
}

/* PROCESS */
.astroProcess {
  background: #ffffff;
}

.processLine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.processStep {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f0fdf4);
  border: 1px solid rgba(22, 163, 74, .13);
  box-shadow: 0 22px 58px rgba(15, 118, 64, .08);
  transition: .35s ease;
}

.processStep:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, .35);
}

.processStep small {
  color: #16a34a;
  font-weight: 900;
  letter-spacing: 2px;
}

.processStep h3 {
  font-size: 22px;
  margin: 16px 0 10px;
  color: #102016;
}

.processStep p {
  color: #5f7567;
  font-size: 15px;
}

/* REVIEW */
.astroReview {
  background: #f8fff9;
}

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

.reviewCard {
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, .12);
  box-shadow: 0 20px 55px rgba(15, 118, 64, .08);
}

.reviewCard p {
  color: #4b6354;
  margin-bottom: 22px;
  font-style: italic;
}

.reviewCard strong {
  color: #16a34a;
}

/* CTA */
.astroCTA {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(34, 197, 94, .16), transparent 35%),
    linear-gradient(135deg, #f0fdf4, #ffffff);
}

.astroCTA h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  max-width: 820px;
  margin: 0 auto 24px;
  color: #0f2417;
}

.astroCTA p {
  color: #4b6354;
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 18px;
}

/* FOOTER */
.astroFooter {
  background: #0f2417;
  padding: 54px 0;
  border-top: 1px solid rgba(34, 197, 94, .16);
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  color: #d1fae5;
  font-size: 14px;
}

.footerInner strong {
  color: #86efac !important;
}

.footerLinks {
  display: flex;
  gap: 22px;
}

.footerLinks a:hover {
  color: #86efac;
}

/* PRICING */
.astroPricing {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(34, 197, 94, .14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(187, 247, 208, .65), transparent 35%),
    linear-gradient(135deg, #ffffff, #f0fdf4 55%, #ffffff);
}

.astroPricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, .055) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pricingCard {
  position: relative;
  overflow: visible;
  padding: 38px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(22, 163, 74, .13);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 80px rgba(15, 118, 64, .1);
  transition: .4s ease;
}

.pricingCard::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .1);
  filter: blur(10px);
}

.pricingCard:hover {
  transform: translateY(-12px);
  border-color: rgba(22, 163, 74, .38);
  box-shadow: 0 35px 100px rgba(15, 118, 64, .18);
}

.pricingCard--hot {
  transform: translateY(-25px);
  border: 1px solid rgba(22, 163, 74, .38);
  background:
    linear-gradient(180deg, rgba(220, 252, 231, .9), rgba(255, 255, 255, .96));
  box-shadow:
    0 0 40px rgba(34, 197, 94, .14),
    0 35px 120px rgba(15, 118, 64, .18);
  padding-top: 70px;
}

.pricingCard--hot:hover {
  transform: translateY(-35px);
}

.hotLabel {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .5px;
  z-index: 10;
  box-shadow: 0 12px 35px rgba(34, 197, 94, .28);
}

.pricingBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #15803d;
  background: rgba(34, 197, 94, .1);
  border: 1px solid rgba(22, 163, 74, .18);
  margin-bottom: 22px;
}

.pricingCard h3 {
  font-size: 30px;
  color: #102016;
  margin-bottom: 16px;
}

.pricingPrice {
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
  color: #16a34a;
  letter-spacing: -2px;
  margin-bottom: 18px;
  text-shadow: 0 0 25px rgba(34, 197, 94, .18);
}

.pricingDesc {
  color: #5f7567;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.pricingCard ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricingCard li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #355241;
  font-size: 15px;
}

.pricingCard li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
}

.pricingBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  height: 56px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  transition: .35s ease;
  box-shadow: 0 15px 40px rgba(34, 197, 94, .22);
}

.pricingBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(34, 197, 94, .32);
}

/* TESTIMONIALS */
.astroTestimonials {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 197, 94, .13), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(187, 247, 208, .6), transparent 36%),
    linear-gradient(135deg, #ffffff, #f0fdf4 58%, #ffffff);
}

.astroTestimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 163, 74, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 163, 74, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.astroTestimonials .container {
  position: relative;
  z-index: 2;
}

.astroTestimonials__head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.astroTestimonials__head span {
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 900;
}

.astroTestimonials__head h2 {
  margin: 14px 0 18px;
  color: #0f2417;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.astroTestimonials__head p {
  color: #5f7567;
  font-size: 17px;
  line-height: 1.7;
}

.astroTestimonials__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.astroTestimonials__stat {
  padding: 22px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(22, 163, 74, .12);
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(15, 118, 64, .08);
}

.astroTestimonials__stat strong {
  display: block;
  color: #16a34a;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 8px;
}

.astroTestimonials__stat span {
  color: #5f7567;
  font-size: 14px;
}

.astroTestimonials__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 22px;
  align-items: stretch;
}

.astroTestimonials__card {
  position: relative;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(22, 163, 74, .14);
  box-shadow: 0 28px 80px rgba(15, 118, 64, .12);
  transition: .35s ease;
}

.astroTestimonials__card--large {
  height: 520px;
}

.astroTestimonials__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(15, 36, 23, .78)),
    linear-gradient(135deg, rgba(34, 197, 94, .08), transparent 45%);
  pointer-events: none;
}

.astroTestimonials__card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, .38);
  box-shadow:
    0 40px 110px rgba(15, 118, 64, .18),
    0 0 50px rgba(34, 197, 94, .08);
}

.astroTestimonials__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: .45s ease;
}

.astroTestimonials__card:hover img {
  transform: scale(1.04);
}

.astroTestimonials__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(22, 163, 74, .18);
  backdrop-filter: blur(18px);
}

.astroTestimonials__overlay span {
  display: block;
  margin-bottom: 8px;
  color: #16a34a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.astroTestimonials__overlay h3 {
  color: #0f2417;
  font-size: 24px;
  line-height: 1.25;
}

.astroTestimonials__bottom {
  margin-top: 26px;
  padding: 28px 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(22, 163, 74, .14);
  backdrop-filter: blur(18px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 22px 60px rgba(15, 118, 64, .08);
}

.astroTestimonials__bottom span {
  color: #16a34a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.astroTestimonials__bottom h3 {
  margin-top: 7px;
  color: #0f2417;
  font-size: 25px;
  line-height: 1.25;
}

.astroTestimonials__btn {
  flex-shrink: 0;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(34, 197, 94, .24);
  transition: .3s ease;
}

.astroTestimonials__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 58px rgba(34, 197, 94, .34);
}

/* MOBILE */
@media (max-width: 1024px) {

  .astroHero__inner,
  .aboutWrap {
    grid-template-columns: 1fr;
  }

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

  .zodiacGrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .whyGrid,
  .reviewGrid {
    grid-template-columns: 1fr;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
  }

  .pricingCard--hot {
    transform: none;
    padding-top: 70px;
  }

  .pricingCard--hot:hover {
    transform: translateY(-8px);
  }

  .astroTestimonials__grid {
    grid-template-columns: 1fr;
  }

  .astroTestimonials__card,
  .astroTestimonials__card--large {
    height: 620px;
  }

  .astroTestimonials__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .astroNav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  section {
    padding: 72px 0;
  }

  .astroHeader__inner {
    height: 72px;
  }

  .astroLogo {
    font-size: 22px;
  }

  .astroHeader .astroBtn {
    padding: 11px 16px;
    font-size: 13px;
  }

  .astroHero {
    padding: 125px 0 70px;
  }

  .astroHero h1 {
    letter-spacing: -1.5px;
  }

  .astroHero p {
    font-size: 16px;
  }

  .astroHero__actions {
    flex-direction: column;
  }

  .astroBtn {
    width: 100%;
  }

  .astroFloatCard {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
  }

  .serviceGrid,
  .processLine,
  .aboutStats {
    grid-template-columns: 1fr;
  }

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

  .aboutImage {
    min-height: 360px;
  }

  .footerInner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footerLinks {
    flex-wrap: wrap;
  }

  .pricingCard {
    padding: 28px;
    border-radius: 28px;
  }

  .pricingCard h3 {
    font-size: 26px;
  }

  .pricingPrice {
    font-size: 48px;
  }

  .pricingBtn {
    height: 52px;
  }

  .hotLabel {
    font-size: 11px;
    padding: 10px 16px;
  }

  .astroTestimonials {
    padding: 76px 0;
  }

  .astroTestimonials__stats {
    grid-template-columns: 1fr;
  }

  .astroTestimonials__card,
  .astroTestimonials__card--large {
    height: 500px;
    border-radius: 24px;
  }

  .astroTestimonials__overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .astroTestimonials__overlay h3 {
    font-size: 20px;
  }

  .astroTestimonials__bottom {
    padding: 24px;
    border-radius: 24px;
  }

  .astroTestimonials__bottom h3 {
    font-size: 21px;
  }

  .astroTestimonials__btn {
    width: 100%;
  }
}