/* ==========================================================================
   Dinesh Jain - Trust Treasury Excellence Landing Page Stylesheet
   Design System & Responsive Framework
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --bg-primary: #05052B;
  --bg-secondary: #08083A;
  --bg-card: rgba(12, 11, 63, 0.75);
  --bg-card-hover: rgba(20, 18, 85, 0.85);
  
  --gold-primary: #F5B800;
  --gold-light: #FFD84D;
  --gold-dark: #C99600;
  --gold-glow: rgba(245, 184, 0, 0.25);
  
  --text-main: #FFFFFF;
  --text-muted: #D7D4E8;
  --text-subtle: #9894BC;
  
  --border-purple: rgba(123, 44, 131, 0.5);
  --border-pink: rgba(168, 59, 140, 0.5);
  --border-gold: rgba(245, 184, 0, 0.4);
  --border-subtle: rgba(255, 255, 255, 0.08);

  --font-heading: 'Nunito', 'Segoe UI', sans-serif;
  --font-body: 'PT Sans', system-ui, -apple-system, sans-serif;
  --font-accent: 'Nunito', sans-serif;

  --container-width: 1100px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(123, 44, 131, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 40%, rgba(245, 184, 0, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(168, 59, 140, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

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

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

ul {
  list-style: none;
}

/* --- Layout Container --- */
.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section-padding {
  padding: 40px 0;
}

.text-center {
  text-align: center;
}

/* --- Typography Utilities --- */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 184, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 40px);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

.gold-text {
  color: var(--gold-primary);
  background: linear-gradient(135deg, #FFD84D 0%, #F5B800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider-gold {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 20px auto 30px;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-transform: none;
  letter-spacing: 0.2px;
  border: none;
}

.btn-primary {
  background: var(--gold-primary);
  color: #05052B;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.4);
  background: var(--gold-light);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(245, 184, 0, 0.15);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* --- Cards Common System --- */
.card-glow {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-pink), transparent);
  opacity: 0.5;
}

.card-glow:hover {
  border-color: var(--border-pink);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(123, 44, 131, 0.2);
}

/* ==========================================================================
   SITE HEADER LOGO SECTION
   ========================================================================== */
.site-header {
  background: #FFFFFF;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}

.header-logo-link {
  display: inline-block;
  line-height: 1;
}

.site-header-logo-img {
  max-height: 52px;
  width: auto;
  display: inline-block;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.hero-section {
  padding: 45px 0 30px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.hero-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
  width: 100%;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-subtitle strong {
  color: #FFFFFF;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-card img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  display: block;
}
  font-size: 1.2rem;
}

.hero-caption p {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 2: FRAMEWORK INTRO
   ========================================================================== */
.framework-intro {
  background: rgba(8, 8, 58, 0.5);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ==========================================================================
   SECTION 3: WHOM I WORK WITH
   ========================================================================== */
.text-left {
  text-align: left;
}

.whom-intro {
  margin-bottom: 25px;
  max-width: 100%;
}

.whom-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
}

.whom-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whom-icon {
  margin-bottom: 14px;
}

.whom-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.whom-card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.banner-callout {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.12) 0%, rgba(123, 44, 131, 0.2) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.banner-callout h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-main);
}

/* ==========================================================================
   SECTION 4: HELPING TRUSTS MANAGE THEIR FUNDS BETTER
   ========================================================================== */
.help-trusts-wrapper {
  max-width: 100%;
}

.help-trusts-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 22px;
}

.gold-quote-box {
  border-left: 3px solid var(--gold-primary);
  padding: 10px 0 10px 24px;
  margin: 25px 0 30px;
}

.gold-quote-box p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.5;
}

.gold-purpose-card {
  background: linear-gradient(135deg, rgba(160, 115, 0, 0.45) 0%, rgba(100, 70, 0, 0.5) 100%);
  border: 1px solid rgba(245, 184, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 35px;
}

.purpose-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.purpose-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #FFFFFF;
  line-height: 1.6;
}

.purpose-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   SECTION: WHAT PEOPLE SAY (TESTIMONIALS)
   ========================================================================== */
.testimonials-intro {
  margin-bottom: 20px;
  max-width: 100%;
}

.testimonials-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 30px;
}

