@charset "UTF-8";
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #1a202c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Mobile: reserve space for sticky bottom bar */
@media (max-width: 639px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* Remove tap flash on mobile */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #6b46c1;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== CONTAINER ===== */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== ICONS ===== */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 2rem; height: 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.97); }

.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; min-width: 180px; }
.btn-full { width: 100%; }

.btn-primary {
  background: #6b46c1;
  color: #fff;
  border-color: #6b46c1;
}
.btn-primary:hover { background: #553c9a; border-color: #553c9a; opacity: 1; }

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); opacity: 1; }

.btn-outline {
  background: transparent;
  color: #1a365d;
  border-color: #1a365d;
}
.btn-outline:hover { background: #1a365d; color: #fff; opacity: 1; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(26, 54, 93, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #2a4a7a;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b794f4;
  letter-spacing: 0.05em;
}

.hide-mobile { display: inline; }
.show-mobile { display: none; }

@media (max-width: 480px) {
  .hide-mobile { display: none; }
  .show-mobile { display: inline; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
}
@media (min-width: 768px) { .hero { min-height: 70vh; } }

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a365d;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a365d 0%, rgba(26,54,93,0.7) 50%, rgba(26,54,93,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  line-height: 1.2;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #d6bcfa;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.hero-sub {
  font-size: 0.875rem;
  color: #e9d8fd;
  margin-bottom: 1rem;
}
.hero-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; justify-content: center; }
}
.scroll-down-btn {
  margin-top: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #b794f4;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem;
}

