:root {
  --green-950: #103d2d;
  --green-900: #174c37;
  --green-800: #1f5e43;
  --green-700: #2f7452;
  --green-100: #eaf3ed;
  --gold-600: #eba91b;
  --gold-500: #f4b928;
  --gold-200: #f9df98;
  --orange-600: #d96f1e;
  --orange-100: #fff0e4;
  --cream: #fbf8ef;
  --white: #ffffff;
  --ink: #1f2923;
  --muted: #667069;
  --line: #e6e1d6;
  --shadow: 0 24px 60px rgba(26, 64, 46, .12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6
}
img {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
button, input, select, textarea {
  font: inherit
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--green-800);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 999px
}
.section {
  padding: 92px 0
}
.section--white {
  background: var(--white)
}
.section--green {
  background: var(--green-950);
  color: white
}
.section-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: .6rem 0 1rem
}
.section--green .section-title {
  color: white
}
.section-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem
}
.section--green .section-lead {
  color: #d9e7df
}
.topbar {
  background: var(--green-950);
  color: white;
  font-size: .9rem
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0;
  flex-wrap: wrap
}
.topbar strong {
  color: var(--gold-200)
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 239, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 76, 55, .08)
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content
}
.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: white;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .16)
}
.brand-mark span {
  color: var(--gold-500)
}
.brand-copy strong {
  display: block;
  color: var(--green-950);
  font-size: .98rem;
  letter-spacing: .08em
}
.brand-copy small {
  display: block;
  color: var(--orange-600);
  font-size: .7rem;
  letter-spacing: .2em;
  font-weight: 800
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px
}
.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .93rem;
  color: #334139
}
.site-nav a:hover, .site-nav a.active {
  background: white;
  color: var(--green-900)
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: none;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease
}
.btn:hover {
  transform: translateY(-2px)
}
.btn-primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 12px 26px rgba(23, 76, 55, .18)
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), #f5c84d);
  color: #3e3211
}
.btn-outline {
  border: 1px solid #bbc7bf;
  background: rgba(255, 255, 255, .6);
  color: var(--green-950)
}
.menu-toggle {
  display: none;
  border: 0;
  background: white;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.4rem;
  color: var(--green-950)
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 185, 40, .28), transparent 27%), linear-gradient(135deg, #fffdf7 0%, #fbf8ef 52%, #edf5ef 100%)
}
.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(235, 169, 27, .10);
  border-radius: 50%;
  left: -260px;
  bottom: -260px
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 54px
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 34px 0
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-950);
  font-size: clamp(3.25rem, 6.3vw, 6.4rem);
  line-height: .92;
  letter-spacing: -.055em;
  margin: 14px 0 24px;
  max-width: 720px
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--orange-600);
  font-size: .68em;
  margin-top: .08em
}
.hero p {
  font-size: 1.12rem;
  color: #4c5850;
  max-width: 650px;
  margin: 0 0 24px
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px
}
.trust-chip {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(23, 76, 55, .09);
  padding: 14px 15px;
  border-radius: 16px;
  font-size: .88rem;
  font-weight: 750;
  color: var(--green-950)
}
.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center
}
.photo-shell {
  position: relative;
  width: min(100%, 520px);
  height: 600px;
  border-radius: 46% 46% 30% 30% / 31% 31% 22% 22%;
  overflow: hidden;
  background: var(--green-100);
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, .72)
}
.photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -100px 100px rgba(16, 61, 45, .16);
  pointer-events: none
}
.photo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 33%
}
.hero-ring {
  position: absolute;
  width: 560px;
  height: 560px;
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  z-index: 0;
  transform: rotate(-11deg)
}
.hero-card {
  position: absolute;
  left: -12px;
  bottom: 44px;
  z-index: 3;
  width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 40px rgba(16, 61, 45, .18);
  border: 1px solid rgba(23, 76, 55, .08)
}
.hero-card strong {
  display: block;
  color: var(--green-950);
  font-size: 1.02rem
}
.hero-card span {
  color: var(--muted);
  font-size: .88rem
}
.hero-signature {
  position: absolute;
  right: -6px;
  top: 44px;
  z-index: 3;
  background: var(--orange-600);
  color: white;
  padding: 12px 16px;
  border-radius: 18px;
  transform: rotate(4deg);
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(217, 111, 30, .2)
}
.story-strip {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white
}
.story-strip .container {
  display: grid;
  grid-template-columns: .8fr 1.3fr .7fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0
}
.story-script {
  font-family: Georgia, serif;
  color: var(--gold-500);
  font-size: 2.05rem;
  font-style: italic
}
.story-strip p {
  margin: 0;
  color: #e3ede7
}
.story-note {
  border-left: 1px solid rgba(255, 255, 255, .25);
  padding-left: 24px;
  font-weight: 700
}
.services-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 52px;
  align-items: start
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}
.service-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #efe9dc;
  box-shadow: 0 14px 32px rgba(34, 68, 50, .06);
  transition: .2s ease
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(34, 68, 50, .1)
}
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 18px
}
.service-card h3 {
  font-family: Georgia, serif;
  color: var(--green-950);
  font-size: 1.35rem;
  margin: 0 0 8px
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px
}
.audience-card {
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(180deg, #fff, #fbfcf9);
  border: 1px solid #e7ece8;
  position: relative;
  overflow: hidden
}
.audience-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(244, 185, 40, .12);
  right: -35px;
  top: -35px
}
.audience-card h3 {
  color: var(--green-950);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin: 12px 0 8px
}
.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center
}
.story-photo {
  position: relative
}
.story-photo img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 31%
}
.story-photo::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 70%;
  height: 70%;
  border-radius: 34px;
  background: var(--gold-500);
  z-index: -1
}
.story-copy blockquote {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold-500);
  background: #fff8e8;
  border-radius: 0 18px 18px 0;
  font-family: Georgia, serif;
  font-size: 1.28rem;
  color: var(--green-950)
}
.checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none
}
.checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start
}
.checks li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: grid;
  place-items: center;
  font-weight: 900
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px
}
.process-card {
  background: white;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #eee7d8
}
.process-num {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold-500);
  line-height: 1
}
.process-card h3 {
  margin: 14px 0 8px;
  color: var(--green-950)
}
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--gold-500), #ffd873 60%, #ffe9aa);
  padding: 62px 0;
  color: var(--green-950)
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  right: -120px;
  top: -160px
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1
}
.cta-grid h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 10px
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #fffdf7, #eef5ef);
  border-bottom: 1px solid #e7e2d6
}
.page-hero h1 {
  font-family: Georgia, serif;
  color: var(--green-950);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: .98;
  margin: 10px 0 18px
}
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start
}
.info-panel {
  background: white;
  border: 1px solid #ece6da;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(29, 67, 49, .06)
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}
.field {
  display: grid;
  gap: 7px
}
.field.full {
  grid-column: 1/-1
}
.field label {
  font-weight: 800;
  color: var(--green-950);
  font-size: .92rem
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #d7ddd8;
  border-radius: 14px;
  padding: 13px 14px;
  background: #fff;
  outline: none
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(47, 116, 82, .11)
}
.field textarea {
  min-height: 130px;
  resize: vertical
}
.notice {
  padding: 15px 16px;
  border-radius: 14px;
  background: #eef7f1;
  color: var(--green-900);
  font-weight: 700;
  margin-top: 16px;
  display: none
}
.notice.show {
  display: block
}
.portal-box {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white
}
.portal-box h2 {
  font-family: Georgia, serif;
  font-size: 2.25rem;
  margin: 0 0 12px
}
.portal-box p {
  color: #e2eee7
}
.security-note {
  background: #fff7e3;
  border: 1px solid #f1d78d;
  border-radius: 18px;
  padding: 18px;
  color: #664f17
}
.site-footer {
  background: #0d3024;
  color: #dbe8e0;
  padding: 54px 0 22px
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr .8fr 1fr;
  gap: 34px
}
.site-footer h4 {
  color: white;
  margin: 0 0 12px
}
.site-footer a {
  display: block;
  color: #dbe8e0;
  margin: 7px 0
}
.site-footer a:hover {
  color: var(--gold-200)
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: #b8cbbf
}
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  box-shadow: 0 10px 28px rgba(16, 61, 45, .24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s;
  z-index: 40
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none
}
@media(max-width:1020px) {
  .site-nav, .nav-actions .btn-outline {
    display: none
  }
  .menu-toggle {
    display: block
  }
  .site-nav.open {
    display: flex;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    padding: 14px;
    border-radius: 20px;
    box-shadow: var(--shadow)
  }
  .site-nav.open a {
    padding: 13px 15px
  }
  .hero-grid, .story-grid, .services-layout, .content-grid {
    grid-template-columns: 1fr
  }
  .hero-copy {
    text-align: center
  }
  .hero-copy .eyebrow {
    justify-content: center
  }
  .hero p {
    margin-inline: auto
  }
  .hero-actions {
    justify-content: center
  }
  .hero-visual {
    min-height: 590px
  }
  .hero-card {
    left: 8%
  }
  .hero-signature {
    right: 8%
  }
  .story-strip .container {
    grid-template-columns: 1fr;
    text-align: center
  }
  .story-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 18px 0 0
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:760px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }
  .topbar .container {
    justify-content: center;
    text-align: center
  }
  .nav-actions .btn-gold {
    display: none
  }
  .brand-mark {
    width: 48px;
    height: 48px
  }
  .brand-copy strong {
    font-size: .87rem
  }
  .brand-copy small {
    font-size: .62rem
  }
  .hero {
    padding-top: 24px
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem)
  }
  .hero-trust {
    grid-template-columns: 1fr
  }
  .hero-visual {
    min-height: 500px
  }
  .photo-shell {
    height: 500px;
    border-radius: 36px
  }
  .hero-ring {
    width: 430px;
    height: 430px
  }
  .hero-card {
    left: 3px;
    bottom: 20px;
    width: 220px
  }
  .hero-signature {
    right: 2px;
    top: 12px;
    font-size: .82rem
  }
  .services-grid, .audience-grid, .process-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr
  }
  .field.full {
    grid-column: auto
  }
  .story-photo img {
    height: 440px
  }
  .cta-grid {
    align-items: flex-start;
    flex-direction: column
  }
  .section {
    padding: 68px 0
  }
  .page-hero {
    padding: 54px 0
  }
}
@media(max-width:480px) {
  .hero-actions, .cta-actions {
    flex-direction: column
  }
  .btn {
    width: 100%
  }
  .hero-visual {
    min-height: 450px
  }
  .photo-shell {
    height: 450px
  }
  .hero-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -55px;
    width: 85%;
    justify-self: start
  }
  .hero-signature {
    display: none
  }
}
/* =========================================================
   IIM CONSULTING v6 - HIGH IMPACT HOME PAGE
   ========================================================= */
