/* ═══════════════════════════════════════════════════════════
   ROOT VARIABLES  (prefix: hg-)
═══════════════════════════════════════════════════════════ */

:root {
  --hg-white:         #ffffff;
  --hg-black:         #080c12;
  --hg-navy:          #f6f1e8;
  --hg-navy-mid:      #122440;
  --hg-navy-light:    #1b3256;
  --hg-cream:         #faf8f4;
  --hg-gold:          #c6a15b;
  --hg-gold-bright:   #e5c97b;
  --hg-gold-dark:     #a8884a;
  --hg-gold-soft:     rgba(198, 161, 91, 0.18);
  --hg-gold-glow:     rgba(198, 161, 91, 0.32);
  --hg-gold-line:     rgba(198, 161, 91, 0.55);
  --hg-text-primary:  #000000;
  --hg-text-mid:      rgba(43, 43, 43, 0.734);
  --hg-text-dim:      rgba(35, 35, 35, 0.574);
  --hg-border:        rgba(198, 161, 91, 0.12);
  --hg-border-mid:    rgba(198, 161, 91, 0.28);
  --hg-surface:       rgba(36, 36, 36, 0.801);
  --hg-surface-hover: rgba(198, 161, 91, 0.06);
  --hg-font-display:  'Cormorant Garamond', Georgia, serif;
  --hg-font-ui:       'Montserrat', sans-serif;
  --hg-font-mono:     'Montserrat', sans-serif;
  --hg-ease-smooth:   cubic-bezier(0.22, 1, 0.36, 1);
  --hg-ease-back:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --hg-ease-in-expo:  cubic-bezier(0.7, 0, 0.84, 0);
  --hg-transition:    0.5s var(--hg-ease-smooth);
}

/* ═══════════════════════════════════════════════════════════
   SECTION
═══════════════════════════════════════════════════════════ */
.hg-section-growth {
  position: relative;
  z-index: 1;
  padding: 80px 10vw 72px;
  overflow: hidden;
  background: white;
}

/* ── Ambient giant year watermark ── */
.hg-ambient-year {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  font-family: var(--hg-font-display);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(198, 161, 91, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.6s ease;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.hg-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 32px;
}

.hg-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hg-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-gold-line));
}

.hg-eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--hg-gold-line), transparent);
}

.hg-eyebrow-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--hg-gold);
  opacity: 0.85;
}

.hg-title-growth {
  font-family: var(--hg-font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 12px;
}

.hg-title-growth em {
  color: var(--hg-gold);
  font-style: italic;
}

.hg-subtitle-growth {
  font-size: 13px;
  font-weight: 300;
  color: var(--hg-text-mid);
  letter-spacing: 0.3px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   BODY — graph + card grid
═══════════════════════════════════════════════════════════ */
.hg-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 14px;
  margin-bottom: 6px;
  align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════
   GRAPH PANEL
═══════════════════════════════════════════════════════════ */
.hg-graph-panel {
  background: linear-gradient(145deg,var(--hg-navy) 0%, white 100%);
  border: 1px solid goldenrod;
  border-radius: 18px;
  padding: 24px 24px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  position: relative;
  display: flex;
    flex-direction: column;
    justify-content: center;
}

.hg-graph-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.35), transparent);
}

.hg-graph-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hg-graph-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hg-text-dim);
}

.hg-graph-live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--hg-gold-soft);
  border: 1px solid var(--hg-gold-line);
  border-radius: 20px;
  padding: 4px 12px 4px 8px;
  font-family: var(--hg-font-mono);
  font-size: 10px;
  color: var(--hg-gold);
  letter-spacing: 1px;
  transition: var(--hg-transition);
}

.hg-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hg-gold);
  animation: hgPulseSmall 1.8s ease-in-out infinite;
}

@keyframes hgPulseSmall {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hg-svg-wrap {
  position: relative;
}

.hg-graph-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Grid */
.hg-grid-line {
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1;
  stroke-dasharray: 3 5;
}

.hg-y-label {
  font-family: var(--hg-font-mono);
  font-size: 8.5px;
  fill: rgba(0, 0, 0, 0.54);
  letter-spacing: 0.3px;
}

/* Area */
.hg-area-path {
  fill: url(#hgAreaGrad);
  transition: d 0.7s var(--hg-ease-smooth);
}

/* Line */
.hg-line-path {
  fill: none;
  stroke: url(#hgLineGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dots */
.hg-dot-past {
  fill: rgba(198,161,91,0.25);
  stroke: var(--hg-gold);
  stroke-width: 1.5;
  cursor: pointer;
  transition: r 0.3s ease, fill 0.3s ease;
}

.hg-dot-past:hover {
  fill: var(--hg-gold);
}

.hg-dot-active {
  fill: var(--hg-gold);
  stroke: rgba(198,161,91,0.4);
  stroke-width: 6;
  filter: url(#hgDotGlow);
  cursor: pointer;
}

.hg-dot-future {
  fill: rgba(56, 56, 56, 0.04);
  stroke: rgba(0, 0, 0, 0.201);
  stroke-width: 1;
  stroke-dasharray: 3 2;
  cursor: pointer;
}

/* Tooltip */
.hg-tooltip-val {
  font-family: var(--hg-font-mono);
  font-size: 11px;
  fill: var(--hg-gold-bright);
  font-weight: 400;
}

.hg-tooltip-year {
  font-family: var(--hg-font-ui);
  font-size: 9px;
  fill: rgba(46, 46, 46, 0.682);
  letter-spacing: 0.5px;
}

/* X-axis labels row */
.hg-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 10px 28px 18px 44px;
}

.hg-x-label {
  font-family: var(--hg-font-mono);
  font-size: 9.5px;
  color: rgba(30, 30, 30, 0.532);
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.hg-x-label:hover {
  color: rgba(8, 8, 8, 0.6);
}

.hg-x-label.hg-x-active {
  color: var(--hg-gold);
}

/* ═══════════════════════════════════════════════════════════
   DATA CARD
═══════════════════════════════════════════════════════════ */
.hg-data-card {
  background: linear-gradient(145deg, white 0%, var(--hg-navy) 100%);
  border: 1px solid goldenrod;
  border-radius: 18px;
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.hg-data-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.5), transparent);
}

.hg-data-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,161,91,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Card top: year + status */
.hg-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hg-card-year-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hg-card-year-prefix {
  font-family: var(--hg-font-mono);
  font-size: 10px;
  color: var(--hg-gold);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

.hg-card-year {
  font-family: var(--hg-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hg-text-primary);
  line-height: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hg-card-status {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hg-gold);
  background: var(--hg-gold-soft);
  border: 1px solid rgba(198,161,91,0.25);
  border-radius: 20px;
  padding: 4px 10px;
  transition: var(--hg-transition);
}

/* Value block */
.hg-card-value-block {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
  line-height: 1;
}

.hg-card-currency {
  font-family: var(--hg-font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--hg-gold);
  padding-top: 8px;
  line-height: 1;
}

.hg-card-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.hg-card-num {
  font-family: var(--hg-font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--hg-text-primary);
  line-height: 1;
  letter-spacing: -1px;
  transition: opacity 0.25s ease;
  display: inline-block;
}

.hg-card-unit {
  font-family: var(--hg-font-display);
  font-size: 26px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.45);
  letter-spacing: 0;
}

.hg-card-sublabel {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hg-text-dim);
  margin-bottom: 20px;
}

/* Divider */
.hg-card-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--hg-border), var(--hg-border-mid), var(--hg-border));
  margin: 14px 0;
}

