/* =============================================
   INFINIA CONSULTING — Global Stylesheet
   Stripe-inspired light theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* --- Variables --- */
:root {
  --navy:        #0A2540;
  --navy-mid:    #16294A;
  --navy-light:  #1F3A68;
  --indigo:      #635BFF;
  --indigo-light:#8C84FF;
  --indigo-deep: #4E47CC;
  --purple:      #7C3AED;
  --purple-light:#A78BFA;
  --purple-deep: #5B21B6;
  --blue:        #0073E6;
  --blue-light:  #4A90F0;
  --blue-deep:   #1E40AF;
  --sky:         #0EA5E9;
  --sky-deep:    #0369A1;
  --cyan:        #00D4FF;
  /* Legacy aliases — repurposed to fit the blue/purple palette */
  --gold:        #7C3AED;
  --gold-light:  #A78BFA;
  --off-white:   #F6F9FC;
  --bg-soft:     #FAFBFD;
  --white:       #FFFFFF;
  --text-dark:   #0A2540;
  --text-mid:    #425466;
  --text-light:  #697386;
  --border:      #E3E8EE;
  --border-soft: #EEF1F6;
  --gradient-hero: linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 60%, #F6F9FC 100%);
  --gradient-accent: linear-gradient(135deg, #635BFF 0%, #00D4FF 100%);
  --gradient-dark: linear-gradient(135deg, #0A2540 0%, #1E2B66 55%, #2E2A88 100%);
  --shadow-sm:   0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md:   0 4px 16px rgba(10, 37, 64, 0.08);
  --shadow-lg:   0 12px 40px rgba(10, 37, 64, 0.10);
  --shadow-color: 0 12px 40px rgba(99, 91, 255, 0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   NAVIGATION
   ============================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  gap: 24px;
}

.nav__logo  { justify-self: start; }
.nav__links { justify-self: center; }
.nav__cta   { justify-self: end; }

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

.nav__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}

.nav__link:hover {
  color: var(--indigo);
  background: rgba(99, 91, 255, 0.06);
}

.nav__link.active {
  color: var(--indigo);
  background: rgba(99, 91, 255, 0.08);
}

.nav__cta {
  background: var(--indigo);
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--indigo-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99, 91, 255, 0.35);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(99, 91, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 30%, rgba(0, 212, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 70% 95%, rgba(167, 139, 250, 0.13) 0%, transparent 55%),
    linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 80%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 80px 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 91, 255, 0.08);
  border: 1px solid rgba(99, 91, 255, 0.18);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 50%;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero__title em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.1px;
}

.btn--primary {
  background: var(--indigo);
  color: white;
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.28);
}

.btn--primary:hover {
  background: var(--indigo-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.40);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  background: rgba(99, 91, 255, 0.06);
  border-color: var(--indigo);
  color: var(--indigo);
}

.btn--gold {
  background: var(--purple);
  color: white;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.28);
}

.btn--gold:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.40);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   SECTION COMMONS
   ============================================= */

.section {
  padding: 100px 0;
  background: var(--white);
}

.section--alt {
  background: var(--off-white);
}