/* ===== QUICK INFO BAR ===== */
.quick-info-bar {
  background: #6b46c1;
  color: #fff;
  padding: 1rem 0;
}
.quick-info-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .quick-info-inner { grid-template-columns: 1fr 1fr; }
}
.quick-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .quick-info-item { justify-content: flex-start; }
  .quick-info-right { justify-content: flex-end; }
}
.status-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.status-open { background: #276749; color: #fff; }
.status-closed { background: #c53030; color: #fff; }
.hours-text { font-size: 0.875rem; font-weight: 500; }
.phone-link {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.phone-link:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
.section {
  padding: 3rem 0;
}
@media (min-width: 768px) { .section { padding: 4rem 0; } }

.bg-white { background: #fff; }
.bg-muted { background: #f7f8fa; }
.cta-section { background: #1a365d; }
.scroll-mt { scroll-margin-top: 4rem; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
}
.card-body { padding: 1.5rem; }

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 540px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* Card is now an <a> – reset link styles */
a.product-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover {
  border-color: #b794f4;
  box-shadow: 0 4px 12px rgba(107,70,193,0.15);
}
.product-card:active { opacity: 0.92; }
.product-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: #6b46c1;
  margin-bottom: 0.5rem;
}
.product-btn-wrap { margin-top: auto; }
.product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  padding: 0.4rem 0.75rem;
  min-height: 44px;
  background: #6b46c1;
  color: #fff;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.15s;
  pointer-events: none; /* card is the link; span is decorative */
}
.product-card:hover .product-btn { background: #553c9a; }

.product-skeleton {
  background: #f0f0f0;
  border-radius: 0.625rem;
  aspect-ratio: 1 / 1;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 3fr 2fr; }
}

.map-card {
  display: block;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  aspect-ratio: 16 / 9;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,54,93,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3.5rem;
}
.map-pin-card {
  background: rgba(255,255,255,0.97);
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.map-pin-name { font-weight: 600; color: #1a365d; font-size: 1rem; }
.map-pin-address { font-size: 0.8125rem; color: #718096; }
.map-directions-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #6b46c1;
  color: #fff;
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.address-row { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.address-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.address-text { color: #718096; line-height: 1.75; }
.landmark-text { font-size: 0.875rem; color: #718096; margin-top: 0.5rem; }
.flex-shrink { flex-shrink: 0; margin-top: 0.25rem; }

/* ===== BUSINESS HOURS ===== */
.hours-card-wrap { max-width: 28rem; margin: 0 auto; }
.hours-list { }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.is-today { background: rgba(107,70,193,0.08); }
.hours-day { font-weight: 500; }
.hours-day.is-today { color: #6b46c1; }
.today-badge {
  display: inline-block;
  font-size: 0.7rem;
  background: #6b46c1;
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: 0.2rem;
  margin-left: 0.5rem;
  font-weight: 600;
  vertical-align: middle;
}
.hours-time { color: #718096; font-size: 0.9rem; }
.text-orange { color: #c05621; }
.hours-note { text-align: center; font-size: 0.8125rem; color: #718096; margin-top: 1rem; }

/* ===== TRUST ===== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: rgba(107,70,193,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.trust-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.trust-desc { font-size: 0.875rem; color: #718096; }
.text-center { text-align: center; }
.text-primary { color: #6b46c1; }
.text-red { color: #e53e3e; }

/* ===== TESTIMONIALS ===== */
.reviews-header { text-align: center; margin-bottom: 2rem; }
.google-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.google-icon { width: 1.5rem; height: 1.5rem; }
.google-label { font-weight: 600; font-size: 1.125rem; }
.rating-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.rating-score { font-size: 2rem; font-weight: 700; color: #1a365d; }
.stars { display: flex; gap: 0.1rem; }
.star { font-size: 1.25rem; }
.star-full { color: #f6c90e; }
.star-half { color: #f6c90e; opacity: 0.7; }
.rating-count { color: #718096; font-size: 0.875rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.review-stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.review-stars .star { font-size: 1rem; }
.review-text { font-size: 0.875rem; color: #718096; margin-bottom: 1rem; line-height: 1.6; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-name { font-weight: 500; font-size: 0.875rem; }
.review-date { font-size: 0.75rem; color: #a0aec0; }

/* ===== CTA SECTION ===== */
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-desc { color: #cbd5e0; max-width: 42rem; margin: 0 auto 2rem; font-size: 0.9375rem; }
.cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; } }

/* ===== FOOTER ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.footer-name { font-size: 1rem; }
.footer-nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #718096;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: #1a202c; }
.footer-copy {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #a0aec0;
}
.footer-copy p + p { margin-top: 0.25rem; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  color: #fff;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.whatsapp-btn:active { transform: scale(0.95); }
.whatsapp-icon { width: 1.75rem; height: 1.75rem; }

/* ===== NOT ITALIC UTILITY ===== */
.not-italic { font-style: normal; }

/* ===== MOBILE ACTION BAR ===== */
.mobile-action-bar {
  display: none;
}
@media (max-width: 639px) {
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.12);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  /* Hide FAB on mobile – action bar covers it */
  .whatsapp-btn { display: none; }
}
.bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.625rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}
.bar-btn-call {
  background: #6b46c1;
  color: #fff;
}
.bar-btn-call:hover { background: #553c9a; }
.bar-btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.bar-btn-whatsapp:hover { background: #1da851; }
.bar-btn-map {
  background: #f7f8fa;
  color: #1a365d;
  border-right: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
}
.bar-btn-map:hover { background: #edf0f7; }
.bar-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== MOBILE-SPECIFIC IMPROVEMENTS ===== */
@media (max-width: 639px) {
  /* Tighter section padding on mobile */
  .section { padding: 2rem 0; }

  /* Hero section – leave ~80px peek of next section so users scroll */
  .hero { min-height: calc(100svh - 80px); min-height: calc(100vh - 80px); }
  .hero-address { font-size: 0.8125rem; flex-wrap: wrap; }

  /* Product buttons — larger touch targets */
  .product-btn { padding: 0.625rem 0.75rem; font-size: 0.875rem; min-height: 44px; }

  /* Product grid tighter gap on small screens */
  .products-grid { gap: 0.625rem; }

  /* Map pin card – prevent overflow on tiny screens */
  .map-pin-card { max-width: calc(100vw - 4rem); }
  .map-pin-address { font-size: 0.75rem; }
  .map-pin-name { font-size: 0.875rem; }

  /* Ensure buttons don't exceed screen */
  .btn-lg { min-width: 0; width: 100%; }
  .hero-cta .btn-lg { width: auto; min-width: 160px; }

  /* Footer copy readable size */
  .footer-copy { font-size: 0.8125rem; }

  /* FAQ items larger tap zone */
  .faq-question { padding: 1.25rem 1rem; font-size: 0.9375rem; min-height: 48px; }

  /* Hours row larger tap zone */
  .hours-row { padding: 0.875rem 1rem; }

  /* Wider container padding on mobile */
  .container { padding: 0 1.125rem; }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 359px) {
  .btn-lg, .hero-cta .btn-lg { min-width: 0; width: 100%; }
  .product-info { padding: 0.875rem; }
}

/* ===== AREAS WE SERVE ===== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.area-tag {
  background: #fff;
  border: 1.5px solid #6b46c1;
  color: #6b46c1;
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.areas-note {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a365d;
  cursor: pointer;
  list-style: none;
  gap: 0.75rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #6b46c1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] {
  border-color: #6b46c1;
}
.faq-answer {
  padding: 0 1.25rem 1rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid #e2e8f0;
}
.faq-answer a {
  color: #6b46c1;
  text-decoration: underline;
}

/* ===== HERO EMAIL ===== */
.hero-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.hero-email-link {
  color: #e2e8f0;
  text-decoration: underline;
}
.hero-email-link:hover {
  color: #fff;
}

/* ===== NAVAGRAHA GRID ===== */
.navagraha-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .navagraha-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .navagraha-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.navagraha-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.navagraha-card:hover {
  border-color: #6b46c1;
  box-shadow: 0 2px 8px rgba(107, 70, 193, 0.12);
}
.navagraha-stone {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a202c;
  margin-bottom: 0.25rem;
}
.navagraha-planet {
  display: block;
  font-size: 0.8125rem;
  color: #6b46c1;
  font-weight: 500;
}

/* ===== HOW TO BUY STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-number {
  width: 3rem;
  height: 3rem;
  background: #6b46c1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* ===== RASHISUTRA SECTION ===== */
.rashisutra-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.rashisutra-feature {
  background: #fff;
  border: 1.5px solid #6b46c1;
  color: #6b46c1;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.rashisutra-powered {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #718096;
}
.rashisutra-powered a {
  color: #6b46c1;
  text-decoration: underline;
}

/* ===== PERFORMANCE: skip rendering off-screen sections ===== */
@media (min-width: 1px) {
  .testimonials-section, .faq-section, .cta-section, .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }
}

/* ===== TRUST 4-COLUMN ===== */
.trust-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .trust-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .trust-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