/* Growth badge */
.hg-card-growth-row {
  margin-bottom: 14px;
}

.hg-card-growth-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(198,161,91,0.1);
  border: 1px solid rgba(198,161,91,0.3);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--hg-gold);
  transition: var(--hg-transition);
}

.hg-badge-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hg-badge-arrow.hg-arrow-down {
  transform: rotate(180deg);
}

.hg-badge-arrow.hg-arrow-flat {
  transform: rotate(90deg);
}

/* Description */
.hg-card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--hg-text-mid);
  line-height: 1.8;
  letter-spacing: 0.1px;
  margin-bottom: 0;
  transition: opacity 0.4s ease;
}

/* Stats row */
.hg-card-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
}

.hg-card-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hg-card-stat-sep {
  width: 1px;
  height: 28px;
  background: var(--hg-border);
  margin: 0 14px;
}

.hg-stat-val {
  font-family: var(--hg-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--hg-gold-bright);
  letter-spacing: -0.2px;
  transition: opacity 0.3s ease;
}

.hg-stat-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hg-text-dim);
}

/* Sparkline */
.hg-card-sparkline {
  height: 40px;
  margin-top: 16px;
  opacity: 0.55;
  overflow: hidden;
  border-radius: 4px;
}

.hg-spark-svg {
  width: 100%;
  height: 100%;
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════════════ */
.hg-timeline-wrap {
  position: relative;
  z-index: 2;
}

.hg-tl-hint {
  text-align: center;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hg-text-dim);
  margin-top: 14px;
  opacity: 0.7;
}

.hg-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px 28px;
}

.hg-tl-track {
  position: absolute;
  top: 34%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: rgba(54, 54, 54, 0.06);
  border-radius: 2px;
  transform: translateY(-50%);
  overflow: visible;
}

.hg-tl-fill {
  position: absolute;
  top: 0px; left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--hg-gold-dark), var(--hg-gold));
  border-radius: 2px;
  width: 0%;
  transition: width 0.65s var(--hg-ease-smooth);
}

.hg-tl-glow {
  position: absolute;
  top: -3px; left: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--hg-gold-glow));
  border-radius: 4px;
  width: 0%;
  transition: width 0.65s var(--hg-ease-smooth);
  filter: blur(3px);
}

/* Timeline item */
.hg-tl-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 4px;
}

.hg-tl-dot-wrap {
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hg-tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hg-navy);
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: all 0.35s var(--hg-ease-back);
  position: relative;
  z-index: 2;
}

.hg-tl-dot-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.hg-tl-item:hover .hg-tl-dot {
  border-color: var(--hg-gold);
  transform: scale(1.25);
  background: rgba(198,161,91,0.15);
}

.hg-tl-item:hover .hg-tl-dot-ring {
  border-color: rgba(198,161,91,0.25);
  transform: scale(1.1);
}

.hg-tl-item.hg-tl-past .hg-tl-dot {
  background: var(--hg-gold-dark);
  border-color: var(--hg-gold);
  width: 8px;
  height: 8px;
}

.hg-tl-item.hg-tl-active .hg-tl-dot {
  background: var(--hg-gold);
  border-color: var(--hg-gold-bright);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 4px rgba(198,161,91,0.15), 0 0 16px rgba(198,161,91,0.4);
}

.hg-tl-item.hg-tl-active .hg-tl-dot-ring {
  border-color: rgba(198,161,91,0.4);
  animation: hgRingPulse 2s ease-in-out infinite;
}

@keyframes hgRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0; }
}

.hg-tl-label {
  font-family: var(--hg-font-mono);
  font-size: 10px;
  color: rgba(240,236,228,0.28);
  letter-spacing: 0.5px;
  transition: color 0.35s ease, transform 0.35s ease;
  user-select: none;
}

.hg-tl-item:hover .hg-tl-label {
  color: rgba(240,236,228,0.7);
  transform: translateY(-1px);
}

.hg-tl-item.hg-tl-past .hg-tl-label {
  color: rgba(198,161,91,0.55);
}

.hg-tl-item.hg-tl-active .hg-tl-label {
  color: var(--hg-gold);
  font-weight: 400;
  transform: translateY(-2px);
}

/* Timeline value tag (appears above active dot) */
.hg-tl-val-tag {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--hg-navy-mid);
  border: 1px solid var(--hg-gold-line);
  border-radius: 5px;
  padding: 3px 8px;
  font-family: var(--hg-font-mono);
  font-size: 9px;
  color: var(--hg-gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.hg-tl-item.hg-tl-active .hg-tl-val-tag {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   CARD TRANSITION STATES
═══════════════════════════════════════════════════════════ */
.hg-data-card.hg-transitioning .hg-card-year,
.hg-data-card.hg-transitioning .hg-card-num,
.hg-data-card.hg-transitioning .hg-card-desc,
.hg-data-card.hg-transitioning .hg-card-growth-badge,
.hg-data-card.hg-transitioning .hg-stat-val,
.hg-data-card.hg-transitioning .hg-card-status {
  opacity: 0;
  transform: translateY(8px);
}

.hg-card-year,
.hg-card-num,
.hg-card-desc,
.hg-card-growth-badge,
.hg-stat-val,
.hg-card-status {
  transition:
    opacity 0.45s var(--hg-ease-smooth),
    transform 0.45s var(--hg-ease-smooth);
}

.hg-card-num      { transition-delay: 0.04s; }
.hg-card-desc     { transition-delay: 0.10s; }
.hg-card-growth-badge { transition-delay: 0.07s; }
.hg-stat-val      { transition-delay: 0.13s; }
.hg-card-status   { transition-delay: 0.02s; }

/* ═══════════════════════════════════════════════════════════
   CLIP RECT ANIMATION (SVG graph draw)
═══════════════════════════════════════════════════════════ */
#hgClipRect {
  transition: width 0.85s var(--hg-ease-smooth);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .hg-body {
    grid-template-columns: 1fr;
  }
  .hg-data-card {
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hg-card-value-block { margin-bottom: 0; }
  .hg-card-num { font-size: 42px; }
  .hg-section { padding: 52px 22px 56px; }
}

@media (max-width: 600px) {
  .hg-data-card { flex-direction: column; }
  .hg-tl-label { font-size: 9px; }
  .hg-ambient-year { font-size: 120px; }
}

/* ─── Google Font Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1b2f4e;
  --navy-dark:   #132338;
  --white:       #ffffff;
  --gray-bg:     #f0f2f5;
  --gray-border: #dde1e7;
  --gold:        #c9a84c;
  --gold-dark:   #b5922e;
  --text-muted:  rgba(255,255,255,0.65);
  --text-dark:   #2c3e50;
  --text-mid:    #6b7a8d;
  --transition:  0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Grid ───────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

/* ─── Card Base ──────────────────────────────────────────── */
.stat-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  transition: width var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}

.stat-card:hover::after {
  width: 100%;
}

/* ─── Card Variants ──────────────────────────────────────── */

/* Navy */
.stat-card--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(27, 47, 78, 0.35);
}
.stat-card--navy:hover {
  box-shadow: 0 16px 60px rgba(27, 47, 78, 0.5);
}
.stat-card--navy::after { background: var(--gold); }
.stat-card--navy .stat-icon { color: rgba(255,255,255,0.75); }
.stat-card--navy .stat-number { color: var(--white); }
.stat-card--navy .stat-label { color: rgba(255,255,255,0.9); }
.stat-card--navy .stat-desc { color: var(--text-muted); }