.section--dark {
  background: var(--gradient-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(99, 91, 255, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 5% 90%, rgba(0, 212, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__header--left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}

.eyebrow--gold { color: var(--purple); }
.eyebrow--white { color: rgba(255,255,255,0.6); }

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section--dark .section__title {
  color: var(--white);
}

.section__desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.section--dark .section__desc {
  color: rgba(255,255,255,0.72);
}

/* =============================================
   STATS BAND
   ============================================= */

.stats-band {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-item {
  background: var(--white);
  padding: 36px 32px;
  text-align: center;
}

.stat-item__number {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__number span {
  color: var(--indigo);
}

.stat-item__label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =============================================
   CARDS
   ============================================= */

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 36px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 91, 255, 0.25);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(99, 91, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--indigo);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__icon--gold { background: rgba(124, 58, 237, 0.10); color: var(--purple); }
.card__icon--green { background: rgba(0, 115, 230, 0.10); color: var(--blue); }
.card__icon--purple { background: rgba(124, 58, 237, 0.10); color: var(--purple); }
.card__icon--teal { background: rgba(14, 165, 233, 0.12); color: var(--sky); }

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.card__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* --- Dark cards (used inside section--dark) --- */
.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: none;
}

.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,0.72); }
.card--dark:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* =============================================
   VALUE PILLARS
   ============================================= */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.pillar:last-child { border-right: none; }

.pillar:hover { background: rgba(99, 91, 255, 0.03); }

.pillar__number {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(99, 91, 255, 0.14);
  line-height: 1;
  margin-bottom: 16px;
}

.pillar__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.pillar__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   TEAM / PEOPLE
   ============================================= */

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

.person-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.person-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.person-card__role {
  font-size: 13px;
  color: var(--indigo);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.person-card__bio {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   QUOTE / TESTIMONIAL
   ============================================= */

.quote-block {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.15);
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.quote-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 20%, rgba(99, 91, 255, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(0, 212, 255, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.quote-block__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: white;
  line-height: 1.5;
  max-width: 740px;
  margin: 0 auto 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-block__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* =============================================
   PROCESS / TIMELINE
   ============================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: var(--border);
}

.step {
  text-align: center;
  padding: 0 20px;
}

.step__dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(99, 91, 255, 0.10);
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   IMPACT / COMMUNITY
   ============================================= */

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

.impact-text .section__title {
  text-align: left;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.impact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.impact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(99, 91, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}

.impact-item__icon svg { width: 22px; height: 22px; }

.impact-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.impact-item__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.impact-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.impact-card:first-child {
  grid-column: span 2;
  background: var(--gradient-dark);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(99, 91, 255, 0.20);
}

.impact-card:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 80% 20%, rgba(99, 91, 255, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(0, 212, 255, 0.20) 0%, transparent 55%);
  pointer-events: none;
}

.impact-card:first-child > * {
  position: relative;
  z-index: 1;
}

.impact-card__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.impact-card__number--white { color: white; }
.impact-card__number--blue  { color: var(--indigo); }
.impact-card__number--gold  { color: var(--purple); }
.impact-card__number--green { color: var(--blue); }

.impact-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-light);
}

.impact-card:first-child .impact-card__label { color: rgba(255,255,255,0.65); }
.impact-card__label--blue  { color: var(--text-mid); }

/* =============================================
   INITIATIVES
   ============================================= */

.initiative-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.initiative-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 91, 255, 0.25);
}

.initiative-card__banner {
  height: 6px;
}

.initiative-card__body {
  padding: 32px;
}

.initiative-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tag--blue   { background: rgba(99, 91, 255, 0.10); color: var(--indigo); }
.tag--gold   { background: rgba(124, 58, 237, 0.10); color: var(--purple); }
.tag--green  { background: rgba(0, 115, 230, 0.10); color: var(--blue); }
.tag--purple { background: rgba(124, 58, 237, 0.10); color: var(--purple-deep); }

.initiative-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.initiative-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =============================================
   CULTURE PERKS
   ============================================= */

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.perk {
  background: white;
  padding: 36px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background var(--transition);
}

.perk:hover { background: rgba(99, 91, 255, 0.03); }

.perk__icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.perk__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   HERO PAGE VARIANTS (Culture, Community)
   ============================================= */

.hero--culture {
  background: var(--white);
}