.home-v6 {
  background: #f8f4e9
}
.home-v6 .site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 62, 43, .08)
}
.home-v6 .topbar {
  background: #0d3c2b
}
.v6-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 52% 48%;
  background: #123f2e;
  overflow: hidden
}
.v6-hero-copy {
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  padding: 70px max(44px, calc((100vw - 1180px)/2)) 70px max(28px, calc((100vw - 1180px)/2))
}
.v6-hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -120px -150px auto;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(247, 184, 39, .28);
  border-radius: 50%
}
.v6-hero-copy::after {
  content: "";
  position: absolute;
  left: -90px;
  top: 70px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(247, 184, 39, .2) 0 3px, transparent 4px);
  background-size: 19px 19px;
  opacity: .6
}
.v6-copy-inner {
  position: relative;
  z-index: 2;
  max-width: 720px
}
.v6-kicker {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f5c456;
  margin-bottom: 22px
}
.v6-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 6vw, 7.25rem);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 500
}
.v6-hero h1 span {
  display: block;
  color: #f5b51b;
  font-style: italic;
  font-size: .72em;
  margin-top: .12em
}
.v6-intro {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 640px;
  color: #dfe9e3;
  margin: 30px 0 0
}
.v6-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px
}
.v6-text-link {
  font-weight: 800;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding-bottom: 4px
}
.v6-text-link span {
  color: #f5b51b;
  margin-left: 7px
}
.v6-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .17);
  padding-top: 25px
}
.v6-proof-row > div {
  padding-right: 20px
}
.v6-proof-row > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
  padding-left: 22px
}
.v6-proof-row strong {
  display: block;
  color: #f5c456;
  font-size: .95rem
}
.v6-proof-row span {
  display: block;
  color: #c9d9d0;
  font-size: .78rem;
  margin-top: 3px
}
.v6-hero-image {
  position: relative;
  min-height: 720px;
  background: #d8c8a8;
  overflow: hidden
}
.v6-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-left: 5px solid #f5b51b;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13% 100%)
}
.v6-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02)
}
.v6-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 33, 23, .55) 100%)
}
.v6-founder-card {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 34px;
  width: min(360px, calc(100% - 68px));
  background: #fff;
  padding: 24px 26px;
  border-radius: 4px;
  box-shadow: 0 25px 60px rgba(10, 37, 27, .24);
  color: #27362e
}
.v6-founder-card p {
  margin: 0 0 12px;
  line-height: 1.55;
  font-family: Georgia, serif;
  font-size: 1.08rem
}
.v6-founder-card strong {
  color: #19563d;
  font-size: .88rem
}
.v6-quote-mark {
  position: absolute;
  left: -18px;
  top: -28px;
  font-family: Georgia, serif;
  font-size: 5.8rem;
  line-height: 1;
  color: #f4b51c
}
.v6-name-tag {
  position: absolute;
  left: 30px;
  top: 34px;
  z-index: 4;
  background: #f4b51c;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}
.v6-name-tag span {
  display: block;
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  color: #174d37
}
.v6-name-tag strong {
  font-family: Georgia, serif;
  color: #173a2b;
  font-size: 1.1rem
}
.v6-marquee {
  background: #efaa10;
  color: #153d2e;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden
}
.v6-marquee-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 26px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .075em;
  font-size: .76rem
}
.v6-marquee-track i {
  font-style: normal;
  color: white
}
.v6-manifesto {
  background: #fffaf0;
  padding: 92px 0;
  border-bottom: 1px solid #e9dfca
}
.v6-manifesto-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start
}
.v6-hand {
  display: block;
  color: #ed9f00;
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 2.2rem;
  transform: rotate(-2deg);
  margin-bottom: 8px
}
.v6-manifesto-title h2 {
  font-family: Georgia, serif;
  color: #123f2e;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  line-height: .98;
  letter-spacing: -.035em;
  margin: 0
}
.v6-manifesto-copy {
  padding-top: 30px;
  font-size: 1.06rem;
  color: #536159
}
.v6-manifesto-copy p {
  margin: 0 0 19px
}
.v6-emphasis {
  color: #123f2e;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.5
}
.v6-story-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #cf7419;
  font-weight: 850;
  margin-top: 7px
}
.v6-services {
  background: #f5f1e7
}
.v6-section-head {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px
}
.v6-section-head .section-title {
  margin-bottom: 0
}
.v6-section-head > p {
  margin: 0 0 8px;
  color: #66736b;
  font-size: 1.04rem;
  line-height: 1.7
}
.v6-bento {
  display: grid;
  grid-template-columns: 1.18fr .82fr .82fr;
  grid-auto-rows: minmax(245px, auto);
  gap: 18px
}
.v6-service-card {
  position: relative;
  background: white;
  border: 1px solid #e9e0ce;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: .25s ease
}
.v6-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(24, 65, 45, .08)
}
.v6-service-feature {
  grid-row: span 2;
  background: #163f2f;
  color: white;
  padding: 38px
}
.v6-service-gold {
  background: #f4b51c
}
.v6-service-green {
  background: #e5efe7
}
.v6-card-num {
  position: absolute;
  right: 18px;
  top: 12px;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(20, 63, 46, .08);
  line-height: 1
}
.v6-service-feature .v6-card-num {
  color: rgba(255, 255, 255, .08)
}
.v6-service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1cc;
  color: #da8200;
  font-weight: 900;
  margin-bottom: auto
}
.v6-service-feature .v6-service-icon {
  background: #f4b51c;
  color: #173f2e
}
.v6-service-green .v6-service-icon {
  background: #174e38;
  color: white
}
.v6-service-card h3 {
  font-family: Georgia, serif;
  color: #123f2e;
  font-size: 1.6rem;
  line-height: 1.1;
  margin: 28px 0 10px
}
.v6-service-feature h3 {
  color: white;
  font-size: 2.5rem
}
.v6-service-card p {
  margin: 0;
  color: #627068;
  line-height: 1.65
}
.v6-service-feature p {
  color: #d7e4dd;
  font-size: 1.04rem
}
.v6-service-card a {
  color: #f4bf42;
  font-weight: 850;
  margin-top: 24px
}
.v6-who {
  background: #fff;
  padding: 105px 0
}
.v6-who-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center
}
.v6-who-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 4.5vw, 5rem);
  line-height: 1;
  color: #143f2f;
  margin: 12px 0 22px
}
.v6-who-copy p {
  color: #637068;
  max-width: 560px;
  margin-bottom: 30px
}
.v6-audience-stack {
  border-top: 1px solid #d9ded9
}
.v6-audience-stack article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 27px 4px;
  border-bottom: 1px solid #d9ded9;
  transition: .2s
}
.v6-audience-stack article:hover {
  padding-left: 16px;
  background: #fbf7ea
}
.v6-audience-stack article > span {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: #eaa613
}
.v6-audience-stack h3 {
  margin: 0;
  color: #143f2f;
  font-family: Georgia, serif;
  font-size: 1.6rem
}
.v6-audience-stack p {
  margin: 6px 0 0;
  color: #6b756f
}
.v6-difference {
  background: #143f2f;
  color: white
}
.v6-difference-grid {
  display: grid;
  grid-template-columns: .28fr 1fr;
  gap: 60px
}
.v6-difference-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .75rem;
  letter-spacing: .24em;
  font-weight: 900;
  color: #f4b51c;
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding-left: 26px;
  justify-self: end
}
.v6-difference-main h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.9rem, 5vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.045em;
  margin: 0;
  max-width: 960px
}
.v6-difference-main > p {
  font-size: 1.12rem;
  color: #d5e1da;
  max-width: 780px;
  margin: 28px 0 40px
}
.v6-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 26px;
  gap: 18px
}
.v6-values div {
  padding-right: 16px
}
.v6-values strong {
  display: block;
  color: #f4b51c;
  font-family: Georgia, serif;
  font-size: 1.35rem
}
.v6-values span {
  display: block;
  color: #c9d8d0;
  font-size: .86rem;
  margin-top: 5px;
  line-height: 1.45
}
.v6-process {
  padding: 100px 0;
  background: #f5f1e7
}
.v6-process-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px
}
.v6-process-head > span {
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: .13em;
  color: #d78110;
  font-size: .77rem
}
.v6-process-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  color: #143f2f;
  margin: 0
}
.v6-process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid #d9d1be
}
.v6-process-line article {
  position: relative;
  padding: 40px 28px 8px 0
}
.v6-process-line b {
  position: absolute;
  top: -19px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4b51c;
  color: #143f2f;
  border: 4px solid #f5f1e7
}
.v6-process-line h3 {
  font-family: Georgia, serif;
  color: #143f2f;
  font-size: 1.5rem;
  margin: 8px 0
}
.v6-process-line p {
  color: #6b756f;
  margin: 0;
  max-width: 230px
}
.v6-cta {
  background: #efaa10;
  padding: 76px 0;
  color: #123f2e
}
.v6-cta-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center
}
.v6-cta .v6-hand {
  color: #173f2e
}
.v6-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.5rem, 4.4vw, 4.7rem);
  line-height: .98;
  margin: 0
}
.v6-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch
}
.btn-outline-light {
  border: 1px solid #143f2f;
  color: #143f2f;
  background: rgba(255, 255, 255, .24)
}
@media(max-width:1020px) {
  .v6-hero {
    grid-template-columns: 1fr;
    min-height: auto
  }
  .v6-hero-copy {
    padding: 76px 40px
  }
  .v6-hero-image {
    min-height: 650px
  }
  .v6-hero-image::before {
    clip-path: none;
    border-left: 0;
    border-top: 5px solid #f5b51b
  }
  .v6-manifesto-grid, .v6-section-head, .v6-who-grid, .v6-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
  .v6-bento {
    grid-template-columns: 1fr 1fr
  }
  .v6-service-feature {
    grid-row: auto;
    grid-column: 1/-1;
    min-height: 350px
  }
  .v6-values {
    grid-template-columns: 1fr 1fr
  }
  .v6-difference-grid {
    grid-template-columns: 1fr
  }
  .v6-difference-label {
    writing-mode: initial;
    transform: none;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    padding: 0 0 18px;
    justify-self: stretch
  }
  .v6-process-line {
    grid-template-columns: 1fr 1fr;
    row-gap: 34px
  }
}
@media(max-width:700px) {
  .v6-hero-copy {
    padding: 58px 24px
  }
  .v6-hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.3rem)
  }
  .v6-intro {
    font-size: 1rem
  }
  .v6-proof-row {
    grid-template-columns: 1fr;
    gap: 15px
  }
  .v6-proof-row > div + div {
    border-left: 0;
    padding-left: 0
  }
  .v6-hero-image {
    min-height: 560px
  }
  .v6-founder-card {
    left: 20px;
    right: 20px;
    bottom: 22px;
    width: auto
  }
  .v6-name-tag {
    left: 18px;
    top: 18px
  }
  .v6-marquee-track {
    justify-content: flex-start;
    overflow: auto
  }
  .v6-manifesto {
    padding: 70px 0
  }
  .v6-manifesto-grid {
    gap: 32px
  }
  .v6-hand {
    font-size: 1.7rem
  }
  .v6-bento {
    grid-template-columns: 1fr
  }
  .v6-service-feature {
    grid-column: auto;
    min-height: 330px
  }
  .v6-service-card {
    min-height: 240px
  }
  .v6-who {
    padding: 75px 0
  }
  .v6-who-grid {
    gap: 45px
  }
  .v6-audience-stack article {
    grid-template-columns: 56px 1fr
  }
  .v6-values, .v6-process-line {
    grid-template-columns: 1fr
  }
  .v6-process-line {
    border-top: 0
  }
  .v6-process-line article {
    border-top: 1px solid #d9d1be;
    padding: 34px 0 8px
  }
  .v6-process-line b {
    top: -18px
  }
  .v6-process-head {
    align-items: flex-start;
    flex-direction: column
  }
  .v6-cta {
    padding: 62px 0
  }
}
/* =========================================================
   IIM CONSULTING — V7 PREMIUM HOME
   ========================================================= */