/* White */
.stat-card--white {
  background: var(--white);
  color: var(--text-dark);
  border-right: 1px solid var(--gray-border);
  border-left: 1px solid var(--gray-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.stat-card--white:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}
.stat-card--white::after { background: var(--navy); }
.stat-card--white .stat-icon { color: var(--navy); opacity: 0.6; }
.stat-card--white .stat-number { color: var(--navy); }
.stat-card--white .stat-label { color: var(--text-dark); }
.stat-card--white .stat-desc { color: var(--text-mid); }

/* Gray */
.stat-card--gray {
  background: var(--gray-bg);
  color: var(--text-dark);
  border-right: 1px solid var(--gray-border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
.stat-card--gray:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.1);
}
.stat-card--gray::after { background: var(--gold-dark); }
.stat-card--gray .stat-icon { color: var(--navy); opacity: 0.5; }
.stat-card--gray .stat-number { color: var(--navy); }
.stat-card--gray .stat-label { color: var(--text-dark); }
.stat-card--gray .stat-desc { color: var(--text-mid); }

/* Gold */
.stat-card--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}
.stat-card--gold:hover {
  box-shadow: 0 16px 60px rgba(201, 168, 76, 0.55);
}
.stat-card--gold::after { background: var(--navy); }
.stat-card--gold .stat-icon { color: rgba(255,255,255,0.85); }
.stat-card--gold .stat-number { color: var(--white); }
.stat-card--gold .stat-label { color: rgba(255,255,255,0.95); }
.stat-card--gold .stat-desc { color: rgba(255,255,255,0.7); }

/* ─── Icon ───────────────────────────────────────────────── */
.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

/* ─── Number ─────────────────────────────────────────────── */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-card.visible .stat-number {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Label ──────────────────────────────────────────────── */
.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Description ────────────────────────────────────────── */
.stat-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 220px;
}

/* ─── Badge ──────────────────────────────────────────────── */
.stat-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat-badge--light  { background: rgba(255,255,255,0.15); color: #fff; }
.stat-badge--navy   { background: var(--navy); color: #fff; }
.stat-badge--dark   { background: rgba(27,47,78,0.12); color: var(--navy); }
.stat-badge--white  { background: rgba(255,255,255,0.25); color: #fff; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: 36px 28px 32px;
  }
}

/* ════════════════════════════════════════════════
   ROHINDIA GROUP — BOARD OF DIRECTORS
   Premium Dark Luxury CSS
   ════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #0B0B0B;
  --card-bg:      #111111;
  --card-bg-2:    #141414;
  --gold:         #C6A15B;
  --gold-hover:   #E5C97B;
  --gold-glow:    rgba(198, 161, 91, 0.15);
  --gold-glow-md: rgba(198, 161, 91, 0.25);
  --gold-border:  rgba(198, 161, 91, 0.6);
  --white:        #FFFFFF;
  --gray:         #A1A1A1;
  --gray-dim:     #555555;
  --border-dim:   rgba(255,255,255,0.06);
  --transition:   0.4s ease;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;
}



/* ════════════════════════════════════════════════
   BOARD SECTION
   ════════════════════════════════════════════════ */
.board-section {
  position: relative;
  padding: 100px 60px;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* ── Ambient background effects ── */
.bg-radial-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 28% 45%, rgba(198,161,91,0.045) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 75% 20%, rgba(198,161,91,0.025) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.bg-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════════
   SECTION HEADER
   ════════════════════════════════════════════════ */
.board-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 32px;
}

.header-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.eyebrow-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}

/* ── Gold divider ── */
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.divider-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  font-size: 8px;
  color: var(--gold);
  line-height: 1;
}

.divider-dot {
  display: block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-border);
}

.section-subtitle {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--gray);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ════════════════════════════════════════════════
   BOARD GRID
   ════════════════════════════════════════════════ */
.board-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CEO spans 2 rows, left column */
.card-chairman {
  grid-column: 1;
  grid-row: 1 / span 2;
}

/* Directors fill remaining 2×2 slots */
.card-director:nth-child(2) { grid-column: 2; grid-row: 1; }
.card-director:nth-child(3) { grid-column: 3; grid-row: 1; }
.card-director:nth-child(4) { grid-column: 2; grid-row: 2; }
.card-director:nth-child(5) { grid-column: 3; grid-row: 2; }

/* ════════════════════════════════════════════════
   BOARD CARD — BASE
   ════════════════════════════════════════════════ */
.board-card {
  position: relative;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
}

/* Ripple pseudo element */
.board-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  border: 1px solid var(--border-dim);
  transition: border-color var(--transition), box-shadow var(--transition);
  z-index: 10;
  pointer-events: none;
}

.board-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 3px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-border), transparent 50%, var(--gold-border)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 11;
  pointer-events: none;
}

.board-card:hover::before {
  border-color: var(--gold-border);
  box-shadow: 0 0 32px var(--gold-glow), inset 0 0 20px rgba(198,161,91,0.04);
}

.board-card:hover::after {
  opacity: 1;
}

/* ── Card inner ── */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  overflow: hidden;
  border-radius: 2px;
}

/* ── Corner accent brackets ── */
.corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 12;
  pointer-events: none;
}

.corner-tl { top: 12px; left: 12px;  border-width: 1px 0 0 1px; transform: translate(-4px,-4px); }
.corner-tr { top: 12px; right: 12px; border-width: 1px 1px 0 0; transform: translate(4px,-4px); }
.corner-bl { bottom: 12px; left: 12px;  border-width: 0 0 1px 1px; transform: translate(-4px,4px); }
.corner-br { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; transform: translate(4px,4px); }

.board-card:hover .corner {
  opacity: 1;
  transform: translate(0,0);
}

/* ── Card image ── */
.card-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.05) brightness(0.88);
  transition: transform 0.7s ease, filter 0.5s ease;
  will-change: transform;
}

.board-card:hover .card-img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.08) brightness(0.92);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 35%,
    rgba(0,0,0,0.1)  65%,
    transparent     100%
  );
  transition: background var(--transition);
}

.board-card:hover .image-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6)  35%,
    rgba(0,0,0,0.15) 65%,
    transparent      100%
  );
}

/* Shimmer sweep on hover */
.card-shimmer {
  position: absolute;
  top: -100%; left: -60%;
  width: 30%; height: 300%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(198,161,91,0.08) 50%,
    transparent 60%
  );
  transform: skewX(-15deg);
  transition: none;
  z-index: 5;
  pointer-events: none;
}

.board-card:hover .card-shimmer {
  animation: shimmerSweep 0.7s ease forwards;
}

@keyframes shimmerSweep {
  from { left: -60%; }
  to   { left: 130%; }
}

