:root {
  --purple: 275 52% 36%;
  --purple-2: 260 55% 28%;
  --gold: 40 51% 62%;
  --midnight: 232 61% 29%;
  --text-primary: 0 0% 13%;
  --text-secondary: 0 0% 40%;
  --border-light: 0 0% 90%;
  --radius: 0.9rem;
  --gradient-purple: linear-gradient(135deg, hsl(var(--purple)), hsl(var(--purple-2)));
  --gradient-gold: linear-gradient(135deg, hsl(var(--gold)), hsl(38 60% 52%));
  --gradient-hero: linear-gradient(135deg, hsl(var(--purple) / 0.06), hsl(var(--gold) / 0.06));
  --gradient-purple-gold: linear-gradient(135deg, hsl(var(--purple)), hsl(40 51% 50%));
  --shadow-card: 0 4px 24px hsl(var(--purple) / 0.08);
  --shadow-card-hover: 0 12px 40px hsl(var(--purple) / 0.18);
  --shadow-button: 0 4px 16px hsl(var(--purple) / 0.3);
  --font-heading: "Cinzel", serif;
  --font-body: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: hsl(var(--text-primary));
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(780px, calc(100% - 2rem));
}

.center {
  text-align: center;
}

.mt-10 {
  margin-top: 2.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid hsl(var(--border-light));
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px hsl(var(--purple) / 0.1);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: hsl(var(--gold));
  background: var(--gradient-purple);
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: hsl(var(--purple));
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  color: hsl(var(--gold));
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.desktop-nav a:not(.btn),
.mobile-nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--text-primary));
}

.desktop-nav a.active:not(.btn),
.desktop-nav a:hover:not(.btn) {
  color: hsl(var(--purple));
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: hsl(var(--purple));
}

.mobile-nav {
  display: none;
  border-top: 1px solid hsl(var(--border-light));
  padding: 1rem;
  background: #fff;
}

.mobile-nav.open {
  display: grid;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
}

.mobile-nav a.active:not(.btn) {
  color: #fff;
  background: var(--gradient-purple);
}