.home-v7 {
  background: #fbf8ef
}
.home-v7 .site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(16, 61, 45, .08)
}
.home-v7 .topbar {
  background: #103d2d
}
.brand-logo {
  width: 310px;
  max-width: 31vw
}
.brand-logo img {
  width: 100%;
  height: auto
}
.footer-logo {
  display: block;
  max-width: 340px;
  margin-bottom: 14px
}
.footer-logo img {
  width: 100%
}
.footer-slogan {
  max-width: 370px;
  color: #f8df9d !important;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1rem !important
}
.nav-portal {
  font-weight: 800;
  color: #174c37;
  padding: 10px 5px;
  border-bottom: 2px solid transparent
}
.nav-portal:hover {
  border-color: #f4b928
}
.nav-book {
  padding: 11px 18px;
  font-size: .9rem
}
.home-v7 .nav-wrap {
  min-height: 86px
}
.home-v7 .site-nav {
  gap: 2px
}
.home-v7 .site-nav a {
  font-size: .9rem;
  padding: 10px 11px
}
.v7-hero {
  background: #fffdf8;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eae3d5
}
.v7-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(244, 185, 40, .08);
  left: -250px;
  top: -220px
}
.v7-hero-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 515px;
  max-height: 570px
}
.v7-hero-copy {
  padding: 54px max(38px, calc((100vw - 1180px)/2)) 42px max(28px, calc((100vw - 1180px)/2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}
.v7-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  color: #2a6b4b;
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .16em;
  margin-bottom: 13px
}
.v7-kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  background: #eaa516
}
.v7-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.45rem, 5.4vw, 6rem);
  line-height: .87;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #103d2d;
  margin: 0 0 21px
}
.v7-hero h1 span {
  color: #d96f1e;
  font-style: italic;
  font-size: .78em
}
.v7-lead {
  font-size: 1.08rem;
  color: #536159;
  max-width: 660px;
  margin: 0;
  line-height: 1.68
}
.v7-actions {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap
}
.v7-ghost-btn {
  border: 1px solid #9caea2;
  background: white;
  color: #123f2e
}
.v7-ghost-btn span {
  color: #e78f10;
  font-size: 1.2rem
}
.v7-slogan {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid #e8e1d4;
  max-width: 670px
}
.v7-slogan > span {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.28rem;
  color: #174c37;
  letter-spacing: -.04em
}
.v7-slogan p {
  margin: 0;
  color: #436052;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1rem
}
.v7-slogan b {
  color: #d96f1e;
  font-weight: 700
}
.v7-portrait-panel {
  position: relative;
  background: #ddcfae;
  overflow: hidden;
  min-width: 0
}
.v7-portrait-panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  bottom: 0;
  width: 78px;
  background: #fffdf8;
  clip-path: polygon(0 0, 100% 0, 32% 100%, 0 100%)
}
.v7-portrait-panel::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 54px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f3b51d;
  transform: skewX(-8deg);
  transform-origin: top
}
.v7-portrait-crop {
  position: absolute;
  inset: 0;
  overflow: hidden
}
.v7-portrait-crop img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 42% 22%;
  transform: translate(-2%, -1%) scale(1.03)
}
.v7-founder-tag {
  position: absolute;
  z-index: 7;
  left: 94px;
  top: 24px;
  background: #103d2d;
  color: white;
  padding: 9px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(16, 61, 45, .18)
}
.v7-founder-tag small {
  display: block;
  color: #f5c84d;
  font-size: .62rem;
  letter-spacing: .14em;
  font-weight: 900
}
.v7-founder-tag strong {
  font-family: Georgia, serif;
  font-size: 1rem
}
.v7-quote-card {
  position: absolute;
  z-index: 7;
  right: 22px;
  bottom: 18px;
  width: min(315px, 48%);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(16, 61, 45, .08);
  box-shadow: 0 18px 40px rgba(16, 61, 45, .18);
  border-radius: 18px;
  padding: 17px 18px 15px 50px
}
.v7-quote-card > span {
  position: absolute;
  left: 16px;
  top: 5px;
  font-family: Georgia, serif;
  font-size: 3.6rem;
  color: #f2ad13;
  line-height: 1
}
.v7-quote-card p {
  margin: 0;
  color: #294437;
  line-height: 1.45;
  font-size: .86rem;
  font-family: Georgia, serif
}
.v7-proofbar {
  position: relative;
  z-index: 10;
  background: #103d2d;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 max(28px, calc((100vw - 1180px)/2))
}
.v7-proofbar > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px 16px;
  border-right: 1px solid rgba(255, 255, 255, .13)
}
.v7-proofbar > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, .13)
}
.v7-proof-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4b928;
  color: #103d2d;
  font-weight: 950;
  font-size: .72rem
}
.v7-proofbar p {
  margin: 0;
  line-height: 1.25
}
.v7-proofbar strong {
  display: block;
  font-size: .88rem
}
.v7-proofbar small {
  display: block;
  color: #cfded6;
  font-size: .73rem;
  margin-top: 4px
}
.v7-intro {
  background: #fbf8ef
}
.v7-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start
}
.v7-intro-title h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 4.7vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.04em;
  color: #113f2e;
  margin: 15px 0 0
}
.v7-intro-copy {
  padding-top: 38px
}
.v7-intro-copy p {
  font-size: 1.06rem;
  color: #5c6961;
  margin: 0 0 17px
}
.v7-intro-copy strong {
  color: #153f2f
}
.v7-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #174c37;
  font-weight: 900;
  margin-top: 9px
}
.v7-arrow-link span {
  color: #e79711;
  font-size: 1.25rem
}
.v7-services {
  background: #fff
}
.v7-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 38px
}
.v7-section-heading h2 {
  font-family: Georgia, serif;
  color: #113f2e;
  font-size: clamp(2.6rem, 4.4vw, 4.65rem);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 800px;
  margin: 13px 0 0
}
.v7-service-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: auto auto;
  gap: 15px
}
.v7-service-card {
  position: relative;
  min-height: 235px;
  border: 1px solid #e8e2d7;
  border-radius: 24px;
  background: #faf8f2;
  padding: 29px;
  display: flex;
  gap: 24px;
  overflow: hidden;
  transition: .25s
}
.v7-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(28, 65, 47, .09)
}
.v7-service-number {
  font-family: Georgia, serif;
  color: #d9a323;
  font-size: 1rem;
  font-weight: 700
}
.v7-service-card h3 {
  font-family: Georgia, serif;
  color: #133f2f;
  font-size: 1.55rem;
  line-height: 1.07;
  margin: 5px 0 13px
}
.v7-service-card p {
  margin: 0;
  color: #617068;
  line-height: 1.6
}
.v7-service-card a {
  display: inline-block;
  margin-top: 20px;
  color: #d77a10;
  font-weight: 900
}
.v7-service-main {
  grid-row: span 2;
  min-height: 485px;
  background: linear-gradient(150deg, #123f2e, #1e6848);
  color: white;
  align-items: end
}
.v7-service-main::after {
  content: "IIM";
  position: absolute;
  right: -20px;
  top: -35px;
  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .05)
}
.v7-service-main .v7-service-number {
  color: #f4b928
}
.v7-service-main h3 {
  color: white;
  font-size: 2.5rem
}
.v7-service-main p {
  color: #d5e4dc;
  font-size: 1.03rem
}
.v7-service-label {
  display: inline-block;
  color: #f4b928;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em
}
.v7-service-gold {
  background: #f4b928
}
.v7-service-gold .v7-service-number {
  color: #8b6100
}
.v7-service-dark {
  background: #183f31;
  color: white
}
.v7-service-dark h3 {
  color: white
}
.v7-service-dark p {
  color: #dbe6df
}
.v7-service-dark .v7-service-number {
  color: #f4b928
}
.v7-audience {
  background: #f1eee4;
  padding: 72px 0
}
.v7-audience-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .8fr);
  gap: 14px
}
.v7-audience-copy {
  padding: 16px 28px 16px 0
}
.v7-audience-copy h2 {
  font-family: Georgia, serif;
  color: #123f2e;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  line-height: 1;
  margin: 12px 0 17px
}
.v7-audience-copy p {
  color: #627068;
  margin: 0;
  max-width: 440px
}
.v7-audience-card {
  background: white;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid #e3ded2
}
.v7-audience-card > span {
  color: #e5a311;
  font-family: Georgia, serif;
  font-size: 1.2rem
}
.v7-audience-card h3 {
  font-family: Georgia, serif;
  color: #123f2e;
  font-size: 1.4rem;
  margin: 30px 0 10px
}
.v7-audience-card p {
  color: #657169;
  font-size: .91rem;
  margin: 0
}
.v7-difference {
  background: #fff
}
.v7-difference-wrap {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center
}
.v7-difference-copy h2 {
  font-family: Georgia, serif;
  color: #113f2e;
  font-size: clamp(2.9rem, 4.8vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.045em;
  margin: 14px 0 22px
}
.v7-difference-copy > p {
  color: #617068;
  font-size: 1.06rem;
  max-width: 670px
}
.v7-pill-row {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 28px
}
.v7-pill-row span {
  border: 1px solid #b7c9bf;
  border-radius: 999px;
  padding: 8px 14px;
  color: #285840;
  font-weight: 800;
  font-size: .8rem;
  background: #f8fbf9
}
.v7-difference-visual {
  display: grid;
  gap: 12px
}
.v7-stat-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
  border-radius: 22px;
  background: #f7f3e8;
  border: 1px solid #eae1cf
}
.v7-stat-card:nth-child(2) {
  margin-left: 34px;
  background: #133f2f;
  color: white
}
.v7-stat-card:nth-child(3) {
  margin-left: 68px
}
.v7-stat-card strong {
  font-family: Georgia, serif;
  color: #d88a0e;
  font-size: 2rem;
  line-height: 1
}
.v7-stat-card:nth-child(2) strong {
  color: #f4b928
}
.v7-stat-card span {
  color: #5f6c64;
  font-size: .92rem
}
.v7-stat-card:nth-child(2) span {
  color: #d6e3dc
}
.v7-process {
  background: #fbf8ef
}
.v7-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}
.v7-process-grid article {
  background: #fff;
  border: 1px solid #e9e2d5;
  border-radius: 22px;
  padding: 27px;
  min-height: 220px;
  position: relative
}
.v7-process-grid article::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 63px;
  width: 36px;
  height: 2px;
  background: #f4b928
}
.v7-process-grid span {
  font-family: Georgia, serif;
  color: #d9910f;
  font-weight: 700
}
.v7-process-grid h3 {
  font-family: Georgia, serif;
  color: #133f2f;
  font-size: 1.4rem;
  line-height: 1.1;
  margin: 32px 0 12px
}
.v7-process-grid p {
  margin: 0;
  color: #66736b;
  font-size: .92rem
}
.v7-final-cta {
  background: linear-gradient(125deg, #103d2d, #1f6847);
  color: white;
  padding: 72px 0;
  position: relative;
  overflow: hidden
}
.v7-final-cta::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -190px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 70px solid rgba(244, 185, 40, .10)
}
.v7-final-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2
}
.v7-script {
  font-family: "Segoe Script", cursive;
  color: #f4b928;
  font-size: 1.4rem
}
.v7-final-grid h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 4.4vw, 4.7rem);
  line-height: .98;
  margin: 10px 0 0;
  max-width: 720px
}
.v7-final-grid p {
  color: #d5e3dc;
  font-size: 1.05rem
}
.v7-light-btn {
  background: white;
  color: #123f2e
}
@media(max-width:1100px) {
  .brand-logo {
    width: 250px
  }
  .nav-portal {
    display: none
  }
  .home-v7 .site-nav a {
    padding: 10px 8px;
    font-size: .85rem
  }
  .nav-book {
    font-size: .82rem;
    padding: 10px 14px
  }
  .v7-hero-inner {
    grid-template-columns: 52% 48%
  }
  .v7-hero-copy {
    padding-left: 32px;
    padding-right: 34px
  }
  .v7-quote-card {
    width: 58%
  }
  .v7-proofbar {
    padding: 0 24px
  }
  .v7-proofbar > div {
    padding: 15px 10px
  }
  .v7-proof-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px
  }
  .v7-audience-grid {
    grid-template-columns: 1fr 1fr
  }
  .v7-audience-copy {
    grid-column: 1/-1;
    max-width: 760px
  }
  .v7-service-grid {
    grid-template-columns: 1fr 1fr
  }
  .v7-service-main {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 330px
  }
}
@media(max-width:900px) {
  .brand-logo {
    width: 270px;
    max-width: 62vw
  }
  .nav-book {
    display: none
  }
  .v7-hero-inner {
    grid-template-columns: 1fr;
    max-height: none
  }
  .v7-hero-copy {
    padding: 50px 28px 38px
  }
  .v7-portrait-panel {
    min-height: 510px
  }
  .v7-portrait-panel::before {
    display: none
  }
  .v7-portrait-panel::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 4px;
    transform: none
  }
  .v7-portrait-crop img {
    height: 115%;
    object-position: 46% 18%;
    transform: translateY(-2%)
  }
  .v7-proofbar {
    grid-template-columns: 1fr 1fr
  }
  .v7-intro-grid, .v7-difference-wrap, .v7-final-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }
  .v7-intro-copy {
    padding-top: 0
  }
  .v7-process-grid {
    grid-template-columns: 1fr 1fr
  }
}
@media(max-width:640px) {
  .home-v7 .topbar .container span:last-child {
    display: none
  }
  .home-v7 .topbar .container {
    justify-content: center;
    font-size: .77rem
  }
  .brand-logo {
    width: 230px;
    max-width: 70vw
  }
  .v7-hero-copy {
    padding: 40px 22px 31px
  }
  .v7-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem)
  }
  .v7-lead {
    font-size: .98rem
  }
  .v7-slogan {
    align-items: flex-start
  }
  .v7-slogan p {
    font-size: .9rem
  }
  .v7-portrait-panel {
    min-height: 420px
  }
  .v7-founder-tag {
    left: 18px;
    top: 18px
  }
  .v7-quote-card {
    right: 15px;
    left: 15px;
    bottom: 14px;
    width: auto;
    padding-right: 15px
  }
  .v7-portrait-crop img {
    object-position: 49% 22%
  }
  .v7-proofbar {
    grid-template-columns: 1fr
  }
  .v7-proofbar > div, .v7-proofbar > div:first-child {
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13)
  }
  .v7-service-grid, .v7-audience-grid, .v7-process-grid {
    grid-template-columns: 1fr
  }
  .v7-service-main {
    grid-column: auto
  }
  .v7-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px
  }
  .v7-audience-copy {
    grid-column: auto;
    padding-right: 0
  }
  .v7-stat-card, .v7-stat-card:nth-child(2), .v7-stat-card:nth-child(3) {
    margin-left: 0;
    grid-template-columns: 1fr
  }
  .v7-final-cta {
    padding: 58px 0
  }
}
/* ========================= IIM v8 business-first homepage ========================= */
.home-v8 {
  background: #fffdf8
}
.v8-hero {
  background: linear-gradient(110deg, #fffdf8 0%, #f7f0df 100%);
  border-bottom: 1px solid #ece4d4;
  overflow: hidden
}
.v8-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: stretch;
  min-height: 455px
}
.v8-hero-copy {
  padding: 62px 54px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}