/* ════════════════════════════════════════════════
   CHAIRMAN CARD
   ════════════════════════════════════════════════ */
.card-chairman {
  min-height: 560px;
}

.chairman-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
}

.card-content {
  position: relative;
  z-index: 6;
  padding: 20px 24px;
  width: 100%;
}

.chairman-content {
  padding: 28px;
}

.content-inner {
  margin-bottom: 16px;
}

.card-credential {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.85;
}

.card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.15;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.card-role {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(198,161,91,0.4);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 18px;
  cursor: pointer;
  border-radius: 1px;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.card-cta:hover::before { transform: scaleX(1); }
.card-cta:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--gold-glow);
}

/* ════════════════════════════════════════════════
   DIRECTOR CARDS
   ════════════════════════════════════════════════ */
.card-director {
  min-height: 260px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card-director:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 24px var(--gold-glow);
}

.card-director .card-content {
  padding: 16px 20px 20px;
}

.card-director .card-name {
  font-size: clamp(16px, 1.5vw, 21px);
  margin-bottom: 4px;
}

/* ════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.is-active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.07);
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 2px;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(198,161,91,0.3) transparent;
}

.modal-container::-webkit-scrollbar { width: 4px; }
.modal-container::-webkit-scrollbar-thumb { background: rgba(198,161,91,0.3); border-radius: 2px; }

.modal-backdrop.is-active .modal-container {
  transform: translateY(0) scale(1);
}

/* ── Modal close ── */
.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(198,161,91,0.1);
  color: var(--gold);
  border-color: var(--gold-border);
}

/* ── Modal layout ── */
.modal-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  padding: 32px;
  padding-top: 0;
  clear: both;
}

.modal-left {
  padding-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.modal-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.modal-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%) contrast(1.05);
}

.modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.modal-identity { padding-right: 4px; }

.modal-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 6px;
}

.modal-role {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.modal-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  border: 1px solid rgba(49, 49, 49, 0.1);
  padding: 8px 4px;
  border-radius: 1px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.modal-linkedin:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(198,161,91,0.06);
}

/* ── Modal right ── */
.modal-right { padding-left: 28px; }

.modal-bio {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  line-height: 1.85;
  margin-bottom: 32px;
}

/* ── Timeline ── */
.timeline-heading {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tl-icon {
  color: var(--gold);
  font-size: 8px;
}

.modal-timeline { position: relative; }

.modal-timeline::before {
  content: '';
  position: absolute;
  left:80px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-border), rgba(198,161,91,0.1));
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 20px;
  margin-bottom: 20px;
  align-items: start;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tl-item.tl-visible {
  opacity: 1;
  transform: translateX(0);
}

.tl-year {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-align: right;
  padding-right: 22px;
  position: relative;
  line-height: 1.2;
}

.tl-year::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow-md);
}

.tl-event {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  padding-top: 2px;
}

/* ── Modal corner brackets ── */
.modal-corner {
  position: absolute;
  width: 16px; height: 16px;
  border-color: rgba(198,161,91,0.35);
  border-style: solid;
  pointer-events: none;
}
.mc-tl { top: 10px; left: 10px;  border-width: 1px 0 0 1px; }
.mc-tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.mc-bl { bottom: 10px; left: 10px;  border-width: 0 0 1px 1px; }
.mc-br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

/* ════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ════════════════════════════════════════════════ */
.board-header,
.board-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.board-header.in-view,
.board-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.board-card:nth-child(1) { transition-delay: 0.05s; }
.board-card:nth-child(2) { transition-delay: 0.15s; }
.board-card:nth-child(3) { transition-delay: 0.22s; }
.board-card:nth-child(4) { transition-delay: 0.30s; }
.board-card:nth-child(5) { transition-delay: 0.38s; }

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .board-section { padding: 70px 24px; }

  .board-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .card-chairman {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 420px;
  }

  .card-director:nth-child(2) { grid-column: 1; grid-row: 2; }
  .card-director:nth-child(3) { grid-column: 2; grid-row: 2; }
  .card-director:nth-child(4) { grid-column: 1; grid-row: 3; }
  .card-director:nth-child(5) { grid-column: 2; grid-row: 3; }

  .modal-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .modal-left {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 24px;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
  }
  .modal-img-wrap { margin-bottom: 0; }
  .modal-right { padding-left: 0; }
  .modal-timeline::before { left: 36px; }
}

