/* ========================================
   PANDIT PARAMJYOTI — MAIN STYLESHEET
   ======================================== */

/* ---- TOKENS ---- */
:root {
  --sand: #f5f0e8;
  --sand-mid: #ede5d5;
  --sage: #9aaa8a;
  --sage-dark: #7a8e6c;
  --sage-pale: #e8eedf;
  --warm-bg: #faf7f2;
  --gold: #c9a84c;
  --gold-light: #e5c97e;
  --espresso: #2b1e0f;
  --ink: #1e1e1e;
  --ink-mid: #3d3730;
  --ink-light: #6b6358;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
  --transition: 0.3s ease;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 100px 0;
}

.bg-sage {
  background: var(--sage-pale);
}

.bg-warm {
  background: var(--warm-bg);
}

.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto;
}

.section-header.center {
  margin-bottom: 60px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(122, 142, 108, 0.35);
}

.btn-primary.gold {
  background: var(--gold);
}

.btn-primary.gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.35);
}

.btn-primary.full {
  display: block;
  text-align: center;
}

.btn-primary.large {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn-ghost {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

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

.btn-outline {
  display: inline-block;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage-dark);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-nav-cta {
  background: var(--sage-dark);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background: var(--sage);
}

/* ---- NAVBAR ---- */
.nav-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
}

.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 62px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-logo a {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-pale);
  color: var(--sage-dark);
}

/* Dropdown — sits flush against the nav item so hover is never lost */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 10;
  margin-top: 4px;
}

.has-dropdown:hover .dropdown {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Bridge: transparent strip that covers the small margin-top gap */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
  display: none;
}

.has-dropdown:hover::after {
  display: block;
}

.dropdown li a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: block;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-icon {
  color: var(--ink-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.nav-icon:hover {
  color: var(--sage-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 20, 10, 0.35) 0%,
      rgba(30, 20, 10, 0.55) 50%,
      rgba(30, 20, 10, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  padding: 0 24px;
  animation: heroFadeUp 1.1s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-lang {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
}

.lang-btn {
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.lang-btn:hover,
.lang-btn.active {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  right: 48px;
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--espresso);
  padding: 40px 0;
}

.intro-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.intro-stat {
  text-align: center;
  padding: 0 60px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.intro-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse {}

@media (min-width: 900px) {
  .two-col.reverse .col-text {
    order: 1;
  }

  .two-col.reverse .col-image {
    order: 0;
  }
}

.col-text p {
  color: var(--ink-light);
  margin-bottom: 16px;
  font-size: 1rem;
}

.col-text .section-label {
  display: block;
}

.col-text .section-title {
  margin-bottom: 24px;
}

.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-frame:hover img {
  transform: scale(1.03);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--gold);
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--espresso);
  border-color: var(--gold);
  border-width: 2px;
}

.pricing-card.featured .pricing-badge {
  background: var(--gold);
  color: var(--espresso);
}

.pricing-card.featured .pricing-price .price-amount {
  color: var(--gold);
}

.pricing-card.featured .pricing-price .price-period {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured .pricing-tagline {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .pricing-features li.muted {
  color: rgba(255, 255, 255, 0.35);
}

.pricing-card.featured .pricing-note {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-card.featured .pricing-note strong {
  color: var(--gold);
}

.pricing-badge {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.pricing-popular {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}

.pricing-price {
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--espresso);
}

.price-period {
  font-size: 0.9rem;
  color: var(--ink-light);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li.muted {
  color: var(--ink-light);
  opacity: 0.6;
}

.check {
  color: var(--sage-dark);
  font-weight: 700;
}

.cross {
  color: #ccc;
}

.pricing-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 12px;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--ink-light);
}

.pricing-footer a {
  color: var(--sage-dark);
  font-weight: 600;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--sage-pale);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 28px;
}

.testimonial-card>p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  font-style: italic;
  margin-top: 40px;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ink-light);
}

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 30, 15, 0.88) 0%, rgba(122, 142, 108, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--gold);
  color: var(--espresso) !important;
  font-weight: 700;
}

