/* ============================================================
   ANUJ KUMAR BHATIA — MAIN STYLESHEET
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --color-white:   #ffffff;
  --color-beige:   #f7f3ee;
  --color-beige-dark: #ede8e0;
  --color-sage:    #8a9e85;
  --color-sage-dark: #6b7f67;
  --color-lavender:#b8aec7;
  --color-lavender-light: #d6cfe3;
  --color-text:    #2c2c2c;
  --color-text-muted: #6b6b6b;
  --color-text-light: #9a9a9a;
  --color-border:  #e8e3dc;
  --font-serif:    'Cormorant Garamond', serif;
  --font-sans:     'Inter', sans-serif;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --transition:    0.3s ease;
  --nav-h:         72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
p  { font-size: 1rem; line-height: 1.75; color: var(--color-text-muted); }

/* ---- Layout Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section--beige { background: var(--color-beige); }
.section--dark  { background: var(--color-text); color: var(--color-white); }
.section--dark p, .section--dark h2, .section--dark h3 { color: var(--color-white); }
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse .service-img,
.two-col--reverse .about-img { order: 2; }
.two-col--reverse .service-text,
.two-col--reverse .about-text { order: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn--primary {
  background: var(--color-sage);
  color: var(--color-white);
  border-color: var(--color-sage);
}
.btn--primary:hover {
  background: var(--color-sage-dark);
  border-color: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138,158,133,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-text);
}
.btn--sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-lavender-light);
  color: #5a4e6e;
  vertical-align: middle;
}
.badge--sage { background: #d4e3d1; color: #3d5e3a; }
.badge--top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-sage);
  color: white;
  white-space: nowrap;
}

/* ---- Card ---- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card--featured {
  border-color: var(--color-sage);
  box-shadow: 0 4px 24px rgba(138,158,133,0.22);
}
.card--featured:hover {
  box-shadow: 0 8px 36px rgba(138,158,133,0.32);
}

/* ---- Navbar ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  height: var(--nav-h);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 0.1rem;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
}
.logo-tagline {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-sage);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--color-text); }
.nav-link.active { color: var(--color-sage); font-weight: 500; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--color-sage);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-link.active::after { left: 0.75rem; right: 0.75rem; }
.nav-link--muted { opacity: 0.7; }
.nav-cta { margin-left: 0.75rem; }

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--color-beige); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Drawer ---- */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}
.mobile-menu.open {
  max-height: 480px;
  padding: 1.25rem 1.5rem 1.5rem;
}
.mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover, .mobile-link.active { color: var(--color-sage); }
.mobile-cta { margin-top: 1rem; text-align: center; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,44,44,0.72) 0%, rgba(44,44,44,0.45) 100%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero--text-only {
  min-height: 55vh;
  background: linear-gradient(135deg, var(--color-text) 0%, #4a4240 100%);
}
.hero--text-only::after { display: none; }
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ---- Home Hero Layout ---- */
.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 5rem 0 3rem;
}
.home-hero-left .anuj-label {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.home-hero-left .coach-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.75rem;
}
.home-hero-right .tagline-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.home-hero-wisdom {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
}
.wisdom-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-white);
  margin-bottom: 2rem;
  font-style: italic;
}
.wisdom-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-bottom: 2.5rem;
}
.wisdom-check {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wisdom-check::before {
  content: '✓';
  color: var(--color-sage);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- Focus Cards Grid ---- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.focus-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.focus-card .focus-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.focus-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.focus-card p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.focus-card .focus-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-sage);
  letter-spacing: 0.03em;
  transition: gap var(--transition);
}
.focus-card .focus-link:hover { color: var(--color-sage-dark); }

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card { padding: 2rem 1.75rem; }
.service-card .svc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.service-card ul { padding: 0; margin-bottom: 1.25rem; }
.service-card ul li {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.service-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-sage);
}
.service-card .svc-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-sage);
}

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.pricing-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.pricing-duration {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.4rem;
}
.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0.75rem 0 0.5rem;
  line-height: 1;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.pricing-features {
  text-align: left;
  margin-bottom: 1.75rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

/* ---- Testimonial Cards ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card { padding: 2.5rem 2rem; }
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.stars svg {
  width: 18px; height: 18px;
  fill: #f0c040;
  stroke: none;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  font-family: var(--font-sans);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-lavender) 100%);
  padding: 6rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ---- About Preview ---- */
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-text { padding: 1rem 0; }
.about-text .role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.about-text .role-tag {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-sage);
}
.about-text .role-tag::after { content: ' ·'; margin-right: 0.25rem; }
.about-text .role-tag:last-child::after { content: ''; }

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-sage), var(--color-lavender));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 3rem);
  padding-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 3rem);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-sage);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-sage);
  z-index: 1;
}
.timeline-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  max-width: 440px;
  width: 100%;
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: 0.4rem;
}
.timeline-content h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.timeline-content p  { font-size: 0.9rem; }

