/* =============================================
   SAYASH VASTU RATING â€” STYLESHEET
   style.css
   ============================================= */

/* â”€â”€ CSS VARIABLES â”€â”€ */
:root {
  --color-orange:       #E87722;
  --color-orange-dark:  #C05A00;
  --color-orange-light: #FFF0E6;
  --color-dark:         #1A1208;
  --color-brown:        #492b1e;
  --color-white:        #FFFFFF;
  --color-muted:        #5A5A5A;
  --color-bg:           #FAF8F5;
  --color-border:       #E8E0D5;
  --color-peach:        #ffebd4;
}

/* â”€â”€ RESET â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* â”€â”€ BASE â”€â”€ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

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

/* â”€â”€ LAYOUT UTILITIES â”€â”€ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 60px 0;
}

.section--alt {
  background: #F9F6F2;
}

.section--peach {
  background: var(--color-peach);
}

/* â”€â”€ TYPOGRAPHY UTILITIES â”€â”€ */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 10px;
  display: block;
}

.label--brown {
  color: var(--color-brown);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 42px);
  margin-bottom: 16px;
  color: var(--color-brown);
  font-weight: 400;
}

.section-sub {
  font-size: 15px;
  color: var(--color-muted);
  max-width: 580px;
  line-height: 1.7;
}

.section-sub--brown {
  color: var(--color-brown);
}

/* â”€â”€ BUTTONS â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  border: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(232,119,34,.35);
}

.btn--orange:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,119,34,.45);
}

.btn--ghost {
  background: transparent;
  color: var(--color-brown);
  border: 1.5px solid var(--color-brown);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.1);
}

/* â”€â”€ SCROLL ANIMATION â”€â”€ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.fade-in:nth-child(2) { transition-delay: .1s; }
.fade-in:nth-child(3) { transition-delay: .2s; }
.fade-in:nth-child(4) { transition-delay: .3s; }
.fade-in:nth-child(5) { transition-delay: .4s; }
.fade-in:nth-child(6) { transition-delay: .5s; }

.fade-in.delay-1 { transition-delay: .1s; }
.fade-in.delay-2 { transition-delay: .2s; }
.fade-in.delay-3 { transition-delay: .3s; }
.fade-in.delay-4 { transition-delay: .4s; }

@keyframes medalSpin {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50%       { transform: rotate(2deg) scale(1.02); }
}

/* â”€â”€ NAVIGATION â”€â”€ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, padding .3s, border-color .3s;
  background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(232, 119, 34, .15);
}

.nav--scrolled {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(232,119,34,.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: color .2s;
}

.nav--scrolled .nav__links a {
  color: var(--color-white);
}

.nav__links a:hover {
  color: var(--color-orange);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-white);
}

/* â”€â”€ HERO â”€â”€ */
.hero {
    /* height: 126vh; */
    min-height: 653px;
    position: relative;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    padding-top: 6rem;
    flex-wrap: wrap;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-peach);
  background: url(images/banner31.webp)no-repeat;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__mandala {
  position: absolute;
  right: -80px;
  top: 50%;
  width: 620px;
  height: 620px;
  opacity: .2;
  pointer-events: none;
  transform-origin: center center;
  animation: mandalaRotate 40s linear infinite;
}

@keyframes mandalaRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero__slides {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}

.hero__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(232,119,34,.15);
  border: 1px solid rgba(232,119,34,.4);
  color: var(--color-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(34px, 5.5vw, 52px);
  color: var(--color-brown);
  margin-bottom: 18px;
  line-height: 1.1;
  font-weight: 400;
}

.hero__title em {
  color: var(--color-brown);
  font-style: normal;
}

.hero__desc {
  font-size: 16px;
  color: var(--color-brown);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.75;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brown);
  cursor: pointer;
  transition: .3s;
  border: none;
}

.hero__dot--active {
  background: var(--color-orange);
  width: 26px;
  border-radius: 4px;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brown);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--color-white);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: .2s;
}

.hero__arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.hero__arrow--left  { left: 24px; }
.hero__arrow--right { right: 24px; }

/* Slide 2 coin grid */
.hero__coin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero__coin-item {
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.hero__coin-label {
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

.hero__coin-pts {
  font-size: 11px;
  color: var(--color-brown);
}

/* â”€â”€ PROBLEM SECTION â”€â”€ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 32px 26px;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-orange);
  transition: .25s;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,119,34,.12);
}

.problem-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(232,119,34,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.problem-card__icon img {
    width: 100%;
    padding: 0.4rem;
}
.problem-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.problem-card p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}
.problem-banner {
    margin-top: 40px;
    background: #e8ddd4;
    border-radius: 8px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--color-orange);
    justify-content: center;
}
.problem-banner p {
  font-size: 15px;
  color: var(--color-dark);
  font-weight: 500;
  text-align: center;
}

.problem-banner strong {
  color: var(--color-orange);
}

/* â”€â”€ STRATEGIC VASTU â”€â”€ */
.strategic-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 64px;
  align-items: center;
}

.strategic-quads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.strategic-quad {
  background: var(--color-orange-light);
  border-radius: 8px;
  padding: 20px;
  border-left: 3px solid var(--color-orange);
}

.strategic-quad h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.strategic-quad p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
}