.footer-cta:hover {
  background: var(--gold-light);
  color: var(--espresso) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   MEMBERSHIP PAGE
   ================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
}

.page-hero .section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-light);
  font-size: 1.1rem;
}

/* ---- MEMBERSHIP FEATURES DEEP DIVE ---- */
.features-section {
  padding: 80px 0;
}

.tier-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.tier-feature.flip {}

@media (min-width: 900px) {
  .tier-feature.flip .tier-feature-content {
    order: 1;
  }

  .tier-feature.flip .tier-feature-visual {
    order: 0;
  }
}

.tier-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.tier-label.t1 {
  background: var(--sage-pale);
  color: var(--sage-dark);
}

.tier-label.t2 {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
}

.tier-feature-content h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 20px;
}

.tier-feature-content p {
  color: var(--ink-light);
  margin-bottom: 16px;
}

.tier-feature-content .btn-primary {
  margin-top: 16px;
}

.tier-feature-visual .img-frame {
  height: 440px;
}

/* ---- REGISTER PAGE ---- */
.register-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.register-left {
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.register-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('resources/branding-prithu20.jpg') center/cover;
  opacity: 0.15;
}

.register-left-content {
  position: relative;
  z-index: 1;
}

.register-left .logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
}

.register-left h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.register-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.register-tier-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
}

.register-tier-preview h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.register-tier-preview .price {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 16px;
}

.register-tier-preview ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-tier-preview li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.register-tier-preview li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

.register-right {
  background: var(--warm-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}

.register-right h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}

.register-right .subtitle {
  color: var(--ink-light);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

/* ---- FORM ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 3px rgba(122, 142, 108, 0.15);
}

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

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.form-divider span {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.tier-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.tier-option {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tier-option.selected {
  border-color: var(--sage-dark);
  background: var(--sage-pale);
}

.tier-option.selected-gold {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.tier-option strong {
  display: block;
  font-size: 0.9rem;
  color: var(--espresso);
}

.tier-option span {
  font-size: 0.8rem;
  color: var(--ink-light);
}

.payment-methods {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.payment-method {
  flex: 1;
  min-width: 100px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-light);
  transition: var(--transition);
}

.payment-method.active {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  background: var(--sage-pale);
}

.payment-method:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.card-fields {
  display: none;
}

.card-fields.visible {
  display: block;
  animation: fadeIn 0.3s ease;
}

.submit-btn {
  width: 100%;
  background: var(--sage-dark);
  color: var(--white);
  border: none;
  padding: 17px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 142, 108, 0.3);
}

.submit-btn.gold-btn {
  background: var(--gold);
}

.submit-btn.gold-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.form-footnote {
  font-size: 0.8rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.form-footnote a {
  color: var(--sage-dark);
}

.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.security-badge {
  font-size: 0.75rem;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.security-badge svg {
  color: var(--sage-dark);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .intro-stat {
    padding: 0 36px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
  }

  .btn-nav-cta {
    display: none;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse .col-text,
  .two-col.reverse .col-image {
    order: unset;
  }

  .intro-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .intro-divider {
    display: none;
  }

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

  .register-wrapper {
    grid-template-columns: 1fr;
  }

  .register-left {
    display: none;
  }

  .register-right {
    padding: 48px 28px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section-pad {
    padding: 60px 0;
  }

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

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

  .hero-title {
    font-size: 3rem;
  }

  .hero-lang {
    display: none;
  }
}

/* ---- SCROLL REVEAL ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: none;
}

.service-card:nth-child(2),
.testimonial-card:nth-child(2) {
  transition-delay: 0.1s;
}

.service-card:nth-child(3),
.testimonial-card:nth-child(3) {
  transition-delay: 0.2s;
}

.service-card:nth-child(4) {
  transition-delay: 0.05s;
}

.service-card:nth-child(5) {
  transition-delay: 0.15s;
}

.service-card:nth-child(6) {
  transition-delay: 0.25s;
}