/* ---- Stat Cards ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-card { padding: 2rem; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-sage);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ---- Team Photo ---- */
.team-section {
  padding: 5rem 0;
  background: var(--color-beige);
  text-align: center;
}
.team-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}
.team-photo-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.team-caption {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-muted);
}

/* ---- Service Sections (alternating) ---- */
.service-section {
  padding: 5rem 0;
}
.service-section:nth-child(even) { background: var(--color-beige); }
.service-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.service-text { padding: 1rem 0; }
.service-text ul { margin: 1.25rem 0; }
.service-text ul li {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.service-text ul li:first-child { border-top: 1px solid var(--color-border); }
.service-text ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-sage);
}

/* ---- Contact Form ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 1.5rem; }
.contact-lang-note {
  background: var(--color-beige);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.contact-lang-note h4 { margin-bottom: 0.75rem; color: var(--color-sage); }
.contact-lang-note p  { font-size: 0.875rem; margin-bottom: 0.25rem; }
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
}
.form-row .form-group { margin-bottom: 0; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(138,158,133,0.15);
}
.form-control.error { border-color: #c0392b; }
.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: block;
}
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
}
.radio-option input[type="radio"] { accent-color: var(--color-sage); }
.contact-success {
  text-align: center;
  padding: 4rem 2rem;
  display: none;
}
.contact-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.contact-success h2 { margin-bottom: 1rem; }
.contact-success p  { max-width: 440px; margin: 0 auto 2rem; }

/* ---- Products Page ---- */
.products-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-beige) 0%, var(--color-lavender-light) 100%);
  position: relative;
  overflow: hidden;
}
.products-hero-bg {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  opacity: 0.12;
  pointer-events: none;
}
.products-hero-content { position: relative; z-index: 1; }
.products-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--color-text);
  font-weight: 300;
  line-height: 1.1;
}
.products-hero .coming-soon-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-sage);
  border: 1.5px solid var(--color-sage);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
  margin-top: 1.25rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.product-card .prod-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.product-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-card p  { font-size: 0.875rem; margin-bottom: 1rem; }
.notify-section {
  text-align: center;
  padding: 4rem 0;
}
.notify-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.notify-form input {
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 320px;
  max-width: 100%;
}
.notify-form input:focus {
  outline: none;
  border-color: var(--color-sage);
}
.notify-success {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-sage);
  margin-top: 1rem;
  display: none;
}

/* ---- Video Placeholder Card ---- */
.video-placeholder-card {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 3.5rem 2rem;
  text-align: center;
  background: var(--color-beige);
  transition: border-color var(--transition);
}
.video-placeholder-card:hover { border-color: var(--color-lavender); }
.play-icon {
  width: 60px; height: 60px;
  background: var(--color-lavender-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.play-icon svg { width: 24px; height: 24px; fill: var(--color-lavender); stroke: none; }

/* ---- Footer ---- */
#site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-white);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--color-sage);
  color: var(--color-white);
  background: rgba(138,158,133,0.2);
}
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-white); }
.footer-lang, .footer-products-list {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.35rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-disclaimer { max-width: 500px; font-style: italic; }

/* ---- Scroll Animations ---- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive: Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .focus-grid,
  .services-grid,
  .pricing-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0 2rem; }
  .home-hero-left .anuj-label { font-size: clamp(2.5rem, 5vw, 4rem); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col--reverse .service-img,
  .two-col--reverse .about-img { order: 0; }
  .two-col--reverse .service-text,
  .two-col--reverse .about-text { order: 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}

/* ---- Responsive: Mobile (≤ 768px) ---- */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 0; }
  .hero { min-height: 90vh; }
  .home-hero-grid { min-height: auto; }
  .focus-grid,
  .services-grid,
  .pricing-grid,
  .stats-grid,
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.5rem; }
  .about-img img,
  .service-img img { height: 300px; }
  .team-photo-wrap img { height: 260px; }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 56px;
    padding-right: 0;
  }
  .timeline-dot { left: 20px; }
  .home-hero-right .tagline-line { font-size: 1.3rem; }
  .wisdom-checks { gap: 0.75rem 1.5rem; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .notify-form input { width: 100%; }
}

/* ---- Responsive: Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .btn { padding: 0.75rem 1.5rem; }
  .pricing-price { font-size: 1.8rem; }
}

/* ============================================================
   POLISH & FINAL ADDITIONS
   ============================================================ */

/* Staggered animation delays for grid children */
.focus-grid .animate-in:nth-child(2),
.services-grid .animate-in:nth-child(2),
.pricing-grid .animate-in:nth-child(2),
.stats-grid .animate-in:nth-child(2),
.products-grid .animate-in:nth-child(2),
.testimonials-grid .animate-in:nth-child(2) { transition-delay: 0.1s; }

.focus-grid .animate-in:nth-child(3),
.services-grid .animate-in:nth-child(3),
.pricing-grid .animate-in:nth-child(3),
.stats-grid .animate-in:nth-child(3),
.products-grid .animate-in:nth-child(3) { transition-delay: 0.2s; }