.hero--culture::before {
  background:
    radial-gradient(ellipse 65% 50% at 90% 15%, rgba(167, 139, 250, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(99, 91, 255, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 95%, rgba(0, 212, 255, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFD 0%, #FFFFFF 80%);
}

.hero--community {
  background: var(--white);
}

.hero--community::before {
  background:
    radial-gradient(ellipse 65% 50% at 85% 20%, rgba(0, 212, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 10% 30%, rgba(99, 91, 255, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 60% 95%, rgba(14, 165, 233, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 80%);
}

.hero--commerce {
  background: var(--white);
}

.hero--commerce::before {
  background:
    radial-gradient(ellipse 65% 50% at 90% 12%, rgba(0, 115, 230, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 8%  78%, rgba(99, 91, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 55% 95%, rgba(14, 165, 233, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #FAFBFD 0%, #FFFFFF 80%);
}

/* =============================================
   PAGE HERO (shorter)
   ============================================= */

.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99, 91, 255, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 70%, rgba(0, 212, 255, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero .hero__title,
.page-hero .section__title { color: var(--text-dark); }
.page-hero .hero__subtitle { color: var(--text-mid); }

/* =============================================
   VALUES
   ============================================= */

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.value-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.value-row:last-child { border-bottom: none; }
.value-row:hover { background: rgba(99, 91, 255, 0.03); }

.value-row__num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(99, 91, 255, 0.18);
  line-height: 1;
}

.value-row__content {}

.value-row__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.value-row__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}

/* Value rows on dark backgrounds */
.section--dark .values-list {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
}
.section--dark .value-row {
  border-bottom-color: rgba(255,255,255,0.10);
}
.section--dark .value-row:hover {
  background: rgba(255,255,255,0.04);
}
.section--dark .value-row__num {
  color: var(--indigo-light);
}
.section--dark .value-row__title {
  color: var(--white);
}
.section--dark .value-row__text {
  color: rgba(255,255,255,0.68);
}

.value-row__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* =============================================
   CTA STRIP
   ============================================= */

.cta-strip {
  background: var(--gradient-accent);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 50% 100%, rgba(255,255,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 90% 0%, rgba(167, 139, 250, 0.25) 0%, transparent 55%);
}

.cta-strip__content {
  position: relative;
  z-index: 1;
}

.cta-strip__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.cta-strip__text {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--off-white);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer__logo-img {
  height: 26px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}

.footer__social-btn:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: white;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer__link:hover { color: var(--indigo); }

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

.footer__copy {
  font-size: 13px;
  color: var(--text-light);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-light);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--indigo); }

/* =============================================
   DIVIDER
   ============================================= */

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* =============================================
   CARD LIST (bulleted feature list inside .card)
   ============================================= */

.card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.card__list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
}

/* =============================================
   BUSINESS CAROUSEL (home page)
   ============================================= */

.carousel {
  position: relative;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.business-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
}

.business-card__visual {
  position: relative;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  overflow: hidden;
}

.business-card__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(255,255,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(255,255,255,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.business-card__visual > * { position: relative; z-index: 1; }

.business-card--tech .business-card__visual {
  background: linear-gradient(135deg, #4E47CC 0%, #635BFF 60%, #8C84FF 100%);
}
.business-card--business .business-card__visual {
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 60%, #A78BFA 100%);
}
.business-card--finance .business-card__visual {
  background: linear-gradient(135deg, #1E40AF 0%, #0073E6 60%, #4A90F0 100%);
}

.business-card__visual-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0;
}

.business-card__visual-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.business-card__visual-icon svg { width: 44px; height: 44px; }

.business-card__visual-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.business-card__body {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.business-card__image-panel {
  overflow: hidden;
}

.business-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(99, 91, 255, 0.10);
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.business-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0;
}

.business-card__desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.business-card__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  margin: 4px 0 0;
  padding: 0;
}
.business-card__list li {
  font-size: 14px;
  color: var(--text-dark);
  padding-left: 20px;
  position: relative;
}
.business-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
}

.business-card__meta {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 18px;
}
.business-card__stat {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.4;
}
.business-card__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.business-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--indigo);
  font-weight: 600;
  font-size: 15px;
  margin-top: auto;
  align-self: flex-start;
}
.business-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.business-card__link:hover svg { transform: translateX(4px); }

/* --- Arrows --- */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  z-index: 2;
  transition: all var(--transition);
  padding: 0;
}
.carousel__arrow svg { width: 20px; height: 20px; }
.carousel__arrow:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: white;
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.30);
}
.carousel__arrow--prev { left: 16px; }
.carousel__arrow--next { right: 16px; }

/* --- Dots --- */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel__dot:hover { background: var(--text-light); }
.carousel__dot--active {
  background: var(--indigo);
  width: 32px;
  border-radius: 100px;
}

/* =============================================
   HOME — FULL-SCREEN HERO CAROUSEL
   ============================================= */

.hero-carousel {
  margin-top: 88px;
  height: calc(100vh - 88px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-carousel .carousel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hero-carousel .carousel__viewport {
  flex: 1;
  min-height: 0;
  border-radius: 0;
}

.hero-carousel .carousel__track {
  height: 100%;
}

.hero-carousel .business-card {
  height: 100%;
  min-height: 0;
}

.hero-carousel .carousel__dots {
  flex-shrink: 0;
  margin-top: 20px;
  margin-bottom: 16px;
}

/* =============================================
   TECH CARD — RICH CONTENT VISUAL PANEL
   ============================================= */

.business-card__visual--content {
  justify-content: center;
  gap: 22px;
}

.bv-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}

.bv-heading {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.bv-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
}

.bv-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bv-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.bv-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.78);
}

.bv-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.bv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.bv-btn svg {
  width: 16px;
  height: 16px;
}

.bv-btn--dark {
  background: #111111;
  color: #ffffff;
}

.bv-btn--dark:hover {
  background: #000000;
}

.bv-btn--indigo {
  background: var(--indigo);
  color: #ffffff;
}

.bv-btn--indigo:hover {
  background: var(--indigo-deep);
}

.bv-btn--light {
  background: #ffffff;
  color: var(--indigo);
}

.bv-btn--light:hover {
  background: rgba(255,255,255,0.90);
}

/* =============================================
   WHO WE ARE — ANIMATED VISUAL
   ============================================= */

.impact-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.anim-scene {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: anim-float 7s ease-in-out infinite;
}

@keyframes anim-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Concentric pulsing rings */
.anim-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: anim-ring-fade 4s ease-in-out infinite;
}
.anim-ring--1 {
  border: 1.5px solid rgba(99,91,255,0.40);
  transform: scale(0.38);
  animation-delay: 0s;
}
.anim-ring--2 {
  border: 1px solid rgba(99,91,255,0.22);
  transform: scale(0.65);
  animation-delay: 0.7s;
}
.anim-ring--3 {
  border: 1px solid rgba(99,91,255,0.10);
  transform: scale(1);
  animation-delay: 1.4s;
}

@keyframes anim-ring-fade {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* Central glowing orb */
.anim-core {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: anim-core-glow 3.5s ease-in-out infinite;
}
.anim-core svg {
  width: 40px;
  height: 40px;
}

@keyframes anim-core-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(99,91,255,0.35); }
  50%       { box-shadow: 0 0 56px rgba(99,91,255,0.65); }
}