.btn {
  border: 0;
  border-radius: 0.9rem;
  padding: 0.92rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.small {
  padding: 0.65rem 1.1rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
}

.btn-purple {
  color: #fff;
  background: var(--gradient-purple);
  box-shadow: var(--shadow-button);
}

.btn-purple:hover,
.btn-gold:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-outline {
  color: hsl(var(--purple));
  background: transparent;
  border: 2px solid hsl(var(--purple));
}

.btn-outline:hover {
  color: #fff;
  background: hsl(var(--purple));
}

.btn-gold {
  color: hsl(var(--text-primary));
  background: var(--gradient-gold);
  box-shadow: 0 4px 16px hsl(var(--gold) / 0.3);
}

.btn-white {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.page {
  display: none;
}

.page-active {
  display: block;
}

.hero-cosmic {
  min-height: 100vh;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background-image: url("../public/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-cosmic::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: particleFloat 8s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: hsl(var(--purple));
  background: hsl(var(--purple) / 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.hero-badge i {
  color: hsl(var(--gold));
}

.hero-copy h1 {
  margin: 0 0 1.3rem;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  background: var(--gradient-purple-gold);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.28);
}

.hero-copy p {
  max-width: 590px;
  margin: 0 0 2rem;
  color: hsl(var(--text-secondary));
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.center-actions {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 2rem;
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
}

.trust-row i {
  color: hsl(var(--purple));
  margin-right: 0.4rem;
}

.stats-bar {
  padding: 2.5rem 0;
  border-block: 1px solid hsl(var(--border-light));
  background: var(--gradient-hero);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--gradient-purple-gold);
  -webkit-background-clip: text;
  color: transparent;
}

.stats-grid span {
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
}

.soft,
.page-hero {
  background: linear-gradient(135deg, hsl(var(--purple) / 0.04), hsl(var(--gold) / 0.04));
}

.page-hero {
  padding: 9rem 0 5rem;
}

.page-hero span,
.section-head span,
.eyebrow {
  display: inline-block;
  color: hsl(var(--gold));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

.page-hero h1,
.section-head h2,
.section h2 {
  margin: 0 0 0.75rem;
  color: hsl(var(--text-primary));
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.section h2,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p,
.section-head p {
  max-width: 680px;
  margin: 0.8rem auto 0;
  color: hsl(var(--text-secondary));
  line-height: 1.7;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--gradient-purple-gold);
}

.section-divider.left {
  margin-left: 0;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.astro-card,
.service-card,
.plan-card,
.faq-item,
.contact-form,
.topic-card,
.question-card,
.certificate-panel,
.map-card {
  background: #fff;
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.astro-card:hover,
.service-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.service-card,
.plan-card,
.astro-card {
  padding: 1.75rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: hsl(var(--purple));
  background: hsl(var(--purple) / 0.08);
  font-size: 1.45rem;
}

.price {
  display: block;
  color: hsl(var(--purple));
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0.2rem 0 0.8rem;
}

.service-card p,
.astro-card p,
.plan-card p,
.topic-card p,
.map-card p,
.certificate-panel p {
  color: hsl(var(--text-secondary));
  line-height: 1.65;
}

.feature-list {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
}

.feature-list i {
  color: hsl(var(--purple));
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.service-card .btn,
.plan-card .btn {
  margin-top: auto;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.align-start {
  align-items: start;
}

.founder-card {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border-light));
  box-shadow: var(--shadow-card);
  background: var(--gradient-hero);
}

.avatar {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient-purple);
  font-size: 3rem;
}

.stars {
  color: hsl(var(--gold));
  letter-spacing: 0.2em;
  margin: 1rem 0 0.4rem;
}

.floating-badge {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  background: var(--gradient-purple);
  box-shadow: var(--shadow-card-hover);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.mini-list span {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: hsl(var(--text-primary));
  font-size: 0.92rem;
}

.mini-list i {
  color: hsl(var(--purple));
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient-purple);
  font-family: var(--font-heading);
  font-weight: 700;
}

.quote {
  font-size: 3rem;
  line-height: 0.8;
  color: hsl(var(--purple) / 0.15);
  font-family: var(--font-heading);
}

.cta-band {
  padding: 5rem 0;
  color: #fff;
  background: var(--gradient-purple);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-band p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgb(255 255 255 / 0.82);
}

.cta-band > .container > i {
  color: hsl(var(--gold));
  font-size: 2.5rem;
}

.solution-card {
  color: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--gradient-purple);
}

.solution-card p {
  color: rgb(255 255 255 / 0.78);
}

.solution-card .solution-item {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.75rem;
  color: rgb(255 255 255 / 0.92);
}

.solution-card i {
  color: hsl(var(--gold));
  margin-top: 0.2rem;
}

.topic-card {
  padding: 2rem;
  border-color: hsl(var(--gold) / 0.45);
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  color: hsl(var(--purple));
  background: hsl(var(--purple) / 0.05);
  border: 1px solid hsl(var(--purple) / 0.2);
  font-size: 0.86rem;
}

.price-banner {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  color: hsl(var(--purple));
  background: hsl(var(--purple) / 0.05);
  border: 1px solid hsl(var(--purple) / 0.2);
}

.popular-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.8rem;
  color: #fff;
  border-radius: 999px;
  background: var(--gradient-purple);
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.plan-card.popular {
  outline: 2px solid hsl(var(--purple));
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: hsl(var(--gold));
  font-family: var(--font-heading);
  font-weight: 700;
}

.faq-group {
  margin-bottom: 3rem;
}

.faq-group-title {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.faq-group-title span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  color: hsl(var(--purple));
  background: hsl(var(--purple) / 0.1);
}

.faq-item {
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  background: #fff;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.2rem 1.2rem;
  color: hsl(var(--text-secondary));
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  display: block;
}

.question-card {
  padding: 2rem;
  text-align: center;
}

.question-card > i {
  color: hsl(var(--purple));
  font-size: 2.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card,
.map-card {
  padding: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-card i {
  font-size: 1.8rem;
}

.contact-form {
  padding: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: hsl(var(--text-primary));
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid hsl(var(--border-light));
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: hsl(var(--purple));
}

.form-error {
  min-height: 1.2rem;
  margin-bottom: 1rem;
  color: #d11;
  font-size: 0.9rem;
}

.certificate-panel {
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
}

.certificate-panel img {
  margin-top: 1.2rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border-light));
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.timeline-year {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: var(--gradient-purple);
  font-family: var(--font-heading);
  font-weight: 700;
}

.timeline-card {
  padding: 1.2rem;
  border: 1px solid hsl(var(--border-light));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.detail-stack {
  display: grid;
  gap: 1.5rem;
}

.sticky-side {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 1.5rem;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.color-card {
  padding: 1rem;
  border-radius: 0.8rem;
  background: hsl(var(--purple) / 0.03);
  border: 1px solid hsl(var(--purple) / 0.15);
}

.site-footer {
  background: hsl(0 0% 97%);
  border-top: 1px solid hsl(var(--border-light));
}

.footer-grid {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: hsl(var(--text-secondary));
  font-size: 0.9rem;
}

.site-footer h3 {
  margin-top: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer li a::before {
  content: "›";
  margin-right: 0.5rem;
  color: hsl(var(--gold));
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer-contact li a::before {
  content: "";
  margin: 0;
}

.footer-contact i {
  color: hsl(var(--purple));
  margin-top: 0.2rem;
}

.socials {
  display: flex;
  gap: 0.7rem;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid hsl(var(--border-light));
  color: hsl(var(--purple));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border-light));
}

.footer-bottom .container {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin-left: 1rem;
  font-size: 0.8rem;
}

.whatsapp-float,
.scroll-top {
  position: fixed;
  z-index: 60;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  cursor: pointer;
}

.whatsapp-float {
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.6rem;
}

.scroll-top {
  right: 24px;
  bottom: 92px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--gradient-purple);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-18px);
    opacity: 0.42;
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .card-grid.three,
  .card-grid.four,
  .footer-grid,
  .service-detail-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .sticky-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero-cosmic {
    min-height: auto;
  }

  .hero-grid {
    padding: 4rem 0;
  }

  .hero-actions,
  .trust-row {
    flex-direction: column;
    align-items: stretch;
  }

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .stats-grid,
  .footer-grid,
  .service-detail-layout,
  .mini-list,
  .color-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 7rem;
  }

  .floating-badge {
    position: static;
    margin-top: 1rem;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }
}

/* ========================================
   Fortune Fetching Gemstones Page
======================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gem-page-hero {
  background:
    radial-gradient(circle at 15% 20%, hsl(40 51% 62% / 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, hsl(275 52% 36% / 0.1), transparent 40%),
    linear-gradient(135deg, #fff, #f8f8f8 55%, hsl(275 52% 36% / 0.04));
}

.gem-two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.gem-intro-copy p,
.gem-why-copy p {
  color: hsl(var(--text-secondary));
  line-height: 1.8;
}

.gem-intro-copy h2,
.gem-why-copy h2 {
  margin-bottom: 0.75rem;
}

.gem-hero-visual {
  margin: 0;
}

.gem-float-frame {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow:
    0 18px 50px hsl(275 52% 36% / 0.14),
    0 2px 0 hsl(40 51% 62% / 0.35);
  border: 1px solid hsl(var(--border-light));
  background: #f8f8f8;
  animation: gemFloat 6s ease-in-out infinite;
}

.gem-float-slow {
  animation-duration: 7.5s;
  animation-delay: 0.4s;
}

.gem-float-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, hsl(40 51% 62% / 0.08), transparent 45%);
}

.gem-float-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.gem-float-frame:hover img {
  transform: scale(1.06);
}

.gem-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gem-benefit-card {
  background: #fff;
  border: 1px solid hsl(var(--border-light));
  border-radius: 1.15rem;
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gem-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: hsl(40 51% 62% / 0.35);
}

.gem-benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #c9a227;
  background: linear-gradient(135deg, hsl(40 51% 62% / 0.16), hsl(40 51% 62% / 0.05));
  font-size: 1.3rem;
}

.gem-benefit-card h3 {
  margin: 0 0 0.55rem;
  color: #5b2a86;
  font-size: 1.15rem;
}

.gem-benefit-card p {
  margin: 0;
  color: hsl(var(--text-secondary));
  line-height: 1.65;
  font-size: 0.95rem;
}

.gem-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.gem-step {
  position: relative;
  background: #fff;
  border: 1px solid hsl(var(--border-light));
  border-radius: 1.2rem;
  padding: 1.6rem 1.25rem 1.4rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.gem-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.1rem;
  right: -0.85rem;
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, #c9a227, #5b2a86);
  z-index: 2;
}

.gem-step-badge {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  background: linear-gradient(135deg, #5b2a86, #3d1c5c);
  box-shadow: 0 8px 20px hsl(275 52% 36% / 0.28);
}

.gem-step h3 {
  margin: 0 0 0.45rem;
  color: #5b2a86;
  font-size: 1.05rem;
}

.gem-step p {
  margin: 0;
  color: hsl(var(--text-secondary));
  line-height: 1.6;
  font-size: 0.92rem;
}

.gem-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.gem-checklist li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  background: #f8f8f8;
  border: 1px solid hsl(var(--border-light));
  color: hsl(var(--text-primary));
  font-weight: 500;
}

.gem-checklist i {
  color: #c9a227;
  font-size: 0.9rem;
}

.gem-note-box {
  background: #fff;
  border: 2px solid #c9a227;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 36px hsl(40 51% 62% / 0.16);
  text-align: center;
}

.gem-note-box h2 {
  margin: 0 0 1rem;
  color: #5b2a86;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.gem-note-box p {
  margin: 0 0 0.85rem;
  color: hsl(var(--text-secondary));
  line-height: 1.75;
}

.gem-note-box p:last-child {
  margin-bottom: 0;
}

.gem-cta {
  padding: 5rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, hsl(40 51% 62% / 0.18), transparent 40%),
    linear-gradient(135deg, #5b2a86, #3d1c5c 60%, #2a1340);
}

.gem-cta h2 {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.gem-cta p {
  max-width: 640px;
  margin: 0 auto 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.gem-btn-ripple {
  position: relative;
  overflow: hidden;
}

.gem-btn-ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  transition: width 0.45s ease, height 0.45s ease, opacity 0.45s ease;
  opacity: 0;
  pointer-events: none;
}

.gem-btn-ripple:hover::after,
.gem-btn-ripple:focus-visible::after {
  width: 260px;
  height: 260px;
  opacity: 1;
}

.gem-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gem-reveal.gem-slide-left {
  transform: translateX(-36px);
}

.gem-reveal.gem-slide-right {
  transform: translateX(36px);
}

.gem-reveal.gem-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes gemFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1024px) {
  .gem-two-col,
  .gem-benefit-grid,
  .gem-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .gem-two-col {
    gap: 2.25rem;
  }

  .gem-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .gem-two-col,
  .gem-benefit-grid,
  .gem-timeline {
    grid-template-columns: 1fr;
  }

  .gem-step:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: auto;
    left: 50%;
    bottom: -1.35rem;
    width: auto;
    height: auto;
    background: none;
    color: #c9a227;
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateX(-50%);
  }

  .gem-timeline {
    gap: 2rem;
  }

  .gem-note-box {
    padding: 1.5rem 1.15rem;
  }

  .gem-cta {
    padding: 3.5rem 0;
  }
}