.strategic-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.strategic-image img {
  width: 100%;
  border-radius: 1rem;
  height: 100%;
  object-fit: cover;
}

/* â”€â”€ STATS STRIP â”€â”€ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-box {
  text-align: center;
  padding: 24px 16px;
  background: var(--color-orange-light);
  border-radius: 8px;
  border-top: 3px solid var(--color-orange);
  box-shadow: 0 2px 16px rgba(232,119,34,.08);
  transition: transform .3s;
}

.stat-box:hover {
  transform: translateY(-4px);
}

.stat-box__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--color-orange);
  font-weight: 700;
  line-height: 1;
}

.stat-box__label {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* â”€â”€ 2-STAGE MODEL â”€â”€ */
.stage-model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stage-box {
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}

.stage-box--light {
  background: linear-gradient(145deg, #fffaf5, #fff4e8);
  border: 2px solid rgba(232,119,34,.3);
}

.stage-box--dark {
  background: linear-gradient(145deg, #1e1510, #2d1e0e);
  border: 2px solid rgba(232,119,34,.4);
}

.stage-box__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stage-box--light .stage-box__number {
  background: var(--color-orange);
  color: var(--color-white);
}

.stage-box--dark .stage-box__number {
  background: rgba(232,119,34,.2);
  color: var(--color-orange);
  border: 2px solid rgba(232,119,34,.4);
}

.stage-box--light h3 { color: var(--color-dark); }
.stage-box--dark  h3 { color: var(--color-white); }

.stage-box__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stage-box--light .stage-box__sub { color: var(--color-orange); }
.stage-box--dark  .stage-box__sub { color: rgba(232,119,34,.7); }

.stage-box__desc {
  font-size: 14px;
  color: var(--color-brown);
  line-height: 1.65;
}

.stage-list {
  list-style: none;
  margin-top: 16px;
}

.stage-list li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.stage-box--dark .stage-list li {
  border-bottom-color: rgba(255,255,255,.07);
  color: rgba(255,255,255,.75);
}

.stage-list li::before {
  content: 'â†’';
  color: var(--color-orange);
  flex-shrink: 0;
  font-weight: 700;
}

.stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

.stage-box--light .stage-badge {
  background: rgba(232,119,34,.12);
  color: var(--color-orange-dark);
  border: 1px solid rgba(232,119,34,.25);
}

.stage-box--dark .stage-badge {
  background: rgba(232,119,34,.15);
  color: var(--color-orange);
  border: 1px solid rgba(232,119,34,.3);
}

.stage-banner {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: var(--color-orange);
  border-radius: 8px;
  border: 1px solid rgba(232,119,34,.2);
}

.stage-banner p {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
}

/* â”€â”€ CERT DETAIL (Pre & Final) â”€â”€ */
.cert-detail {
  display: grid;
  gap: 48px;
  align-items: center;
}

.cert-detail--pre   { grid-template-columns: 3fr 1fr; }
.cert-detail--final { grid-template-columns: 1fr 3fr; }

.cert-detail--final .cert-visual {
  align-self: stretch;
}

.cert-detail--final .cert-visual > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.cert-detail--final .cert-visual svg {
  width: 100%;
  height: 100%;
}
.cert-detail--final .cert-visual svg text {
    font-size: 14px;
}
.cert-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pre-cert image animation */
.precert-visual-img {
  border-radius: 12px;
  /* box-shadow: 0 16px 48px rgba(232,119,34,.18), 0 4px 16px rgba(0,0,0,.08); */
  animation: precertRotate 20s linear infinite;
  max-width: 100%;
}

@keyframes precertRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cert-points {
  list-style: none;
}

.cert-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.cert-points li:last-child {
  border-bottom: none;
}

.cert-point__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-point__text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 3px;
}

.cert-point__text p {
  font-size: 13px;
  color: var(--color-muted);
}

.cert-badge--pre {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.3);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange-dark);
}

.cert-badge--final {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

/* â”€â”€ ABOUT CERT â”€â”€ */
.about-cert-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: center;
}

.cert-params {
  list-style: none;
  margin-top: 16px;
}

.cert-params li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-muted);
}

.cert-params li strong {
  color: var(--color-dark);
  min-width: 160px;
  flex-shrink: 0;
}

.cert-params li::before {
  content: 'âœ“';
  color: var(--color-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cert-doc {
  border-radius: 12px;
  /* box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.08); */
  position: relative;
  max-width: 470px;
 margin: 7rem auto 0;
}

.cert-doc img {
  width: 100%;
  border-radius: 1rem;
}

.cert-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--color-orange-light);
  border-radius: 8px;
  border-left: 3px solid var(--color-orange);
  text-align: center;
}