/* Floating satellite nodes */
.anim-node {
  position: absolute;
  border-radius: 50%;
}
.anim-node--1 {
  width: 14px; height: 14px;
  background: var(--indigo);
  top: 18px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(99,91,255,0.55);
  animation: anim-node-1 5s ease-in-out infinite;
}
.anim-node--2 {
  width: 10px; height: 10px;
  background: var(--purple);
  bottom: 32px; right: 28px;
  box-shadow: 0 0 10px rgba(124,58,237,0.55);
  animation: anim-node-2 6s ease-in-out infinite;
}
.anim-node--3 {
  width: 12px; height: 12px;
  background: var(--blue);
  bottom: 48px; left: 22px;
  box-shadow: 0 0 10px rgba(0,115,230,0.55);
  animation: anim-node-3 4.5s ease-in-out infinite;
}

@keyframes anim-node-1 {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.65; }
}
@keyframes anim-node-2 {
  0%, 100% { transform: translateY(0);    opacity: 0.9; }
  50%       { transform: translateY(-10px); opacity: 0.55; }
}
@keyframes anim-node-3 {
  0%, 100% { transform: translateY(0);   opacity: 0.85; }
  50%       { transform: translateY(8px); opacity: 0.5; }
}

/* =============================================
   CAREERS — ROLE LIST
   ============================================= */