.testimonial-card {
  background: rgba(12, 11, 63, 0.6);
  border-radius: 16px;
  padding: 35px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-gold {
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 10px 30px rgba(245, 184, 0, 0.08);
}

.testimonial-pink {
  border: 1.5px solid var(--border-pink);
  box-shadow: 0 10px 30px rgba(168, 59, 140, 0.12);
}

.quote-mark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  background: var(--bg-primary);
  padding: 0 6px;
}

.testimonial-gold .quote-mark {
  color: var(--gold-primary);
}

.testimonial-pink .quote-mark {
  color: #E251B5;
}

.quote-top {
  top: -14px;
  left: 20px;
}

.quote-bottom {
  bottom: -14px;
  right: 20px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.transformation-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.transformation-tag span.badge-old {
  color: var(--text-subtle);
  text-decoration: line-through;
}

/* ==========================================================================
   SECTION 5: WHY I DO THIS: MY JOURNEY
   ========================================================================== */
.journey-wrapper {
  max-width: 100%;
}

.journey-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 22px;
}

.journey-p strong {
  color: #FFFFFF;
  font-weight: 600;
}

.gallery-section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-purple);
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition-normal);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   SECTION 6: TRACK RECORD & STATISTICS
   ========================================================================== */
.stats-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-content-col {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 7: COMMON TREASURY CHALLENGES
   ========================================================================== */
.mission-intro {
  margin-bottom: 22px;
  max-width: 100%;
}

.mission-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.challenge-card {
  background: rgba(12, 11, 63, 0.6);
  border-radius: 12px;
  padding: 24px 28px;
  transition: var(--transition-normal);
}

.challenge-card:hover {
  transform: translateY(-3px);
}

.border-gold {
  border: 1.5px solid #F5B800;
  box-shadow: 0 4px 20px rgba(245, 184, 0, 0.08);
}

.border-pink {
  border: 1.5px solid #E251B5;
  box-shadow: 0 4px 20px rgba(226, 81, 181, 0.08);
}

.border-purple {
  border: 1.5px solid #9F7AEA;
  box-shadow: 0 4px 20px rgba(159, 122, 234, 0.08);
}

.border-blue {
  border: 1.5px solid #4299E1;
  box-shadow: 0 4px 20px rgba(66, 153, 225, 0.08);
}

.border-teal {
  border: 1.5px solid #38B2AC;
  box-shadow: 0 4px 20px rgba(56, 178, 172, 0.08);
}

.border-amber {
  border: 1.5px solid #ECC94B;
  box-shadow: 0 4px 20px rgba(236, 201, 75, 0.08);
}

.challenge-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.challenge-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #D7D4E8;
  line-height: 1.6;
}

.challenges-summary {
  margin-top: 35px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.65;
}

.text-pattern-red {
  color: #FF5252;
  font-weight: 600;
}

/* ==========================================================================
   SECTION 8: INTRODUCING THE TRUST TREASURY EXCELLENCE FRAMEWORK™
   ========================================================================== */
.intro-framework-card {
  background: rgba(12, 11, 63, 0.6);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  padding: 45px 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.framework-intro-p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.question-card {
  background: rgba(8, 8, 58, 0.7);
  border-radius: 12px;
  padding: 22px 20px;
  transition: var(--transition-normal);
}

.question-card:hover {
  transform: translateY(-3px);
}

.q-card-gold {
  border: 1.5px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.08);
}

.q-card-pink {
  border: 1.5px solid var(--border-pink);
  box-shadow: 0 4px 15px rgba(168, 59, 140, 0.08);
}

.q-card-purple {
  border: 1.5px solid #9F7AEA;
  box-shadow: 0 4px 15px rgba(159, 122, 234, 0.08);
}

.question-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.question-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #D7D4E8;
  line-height: 1.55;
}

.concentric-framework-svg-container {
  width: 100%;
  max-width: 900px;
  margin: 35px auto 0;
  display: block;
}

/* ==========================================================================
   SECTION 9: 01 — PRINCIPLES: THE FOUR PILLARS
   ========================================================================== */
.pillars-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.pill-badge-gold {
  display: inline-block;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pillars-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* ==========================================================================
   SECTION 10: THE FOUR PILLARS EXPLAINED
   ========================================================================== */
.four-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 25px;
  margin-top: 30px;
}