.cert-note p:first-child {
  font-size: 14px;
  color: var(--color-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.cert-note p:last-child {
  font-size: 13px;
  color: var(--color-muted);
}

/* â”€â”€ METHODOLOGY â”€â”€ */
.meth-intro {
  background: linear-gradient(135deg, var(--color-orange-light), rgba(232,119,34,.05));
  border: 1px solid rgba(232,119,34,.2);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 48px;
  text-align: center;
}

.meth-intro p {
  font-size: 15px;
  color: var(--color-dark);
}

.meth-intro strong {
  color: var(--color-orange);
}

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

.meth-card {
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border-top: 4px solid var(--color-orange);
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: .25s;
}

.meth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(232,119,34,.15);
}

.meth-card__points {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--color-orange);
  font-weight: 700;
  line-height: 1;
}

.meth-card__points-label {
  font-size: 10px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.meth-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.meth-card p {
  font-size: 11.5px;
  color: var(--color-muted);
  line-height: 1.55;
}

.meth-params {
  margin-top: 10px;
  list-style: none;
  text-align: left;
}

.meth-params li {
  font-size: 11px;
  color: var(--color-muted);
  padding: 3px 0;
  display: flex;
  gap: 6px;
}

.meth-params li::before {
  content: 'Â·';
  color: var(--color-orange);
  font-weight: 700;
  flex-shrink: 0;
}

.score-bar-section {
  margin-top: 48px;
  border-radius: 10px;
}

.score-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.score-bar-row:last-child {
  margin-bottom: 0;
}

.score-bar__label {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  min-width: 220px;
  flex-shrink: 0;
}

.score-bar__track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 5px;
}

.score-bar__fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-dark));
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.score-bar__percent {
  font-size: 13px;
  color: var(--color-orange);
  font-weight: 700;
  min-width: 50px;
  text-align: right;
}

/* â”€â”€ RATING SCALE TABLE â”€â”€ */
.rating-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.rating-table thead tr {
  background: var(--color-dark);
}

.rating-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.rating-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: .2s;
}

.rating-table tbody tr:hover {
  background: var(--color-orange-light);
}

.rating-table td {
  padding: 18px 24px;
  font-size: 14px;
}

.rating-table tbody tr:nth-child(even) td {
  background: var(--color-bg);
}

