:root {
  --navy:#0F2854;
  --blue:#1C4D8D;
  --sky:#BDE8F5;
}

body {
  margin:0;
  font-family:Inter, sans-serif;
  color:#333;
  line-height:1.7;
}

section {
  padding:90px 6%;
}

h1, h2, h4 {
  color:var(--navy);
}
/* ================= NEW HERO ================= */

.li-hero-new {
  background: linear-gradient(
    120deg,
    #eef7fb 0%,
    #f8fbfe 60%,
    #ffffff 100%
  );
  padding: 100px 6%;
  overflow: hidden;
}

.li-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.li-hero-content {
  animation: fadeUp 1s ease forwards;
}

.li-badge {
  display: inline-block;
  background: rgba(28,77,141,0.1);
  color: #1C4D8D;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 18px;
}

.li-hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  color: #0F2854;
  margin-bottom: 18px;
}

.li-hero-content p {
  max-width: 520px;
  color: #444;
  font-size: 17px;
}

.li-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #1C4D8D;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-outline {
  border: 1px solid #1C4D8D;
  color: #1C4D8D;
  padding: 12px 26px;
  border-radius: 8px;
}

/* RIGHT VISUAL */
.li-hero-visual {
  position: relative;
}

.li-hero-visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg,#BDE8F5,#e8f4fb);
  border-radius: 28px;
  z-index: -1;
}

.li-hero-visual img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  animation: fadeRight 1.2s ease forwards;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:none; }
}

@keyframes fadeRight {
  from { opacity:0; transform:translateX(30px); }
  to { opacity:1; transform:none; }
}

/* MOBILE */
@media(max-width:768px){
  .li-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .li-hero-content h1 {
    font-size: 36px;
  }

  .li-hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ================= OVERVIEW ================= */

.li-overview-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.li-overview-text {
  flex: 1;
}

/* RIGHT IMAGE */
.li-overview-image {
  flex: 1;
  max-width: 520px;          /* 🔑 LIMIT IMAGE WIDTH */
}

.li-overview-image img {
  width: 100%;
  height: 320px;             /* 🔑 CONTROL HEIGHT */
  object-fit: cover;         /* 🔑 CLEAN CROPPING */
  border-radius: 20px;
}


/* LIFE STAGES */
.li-stages {
  text-align:center;
}
.li-stages-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:50px;
}
.stage-card {
  display:flex;
  flex-direction:column;
}
.stage-img {
  height:240px;
  margin-bottom:20px;
}
.stage-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:18px;
}

/* COVERAGE */
.li-coverage-intro {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 16px;
  text-align: center;
}

.li-coverage-list div {
  padding: 28px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* CTA */
.li-cta {
  background:var(--sky);
  text-align:center;
}
.btn-primary {
  padding:12px 26px;
  background:var(--blue);
  color:#fff;
  border-radius:6px;
  display:inline-block;
}

/* ANIMATION */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:.8s ease;
}
.reveal.active {
  opacity:1;
  transform:none;
}

/* MOBILE */
@media(max-width:768px){
  .li-overview-inner,
  .li-types-inner,
  .li-usecase-inner {
    flex-direction:column;
  }
  .li-stages-grid {
    grid-template-columns:1fr;
  }
  .stage-img {
    height:200px;
  }
  .li-hero h1 {
    font-size:34px;
  }
}
:root {
  --navy:#0F2854;
  --blue:#1C4D8D;
  --sky:#BDE8F5;
}

body {
  margin:0;
  font-family:Inter, sans-serif;
  color:#333;
  line-height:1.7;
}

section {
  padding:90px 6%;
}

h1, h2, h4 {
  color:var(--navy);
}

/* HERO */
.hi-hero {
  background:linear-gradient(to right,#eaf6fb,#f7fbfe,#ffffff);
}
.hi-hero-inner {
  display:flex;
  gap:60px;
  align-items:center;
}
.hi-badge {
  display:inline-block;
  background:rgba(28,77,141,0.1);
  color:#1C4D8D;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:18px;
}
.hi-hero-text h1 {
  font-size:48px;
}
.hi-hero-image img {
  width:100%;
  max-width:480px;
  border-radius:22px;
}
/* ================= OVERVIEW ================= */
.hi-overview-inner,
.hi-types-inner {
  display: flex;
  gap: 60px;
  align-items: center;        /* vertical center */
}

/* LEFT TEXT */
.hi-overview-text {
  flex: 1;
}

/* RIGHT IMAGE CONTAINER */
.hi-overview-image,
.hi-types-image {
  flex: 1;
  display: flex;
  justify-content: center;    /* horizontal center */
  align-items: center;        /* vertical center */
}

/* IMAGE */
.hi-overview-image img,
.hi-types-image img {
  width: 100%;
  max-width: 520px;           /* slightly bigger */
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}


/* COVERAGE */
.hi-coverage-list {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

/* NEED */
.hi-need-points span {
  display:block;
  margin:12px 0;
}

/* APPROACH */
.hi-steps {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

/* FAQ */
details {
  background:#fff;
  padding:16px;
  border-radius:6px;
  margin-bottom:12px;
}

/* CTA */
.hi-cta {
  background:var(--sky);
  text-align:center;
}
.btn-primary {
  padding:12px 26px;
  background:var(--blue);
  color:#fff;
  border-radius:8px;
  display:inline-block;
}

/* ANIMATION */
.reveal {
  opacity:0;
  transform:translateY(30px);
  transition:.8s ease;
}
.reveal.active {
  opacity:1;
  transform:none;
}

/* MOBILE */
@media(max-width:768px){
  .hi-hero-inner,
  .hi-overview-inner,
  .hi-types-inner {
    flex-direction:column;
    text-align:center;
  }
  .hi-hero-text h1 {
    font-size:34px;
  }
}
/* ================= ADVISORY APPROACH ================= */
.hi-approach {
  padding: 90px 6%;
  background: #faf7ff; /* same off-white theme */
}

.hi-approach h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
  color: #0f172a; /* dark blue */
}

/* CARD GRID */
.hi-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* CARD */
.hi-step-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 18px;
  border: 1px solid #e5e7eb; /* subtle border */
  position: relative;
  transition: all 0.3s ease;
}

/* HOVER – very soft */
.hi-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

/* STEP NUMBER */
.step-no {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.12); /* same dark tone, faded */
}