.role-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.role-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.role-row:last-child { border-bottom: none; }
.role-row:hover { background: rgba(99, 91, 255, 0.03); }
.role-row:hover .role-row__cta { gap: 10px; }

.role-row__main { min-width: 0; }

.role-row__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.role-row__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}

.role-row__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.role-row__meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.role-row__loc {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.role-row__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--indigo);
  white-space: nowrap;
  transition: gap var(--transition);
}

/* =============================================
   TIMELINE
   ============================================= */

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 0;
}

/* Vertical gradient spine */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(99,91,255,0.30) 8%,
    rgba(99,91,255,0.30) 92%,
    transparent 100%);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 0 calc(50% + 36px) 52px 0;
  opacity: 0;
  animation: tl-fade-up 0.7s ease forwards;
}

.timeline__item--right {
  justify-content: flex-start;
  padding: 0 0 52px calc(50% + 36px);
}

.timeline__item:last-child { padding-bottom: 0; }

/* Pulsing dot on the spine */
.timeline__dot {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--indigo);
  transform: translateX(-50%);
  animation: dot-glow 3s ease-in-out infinite;
  z-index: 1;
}

/* Content card */
.timeline__content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  max-width: 300px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.timeline__content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.timeline__year {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

@keyframes tl-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);   }
}

@keyframes dot-glow {
  0%, 100% { box-shadow: 0 0 0 3px rgba(99,91,255,0.15); }
  50%       { box-shadow: 0 0 0 7px rgba(99,91,255,0.08), 0 0 14px rgba(99,91,255,0.18); }
}

/* =============================================
   HAMBURGER TOGGLE BUTTON
   ============================================= */

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav__toggle:hover { background: rgba(99,91,255,0.07); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-info__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}

.contact-info__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info__text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(99, 91, 255, 0.08);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-note {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--indigo);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.contact-note__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

/* Form card wrapper */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 40px;
}

/* ---- Zoho CRM form overrides ---- */
#crmWebToEntityForm {
  max-width: 100% !important;
  background: transparent !important;
  color: var(--text-dark) !important;
  padding: 0 !important;
}

#crmWebToEntityForm .zcwf_row {
  margin: 0 0 20px 0 !important;
}

#crmWebToEntityForm .zcwf_col_lab {
  width: auto !important;
  float: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  padding: 0 0 7px 0 !important;
  margin: 0 !important;
}

#crmWebToEntityForm .zcwf_col_lab label {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
}

#crmWebToEntityForm .zcwf_col_fld {
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#crmWebToEntityForm .zcwf_col_fld input[type=text] {
  width: 100% !important;
  float: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  background: var(--off-white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  outline: none !important;
  box-sizing: border-box !important;
}

#crmWebToEntityForm .zcwf_col_fld input[type=text]:focus {
  border-color: var(--indigo) !important;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12) !important;
  background: var(--white) !important;
}

#crmWebToEntityForm .zcwf_col_fld_slt {
  width: 100% !important;
  float: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  background: var(--off-white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  cursor: pointer;
  outline: none !important;
  box-sizing: border-box !important;
}

#crmWebToEntityForm .zcwf_col_fld_slt:focus {
  border-color: var(--indigo) !important;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12) !important;
}

#crmWebToEntityForm .zcwf_col_fld textarea {
  width: 100% !important;
  float: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  background: var(--off-white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 14px !important;
  min-height: 110px !important;
  resize: vertical !important;
  outline: none !important;
  box-sizing: border-box !important;
}

#crmWebToEntityForm .zcwf_col_fld textarea:focus {
  border-color: var(--indigo) !important;
  box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.12) !important;
  background: var(--white) !important;
}

#crmWebToEntityForm .zcwf_file {
  width: 100% !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  box-sizing: border-box !important;
}

#crmWebToEntityForm .zcwf_col_fld p {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  color: var(--text-light) !important;
  padding: 5px 0 0 0 !important;
  margin: 0 !important;
}