.rating-table tbody tr:nth-child(even):hover td {
  background: var(--color-orange-light);
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.tier-pill--platinum { background: #EEF2F8; color: #3A5A8A; border: 1px solid #B0C4DE; }
.tier-pill--gold     { background: #FFFBEC; color: #9A6E00; border: 1px solid #D4AF37; }
.tier-pill--silver   { background: #F5F5F5; color: #555;    border: 1px solid #A8A9AD; }
.tier-pill--bronze   { background: #FDF5EE; color: #7A3A10; border: 1px solid #CD7F32; }
.tier-pill--none     { background: #FEF0F0; color: #C00;    border: 1px solid #F5A5A5; }

.stars {
  color: var(--color-orange);
  letter-spacing: 2px;
  font-size: 14px;
}

/* â”€â”€ DELIVERABLES â”€â”€ */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.deliv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,119,34,.2);
  border-radius: 10px;
  padding: 32px 26px;
  transition: .25s;
  backdrop-filter: blur(8px);
}

.deliv-card:hover {
  background: rgba(232,119,34,.07);
  border-color: var(--color-orange);
  transform: translateY(-4px);
}

.deliv-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 14px;
}

.deliv-card h4 {
  font-size: 16px;
  color: var(--color-brown);
  margin-bottom: 10px;
  font-weight: 700;
}

.deliv-card p {
  font-size: 13px;
  color: var(--color-brown);
  line-height: 1.65;
  margin-bottom: 16px;
}

.deliv-uses {
  list-style: none;
}

.deliv-uses li {
  font-size: 12px;
  color: var(--color-brown);
  padding: 4px 0;
  display: flex;
  gap: 8px;
}

.deliv-uses li::before {
  content: 'âœ“';
  color: var(--color-orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* â”€â”€ WHY SVR â”€â”€ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-grid .why-card{
    text-align: center;
    border: 1px solid rgba(232, 119, 34, .25);
    padding: 1.5rem;
    border-radius: 1rem;
}

.why-list {
  list-style: none;
  margin-top: 24px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list__icon {
    width: 152px;
    /* height: 100px; */
    border-radius: 8px;
    /* background: var(--color-orange-light); */
    /* border: 1px solid rgba(232, 119, 34, .25); */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    flex-shrink: 0;
    /* transition: background .3s, transform .3s; */
    margin: 0 auto;
    margin-bottom: 1rem;
}
.why-list__icon img{
    width: 100%;
}

.why-list li:hover .why-list__icon {
  background: var(--color-orange);
  transform: scale(1.05);
}

.why-list li:hover .why-list__icon svg * {
  stroke: white;
}

.why-list__text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.why-list__text p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.why-cta-box {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  border-radius: 10px;
  padding: 36px;
  color: var(--color-white);
  text-align: center;
}

.why-cta-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.why-cta-box p {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 24px;
  line-height: 1.65;
}

.why-cta-box .btn {
  background: white;
  color: var(--color-orange);
  font-weight: 700;
  margin: 0 auto;
}

.why-rating-levels {
  margin-top: 24px;
  background: var(--color-bg);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--color-border);
}

.why-rating-levels__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.why-rating-levels__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-level-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-level-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rating-level-row__bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
}

.rating-level-row__label {
  font-size: 12px;
  font-weight: 600;
  min-width: 70px;
}

/* â”€â”€ CONTACT â”€â”€ */
.contact-wrap {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(232,119,34,.12);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-item__text strong {
  display: block;
  font-size: 12px;
  color: var(--color-brown);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-item__text span {
  font-size: 14px;
  color: var(--color-brown);
}

.contact-note {
  margin-top: 32px;
  padding: 20px;
  background: rgba(232,119,34,.1);
  border: 1px solid rgba(232,119,34,.25);
  border-radius: 8px;
}

.contact-note p {
  font-size: 13px;
  color: var(--color-brown);
  line-height: 1.7;
}

.contact-note strong {
  color: var(--color-orange);
  display: block;
  margin-bottom: 6px;
}

/* â”€â”€ FORM â”€â”€ */
.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--color-brown);
  font-family: 'Inter', sans-serif;
  transition: border .2s, background .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(73,43,30,.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background: var(--color-orange-light);
}

.form-group select option {
  background: #fff;
  color: var(--color-brown);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* form card wrapper */
.contact-wrap > div:last-child {
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(232,119,34,.2);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(73,43,30,.08);
}

.form-success {
  display: none;
  background: rgba(232,119,34,.1);
  border: 1px solid var(--color-orange);
  border-radius: 5px;
  padding: 14px;
  color: var(--color-orange-dark);
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
}

/* â”€â”€ FOOTER â”€â”€ */
.footer {
  background: var(--color-white);
  padding: 56px 0 0;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.footer__tagline {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 14px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li::before {
  content: 'â€º';
  color: var(--color-orange);
  font-size: 14px;
  line-height: 1;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #444;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--color-orange);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

.footer-contact-item__text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}

.footer-social-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: var(--color-orange-light);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 12px;
  color: #aaa;
}

/* â”€â”€ WHATSAPP FLOAT â”€â”€ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 960px) {
    html{
        overflow-x: hidden;
    }
  .hero__grid,
  .strategic-grid,
  .stage-model,
  .cert-detail--pre,
  .cert-detail--final,
  .about-cert-grid,
  .why-grid         { grid-template-columns: 1fr; }

  /*.hero__visual     { display: none; }*/
  .meth-grid        { grid-template-columns: repeat(3, 1fr); }
  .problem-grid, .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .deliv-grid       { grid-template-columns: 1fr; }
  .contact-wrap     { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
  .stats-strip      { grid-template-columns: repeat(2, 1fr); }
  .why-grid{
      gap: 30px;
  }
}

@media (max-width: 600px) {
  .section          { padding: 52px 0; }
  .nav__links       { display: none; }
  .nav__hamburger   { display: flex; }

  .nav__links.open  {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark);
    padding: 20px 28px;
    gap: 16px;
  }

  .meth-grid        { grid-template-columns: 1fr 1fr; }
  .problem-grid     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer__inner    { grid-template-columns: 1fr; }
  .footer__bottom   { flex-direction: column; text-align: center; }
  .rating-table     { font-size: 12px; }
  .rating-table th,
  .rating-table td  { padding: 10px 12px; }
}

/* â”€â”€ MOBILE FIXED CTA BUTTONS: 525px â”€â”€ */
@keyframes pulseOrange {
  0%   { box-shadow: 0 -5px 0 #a03d00, 0 -2px 18px rgba(232,119,34,.3); }
  50%  { box-shadow: 0 -5px 0 #a03d00, 0 -2px 40px rgba(232,119,34,.9), 0 0 70px rgba(232,119,34,.4); }
  100% { box-shadow: 0 -5px 0 #a03d00, 0 -2px 18px rgba(232,119,34,.3); }
}
@keyframes pulseDark {
  0%   { box-shadow: 0 -5px 0 #0e0704, 0 -2px 18px rgba(73,43,30,.3); }
  50%  { box-shadow: 0 -5px 0 #0e0704, 0 -2px 40px rgba(73,43,30,.8), 0 0 70px rgba(73,43,30,.35); }
  100% { box-shadow: 0 -5px 0 #0e0704, 0 -2px 18px rgba(73,43,30,.3); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 525px) {
  .nav__cta-group { display: none; }
  .nav-fixed-cta-left,
  .nav-fixed-cta-right { display: none; }

  .nav-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
  }

  .nav-fixed-cta__enquire,
  .nav-fixed-cta__apply {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .1s, box-shadow .1s;
  }

  /* 3D press on tap */
  .nav-fixed-cta__enquire:active {
    transform: translateY(4px);
    box-shadow: 0 -1px 0 #0e0704 !important;
  }
  .nav-fixed-cta__apply:active {
    transform: translateY(4px);
    box-shadow: 0 -1px 0 #a03d00 !important;
  }

  /* ENQUIRE â€” dark brown 3D */
  .nav-fixed-cta__enquire {
    background: linear-gradient(90deg, #7a4530 0%, #492b1e 50%, #2e1a10 100%);
    border-right: 1px solid rgba(255,255,255,.1);
    animation: pulseDark 1.8s ease-in-out infinite;
  }

  /* APPLY â€” orange 3D */
  .nav-fixed-cta__apply {
    background: linear-gradient(90deg, #ffaa55 0%, #E87722 50%, #b85500 100%);
    animation: pulseOrange 1.8s ease-in-out infinite;
    animation-delay: .9s;
  }

  /* Shimmer sweep */
  .nav-fixed-cta__enquire::after,
  .nav-fixed-cta__apply::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.28) 50%, transparent 75%);
    background-size: 200% auto;
    animation: shimmer 2s linear infinite;
    pointer-events: none;
  }
  .nav-fixed-cta__apply::after { animation-delay: .9s; }

  body { padding-bottom: 58px; }
}

/* â”€â”€â”€ TIERS TEASER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tiers{padding:60px 0;background:#fff;}
.tiers-header{text-align:center;max-width:600px;margin:0 auto 56px;}
.tiers-header h2{font-size:clamp(28px,4vw,42px);margin-bottom:16px;color:var(--dk);}
.tiers-header p{font-size:15px;color:var(--mu);line-height:1.7;}
.tiers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:2rem;}
.tier{border-radius:12px;padding:32px 22px;text-align:center;transition:.25s;cursor:default;}
.tier:hover{transform:translateY(-5px);}
.tier.t-pt{background:linear-gradient(160deg,#F0F4F8,#E4EBF5);border:2px solid #B0C4DE;}
.tier.t-go{background:linear-gradient(160deg,#FFFBF0,#FFF4D0);border:2px solid #D4AF37;}
.tier.t-si{background:linear-gradient(160deg,#F8F8F8,#EFEFEF);border:2px solid #A8A9AD;}
.tier.t-br{background:linear-gradient(160deg,#FDF5EE,#F5E8D8);border:2px solid #CD7F32;}
.tier-medal{margin:0 auto 18px;display:block;}
.tier h3{font-size:20px;margin-bottom:6px;}
.tier.t-pt h3{color:#3A5A8A;}
.tier.t-go h3{color:#9A6E00;}
.tier.t-si h3{color:#555;}
.tier.t-br h3{color:#7A3A10;}
.tier p{font-size:13px;color:var(--mu);line-height:1.6;}
.tiers-gate{margin-top:40px;background:#492b1e;border-radius:12px;padding:36px 48px;display:flex;align-items:center;justify-content:space-between;gap:32px;}
.tiers-gate-text h3{font-size:20px;color:#fff;margin-bottom:8px;}
.tiers-gate-text p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.65;}
/* â”€â”€â”€ ENQUIRY MODAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.eq-overlay{position:fixed;inset:0;background:rgba(73,43,30,.55);backdrop-filter:blur(4px);z-index:900;display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .25s;}
.eq-overlay.open{opacity:1;pointer-events:all;}
.eq-modal{background:#fff;border-radius:14px;width:100%;max-width:480px;box-shadow:0 24px 64px rgba(73,43,30,.2);overflow:hidden;transform:translateY(16px);transition:transform .25s;}
.eq-overlay.open .eq-modal{transform:translateY(0);}
.eq-head{background:linear-gradient(135deg,#ffebd4,#fff0e6);padding:28px 32px 20px;border-bottom:1px solid var(--br);position:relative; margin-bottom: 1rem;}
.eq-head h3{font-family:'Playfair Display',serif;font-size:22px;color:var(--dk);margin-bottom:6px;text-align: center;}
.eq-head p{font-size:13px;color:var(--mu);line-height:1.55;text-align: center;}
.eq-close{position:absolute;top:16px;right:18px;background:none;border:none;font-size:22px;color:var(--mu);cursor:pointer;line-height:1;padding:4px 8px;border-radius:4px;transition:background .2s;}
.eq-close:hover{background:rgba(73,43,30,.08);}
.eq-body{padding:24px 32px 40px;}
.eq-fg{margin-bottom:14px;}
.eq-fg label{display:block;font-size:11px;font-weight:600;color:var(--mu);margin-bottom:6px;letter-spacing:.5px;text-transform:uppercase;}
.eq-fg input,.eq-fg select,.eq-fg textarea{width:100%;background:#FAF8F5;border:1px solid var(--br);border-radius:6px;padding:11px 14px;font-size:14px;color:var(--dk);font-family:'Inter',sans-serif;outline:none;transition:border .2s,background .2s;}
.eq-fg input:focus,.eq-fg select:focus,.eq-fg textarea:focus{border-color:var(--o);background:var(--lo);}
.eq-fg input::placeholder,.eq-fg textarea::placeholder{color:rgba(73,43,30,.35);}
.eq-fg textarea{resize:vertical;min-height:80px;}
.eq-fg select option{background:#fff;color:var(--dk);}
.eq-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom: 1.1rem;}
.eq-submit{width:100%;padding:13px;font-size:14px;margin-top:4px;text-align: center;justify-content: center;}
.eq-note{font-size:11px;color:var(--mu);text-align:center;margin-top:10px;}
.eq-success{display:none;background:rgba(232,119,34,.08);border:1px solid var(--o);border-radius:8px;padding:18px;color:var(--od);font-size:14px;text-align:center;line-height:1.6;margin-top:12px;}
@media(max-width:480px){.eq-body,.eq-head{padding-left:20px;padding-right:20px;}.eq-row{grid-template-columns:1fr;}}
/* â”€â”€â”€ PROOF STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.proof {
    background: var(--dk);
    padding: 20px 0;
    border-top: 1px solid rgba(232, 119, 34, .15);
    border-bottom: 1px solid #ccc;
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.proof-inner {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 33px;
    flex-wrap: wrap;
}
.proof-item{display:flex;align-items:center;gap:10px;color:#492b1e;font-size:13px;}
.proof-item strong {
    color: #492b1e;
    font-size: 25px;
    font-family: 'Playfair Display', serif;
}
.proof-sep{width:1px;height:24px;background:rgba(255,255,255,.12);}
.about-grid{
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 64px;
    align-items: center;
}
.about-grid p{
    margin-bottom: 10px;
    max-width: 100%;
}
html{
    overflow-x: hidden;
}

@media(max-width: 525px){
    .nav__cta-group{
        display: flex !important;
        gap: 0.4rem;
    }
    .nav__cta-group a{
        font-size: 13px !important;
        padding: 10px 20px !important;
    }
    .proof{
        width: 100%;
        display: none;
    }
    .about-grid, .strategic-quads, .tiers-grid, .why-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .strategic-image img{
            height: 23rem;
    }
    .nav__cta-group a.btn.btn--orange{
        display: none;
    }
}

/* â”€â”€ HOW IT WORKS â”€â”€ */
.hiw-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 56px;
}

.hiw-step {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-orange);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: .25s;
  position: relative;
}

.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,119,34,.12);
}

.hiw-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hiw-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--color-orange);
  transition: background .25s;
}

.hiw-step:hover .hiw-step__icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.hiw-step h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.hiw-step p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

.hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--color-orange);
  opacity: .5;
}

.hiw-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 18px 32px;
  background: var(--color-orange-light);
  border-radius: 8px;
  border-left: 3px solid var(--color-orange);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brown);
}