@media (max-width: 540px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
  .card-chairman,
  .card-director:nth-child(2),
  .card-director:nth-child(3),
  .card-director:nth-child(4),
  .card-director:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
  .card-director { min-height: 220px; }
  .modal-left {
    grid-template-columns: 1fr;
  }
  .modal-container{
    top: 30px;
  }
  .hg-x-label{
    font-size: 5px;
  }
  .hg-x-labels{
    font-size: 5px;
   padding:10px 5px 18px 15px;
}
.hg-governance-strip{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal-img-wrap{
  aspect-ratio: 0;
}
}

* { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --gold: #C6A15B;
      --gold-light: #E5C97B;
      --gold-border: rgba(198, 161, 91, 0.55);
      --navy: #1b2f4e;
      --navy-dark: #0f1e32;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-ui: 'Montserrat', sans-serif;
      --flip-duration: 0.72s;
    }
 
    /* ── Section ── */
    .ab-section {
      background: white;
      padding: 72px 32px 80px;
    }
 
    /* ── Header ── */
    .ab-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 32px;
    }
 
    .ab-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 12px;
    }
 
    .ab-eyebrow::before,
    .ab-eyebrow::after {
      content: '';
      width: 26px;
      height: 1px;
      background: var(--gold-border);
    }
 
    .ab-title {
      font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 12px;
    }
 
    .ab-title em {
      color: var(--gold);
      font-style: normal;
    }
 
    .ab-subtitle {
      font-size: 12px;
      font-weight: 400;
      color: #6b7a8d;
      line-height: 1.85;
      letter-spacing: 0.2px;
    }
 
    /* ── Grid ── */
    .ab-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    /* ── Card wrapper & flip mechanics ── */
    .ab-card-wrap {
      perspective: 1100px;
      height: 370px;
    }
 
    .ab-card {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform var(--flip-duration) cubic-bezier(0.55, 0.1, 0.45, 0.9);
      cursor: pointer;
    }
 
    .ab-card-wrap:hover .ab-card {
      transform: rotateY(180deg);
    }
 
    /* ── Both faces ── */
    .ab-face {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      overflow: hidden;
    }
 
    /* ── Front face ── */
    .ab-front {
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.07);
    }
 
    .ab-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: grayscale(50%) contrast(1.05);
      transition: filter 0.4s ease;
    }
 
    .ab-card-wrap:hover .ab-img {
      filter: grayscale(0%) contrast(1.08);
    }
 
    /* Placeholder silhouette shown when no real image */
    .ab-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 
    /* Name + role badge overlaid on image */
    .ab-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(
        to top,
        rgba(10, 18, 32, 0.92) 0%,
        rgba(10, 18, 32, 0.55) 65%,
        transparent 100%
      );
      padding: 32px 18px 18px;
    }
 
    .ab-badge-name {
      font-family: var(--font-display);
      font-size: 21px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.1px;
      line-height: 1.2;
      margin-bottom: 5px;
    }
 
    .ab-badge-role {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold-light);
    }
 
    /* ── Back face ── */
    .ab-back {
      background: var(--navy-dark);
      border: 1px solid rgba(198, 161, 91, 0.22);
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 28px 24px 24px;
    }
 
    .ab-back-quote-mark {
      font-family: var(--font-display);
      font-size: 56px;
      color: var(--gold);
      line-height: 0.6;
      margin-bottom: 16px;
      opacity: 0.75;
    }
 
    .ab-back-quote {
      font-family: var(--font-display);
      font-size: 16.5px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.65;
      letter-spacing: 0.1px;
    }
 
    .ab-back-meta {
      margin-top: 16px;
    }
 
    .ab-back-name {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      letter-spacing: 0.3px;
      margin-bottom: 3px;
    }
 
    .ab-back-role {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.85;
    }
 
    .ab-back-divider {
      width: 30px;
      height: 1px;
      background: var(--gold-border);
      margin: 16px 0;
    }
 
    .ab-back-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
    }
 
    .ab-tag {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold-light);
      border: 1px solid rgba(198, 161, 91, 0.4);
      border-radius: 20px;
      padding: 3px 9px;
      background: rgba(198, 161, 91, 0.07);
    }
 
    /* ── LinkedIn CTA ── */
    .ab-linkedin {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #fff;
      background: rgba(198, 161, 91, 0.13);
      border: 1px solid rgba(198, 161, 91, 0.4);
      border-radius: 4px;
      padding: 10px 16px;
      text-decoration: none;
      transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }
 
    .ab-linkedin:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #1a2535;
    }
 
    .ab-linkedin svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }
 
    /* ── Scroll-in animation ── */
    .ab-card-wrap {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        perspective 0s;
    }
 
    .ab-card-wrap.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    /* ── Hint text ── */
    .ab-hint {
      text-align: center;
      margin-top: 28px;
      font-size: 10.5px;
      color: #9aa3ae;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
 
    .ab-hint::before,
    .ab-hint::after {
      content: '';
      width: 20px;
      height: 1px;
      background: rgba(154, 163, 174, 0.4);
    }
 
    /* ── Responsive ── */
    @media (max-width: 820px) {
      .ab-grid { grid-template-columns: repeat(2, 1fr); }
      .ab-title { font-size: 32px; }
    }
 
    @media (max-width: 520px) {
      .ab-grid { grid-template-columns: 1fr; }
      .ab-section { padding: 52px 18px 60px; }
      .ab-title { font-size: 28px; }
    }

*, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
 
    :root {
      --hm-white:        #ffffff;
      --hm-cream:        #f6f1e8;
      --hm-gold:         #c6a15b;
      --hm-gold-dark:    #b8954c;
      --hm-text-dark:    #1a1a1a;
      --hm-border-gold:  rgba(198, 161, 91, 0.6);
      --hm-shadow-gold:  rgba(198, 161, 91, 0.12);
      --hm-transition:   0.4s ease;
      --hm-font-display: 'Cormorant Garamond', Georgia, serif;
      --hm-font-ui:      'Montserrat', sans-serif;
    }
 
    body {
      background: #f0ede8;
      font-family: var(--hm-font-ui);
    }
 
    /* ── Demo spacer so scroll parallax is visible ── */
    .hm-demo-spacer {
      height: 18vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--hm-font-ui);
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(26,26,26,0.3);
    }
 
    /* ══════════════════════════════════════════════
       SECTION
    ══════════════════════════════════════════════ */
    .hm-marquee-section {
      position: relative;
      width: 100%;
      height: 220px;
      background: var(--hm-white);
      overflow: hidden;
      display: flex;
      align-items: center;
      isolation: isolate;
    }
 
    /* ══════════════════════════════════════════════
       BACKGROUND "TRUST" TEXT
    ══════════════════════════════════════════════ */
    .hm-marquee-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      pointer-events: none;
      user-select: none;
      will-change: transform;
 
      font-family: var(--hm-font-display);
      font-size: clamp(100px, 18vw, 220px);
      font-weight: 600;
      letter-spacing: 0.18em;
      line-height: 1;
      white-space: nowrap;
 
      color: transparent;
      -webkit-text-stroke: 1.5px rgba(198, 161, 91, 0.22);
      text-stroke: 1.5px rgba(198, 161, 91, 0.22);
      opacity: 1;
    }
 
    /* ══════════════════════════════════════════════
       EDGE FADES (left & right vignettes)
    ══════════════════════════════════════════════ */
    .hm-marquee-section::before,
    .hm-marquee-section::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 10;
      pointer-events: none;
    }
 
    .hm-marquee-section::before {
      left: 0;
      background: linear-gradient(to right, var(--hm-white) 0%, transparent 100%);
    }
 
    .hm-marquee-section::after {
      right: 0;
      background: linear-gradient(to left, var(--hm-white) 0%, transparent 100%);
    }
 
    /* ══════════════════════════════════════════════
       DIAGONAL RIBBON WRAPPER
    ══════════════════════════════════════════════ */
    .hm-marquee-ribbon {
      position: absolute;
      left: -8%;
      right: -8%;
      top: 50%;
      transform: translateY(-50%) rotate(-4.5deg);
      z-index: 5;
 
      background: var(--hm-cream);
      border-top:    1.5px solid var(--hm-border-gold);
      border-bottom: 1.5px solid var(--hm-border-gold);
      box-shadow:
        0 2px 18px rgba(0, 0, 0, 0.055),
        0 0 0 0.5px rgba(198, 161, 91, 0.08);
 
      padding: 18px 0;
      overflow: hidden;
    }
 
    /* ══════════════════════════════════════════════
       MARQUEE TRACK
    ══════════════════════════════════════════════ */
    .hm-marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: hm-scroll 28s linear infinite;
      will-change: transform;
    }
 
    .hm-marquee-track:hover {
      animation-play-state: paused;
    }
 
    @keyframes hm-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ══════════════════════════════════════════════
       MARQUEE ITEM
    ══════════════════════════════════════════════ */
    .hm-marquee-item {
      font-family: var(--hm-font-ui);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--hm-text-dark);
      white-space: nowrap;
      padding: 0 10px;
      flex-shrink: 0;
      opacity: 0.82;
      transition: opacity var(--hm-transition);
    }
 
    .hm-marquee-track:hover .hm-marquee-item {
      opacity: 1;
    }
 
    /* ══════════════════════════════════════════════
       DIAMOND SEPARATOR
    ══════════════════════════════════════════════ */
    .hm-marquee-separator {
      display: inline-block;
      width: 5px;
      height: 5px;
      background: var(--hm-gold);
      transform: rotate(45deg);
      flex-shrink: 0;
      margin: 0 22px;
      opacity: 0.85;
    }
 
    /* ══════════════════════════════════════════════
       DEMO SPACER BELOW
    ══════════════════════════════════════════════ */
    .hm-demo-below {
      height: 24vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--hm-font-ui);
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(26,26,26,0.3);
    }