#crmWebToEntityForm .zcwf_privacy {
  padding: 4px 0 8px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

#crmWebToEntityForm .zcwf_privacy_txt {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: var(--text-mid) !important;
  width: auto !important;
  margin-left: 0 !important;
  padding-top: 1px !important;
}

#crmWebToEntityForm .zcwf_privacy_txt a {
  color: var(--indigo) !important;
  text-decoration: underline;
}

#crmWebToEntityForm #captchaErr964665000000560023 {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
}

#crmWebToEntityForm #imgid964665000000560023 {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: block;
  margin-bottom: 6px;
}

#crmWebToEntityForm .formsubmit.zcwf_button {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--blue) 100%) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 32px !important;
  cursor: pointer !important;
  max-width: none !important;
  overflow: visible !important;
  white-space: nowrap !important;
  transition: opacity 0.2s !important;
}

#crmWebToEntityForm .formsubmit.zcwf_button:hover {
  opacity: 0.88 !important;
}

#crmWebToEntityForm .zcwf_button[name=reset] {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: transparent !important;
  color: var(--text-mid) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 11px 22px !important;
  cursor: pointer !important;
  max-width: none !important;
  margin-left: 10px !important;
}

#crmWebToEntityForm .zcwf_button[name=reset]:hover {
  border-color: var(--text-mid) !important;
  color: var(--text-dark) !important;
}

#crmWebToEntityForm .zcwf_col_help {
  display: none !important;
}

/* Side-by-side field pairs */
.zcwf_row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin: 0 0 20px 0;
}

.zcwf_row--split .zcwf_row {
  margin: 0 !important;
}

/* Responsive — contact page */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .zcwf_row--split { grid-template-columns: 1fr; gap: 20px 0; }
}

/* =============================================
   POLICY / LEGAL PAGES
   ============================================= */

.policy-hero {
  padding: 140px 0 64px;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.policy-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 16px;
}

.policy-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.policy-hero__meta {
  font-size: 14px;
  color: var(--text-light);
}

.policy-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}

.policy-toc {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 56px;
}

.policy-toc__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.policy-toc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc-counter;
}

.policy-toc__list li {
  counter-increment: toc-counter;
  font-size: 14px;
}

.policy-toc__list li::before {
  content: counter(toc-counter) ". ";
  color: var(--text-light);
}

.policy-toc__list a {
  color: var(--indigo);
  transition: color var(--transition);
}

.policy-toc__list a:hover { color: var(--indigo-deep); }

.policy-section {
  margin-bottom: 48px;
  padding-top: 8px;
}

.policy-section__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section__heading-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--indigo);
  color: white;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 14px;
  padding-left: 4px;
}

.policy-section ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 2px;
  background: var(--indigo);
  border-radius: 1px;
}

.policy-section a {
  color: var(--indigo);
  transition: color var(--transition);
}

.policy-section a:hover { color: var(--indigo-deep); }

.policy-contact-box {
  background: var(--off-white);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--indigo);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 16px;
}

.policy-contact-box p {
  margin-bottom: 6px !important;
}