.hiw-note__sep {
  color: var(--color-orange);
  font-weight: 700;
}

@media(max-width: 525px) {
  .hiw-flow {
    grid-template-columns: 1fr;
  }
  .hiw-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }
  .hiw-note {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hiw-note__sep {
    display: none;
  }
}

/* â”€â”€ WHAT YOU GAIN â”€â”€ */
.wg-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.wg-left {
  position: sticky;
  top: 100px;
}

.wg-left .section-title {
  margin-bottom: 28px;
}

.wg-closing {
  border-left: 3px solid var(--color-orange);
  padding-left: 18px;
  margin-top: 8px;
}

.wg-closing p {
  font-size: 16px;
  color: var(--color-brown);
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.wg-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wg-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: .2s;
}

.wg-item:first-child {
  padding-top: 0;
}

.wg-item:last-child {
  border-bottom: none;
}

.wg-item__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: background .25s, transform .25s;
}

.wg-item:hover .wg-item__icon {
  background: var(--color-orange);
  transform: scale(1.06);
}

.wg-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .25s;
}

.wg-item:hover .wg-item__icon img {
  filter: brightness(0) invert(1);
}

.wg-item__text h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.wg-item__text p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

@media(max-width: 525px) {
  .wg-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wg-left {
    position: static;
  }
}