:root {
      --hg-white: #ffffff;
      --hg-black: #0b0b0b;
      --hg-gold: #c6a15b;
      --hg-gold-soft: rgba(198,161,91,0.15);
      --hg-border: rgba(0,0,0,0.08);
      --hg-text-dark: #1a1a1a;
      --hg-text-muted: #666;
      --hg-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ─── SECTION ─── */
    .hg-governance-section {
      position: relative;
      width: 100%;
      padding: 60px 60px;
      overflow: hidden;
      background: var(--hg-white);
    }

    /* Watermark */
    .hg-governance-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(120px, 12vw, 120px);
      font-weight: 600;
      letter-spacing: 0.3em;
      color: rgba(0,0,0,0.03);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      will-change: transform;
      z-index: 0;
    }

    /* Section label */
    .hg-section-label {
      font-size: 12px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--hg-gold);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      margin-bottom: 64px;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
    }

    .hg-section-label::before {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--hg-gold);
    }

    /* ─── CONTAINER ─── */
    .hg-governance-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
    }

    /* ─── LEFT ─── */
    .hg-governance-left {
      padding-left: 28px;
      border-left: 1.5px solid var(--hg-gold);
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hg-governance-left.hg-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .hg-governance-heading {
      font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 12px;
    }

   
    .hg-governance-heading em {
      font-style: italic;
      color: var(--hg-gold);
    }

    .hg-governance-statement {
      font-size: 15px;
      line-height: 1.85;
      color: var(--hg-text-muted);
      font-weight: 300;
      max-width: 480px;
      margin-bottom: 48px;
      letter-spacing: 0.01em;
    }

    .hg-governance-footer {
      font-size: 11px;
      color: var(--hg-text-muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hg-governance-footer::before {
      content: '—';
      color: var(--hg-gold);
    }

    /* ─── RIGHT ─── */
    .hg-governance-right {
      display: flex;
      flex-direction: column;
    }

    .hg-governance-row {
      padding: 28px 20px;
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 32px;
      align-items: start;
      border-bottom: 1px solid var(--hg-border);
      cursor: default;
      transition: background var(--hg-transition),
                  border-color var(--hg-transition);
      opacity: 0;
      transform: translateX(28px);
    }

    .hg-governance-row:first-child {
      border-top: 1px solid var(--hg-border);
    }

    .hg-governance-row.hg-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .hg-governance-row:hover {
      background: var(--hg-gold-soft);
      border-bottom-color: rgba(198,161,91,0.3);
    }

    .hg-governance-row:first-child:hover {
      border-top-color: rgba(198,161,91,0.3);
    }

    .hg-row-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      color: var(--hg-gold);
      letter-spacing: 0.1em;
      margin-top: 3px;
      font-weight: 400;
    }

    .hg-governance-title {
      font-size: 13px;
      font-weight: 500;
      color: var(--hg-text-dark);
      letter-spacing: 0.02em;
      margin-bottom: 8px;
      text-transform: uppercase;
      font-size: 11px;
    }

    .hg-governance-desc {
      font-size: 14px;
      color: var(--hg-text-muted);
      line-height: 1.7;
      font-weight: 300;
    }

    .hg-row-content {}

    /* ─── BOTTOM STRIP ─── */
    .hg-governance-strip {
      position: relative;
      z-index: 1;
      margin-top: 80px;
      padding-top: 32px;
      padding-bottom: 32px;
      border-top: 1px solid var(--hg-border);
      border-bottom: 1px solid var(--hg-border);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
    }

    .hg-governance-strip.hg-visible {
      opacity: 1;
    }

    .hg-strip-items {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .hg-strip-item {
      font-size: 9.5px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--hg-text-muted);
      font-weight: 400;
      font-family: 'DM Sans', sans-serif;
    }

    .hg-strip-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--hg-gold);
      opacity: 0.6;
    }

    .hg-strip-year {
      font-family: 'Cormorant Garamond', serif;
      font-size: 11px;
      color: var(--hg-text-muted);
      letter-spacing: 0.08em;
    }

    @media (max-width: 1050px) {
      .hg-governance-row { gap: 0px; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hg-governance-section { padding: 80px 32px; }
      .hg-governance-container { grid-template-columns: 1fr; gap: 56px; }
      .hg-governance-row { grid-template-columns: 1fr; gap: 8px; }
      .hg-card-top{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
      .hg-card-top{
        margin-bottom: 0;
      }
      .hg-card-year-wrap{
        align-items: center;
      }
      .hg-data-card{
            align-items: center;
    justify-content: space-between;
      }
      .hg-card-sublabel{
    
        margin-bottom: 0px;
  
      }
    }

    @media (max-width: 600px) {
      .hg-card-top{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }
      .hg-card-top{
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 0;
      }
      .hg-card-year-wrap{
        align-items: center;
      }
      .hg-data-card{
            align-items: center;
    justify-content: center;
      }
      .hg-card-sublabel{
    
        margin-bottom: 0px;
  
      }
    }

/* ============================================================
   GLOBAL PRESENCE — style.css
   Rohindia Group Corporate Holdings
   ============================================================ */

:root {
  --gh-white:        #ffffff;
  --gh-black:        #0b0b0b;
  --gh-shadow:       rgba(0, 0, 0, 0.20);
  --gh-shadow-soft:  rgba(0, 0, 0, 0.08);
  --gh-text-muted:   rgba(255, 255, 255, 0.62);
  --gh-transition:   0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --gh-gold:         #c6a15b;
  --gh-spotlight-r:  160;   /* spotlight radius in px — controlled by JS too */
}

/* ── Page hint ────────────────────────────────────────────── */
.gh-page-hint {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b0a898;
  margin-bottom: 56px;
  font-family: 'DM Sans', sans-serif;
}

/* ── Section wrapper ──────────────────────────────────────── */
.gh-global-section {
  padding: 0 20px;
  position: relative;
}

/* ── Floating container ───────────────────────────────────── */
.gh-global-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 580px;
  background: #080808;
  cursor: none;               /* hide default cursor inside */

  box-shadow:
    0   2px   4px var(--gh-shadow-soft),
    0  16px  48px var(--gh-shadow),
    0  48px 110px rgba(0, 0, 0, 0.24);

  /* scroll-reveal — initial hidden state */
  opacity: 0;
  transform: scale(0.965) translateY(30px);
  transition:
    opacity   0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.gh-global-container.gh-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Thin gold top-edge line — premium detail */
.gh-global-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(198, 161, 91, 0.55) 28%,
    rgba(198, 161, 91, 0.55) 72%,
    transparent
  );
  z-index: 20;
  pointer-events: none;
}

/* ── Fallback gradient (behind video) ─────────────────────── */
.gh-global-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #080810 0%, #101620 45%, #0c1a12 70%, #100c08 100%);
  z-index: 0;
}

@keyframes gh-shimmer {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.65; }
}

.gh-shimmer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: gh-shimmer 7s ease-in-out infinite;
  pointer-events: none;
}

.gh-orb-1 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(198,161,91,0.14), transparent 70%);
  top: -100px; right: 8%;
  animation-delay: 0s;
}

.gh-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(50,80,160,0.16), transparent 70%);
  bottom: -60px; left: 12%;
  animation-delay: -3.5s;
}

.gh-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(198,161,91,0.08), transparent 70%);
  top: 38%; left: 42%;
  animation-delay: -1.8s;
}