.focus-grid .animate-in:nth-child(4),
.services-grid .animate-in:nth-child(4),
.pricing-grid .animate-in:nth-child(4),
.stats-grid .animate-in:nth-child(4),
.products-grid .animate-in:nth-child(4) { transition-delay: 0.3s; }

/* Fix form-row phone layout */
.form-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.75rem;
  align-items: start;
}
.form-row .form-group { margin-bottom: 0; }

/* Scroll margin so hash anchors clear the fixed navbar */
section[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* Image error fallback */
img.img-error {
  background: linear-gradient(135deg, var(--color-beige), var(--color-lavender-light));
  min-height: 300px;
}

/* Hero content z-index safety */
.hero--text-only .hero__content { position: relative; z-index: 1; }

/* Smooth select styling */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Testimonial card full-width on testimonials page */
.testimonials-full .testimonial-card {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline mobile: reset order overrides */
@media (max-width: 768px) {
  .two-col--reverse .service-img,
  .two-col--reverse .about-img,
  .two-col--reverse .service-text,
  .two-col--reverse .about-text { order: unset; }

  .form-row { grid-template-columns: 1fr; }

  .products-hero { min-height: 70vh; padding: 3rem 1.25rem; }
  .products-hero h1 { font-size: 3rem; }

  .cta-banner { padding: 4rem 0; }
  .cta-banner h2 { font-size: 1.8rem; }

  .pricing-card { padding: 2rem 1.25rem; }
  .testimonial-card { padding: 2rem 1.5rem; }

  /* Hero bg position for portrait images */
  .hero { background-position: center 40%; }
}

/* Page transition: prevent layout flash during fade */
#app { min-height: 60vh; }

/* Focus ring for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 2px;
}

/* ============================================================
   ADDITIONS — bug fixes + new elements
   ============================================================ */

/* Pricing USD + save */
.pricing-usd { font-size:0.9rem; color:var(--color-text-muted); margin-bottom:0.25rem; }
.pricing-save { font-size:0.78rem; font-weight:600; color:#3d8b3d; background:#e8f5e9; border-radius:50px; padding:0.2rem 0.65rem; display:inline-block; margin-bottom:0.75rem; }
.pricing-best { font-size:0.82rem; color:var(--color-text-muted); margin-bottom:1rem; }
.pricing-gift { font-size:0.82rem; color:var(--color-sage); margin-top:0.75rem; margin-bottom:0; }

/* Focus card as link */
a.focus-link-card { text-decoration:none; color:inherit; display:block; }
a.focus-link-card:hover { color:inherit; }
a.focus-link-card .focus-link { color:var(--color-sage); font-size:0.875rem; font-weight:500; margin-top:auto; display:inline-block; }

/* Testimonial avatar */
.testi-avatar {
  width:48px; height:48px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:white; font-family:var(--font-serif); font-size:1.2rem;
  flex-shrink:0;
}

/* Technique list on focus pages */
.technique-list { padding:0; }
.technique-list li {
  font-size:0.9rem; color:var(--color-text-muted);
  padding:0.55rem 0 0.55rem 1.5rem; position:relative;
  border-bottom:1px solid var(--color-border);
}
.technique-list li:first-child { border-top:1px solid var(--color-border); }
.technique-list li::before { content:'✓'; position:absolute; left:0; color:var(--color-sage); font-weight:700; }

/* Back link */
.back-link { display:inline-flex; align-items:center; gap:0.5rem; color:var(--color-sage); font-size:0.875rem; font-weight:500; margin-bottom:2rem; }
.back-link:hover { color:var(--color-sage-dark); }

/* ---- FIX: Hero mobile overlap ---- */
/* On mobile, stack the two-col hero so name doesn't overlap photo */
@media (max-width: 768px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    gap: 1.5rem;
  }
  .home-hero-left .anuj-label {
    font-size: 2.8rem;
    line-height: 1;
  }
  .home-hero-left {
    text-align: center;
  }
  .home-hero-right {
    text-align: center;
  }
  .home-hero-right .tagline-line {
    font-size: 1.3rem;
  }
  .tagline-sm { font-size:1rem !important; }
  .tagline-xs { font-size:0.85rem !important; }
  /* Hero background: show image above, content below */
  .hero {
    background-position: center 40%;
  }
  /* Keep hero content visible above overlay */
  .hero__content {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* pricing card stacked */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* Tagline utility classes */
.tagline-dim  { color:rgba(255,255,255,0.75) !important; font-size:clamp(1.1rem,2.2vw,1.9rem); }
.tagline-sm   { font-size:clamp(0.95rem,1.8vw,1.5rem) !important; color:rgba(255,255,255,0.72) !important; }
.tagline-xs   { font-size:clamp(0.82rem,1.4vw,1.1rem) !important; color:rgba(255,255,255,0.55) !important; }
.coach-label  { color:rgba(255,255,255,0.55); font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase; margin-bottom:0.75rem; }

/* Wisdom sub text */
.wisdom-sub { color:rgba(255,255,255,0.65); margin-bottom:1.75rem; font-size:0.95rem; }