/* â”€â”€ WHO IT'S FOR â”€â”€ */
.wif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.wif-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.wif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.wif-card:hover::before {
  transform: scaleX(1);
}

.wif-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232,119,34,.12);
  border-color: rgba(232,119,34,.3);
}

.wif-card__num {
  /*font-family: 'Playfair Display', serif;*/
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-orange);
  margin-bottom: 4px;
}

.wif-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
}

.wif-card p {
  font-size: 14.5px;
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

.wif-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-orange);
  transition: gap .2s;
}

.wif-card__cta:hover {
  gap: 12px;
}

@media(max-width: 525px) {
  .wif-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ WHAT YOU RECEIVE â”€â”€ */
.wyr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.wyr-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.wyr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232,119,34,.12);
  border-color: rgba(232,119,34,.35);
}

.wyr-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  transition: background .25s, color .25s;
  flex-shrink: 0;
}

.wyr-card:hover .wyr-card__icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.wyr-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  margin: 0;
}

.wyr-card p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.wyr-closing {
  margin-top: 48px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--color-brown);
  padding: 28px 32px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media(max-width: 525px) {
  .wyr-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ HOW IT WORKS v2 â”€â”€ */
.hiw-section {
  background: #F9F6F2;
  padding: 80px 0;
}

.hiw-header {
  max-width: 560px;
  margin-bottom: 64px;
}

.hiw-header .section-title {
  color: var(--color-brown);
}

.hiw2-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.hiw2-step {
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  position: relative;
}

.hiw2-step--last {
  padding-right: 0;
}

.hiw2-top {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.hiw2-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hiw2-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-orange);
  flex-shrink: 0;
  background: var(--color-orange-light);
}