.policy-contact-box strong {
  color: var(--text-dark);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- 1024px: Tablet landscape / small laptop --- */
@media (max-width: 1024px) {
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-visual { max-width: 420px; margin: 0 auto; }
  .impact-anim { min-height: 320px; }
  .business-card { grid-template-columns: 1fr; min-height: auto; }
  .business-card__visual { padding: 40px 36px; min-height: 200px; }
  .business-card__visual--content { padding: 40px 36px; gap: 18px; }
  .business-card__visual-num { font-size: 80px; }
  .business-card__body { padding: 40px 36px; }
  .business-card__list { grid-template-columns: 1fr 1fr; }
  .business-card__image-panel { height: 300px; }
  .bv-heading { font-size: clamp(24px, 3.5vw, 40px); }
  .bv-actions { flex-wrap: wrap; }
  .nav__logo-img { height: 50px; }
  .nav__inner { height: 78px; }
  .hero-carousel { margin-top: 78px; height: calc(100vh - 78px); }
}

/* --- 768px: Tablet portrait / large phone --- */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  /* Navigation — mobile layout */
  .nav__inner {
    grid-template-columns: 1fr auto auto;
    height: 70px;
    gap: 8px;
  }
  .nav__logo-img { height: 40px; }
  .nav__links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(10,37,64,0.10);
    gap: 2px;
    z-index: 999;
  }
  .nav--open .nav__links { display: flex; }
  .nav__toggle { display: flex; }
  .nav__link { padding: 12px 16px; }
  .nav__cta { padding: 8px 16px; font-size: 13px; }

  /* Hero carousel */
  .hero-carousel { margin-top: 70px; height: auto; min-height: calc(100vh - 70px); }
  .hero-carousel .business-card { grid-template-columns: 1fr; }
  .hero-carousel .business-card__visual--content { padding: 32px 24px; gap: 14px; min-height: auto; }
  .hero-carousel .business-card__image-panel { height: 240px; }
  .hero-carousel .carousel__dots { margin-top: 14px; margin-bottom: 10px; }

  /* BV content */
  .bv-heading { font-size: clamp(22px, 6vw, 34px); }
  .bv-desc { font-size: 14px; }
  .bv-features { gap: 10px; }
  .bv-features li { font-size: 13px; }
  .bv-btn { padding: 10px 18px; font-size: 13px; }
  .bv-actions { gap: 10px; margin-top: 4px; }
  .bv-eyebrow { font-size: 10px; }

  /* Grids */
  .cards-grid--4 { grid-template-columns: 1fr; }
  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }

  /* Layout */
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .perks-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 44px 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 8px; }
  .value-row__num { font-size: 24px; }
  .value-row__badge { align-self: flex-start; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .business-card__list { grid-template-columns: 1fr; }
  .business-card__meta { flex-direction: column; gap: 14px; }
  .carousel__arrow--prev { left: 8px; }
  .carousel__arrow--next { right: 8px; }
  .role-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .role-row__meta { text-align: left; align-items: flex-start; flex-direction: row; justify-content: space-between; gap: 16px; width: 100%; }

  /* Page hero */
  .page-hero { padding: 100px 0 52px; }
  .page-hero__content { max-width: 100%; }

  /* Animations */
  .anim-scene { width: 240px; height: 240px; }
  .impact-anim { min-height: 280px; }

  /* Timeline — single column on mobile */
  .timeline::before { left: 18px; transform: none; }
  .timeline__item,
  .timeline__item--right {
    justify-content: flex-start;
    padding: 0 0 36px 52px;
  }
  .timeline__dot { left: 18px; transform: translateX(-50%); }
  .timeline__content { max-width: 100%; }

  /* Section header */
  .section__header { margin-bottom: 40px; }

  /* CTA strip */
  .cta-strip { padding: 56px 0; }
  .cta-strip__title { font-size: clamp(22px, 5vw, 32px); }
}

/* --- 480px: Small phones --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .nav__inner { height: 64px; }
  .nav__logo-img { height: 34px; }
  .nav__links { top: 64px; }
  .nav__cta { padding: 7px 12px; font-size: 12px; }
  .hero-carousel { margin-top: 64px; min-height: calc(100vh - 64px); }
  .hero-carousel .business-card__image-panel { height: 190px; }
  .hero-carousel .business-card__visual--content { padding: 24px 18px; gap: 12px; }
  .bv-heading { font-size: clamp(18px, 7vw, 28px); }
  .bv-btn { padding: 9px 14px; font-size: 12px; width: 100%; justify-content: center; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item__number { font-size: 36px; }
  .anim-scene { width: 200px; height: 200px; }
  .impact-anim { min-height: 240px; }
  .cta-strip { padding: 48px 0; }
  .page-hero { padding: 84px 0 44px; }
  .value-row { padding: 20px 16px; }
  .section__header { margin-bottom: 32px; }
  .cards-grid { gap: 16px; }
}