.pillar-card {
  background: rgba(12, 11, 63, 0.6);
  border-radius: 14px;
  padding: 30px 28px 26px;
  position: relative;
  transition: var(--transition-normal);
}

.pillar-card:hover {
  transform: translateY(-3px);
}

.pillar-card-icon-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.3);
}

.pillar-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 12px;
  margin-top: 5px;
}

.pillar-card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #D7D4E8;
  line-height: 1.6;
}

.pillars-question-bar {
  margin-top: 35px;
  background: rgba(184, 134, 11, 0.25);
  border: 1px solid rgba(245, 184, 0, 0.5);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillars-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillars-bar-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION 11: 02 — PROCESS: THE TREASURY OPERATING SYSTEM™
   ========================================================================== */
.tos-intro {
  max-width: 100%;
  margin-bottom: 22px;
}

.tos-subheading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.tos-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.tos-capsule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 40px;
  margin-top: 30px;
}

.tos-capsule-item {
  display: flex;
  flex-direction: column;
}

.tos-capsule-header {
  width: 100%;
  margin-bottom: 6px;
}

.capsule-header-svg {
  display: block;
}

.tos-capsule-body {
  padding-left: 20px;
}

.tos-capsule-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.tos-capsule-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #D7D4E8;
  line-height: 1.6;
}

.tos-flow-bar {
  margin-top: 30px;
  background: rgba(12, 11, 63, 0.8);
  border: 1px solid var(--border-purple);
  border-radius: 12px;
  padding: 16px 24px;
}

.tos-flow-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION 12: 03 — PERFORMANCE: THE TREASURY DASHBOARD
   ========================================================================== */
.dashboard-intro {
  max-width: 100%;
  margin-bottom: 22px;
}

.dashboard-subheading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.dashboard-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.dashboard-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.dash-card {
  background: rgba(12, 11, 63, 0.6);
  border-radius: 12px;
  padding: 24px 26px;
  transition: var(--transition-normal);
}

.dash-card:hover {
  transform: translateY(-3px);
}

.dash-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.dash-card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #D7D4E8;
  line-height: 1.6;
}

.dashboard-question-bar {
  margin-top: 35px;
  background: rgba(184, 134, 11, 0.25);
  border: 1px solid rgba(245, 184, 0, 0.5);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-bar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-bar-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
}

/* ==========================================================================
   SECTION 13: HOW THE THREE FOUNDATIONS WORK TOGETHER
   ========================================================================== */
.foundations-together-wrapper {
  max-width: 100%;
  margin: 0;
}

.foundations-together-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 25px;
}

.foundations-diagram-card {
  background: rgba(8, 8, 58, 0.6);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   SECTION 14: A REAL TREASURY SITUATION: A TEMPLE WITH ₹6 CRORE
   ========================================================================== */
.case-study-wrapper {
  max-width: 100%;
}

.case-study-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 22px;
}

.case-study-quote-box {
  border-left: 3px solid var(--gold-primary);
  padding-left: 20px;
  margin: 28px 0;
}

/* ==========================================================================
   SECTION 15: YOU HAVE TWO CHOICES
   ========================================================================== */
.choices-section-wrapper {
  max-width: 100%;
}

.choices-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 100%;
}

.choices-two-col-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-top: 25px;
}

.option-col-left {
  display: flex;
  flex-direction: column;
}

.option-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.option-p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 18px;
}

.option-card-gold-right {
  background: linear-gradient(135deg, #C58E00 0%, #A37300 100%);
  border: 1.5px solid #F5B800;
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(197, 142, 0, 0.25);
}

.option-gold-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #05052B;
  margin-bottom: 16px;
}

.option-gold-p {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #0C0B3F;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ==========================================================================
   SECTION 16: START WITH A TREASURY REVIEW
   ========================================================================== */
.review-section-wrapper {
  max-width: 100%;
}

.review-subheading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.review-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 35px;
  margin-top: 30px;
}

.review-step-item {
  position: relative;
  padding-top: 18px;
}

.border-top-gold {
  border-top: 2px solid #F5B800;
}

.border-top-pink {
  border-top: 2px solid #E251B5;
}

.border-top-purple {
  border-top: 2px solid #9F7AEA;
}

.border-top-blue {
  border-top: 2px solid #4299E1;
}