.v8-kicker {
  color: #176043;
  font-weight: 900;
  font-size: .77rem;
  letter-spacing: .12em;
  margin-bottom: 16px
}
.v8-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: #103f2e;
  font-weight: 500;
  font-size: clamp(3rem, 4.6vw, 5.2rem);
  line-height: .99;
  letter-spacing: -.045em;
  margin: 0 0 21px;
  max-width: 760px
}
.v8-hero h1 em {
  color: #d9781e;
  font-weight: 500
}
.v8-hero-copy > p {
  color: #55645c;
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 710px;
  margin: 0 0 27px
}
.v8-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap
}
.v8-trust {
  display: flex;
  gap: 14px 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #dfd6c6
}
.v8-trust span {
  font-size: .8rem;
  font-weight: 800;
  color: #28573f
}
.v8-hero-photo {
  position: relative;
  min-height: 455px;
  overflow: hidden
}
.v8-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f0df 0%, transparent 18%);
  pointer-events: none
}
.v8-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%
}
.v8-photo-note {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, .94);
  padding: 17px 18px;
  border-radius: 15px;
  box-shadow: 0 18px 44px rgba(17, 63, 46, .16);
  width: min(300px, calc(100% - 48px))
}
.v8-photo-note strong {
  display: block;
  color: #11432f;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 4px
}
.v8-photo-note span {
  font-size: .78rem;
  line-height: 1.45;
  color: #66736c
}
.v8-heading {
  max-width: 850px;
  margin-bottom: 34px
}
.v8-heading h2, .v8-value h2, .v8-founder h2, .v8-final h2 {
  font-family: Georgia, serif;
  color: #113f2e;
  font-size: clamp(2.25rem, 3.3vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin: 10px 0 13px;
  font-weight: 500
}
.v8-heading > p {
  max-width: 720px;
  color: #69766e;
  line-height: 1.7
}
.v8-heading.compact {
  max-width: 780px
}
.v8-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}
.v8-service-grid article {
  border: 1px solid #e8e1d4;
  background: #fff;
  padding: 26px 24px;
  border-radius: 20px;
  min-height: 205px;
  transition: .24s ease;
  box-shadow: 0 9px 30px rgba(20, 62, 45, .045)
}
.v8-service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(20, 62, 45, .10)
}
.v8-service-grid article span {
  color: #d38a14;
  font-size: .72rem;
  font-weight: 900
}
.v8-service-grid h3 {
  font-family: Georgia, serif;
  color: #174d38;
  font-size: 1.35rem;
  margin: 24px 0 9px
}
.v8-service-grid p {
  color: #68756e;
  line-height: 1.58;
  margin: 0;
  font-size: .93rem
}
.v8-service-grid .featured {
  background: #123f2e
}
.v8-service-grid .featured h3 {
  color: #fff
}
.v8-service-grid .featured p {
  color: #d5e4dc
}
.v8-center-link {
  text-align: center;
  margin-top: 25px
}
.v8-value {
  background: #123f2e;
  color: #fff
}
.v8-value .eyebrow {
  color: #f5b82b
}
.v8-value h2 {
  color: #fff;
  margin-top: 12px
}
.v8-value-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  align-items: start
}
.v8-value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}
.v8-value-cards article {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045)
}
.v8-value-cards strong {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: #f7c64a
}
.v8-value-cards p {
  color: #d7e4dd;
  margin: 8px 0 0;
  line-height: 1.55;
  font-size: .91rem
}
.v8-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}
.v8-audience-grid article {
  padding: 28px;
  background: #f9f5eb;
  border-radius: 22px;
  border: 1px solid #ebe3d3
}
.v8-audience-grid span {
  color: #d57b16;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em
}
.v8-audience-grid h3 {
  font-family: Georgia, serif;
  color: #143f2f;
  font-size: 1.45rem;
  margin: 14px 0 8px
}
.v8-audience-grid p {
  margin: 0;
  color: #647168;
  line-height: 1.62
}
.v8-founder {
  background: #fff
}
.v8-founder-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 42px;
  align-items: center
}
.v8-founder-copy > p {
  color: #65736b;
  line-height: 1.72;
  max-width: 760px
}
.v8-slogan-card {
  background: linear-gradient(145deg, #f4b727, #d9781e);
  padding: 36px;
  border-radius: 28px;
  color: #123f2e;
  box-shadow: 0 25px 60px rgba(178, 115, 18, .16)
}
.v8-slogan-card small {
  display: block;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 12px
}
.v8-slogan-card strong {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  display: block
}
.v8-slogan-card p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 20px 0 0
}
.v8-process {
  background: #f8f4e9
}
.v8-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}
.v8-process-grid article {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e9e1d4
}
.v8-process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #123f2e;
  color: #fff;
  font-weight: 900
}
.v8-process-grid h3 {
  font-family: Georgia, serif;
  color: #123f2e;
  margin: 18px 0 8px;
  font-size: 1.22rem
}
.v8-process-grid p {
  color: #66736b;
  line-height: 1.55;
  margin: 0;
  font-size: .9rem
}
.v8-final {
  background: #103f2e;
  padding: 60px 0;
  color: #fff
}
.v8-final-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 50px;
  align-items: center
}
.v8-final .eyebrow {
  color: #f4b727
}
.v8-final h2 {
  color: #fff;
  margin-bottom: 0
}
.v8-final p {
  color: #dbe6df;
  line-height: 1.6
}
.about-v8 .story-photo img, .story-photo img[src$="shelley-working-about.webp"] {
  height: 420px;
  object-fit: cover;
  object-position: center 50%
}
@media(max-width:900px) {
  .v8-hero-grid, .v8-value-grid, .v8-founder-grid, .v8-final-grid {
    grid-template-columns: 1fr
  }
  .v8-hero-copy {
    padding: 48px 0 38px
  }
  .v8-hero-photo {
    min-height: 400px
  }
  .v8-service-grid {
    grid-template-columns: 1fr 1fr
  }
  .v8-audience-grid {
    grid-template-columns: 1fr
  }
  .v8-process-grid {
    grid-template-columns: 1fr 1fr
  }
  .v8-final-grid {
    gap: 20px
  }
}
@media(max-width:620px) {
  .v8-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.6rem)
  }
  .v8-hero-copy > p {
    font-size: 1rem
  }
  .v8-trust {
    display: grid;
    grid-template-columns: 1fr 1fr
  }
  .v8-hero-photo {
    min-height: 330px
  }
  .v8-photo-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto
  }
  .v8-service-grid, .v8-value-cards, .v8-process-grid {
    grid-template-columns: 1fr
  }
  .v8-heading h2, .v8-value h2, .v8-founder h2, .v8-final h2 {
    font-size: 2.35rem
  }
  .v8-actions {
    flex-direction: column
  }
  .v8-actions .btn {
    width: 100%
  }
}
/* ========================= IIM v9 - screenshot-inspired business homepage ========================= */
.home-v9 {
  background: #fffdf8;
  color: #233128
}
.home-v9 .section {
  padding: 58px 0
}
.v9-topbar {
  background: linear-gradient(90deg, #edaa17, #f6c652);
  color: #183b2e;
  font-size: .76rem;
  font-weight: 750
}
.v9-topbar .container {
  padding: 7px 0
}
.v9-header {
  position: sticky;
  top: 0;
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid #eee7db;
  backdrop-filter: blur(16px)
}
.v9-header .nav-wrap {
  min-height: 90px
}
.v9-header .brand-logo {
  width: 255px;
  max-width: 27vw
}
.v9-header .site-nav {
  gap: 5px
}
.v9-header .site-nav a {
  font-size: .86rem;
  font-weight: 750;
  padding: 10px 11px
}
.v9-header .site-nav a.active {
  background: transparent;
  color: #df8b08;
  border-bottom: 2px solid #eba91b;
  border-radius: 0
}
.v9-phone-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #194f3a;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: .82rem;
  font-weight: 800;
  color: #174c37;
  background: white
}
.v9-header .nav-book {
  font-size: .8rem;
  padding: 12px 16px
}
.v9-hero {
  background: #fbf8f0;
  overflow: hidden;
  border-bottom: 1px solid #eee6d8
}
.v9-hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 465px
}
.v9-hero-copy {
  padding: 38px 42px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}