/* ── Video (grayscale via CSS filter) ─────────────────────── */
.gh-global-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.60;
  z-index: 1;
  will-change: transform;
  transform: scale(1.06);     /* slight scale for parallax headroom */
  pointer-events: none;

  /* Force grayscale — canvas will handle the color reveal */
  filter: grayscale(1) contrast(1.08) brightness(0.85);
}

/* ── Canvas — spotlight layer ─────────────────────────────── */
.gh-spotlight-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;       /* mouse events pass through to container */
  opacity: 1;
}

/* ── Dark gradient overlay ────────────────────────────────── */
.gh-global-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      to top,
      rgba(6, 6, 6, 0.88)  0%,
      rgba(6, 6, 6, 0.35) 42%,
      rgba(6, 6, 6, 0.06) 100%
    );
  pointer-events: none;
}

/* Cinematic grain on top of overlay */
.gh-global-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.042;
  pointer-events: none;
}

/* ── Custom cursor ────────────────────────────────────────── */
.gh-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.9);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.25s ease;
  mix-blend-mode: screen;
  display: none;              /* shown only when inside container */
}

.gh-cursor.gh-cursor-active {
  display: block;
}

/* ── Content ──────────────────────────────────────────────── */
.gh-global-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 580px;
  padding: 64px 40px 72px;
  text-align: center;
  pointer-events: none;
}

/* Eyebrow */
.gh-content-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gh-gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.gh-global-container.gh-visible .gh-content-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

/* Title — UPPERCASE as requested */
.gh-global-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--gh-white);
  letter-spacing: 0.06em;     /* wider tracking for all-caps */
  text-transform: uppercase;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.gh-global-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.gh-global-container.gh-visible .gh-global-title {
  opacity: 1;
  transform: translateY(0);
}

/* Gold vertical hairline */
.gh-content-rule {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(198,161,91,0.75), transparent);
  margin: 0 auto 34px;
  opacity: 0;
  transition: opacity 0.6s ease 0.38s;
}

.gh-global-container.gh-visible .gh-content-rule {
  opacity: 1;
}

/* Description */
.gh-global-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: var(--gh-text-muted);
  max-width: 420px;
  line-height: 1.82;
  letter-spacing: 0.03em;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.55s, transform 0.7s ease 0.55s;
}

.gh-global-container.gh-visible .gh-global-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Region indicators */
.gh-regions {
  display: flex;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.70s, transform 0.6s ease 0.70s;
}

.gh-global-container.gh-visible .gh-regions {
  opacity: 1;
  transform: translateY(0);
}

.gh-region {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  font-family: 'DM Sans', sans-serif;
}

.gh-region-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.5);
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .gh-global-content {
    padding: 48px 24px 56px;
  }
  .gh-regions {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .gh-global-container, .gh-global-content{
    min-height: 300px;
  }
  .gh-content-rule{
    display: none;
  }
  .hg-strip-items{
    gap: 15px;
  }
}

/* ═══════════════════════════════════════════════════════
   ROHINDIA GROUP — CTA COMPONENT
   Gold & White Premium Theme
   ═══════════════════════════════════════════════════════ */

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

:root {
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --paper:          #F5F3EE;
  --gold:           #C6A15B;
  --gold-hover:     #E5C97B;
  --gold-dark:      #A8873D;
  --gold-pale:      rgba(198, 161, 91, 0.08);
  --gold-border:    rgba(198, 161, 91, 0.35);
  --gold-glow:      rgba(198, 161, 91, 0.18);
  --text-primary:   #1A1A1A;
  --text-secondary: #555555;
  --text-muted:     #888888;
  --text-placeholder: #AAAAAA;
  --border-light:   rgba(0, 0, 0, 0.08);
  --border-mid:     rgba(0, 0, 0, 0.12);
  --border-gold:    rgba(198, 161, 91, 0.5);
  --error:          #B34040;
  --success-bg:     rgba(198, 161, 91, 0.07);
  --transition:     0.38s ease;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-ui:        'Montserrat', sans-serif;
  --radius:         2px;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--white);
  padding: 70px 60px 40px;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background grid pattern ── */
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,161,91,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,161,91,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── Diagonal accent lines ── */
.cta-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bg-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,0.12), transparent);
  height: 1px;
  width: 100%;
  transform-origin: left;
}

.bg-line-1 { top: 25%;  transform: rotate(-2deg) scaleX(0.7); left: 15%; }
.bg-line-2 { top: 60%;  transform: rotate(1.5deg) scaleX(0.5); left: 30%; }
.bg-line-3 { bottom: 18%; transform: rotate(-1deg) scaleX(0.4); left: 10%; }

/* ── Corner ornaments ── */
.cta-corner-ornament {
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(198,161,91,0.2);
  border-style: solid;
  pointer-events: none;
  z-index: 1;
}
.cta-corner-tl { top: 30px; left: 30px; border-width: 1px 0 0 1px; }
.cta-corner-tr { top: 30px; right: 30px; border-width: 1px 1px 0 0; }

/* ═══════════════════════════════════════════════════════
   CTA INNER CONTENT
   ═══════════════════════════════════════════════════════ */
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cta-inner.is-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

/* ── Eyebrow ── */
.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.eyebrow-rule {
  display: block;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

/* ── Headline ── */
.cta-headline {
  font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

/* ── Divider ── */
.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.div-line {
  display: block;
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.div-diamond {
  font-size: 7px;
  color: var(--gold);
}

.div-dot {
  display: block;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-border);
}

/* ── Body text ── */
.cta-body {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 12px;
  letter-spacing: 0.2px;
}

/* ── Meta strip ── */
.cta-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 16px;
  padding: 18px 32px;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale);
  border-radius: var(--radius);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.meta-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.meta-sep {
  font-size: 6px;
  color: var(--gold-border);
  align-self: center;
}

/* ── CTA Trigger Button ── */
.cta-trigger-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--text-primary);
  color: var(--white);
  border: 1px solid var(--text-primary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition), transform 0.2s ease;
}

.cta-trigger-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}

.cta-trigger-btn:hover::before { transform: scaleX(1); transform-origin: left; }
.cta-trigger-btn:hover {
  border-color: var(--gold);
  color: var(--text-primary);
  box-shadow: 0 8px 32px rgba(198,161,91,0.22);
  transform: translateY(-2px);
}

.btn-label, .btn-icon { position: relative; z-index: 1; }

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
}

.cta-trigger-btn:hover .btn-icon {
  transform: translateY(3px);
}

.btn-shimmer {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}

.cta-trigger-btn:hover .btn-shimmer {
  animation: btnShimmer 0.6s ease forwards;
}

@keyframes btnShimmer {
  from { left: -75%; }
  to   { left: 130%; }
}

/* ═══════════════════════════════════════════════════════
   FORM PANEL
   ═══════════════════════════════════════════════════════ */
.form-panel {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
              opacity 0.45s ease,
              margin-top 0.45s ease;
}

.form-panel.is-open {
  max-height: 1400px;
  opacity: 1;
}

.form-panel-inner {
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 30px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  transform: translateY(16px);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.form-panel.is-open .form-panel-inner {
  transform: translateY(0);
}

/* ── Form Header ── */
.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.form-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.form-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  flex-shrink: 0;
  margin-top: 4px;
}