.review-step-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
}

.review-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

/* ==========================================================================
   SECTION 17 & FOOTER: BETTER TREASURY. BETTER GOVERNANCE. GREATER IMPACT.
   ========================================================================== */
.impact-section-wrapper {
  max-width: 100%;
  margin: 0;
}

.impact-intro-p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #D7D4E8;
  line-height: 1.65;
  margin-bottom: 35px;
  max-width: 100%;
}

.chevrons-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 25px;
}

.chevron-step-col {
  display: flex;
  flex-direction: column;
}

.chevron-banner-header {
  width: 100%;
  margin-bottom: 14px;
}

.chevron-arrow-svg {
  display: block;
  width: 100%;
  height: 48px;
}

.chevron-step-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.chevron-step-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #D7D4E8;
  line-height: 1.55;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold-primary);
  color: #05052B;
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* ==========================================================================
   SECTION 11: TREASURY OPERATING SYSTEM (TIMELINE)
   ========================================================================== */
.timeline-container {
  position: relative;
  margin: 50px 0;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--border-pink));
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 25px 20px;
  text-align: left;
}

.step-badge {
  display: inline-block;
  background: var(--gold-primary);
  color: #05052B;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* ==========================================================================
   SECTION 12: DASHBOARD / VISIBILITY
   ========================================================================== */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ==========================================================================
   SECTION 13: HOW 3 FRAMEWORKS WORK TOGETHER
   ========================================================================== */
.integration-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 40px;
}

.integration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
}

.integration-card .step-num {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* ==========================================================================
   SECTION 14: TEMPLE STRATEGY
   ========================================================================== */
.temple-framework-box {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 30px;
}

.temple-roof {
  background: linear-gradient(135deg, rgba(245, 184, 0, 0.2), rgba(123, 44, 131, 0.3));
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.temple-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.temple-pillar-item {
  background: rgba(8, 8, 58, 0.8);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 25px 15px;
  text-align: center;
}

.temple-base {
  background: rgba(123, 44, 131, 0.25);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 15: YOU HAVE TWO CHOICES
   ========================================================================== */
.choices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.choice-card-bad {
  background: rgba(20, 9, 29, 0.8);
  border: 1px solid rgba(229, 62, 62, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
}

.choice-card-good {
  background: var(--bg-card);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: 0 15px 40px rgba(245, 184, 0, 0.15);
  position: relative;
}

.badge-recommended {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gold-primary);
  color: #05052B;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.choice-list {
  margin-top: 25px;
}

.choice-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.icon-cross {
  color: #E53E3E;
  font-weight: bold;
}

.icon-check {
  color: var(--gold-primary);
  font-weight: bold;
}

/* ==========================================================================
   SECTION 16 & 17: FINAL CTAS & CONTACT FORM
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #03031C 100%);
  padding: 90px 0 60px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 750px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  background: rgba(5, 5, 43, 0.8);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(245, 184, 0, 0.2);
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .stats-banner {
    grid-template-columns: 1fr;
  }

  .stats-img-col {
    max-height: 300px;
  }

  .choices-two-col-grid,
  .pillars-intro-grid,
  .foundation-section {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

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

  .integration-flow {
    grid-template-columns: 1fr;
  }

  .temple-pillars {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 22px 0;
  }

  .hero-section {
    padding: 25px 0 15px;
  }

  .whom-intro,
  .testimonials-intro,
  .mission-intro,
  .tos-intro,
  .dashboard-intro {
    margin-bottom: 16px;
  }

  .chevrons-flow-grid,
  .review-steps-grid,
  .dashboard-cards-grid,
  .tos-capsule-grid,
  .four-pillars-grid,
  .questions-grid,
  .concentric-framework-layout,
  .challenges-grid,
  .testimonials-grid,
  .whom-grid,
  .cards-grid-4,
  .imperative-grid,
  .gallery-grid,
  .dashboard-grid,
  .choices-grid,
  .risk-grid {
    grid-template-columns: 1fr;
  }

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

  .banner-callout {
    flex-direction: column;
    text-align: center;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 16px 0;
  }

  .container {
    width: calc(100% - 24px);
  }

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

  .stat-number {
    font-size: 2.8rem;
  }

  .btn {
    width: 100%;
  }
}