.hiw2-line {
  flex: 1;
  height: 1.5px;
  background: rgba(232,119,34,.25);
  margin-left: 16px;
}

.hiw2-body {
  padding-right: 24px;
}

.hiw2-step--last .hiw2-body {
  padding-right: 0;
}

.hiw2-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-orange);
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.25);
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.hiw2-body h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw2-body p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.75;
}

@media(max-width: 525px) {
  .hiw2-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hiw2-step {
    padding-right: 0;
  }
  .hiw2-top {
    margin-bottom: 20px;
  }
  .hiw2-line {
    display: none;
  }
  .hiw2-body h3 {
    font-size: 18px;
  }
}

/* â”€â”€ HOW IT WORKS â€” footer bar â”€â”€ */
.hiw2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 20px;
}

.hiw2-footer__notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hiw2-footer__notes span {
  font-size: 16px;
  color: var(--color-brown);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  padding-left: 14px;
  border-left: 3px solid var(--color-orange);
}

@media(max-width: 525px) {
  .hiw2-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* â”€â”€ WHAT YOU RECEIVE v2 â”€â”€ */
.wyr2-section {
  /*background: var(--color-white);*/
  padding: 80px 0;
}

.wyr2-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}

.wyr2-left .section-title {
  margin-top: 12px;
  margin-bottom: 32px;
}

.wyr2-closing {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--color-brown);
  line-height: 1.5;
  padding-left: 18px;
  border-left: 3px solid var(--color-orange);
}

.wyr2-right {
  display: flex;
  flex-direction: column;
}

.wyr2-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background .2s;
}

.wyr2-item--last {
  border-bottom: none;
}

.wyr2-item__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(232,119,34,.2);
  line-height: 1;
  min-width: 48px;
  transition: color .25s;
}

.wyr2-item:hover .wyr2-item__num {
  color: var(--color-orange);
}

.wyr2-item__content {
  flex: 1;
}

.wyr2-item__content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.wyr2-item__content p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

.wyr2-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(232,119,34,.2);
  background: var(--color-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
}

.wyr2-item:hover .wyr2-item__icon {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}

@media(max-width: 525px) {
  .wyr2-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* â”€â”€ HOW IT WORKS â€” cards â”€â”€ */
.hiw-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 52px;
}

.hiw-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-orange);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}

.hiw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,119,34,.12);
}

.hiw-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 16px;
  line-height: 1;
  opacity: .25;
  transition: opacity .25s;
}

.hiw-card:hover .hiw-card__num {
  opacity: 1;
}

.hiw-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-orange-light);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--color-orange);
  transition: background .25s, color .25s;
}

.hiw-card:hover .hiw-card__icon {
  background: var(--color-orange);
  color: var(--color-white);
}

.hiw-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.hiw-card p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

.hiw-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--color-orange);
  opacity: .4;
}

.hiw-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 22px 32px;
  background: var(--color-orange-light);
  border-radius: 8px;
  border-left: 3px solid var(--color-orange);
}

.hiw-bottom__notes {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brown);
}

.hiw-bottom__sep {
  color: var(--color-orange);
  font-weight: 700;
}

@media(max-width: 525px) {
  .hiw-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hiw-card__arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .hiw-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* â”€â”€ HOW IT WORKS v3 â€” split panel â”€â”€ */
.hiw3-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.hiw3-left {
  background: var(--color-orange-light);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* subtle circle watermark */
.hiw3-left::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(232,119,34,.15);
  bottom: -120px;
  right: -120px;
  pointer-events: none;
}

.hiw3-left::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(232,119,34,.12);
  bottom: -60px;
  right: -60px;
  pointer-events: none;
}