/* TEXT */
.hi-step-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.hi-step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}
@media (max-width: 768px) {
  .hi-approach {
    padding: 70px 6%;
  }

  .hi-approach h2 {
    font-size: 28px;
  }
}
/* ================= FAQ ================= */
.hi-faq {
  padding: 90px 6%;
  background: #faf7ff;
}

.hi-faq h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #0f172a;
}

/* FAQ CONTAINER */
.faq-list {
  max-width: 900px;
  margin: auto;
}

/* FAQ ITEM */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* QUESTION */
.faq-item summary {
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

/* REMOVE DEFAULT ARROW */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-item p {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* OPEN STATE */
.faq-item[open] {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

:root {
  --primary: #0f2854;
  --secondary: #1c4d8d;
  --accent: #4988c4;
  --bg: #bde8f5;
  --white: #ffffff;
  --text-muted: #475569;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5fbff;
  color: var(--primary);
}

/* COMMON */
section {
  padding: 100px 6%;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--accent);
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* BUTTONS */
.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

/* HERO */
.gi-hero {
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.gi-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.gi-hero-image img {
  width: 100%;
  max-width: 520px;
}

/* OVERVIEW */
.gi-overview-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.gi-overview-image img {
  max-width: 460px;
  width: 100%;
}

/* TYPES */
.gi-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.gi-type-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15,40,84,.08);
  transition: 0.4s;
}

.gi-type-card:hover {
  transform: translateY(-10px);
}

.gi-type-card img {
  width: 90px;
  margin-bottom: 18px;
}

/* PROCESS */
.gi-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
}

.gi-process-card {
  background: var(--white);
  padding: 34px;
  border-radius: 20px;
  position: relative;
}

.gi-process-card span {
  font-size: 42px;
  color: rgba(28,77,141,.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

/* CTA */
.gi-cta {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

/* ANIMATION */
.reveal {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media(max-width:900px) {
  .gi-hero-inner,
  .gi-overview-inner {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 34px;
  }
}
/* COMMON */
section {
  padding: 100px 6%;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--accent);
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* BUTTONS */
.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

/* HERO */
.ci-hero {
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.ci-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.ci-hero-image img {
  max-width: 520px;
  width: 100%;
}

/* OVERVIEW */
.ci-overview-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.ci-overview-image img {
  max-width: 460px;
  width: 100%;
}

/* TYPES */
.ci-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 35px;
}

.ci-type-card {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(15,40,84,.08);
  transition: .4s;
}

.ci-type-card:hover {
  transform: translateY(-10px);
}

.ci-type-card img {
  width: 90px;
  margin-bottom: 18px;
}

/* PROCESS */
.ci-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
}

.ci-process-card {
  background: var(--white);
  padding: 36px;
  border-radius: 22px;
  position: relative;
}

.ci-process-card span {
  font-size: 44px;
  color: rgba(28,77,141,.15);
  position: absolute;
  top: 20px;
  right: 26px;
}

/* CTA */
.ci-cta {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

/* ANIMATION */
.reveal {
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media(max-width:900px) {
  .ci-hero-inner,
  .ci-overview-inner {
    flex-direction: column;
    text-align: center;
  }

  h1 { font-size: 34px; }
}
:root {
  --primary: #0f2854;
  --secondary: #1c4d8d;
  --accent: #4988c4;
  --bg: #bde8f5;
  --white: #ffffff;
  --text-muted: #475569;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f5fbff;
  color: var(--primary);
}

/* COMMON */
section {
  padding: 100px 6%;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--accent);
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }

p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* BUTTONS */
.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
}

/* HERO */
.mi-hero {
  background: linear-gradient(180deg, var(--bg), #ffffff);
}

.mi-hero-inner {
  display: flex;
  align-items: center;
  gap: 80px;
}

.mi-hero-image img {
  max-width: 520px;
  width: 100%;
}

/* OVERVIEW */
.mi-overview-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.mi-overview-image img {
  max-width: 460px;
  width: 100%;
}

/* TYPES */
.mi-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.mi-type-card {
  background: var(--white);
  padding: 32px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(15,40,84,.08);
  transition: .4s;
}

.mi-type-card:hover {
  transform: translateY(-10px);
}

.mi-type-card img {
  width: 90px;
  margin-bottom: 18px;
}

/* PROCESS */
.mi-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 30px;
}

.mi-process-card {
  background: var(--white);
  padding: 36px;
  border-radius: 22px;
  position: relative;
}

.mi-process-card span {
  font-size: 44px;
  color: rgba(28,77,141,.15);
  position: absolute;
  top: 20px;
  right: 26px;
}

/* CTA */
.mi-cta {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, var(--bg));
}

/* ANIMATION */
.reveal {
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MOBILE */
@media(max-width:900px) {
  .mi-hero-inner,
  .mi-overview-inner {
    flex-direction: column;
    text-align: center;
  }

  h1 { font-size: 34px; }
}