.v9-script {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.85rem;
  font-style: italic;
  color: #e2940a;
  line-height: 1.1;
  display: block;
  margin-bottom: 10px
}
.v9-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: #153f30;
  font-size: clamp(2.55rem, 3.7vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  font-weight: 500;
  margin: 0 0 22px
}
.v9-hero h1 em {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-weight: 500;
  color: #154a37;
  position: relative;
  white-space: nowrap
}
.v9-hero h1 em::after {
  content: "";
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: #f0a611;
  left: 0;
  right: 0;
  bottom: -7px;
  transform: rotate(-1.5deg)
}
.v9-hero-copy > p {
  max-width: 620px;
  color: #39473f;
  font-size: .98rem;
  line-height: 1.65;
  margin: 0 0 18px
}
.v9-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 4px 0 25px
}
.v9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 850;
  font-size: .84rem;
  transition: .2s ease
}
.v9-btn:hover {
  transform: translateY(-2px)
}
.v9-btn-gold {
  background: linear-gradient(135deg, #f2ae1b, #ffc94b);
  color: #173c2d;
  box-shadow: 0 12px 26px rgba(225, 157, 20, .17)
}
.v9-btn-outline {
  border: 1px solid #174c37;
  background: #fff;
  color: #173f30
}
.v9-btn-green {
  background: #194f39;
  color: #fff
}
.v9-mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid #e7dfd1;
  padding-top: 18px
}
.v9-mini-trust > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 8px;
  align-items: center
}
.v9-mini-trust strong {
  font-size: .7rem;
  color: #1c4232
}
.v9-mini-trust small {
  grid-column: 2;
  font-size: .64rem;
  color: #68736d;
  line-height: 1.35
}
.v9-circle-icon {
  grid-row: 1/3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1.4px solid #174c37;
  border-radius: 50%;
  font-weight: 900;
  color: #174c37
}
.v9-hero-photo {
  position: relative;
  min-height: 465px;
  background: #e9ddc8;
  overflow: hidden
}
.v9-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%
}
.v9-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbf8f0 0%, transparent 10%);
  z-index: 1;
  pointer-events: none
}
.v9-promise-card {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 22px;
  width: 250px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  background: #174c37;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(11, 52, 37, .2)
}
.v9-promise-card > span {
  font-size: 2rem;
  color: #f2b31c
}
.v9-promise-card strong {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.45rem;
  font-weight: 500;
  color: #fff
}
.v9-promise-card p {
  font-size: .75rem;
  line-height: 1.45;
  margin: 6px 0 0;
  color: #eef5f1
}
.v9-centered-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px
}
.v9-centered-heading > span {
  color: #dd8c0d;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em
}
.v9-centered-heading h2 {
  font-family: Georgia, serif;
  color: #153f30;
  font-size: 2rem;
  font-weight: 500;
  margin: 6px 0 6px
}
.v9-centered-heading p {
  font-size: .85rem;
  color: #637068;
  line-height: 1.5;
  margin: 0
}
.v9-service-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px
}
.v9-service-row article {
  background: #fffdf9;
  border: 1px solid #e8e0d2;
  border-radius: 9px;
  padding: 17px 12px;
  text-align: center;
  min-height: 176px;
  box-shadow: 0 5px 18px rgba(26, 64, 46, .035)
}
.v9-service-icon {
  font-size: 2rem;
  color: #174c37;
  height: 45px;
  display: grid;
  place-items: center
}
.v9-service-row h3 {
  font-family: Georgia, serif;
  font-size: .98rem;
  color: #183f30;
  margin: 8px 0 8px
}
.v9-service-row p {
  font-size: .68rem;
  line-height: 1.45;
  color: #687169;
  margin: 0
}
.v9-center {
  text-align: center;
  margin-top: 14px
}
.v9-small-btn {
  padding: 9px 22px;
  font-size: .74rem
}
.v9-story-why {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  background: #fff
}
.v9-story-panel {
  background: linear-gradient(145deg, #12432f, #1d6245);
  color: #fff;
  padding: 0 max(5vw, 40px)
}
.v9-story-inner {
  max-width: 470px;
  margin-left: auto;
  padding: 34px 0
}
.v9-script-gold {
  color: #f2b31c;
  font-size: 1.7rem
}
.v9-story-panel p {
  font-size: .78rem;
  line-height: 1.6;
  color: #f0f5f2;
  margin: 8px 0
}
.v9-story-panel strong {
  display: block;
  color: #f3b31b;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  margin: 12px 0
}
.v9-signature {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 1.3rem;
  display: block;
  margin-top: 11px
}
.v9-story-panel small {
  font-size: .58rem;
  letter-spacing: .18em;
  color: #d9e6df
}
.v9-story-link {
  display: block;
  color: #f6c44d;
  font-size: .7rem;
  font-weight: 800;
  margin-top: 10px
}
.v9-why-panel {
  position: relative;
  min-height: 345px;
  background: linear-gradient(110deg, #fff 0%, #fff9ed 76%, #f5ead1 100%);
  display: grid;
  grid-template-columns: 1fr .62fr;
  align-items: center;
  padding: 30px 5vw 30px 55px;
  overflow: hidden
}
.v9-why-copy h2 {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  color: #1a4032;
  font-weight: 500;
  margin: 0 0 18px;
  position: relative
}
.v9-why-copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 54px;
  height: 2px;
  background: #e8a817
}
.v9-why-copy ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0
}
.v9-why-copy li {
  position: relative;
  padding-left: 27px;
  margin: 11px 0;
  font-size: .78rem;
  color: #33443a
}
.v9-why-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #174c37;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #174c37;
  font-size: .65rem;
  font-weight: 900
}
.v9-why-decor {
  align-self: stretch;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center
}
.v9-books {
  position: absolute;
  bottom: 28px;
  width: 185px;
  height: 44px;
  background: #1c6548;
  border-radius: 3px;
  box-shadow: 0 15px 0 #f3b629, 0 30px 0 #d98a18
}
.v9-mug {
  position: absolute;
  bottom: 80px;
  right: 15%;
  width: 92px;
  height: 105px;
  background: linear-gradient(135deg, #e8a419, #f5c351);
  border-radius: 8px 8px 25px 25px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .62rem;
  line-height: 1.5;
  color: #7a5612;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(194, 140, 32, .18)
}
.v9-mug::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 25px;
  width: 32px;
  height: 42px;
  border: 8px solid #e8a419;
  border-left: 0;
  border-radius: 0 22px 22px 0
}
.v9-leaf {
  position: absolute;
  right: 1%;
  top: 2%;
  font-size: 7rem;
  color: #5a813d;
  opacity: .8;
  transform: rotate(-20deg)
}
.v9-benefits {
  background: #fff;
  border-top: 1px solid #e6dfd1;
  border-bottom: 1px solid #e6dfd1;
  padding: 22px 0
}
.v9-benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr)
}
.v9-benefit-grid article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 8px 18px;
  border-right: 1px solid #dfd9cc;
  align-items: start
}
.v9-benefit-grid article:last-child {
  border-right: 0
}
.v9-benefit-grid article > span {
  font-size: 1.55rem;
  color: #174c37
}
.v9-benefit-grid strong {
  display: block;
  font-size: .76rem;
  color: #183f30
}
.v9-benefit-grid small {
  display: block;
  font-size: .62rem;
  line-height: 1.45;
  color: #657068;
  margin-top: 3px
}
.v9-next {
  background: #fbf8ef
}
.v9-next-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 20px
}
.v9-quote-card, .v9-next-card {
  border-radius: 15px;
  background: #fff;
  border: 1px solid #e7dfd1;
  min-height: 270px
}
.v9-quote-card {
  padding: 28px;
  border-color: #e3a819;
  position: relative
}
.v9-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.4rem;
  color: #e6a50e;
  line-height: .7
}
.v9-quote-card p {
  font-size: .78rem;
  line-height: 1.65;
  color: #3e4942;
  margin: 12px 0
}
.v9-quote-card strong {
  font-size: .67rem;
  color: #647068
}
.v9-stars {
  color: #efa810;
  letter-spacing: .08em;
  margin-top: 12px
}
.v9-next-card {
  text-align: center;
  padding: 22px 30px;
  background: linear-gradient(115deg, #fffdf9, #fff6dd)
}
.v9-next-card h2 {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  color: #173f30;
  font-weight: 500;
  margin: 0
}
.v9-next-card > p {
  font-size: .85rem;
  margin: 3px 0 20px;
  color: #536057
}
.v9-step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px
}
.v9-step-row article {
  padding: 4px 18px;
  border-right: 1px solid #dfd8ca
}
.v9-step-row article:last-child {
  border-right: 0
}
.v9-step-row span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #174c37;
  border-radius: 50%;
  margin: 0 auto 8px;
  color: #174c37;
  font-weight: 900
}
.v9-step-row strong {
  display: block;
  font-size: .74rem;
  color: #183f30
}
.v9-step-row small {
  display: block;
  font-size: .62rem;
  line-height: 1.4;
  color: #69736d;
  margin-top: 3px
}
.v9-wide-cta {
  min-width: 330px;
  padding: 10px 22px
}
.v9-closing {
  background: #174c37;
  color: #fff;
  padding: 24px 0
}
.v9-closing-grid {
  display: grid;
  grid-template-columns: .85fr .9fr 1.05fr;
  gap: 34px;
  align-items: center
}
.v9-closing .v9-script {
  color: #fff;
  margin-bottom: 3px;
  font-size: 1.6rem
}
.v9-closing h2 {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.65rem;
  margin: 0
}
.v9-closing p {
  font-size: .75rem;
  line-height: 1.55;
  color: #e5eee9;
  margin: 0
}
.v9-closing-contact {
  display: grid;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, .35);
  padding-left: 28px
}
.v9-closing-contact a {
  font-size: .82rem;
  font-weight: 800
}
.v9-footer {
  padding-top: 40px
}
.v9-footer .footer-bottom {
  font-size: .68rem
}
.v9-disclaimer {
  justify-content: center;
  border-top: 0;
  padding-top: 0;
  color: #9eb7aa
}
@media(max-width:1100px) {
  .v9-header .brand-logo {
    width: 220px
  }
  .v9-phone-pill {
    display: none
  }
  .v9-service-row {
    grid-template-columns: repeat(3, 1fr)
  }
  .v9-benefit-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 14px
  }
  .v9-benefit-grid article:nth-child(3) {
    border-right: 0
  }
  .v9-story-why {
    grid-template-columns: .8fr 1.2fr
  }
}
@media(max-width:900px) {
  .v9-topbar .container span:first-child {
    display: none
  }
  .v9-topbar .container {
    justify-content: center
  }
  .v9-hero-grid {
    grid-template-columns: 1fr
  }
  .v9-hero-copy {
    padding: 42px 0 32px
  }
  .v9-hero-photo {
    min-height: 400px
  }
  .v9-mini-trust {
    grid-template-columns: repeat(3, 1fr)
  }
  .v9-story-why, .v9-next-grid, .v9-closing-grid {
    grid-template-columns: 1fr
  }
  .v9-story-panel {
    padding: 0 30px
  }
  .v9-story-inner {
    max-width: none;
    margin: 0
  }
  .v9-why-panel {
    padding: 36px 30px
  }
  .v9-benefit-grid {
    grid-template-columns: 1fr 1fr
  }
  .v9-benefit-grid article {
    border-right: 0;
    border-bottom: 1px solid #e4ddd0
  }
  .v9-closing-contact {
    border-left: 0;
    padding-left: 0
  }
  .v9-header .brand-logo {
    width: 245px;
    max-width: 65vw
  }
}
@media(max-width:620px) {
  .home-v9 .section {
    padding: 42px 0
  }
  .v9-hero h1 {
    font-size: 2.5rem
  }
  .v9-script {
    font-size: 1.5rem
  }
  .v9-actions {
    flex-direction: column
  }
  .v9-actions .v9-btn {
    width: 100%
  }
  .v9-mini-trust {
    grid-template-columns: 1fr;
    gap: 9px
  }
  .v9-hero-photo {
    min-height: 325px
  }
  .v9-promise-card {
    right: 12px;
    bottom: 12px;
    width: 220px;
    padding: 14px
  }
  .v9-service-row {
    grid-template-columns: 1fr 1fr
  }
  .v9-centered-heading h2 {
    font-size: 1.7rem
  }
  .v9-why-panel {
    grid-template-columns: 1fr
  }
  .v9-why-decor {
    display: none
  }
  .v9-benefit-grid {
    grid-template-columns: 1fr
  }
  .v9-step-row {
    grid-template-columns: 1fr
  }
  .v9-step-row article {
    border-right: 0;
    border-bottom: 1px solid #e2dacc;
    padding: 13px
  }
  .v9-step-row article:last-child {
    border-bottom: 0
  }
  .v9-wide-cta {
    min-width: 0;
    width: 100%
  }
  .v9-header .brand-logo {
    width: 210px;
    max-width: 70vw
  }
}
/* =========================================================
   IIM CONSULTING v10 - MATCHED INNER PAGES
   ========================================================= */