.form-close-btn:hover {
  background: rgba(198,161,91,0.08);
  color: var(--gold-dark);
  border-color: var(--gold-border);
}

.form-divider-thin {
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
  margin: 6px 0 12px;
}

/* ═══════════════════════════════════════════════════════
   FORM FIELDS
   ═══════════════════════════════════════════════════════ */
.connect-form { display: flex; flex-direction: column; gap: 12px; }

.form-row { display: flex; gap: 24px; }
.form-row-2 > .field-group { flex: 1; min-width: 0; }
.form-row-1 > .field-group { flex: 1; }

/* ── Field Group ── */
.field-group { display: flex; flex-direction: column; gap: 7px; }

.field-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
}

.req-mark { color: var(--gold-dark); margin-left: 1px; }

/* ── Input wrap ── */
.field-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* ── Base input styles ── */
.field-input {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  padding: 12px 40px 12px 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.field-input::placeholder { color: var(--text-placeholder); }

.field-input:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Valid state */
.field-group.is-valid .field-input {
  border-color: rgba(198, 161, 91, 0.5);
  background: var(--white);
}

/* Error state */
.field-group.is-error .field-input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(179, 64, 64, 0.1);
}

/* ── Focus bar (bottom) ── */
.field-focus-bar {
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 0 0 1px 1px;
  pointer-events: none;
}

.field-input:focus ~ .field-focus-bar { transform: scaleX(1); }

/* ── Valid check icon ── */
.field-valid-icon {
  position: absolute;
  right: 12px;
  top: 50%; transform: translateY(-50%);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-50%) scale(0.6);
  pointer-events: none;
}

.field-group.is-valid .field-valid-icon {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ── Textarea ── */
.field-textarea {
  resize: vertical;
  min-height: 70px;
  padding-bottom: 8px;
  line-height: 1.6;
}

.char-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.3s;
}

.char-counter.is-met { color: var(--gold-dark); }

/* ── Select ── */
.field-select-wrap { position: relative; }
.field-select { cursor: pointer; padding-right: 36px; }
.select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color var(--transition), transform var(--transition);
}
.field-select:focus ~ .select-arrow { color: var(--gold); transform: translateY(-50%) rotate(180deg); }

/* ── Error message ── */
.field-error {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  color: var(--error);
  min-height: 14px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.field-group.is-error .field-error {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RADIO PILLS ══ */
.field-group-pills { gap: 10px; }

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-input { position: absolute; opacity: 0; width: 0; height: 0; }

.pill-label {
  position: relative;
  cursor: pointer;
}

.pill-text {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  background: var(--off-white);
  transition: color var(--transition), border-color var(--transition),
              background var(--transition), box-shadow var(--transition), transform 0.2s ease;
}

.pill-text::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pill-label:hover .pill-text {
  border-color: var(--gold-border);
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.pill-input:checked + .pill-text {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--gold-dark);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.pill-input:focus-visible + .pill-text {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ══ CHECKBOX ══ */
.field-group-check { gap: 0; }

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.check-input { position: absolute; opacity: 0; width: 0; height: 0; }

.check-box {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border: 1px solid var(--border-mid);
  background: var(--off-white);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  color: transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition);
}

.check-input:checked + .check-box {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 2px 8px var(--gold-glow);
}

.check-input:focus-visible + .check-box {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.check-text {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   SUBMIT ROW
   ═══════════════════════════════════════════════════════ */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

/* ── Progress bar ── */
.submit-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.progress-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.progress-track {
  flex: 1;
  height: 2px;
  background: var(--border-mid);
  border-radius: 2px;
  overflow: hidden;
  min-width: 60px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-hover));
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-pct {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-dark);
  min-width: 32px;
}

/* ── Submit button ── */
.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text-primary);
  color: var(--white);
  border: 1px solid var(--text-primary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: not-allowed;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition),
              transform 0.2s ease, opacity var(--transition);
  opacity: 0.45;
  flex-shrink: 0;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  z-index: 0;
}

.submit-btn:not(:disabled):hover::before {
  transform: scaleX(1); transform-origin: left;
}

.submit-btn:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}

.submit-btn:not(:disabled):hover {
  border-color: var(--gold);
  color: var(--text-primary);
  box-shadow: 0 8px 28px rgba(198,161,91,0.2);
  transform: translateY(-2px);
}

.submit-label, .submit-icon { position: relative; z-index: 1; }

.submit-icon { display: flex; align-items: center; }

.submit-shimmer {
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  transform: skewX(-15deg);
  z-index: 1;
}

.submit-btn:not(:disabled):hover .submit-shimmer {
  animation: btnShimmer 0.6s ease forwards;
}

/* Loading state */
.submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.submit-btn.is-loading .submit-label::after {
  content: '…';
  animation: dots 1s infinite;
}

@keyframes dots {
  0%,100% { content: '…'; }
  33%      { content: '.'; }
  66%      { content: '..'; }
}

/* ═══════════════════════════════════════════════════════
   SUCCESS PANEL
   ═══════════════════════════════════════════════════════ */
.success-panel {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: none;
}

.success-panel.is-visible {
  display: block;
}

.success-panel.is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.success-inner {
  background: var(--white);
  border: 1px solid var(--gold-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(198,161,91,0.08), 0 4px 20px rgba(0,0,0,0.05);
}

/* ── Success icon ── */
.success-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.success-ring {
  width: 80px; height: 80px;
}

.success-ring-draw {
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
}

.success-panel.is-animated .success-ring-draw {
  stroke-dashoffset: 0;
}

.success-check {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-path {
  transition: stroke-dashoffset 0.6s ease 1.2s;
}

.success-panel.is-animated .check-path {
  stroke-dashoffset: 0;
}

.success-eyebrow {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.success-body {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.success-body strong { color: var(--gold-dark); font-weight: 500; }

.success-ref {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 10px 20px;
  margin-bottom: 32px;
}

.ref-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ref-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 1px;
}

.success-reset-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 24px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.success-reset-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold-dark);
  background: var(--gold-pale);
}

/* ═══════════════════════════════════════════════════════
   ENTRANCE ANIMATION
   ═══════════════════════════════════════════════════════ */
.cta-inner,
.cta-meta-strip,
.cta-trigger-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cta-inner.revealed   { opacity: 1; transform: translateY(0); }
.cta-meta-strip.revealed { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.cta-trigger-btn.revealed { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }

/* once form is open, cta-inner opacity is managed by JS */
.cta-inner.is-hidden  { opacity: 0 !important; transform: translateY(-10px) !important; display: none;}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .cta-section { padding: 80px 24px 90px; }
  .form-panel-inner { padding: 28px 24px 32px; }

  .form-row-2 { flex-direction: column; gap: 20px; }

  .form-submit-row { flex-direction: column; align-items: stretch; }
  .submit-progress { width: 100%; }
  .submit-btn { width: 100%; justify-content: center; }

  .cta-meta-strip { flex-direction: column; gap: 14px; padding: 18px 24px; }
  .meta-sep { display: none; }

  .success-inner { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .cta-headline { font-size: 30px; }
  .pill-group { gap: 6px; }
  .pill-text { font-size: 10px; padding: 7px 14px; }
}