.hiw3-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: var(--color-brown);
  line-height: 1.25;
  margin: 12px 0 28px;
}

.hiw3-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.hiw3-tagline span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-orange);
  text-transform: uppercase;
}

.hiw3-tagline svg {
  color: rgba(232,119,34,.5);
  flex-shrink: 0;
}

.hiw3-notes {
  border-left: 3px solid var(--color-orange);
  padding-left: 16px;
}

.hiw3-notes p {
  font-size: 14px;
  color: var(--color-brown);
  font-style: italic;
  line-height: 1.8;
}

.hiw3-right {
  background: var(--color-white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid var(--color-border);
}

.hiw3-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.hiw3-step:last-child {
  border-bottom: none;
}

.hiw3-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-orange);
  opacity: .18;
  line-height: 1;
  min-width: 52px;
  transition: opacity .25s;
}

.hiw3-step:hover .hiw3-step__num {
  opacity: 1;
}

.hiw3-step__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid rgba(232,119,34,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 4px;
  transition: background .25s, color .25s;
}

.hiw3-step:hover .hiw3-step__icon {
  background: var(--color-orange);
  color: #fff;
}

.hiw3-step__body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.hiw3-step__body p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.65;
}

.hiw3-connector {
  display: none;
}

@media(max-width: 768px) {
  .hiw3-section {
    grid-template-columns: 1fr;
  }
  .hiw3-left, .hiw3-right {
    padding: 40px 28px;
  }
  .hiw3-right {
    border-left: none;
    border-top: 1px solid var(--color-border);
  }
  .strategic-image{
      display: none;
  }
}
@media(max-width: 1100px) and (min-width: 992px){
    .nav__links{
        gap: 16px;
    }
    .nav__links a{
        font-size: 12px;
    }
    .nav__cta-group a{
        padding: 6px 14px !important;
        font-size: 12px !important;
    }
}
@media(max-width: 991px) {
    .nav__links{
        display: none;
    }
}






/* Error message text */
.svr-error-msg {
  display: block;
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

/* Invalid field border */
input.svr-invalid,
select.svr-invalid {
  border-color: #c0392b !important;
  background-color: #fff8f7 !important;
  outline: none;
}

/* Valid field border */
input.svr-valid,
select.svr-valid {
  border-color: #27ae60 !important;
  background-color: #f7fff9 !important;
}

/* Optional: small checkmark on valid fields */
input.svr-valid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-widt>
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}



.panchtatva-strip {
    background: rgba(255,255,255,0.92);
    padding: 30px 0 30px;
    border-top: 1px solid rgba(232, 119, 34, .15);
    position: relative;
    width: 100%;
    backdrop-filter: blur(8px);
}

.panchtatva-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

/* separator */
.tatva-sep {
    width: 1px;
    height: 48px;
    background: rgba(232, 119, 34, .2);
    flex-shrink: 0;
    margin: 0 28px;
}

/* each element item */
.tatva-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    position: relative;
    padding: 6px 10px;
    border-radius: 10px;
    transition: background .3s;
    opacity: 0;
    transform: translateY(10px);
    animation: tatvaEnter .5s ease forwards;
    flex-direction: column;
}

.tatva-item:hover {
    background: rgba(232, 119, 34, .07);
}
.tatva-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.tatva-item:hover .tatva-icon {
    box-shadow: 0 4px 16px rgba(232, 119, 34, .3);
}

/* text */
.tatva-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tatva-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-top: 1px;
}

/* element-specific icon animations */
@keyframes earthPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.08); }
}
@keyframes waterWave {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-4px); }
}
@keyframes fireFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25%       { transform: scale(1.06) rotate(-2deg); }
    75%       { transform: scale(1.04) rotate(2deg); }
}
@keyframes windSway {
    0%, 100% { transform: rotate(0deg); }
    33%       { transform: rotate(-5deg); }
    66%       { transform: rotate(5deg); }
}
@keyframes skyFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-5px) scale(1.05); }
}

.tatva-earth .tatva-icon img  { animation: earthPulse 3s ease-in-out infinite; }
.tatva-water .tatva-icon img  { animation: waterWave 2.5s ease-in-out infinite .3s; }
.tatva-fire  .tatva-icon img  { animation: fireFlicker 1.8s ease-in-out infinite .6s; }
.tatva-wind  .tatva-icon img  { animation: windSway 2.2s ease-in-out infinite .9s; }
.tatva-sky   .tatva-icon img  { animation: skyFloat 3.5s ease-in-out infinite 1.2s; }

/* entry animation for the whole strip */
.tatva-earth { animation-delay: .1s; }
.tatva-water { animation-delay: .2s; }
.tatva-fire  { animation-delay: .3s; }
.tatva-wind  { animation-delay: .4s; }
.tatva-sky   { animation-delay: .5s; }

@keyframes tatvaEnter {
    to { opacity: 1; transform: translateY(0); }
}