.subpage-v10 {
  background: #fffdf8
}
.v10-page-hero {
  background: linear-gradient(110deg, #fffaf0, #f5efe2);
  border-bottom: 1px solid #e7dece;
  padding: 58px 0
}
.v10-page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 56px;
  align-items: center
}
.v10-kicker {
  display: block;
  color: #d98a0c;
  font-size: .72rem;
  letter-spacing: .1em;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px
}
.v10-page-hero h1 {
  font-family: Georgia, serif;
  color: #153f30;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.02;
  font-weight: 500;
  margin: 0 0 18px
}
.v10-page-hero h1 em {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-weight: 500;
  color: #e8950d
}
.v10-page-hero p {
  max-width: 680px;
  color: #4d5b53;
  line-height: 1.7;
  font-size: 1rem
}
.v10-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px
}
.v10-about-hero-photo {
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(31, 67, 49, .13)
}
.v10-about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%
}
.v10-photo-note {
  position: absolute;
  left: 2px;
  bottom: 300px;
  background: rgba(23, 76, 55, .94);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  backdrop-filter: blur(5px)
}
.v10-photo-note span, .v10-photo-note strong {
  display: block
}
.v10-photo-note span {
  color: #f6bc37;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em
}
.v10-photo-note strong {
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-top: 3px
}
.v10-stat-strip {
  background: #174c37;
  color: white
}
.v10-stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}
.v10-stat-strip article {
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, .16)
}
.v10-stat-strip article:last-child {
  border-right: 0
}
.v10-stat-strip strong {
  display: block;
  color: #f6bd38;
  font-family: Georgia, serif;
  font-size: 1.35rem
}
.v10-stat-strip span {
  font-size: .72rem;
  color: #e7efe9;
  line-height: 1.45
}
.v10-story-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px
}
.v10-script-label {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  color: #e8950d;
  font-size: 1.65rem
}
.v10-story-title h2, .v10-fit-grid h2, .v10-form-heading h2 {
  font-family: Georgia, serif;
  color: #153f30;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 1.12;
  margin: 8px 0 14px
}
.v10-story-title p, .v10-story-copy p {
  color: #546159;
  line-height: 1.7
}
.v10-story-copy blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid #f0aa18;
  background: #fff6dd;
  color: #164533;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  border-radius: 0 14px 14px 0
}
.v10-soft-section {
  background: #fbf7ee
}
.v10-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px
}
.v10-section-head > span, .v10-service-intro span {
  color: #d98a0c;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em
}
.v10-section-head h2, .v10-service-intro h2 {
  font-family: Georgia, serif;
  color: #153f30;
  font-size: 2rem;
  font-weight: 500;
  margin: 7px 0
}
.v10-section-head p {
  color: #66726b;
  font-size: .88rem
}
.v10-interactive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}
.v10-expand-card, .v10-service-card {
  appearance: none;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #fffdf9;
  border: 1px solid #e7dece;
  border-radius: 16px;
  padding: 22px;
  cursor: pointer;
  transition: .22s ease;
  box-shadow: 0 7px 20px rgba(26, 64, 46, .035)
}
.v10-expand-card:hover, .v10-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(26, 64, 46, .1);
  border-color: #d8c79f
}
.v10-expand-card:focus-visible, .v10-service-card:focus-visible {
  outline: 3px solid rgba(240, 170, 24, .35);
  outline-offset: 3px
}
.v10-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #174c37;
  border-radius: 50%;
  color: #174c37;
  font-weight: 900;
  font-size: 1.05rem
}
.v10-expand-card h3, .v10-service-card h3 {
  font-family: Georgia, serif;
  color: #173f30;
  font-size: 1.16rem;
  margin: 16px 0 8px
}
.v10-expand-card p, .v10-service-card p {
  font-size: .78rem;
  line-height: 1.55;
  color: #647069;
  margin: 0
}
.v10-card-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: #48574f;
  font-size: .76rem;
  line-height: 1.6;
  transition: max-height .3s ease, opacity .25s ease, margin .3s ease
}
.v10-expand-card[aria-expanded="true"] .v10-card-more, .v10-service-card[aria-expanded="true"] .v10-card-more {
  max-height: 180px;
  opacity: 1;
  margin-top: 13px
}
.v10-expand-card[aria-expanded="true"], .v10-service-card[aria-expanded="true"] {
  background: #fff8e8;
  border-color: #e0ad38
}
.v10-card-toggle {
  display: block;
  margin-top: 16px;
  color: #b97508;
  font-size: .7rem;
  font-weight: 900
}
.v10-cta {
  background: linear-gradient(110deg, #174c37, #215f45);
  color: white;
  padding: 42px 0
}
.v10-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}
.v10-cta h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 4px 0
}
.v10-cta p {
  margin: 0;
  color: #dce9e1;
  font-size: .84rem
}
.v10-page-hero--simple {
  text-align: center
}
.v10-page-hero--simple .container {
  max-width: 900px
}
.v10-page-hero--simple p {
  margin-inline: auto
}
.v10-page-hero--simple .v10-hero-actions {
  justify-content: center
}
.v10-service-intro {
  background: #fff;
  border-bottom: 1px solid #ece3d5
}
.v10-service-intro .container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px
}
.v10-service-intro h2 {
  margin-bottom: 0
}
.v10-service-intro p {
  margin: 0;
  color: #5c6961;
  line-height: 1.65;
  font-size: .86rem
}
.v10-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px
}
.v10-service-card {
  position: relative;
  min-height: 260px
}
.v10-service-number {
  position: absolute;
  right: 17px;
  top: 15px;
  font-family: Georgia, serif;
  color: #ddcfb5;
  font-size: 1.25rem
}
.v10-fit-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start
}
.v10-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px
}
.v10-check-list li {
  position: relative;
  padding-left: 30px;
  color: #3f4f46;
  line-height: 1.5
}
.v10-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #174c37;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #174c37;
  font-size: .7rem;
  font-weight: 900
}
.v10-check-list.compact {
  gap: 9px
}
.v10-check-list.compact li {
  font-size: .8rem
}
.v10-boundary {
  padding: 22px 0;
  background: #fff4d7;
  border-top: 1px solid #ecd49c;
  border-bottom: 1px solid #ecd49c
}
.v10-boundary .container {
  display: flex;
  align-items: center;
  gap: 22px
}
.v10-boundary strong {
  color: #174c37;
  white-space: nowrap
}
.v10-boundary p {
  margin: 0;
  font-size: .82rem;
  color: #625946
}
.v10-consult-hero {
  padding-bottom: 45px
}
.v10-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}
.v10-consult-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: white;
  border: 1px solid #e6ddcd;
  border-radius: 18px;
  overflow: hidden
}
.v10-consult-steps article {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid #e6ddcd
}
.v10-consult-steps article:last-child {
  border-right: 0
}
.v10-consult-steps span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #174c37;
  color: white;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  font-weight: 900
}
.v10-consult-steps strong {
  display: block;
  color: #173f30;
  font-size: .78rem
}
.v10-consult-steps small {
  display: block;
  color: #6b756f;
  font-size: .65rem;
  line-height: 1.4;
  margin-top: 4px
}
.v10-consult-section {
  background: #fffdf8
}
.v10-consult-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 34px;
  align-items: start
}
.v10-form-card {
  background: #fff;
  border: 1px solid #e8dfd2;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(24, 61, 45, .06)
}
.v10-form-heading {
  margin-bottom: 22px
}
.v10-form-heading p {
  font-size: .78rem;
  color: #707b74
}
.v10-submit {
  border: 0;
  cursor: pointer;
  width: 100%
}
.v10-consult-aside {
  display: grid;
  gap: 16px
}
.v10-aside-card, .v10-security-card {
  border: 1px solid #e5ddcf;
  border-radius: 18px;
  padding: 22px;
  background: #fff
}
.v10-aside-card h3 {
  font-family: Georgia, serif;
  color: #173f30;
  margin: 8px 0;
  font-size: 1.25rem
}
.v10-aside-card p, .v10-security-card p {
  font-size: .78rem;
  line-height: 1.6;
  color: #647069;
  margin-bottom: 0
}
.v10-aside-green {
  background: #174c37;
  color: white;
  border-color: #174c37
}
.v10-aside-green .v10-card-icon {
  border-color: #f6bd38;
  color: #f6bd38
}
.v10-aside-green h3 {
  color: white
}
.v10-aside-green p {
  color: #e7efe9
}
.v10-security-card {
  background: #fff5db;
  border-color: #ecd18a
}
.v10-security-card strong {
  color: #7c5b10
}
.v10-portal-hero-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 70px;
  align-items: center
}
.v10-lock-visual {
  text-align: center;
  padding: 38px;
  background: #174c37;
  color: white;
  border-radius: 24px
}
.v10-lock {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border: 2px solid #f6bd38;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f6bd38;
  font-size: 2rem
}
.v10-lock-visual strong, .v10-lock-visual span {
  display: block
}
.v10-lock-visual strong {
  font-family: Georgia, serif;
  font-size: 1.35rem
}
.v10-lock-visual span {
  font-size: .72rem;
  color: #dce9e1;
  margin-top: 6px
}
.v10-portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}
.v10-portal-access {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px
}
.v10-access-card {
  background: white;
  border: 1px solid #e5ddcf;
  border-radius: 20px;
  padding: 30px
}
.v10-access-card h2 {
  font-family: Georgia, serif;
  color: #173f30;
  font-size: 2rem;
  font-weight: 500;
  margin: 7px 0 10px
}
.v10-access-card p {
  color: #657168;
  line-height: 1.65;
  font-size: .84rem;
  margin-bottom: 22px
}
.v10-safe-list {
  padding: 28px
}
.v10-safe-list h3 {
  font-family: Georgia, serif;
  color: #173f30;
  font-size: 1.45rem;
  margin-top: 0
}
.v10-boundary-green {
  background: #174c37;
  border-color: #174c37;
  color: white
}
.v10-boundary-green strong {
  color: #f6bd38
}
.v10-boundary-green p {
  color: #e4eee8;
  flex: 1
}
.v10-boundary-green a {
  color: white;
  font-weight: 900;
  white-space: nowrap
}
@media(max-width:1000px) {
  .v10-page-hero-grid, .v10-story-layout, .v10-consult-grid, .v10-consult-layout, .v10-portal-hero-grid, .v10-portal-access, .v10-fit-grid, .v10-service-intro .container {
    grid-template-columns: 1fr
  }
  .v10-interactive-grid, .v10-service-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .v10-stat-strip .container {
    grid-template-columns: repeat(2, 1fr)
  }
  .v10-stat-strip article:nth-child(2) {
    border-right: 0
  }
  .v10-portal-grid {
    grid-template-columns: 1fr
  }
  .v10-about-hero-photo {
    height: 360px
  }
}
@media(max-width:650px) {
  .v10-page-hero {
    padding: 42px 0
  }
  .v10-page-hero h1 {
    font-size: 2.6rem
  }
  .v10-about-hero-photo {
    height: 320px
  }
  .v10-stat-strip .container, .v10-interactive-grid, .v10-service-grid {
    grid-template-columns: 1fr
  }
  .v10-stat-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16)
  }
  .v10-stat-strip article:last-child {
    border-bottom: 0
  }
  .v10-cta .container, .v10-boundary .container {
    flex-direction: column;
    align-items: flex-start
  }
  .v10-consult-steps {
    grid-template-columns: 1fr
  }
  .v10-consult-steps article {
    border-right: 0;
    border-bottom: 1px solid #e6ddcd
  }
  .v10-consult-steps article:last-child {
    border-bottom: 0
  }
  .v10-form-card {
    padding: 20px
  }
  .v10-hero-actions {
    flex-direction: column
  }
  .v10-hero-actions a {
    width: 100%
  }
  .v10-portal-hero-grid {
    gap: 28px
  }
}