   .lp-container {
        width: 100%;
        padding-right: 12px;
        padding-left: 12px;
        margin-right: auto;
        margin-left: auto;
      }
      @media (min-width: 576px)  { .lp-container { max-width: 540px;  padding-right: 12px; padding-left: 12px; } }
      @media (min-width: 768px)  { .lp-container { max-width: 720px;  padding-right: 15px; padding-left: 15px; } }
      @media (min-width: 992px)  { .lp-container { max-width: 960px;  } }
      @media (min-width: 1200px) { .lp-container { max-width: 1140px; } }
      @media (min-width: 1400px) { .lp-container { max-width: 1320px; } }

      /* ── Row ── */
      .lp-row {
        display: flex;
        flex-wrap: wrap;
        --lp-gx: 0px;
        --lp-gy: 0px;
        margin-top: calc(-1 * var(--lp-gy));
        margin-right: calc(-0.5 * var(--lp-gx));
        margin-left:  calc(-0.5 * var(--lp-gx));
      }
      .lp-row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(0.5 * var(--lp-gx));
        padding-left:  calc(0.5 * var(--lp-gx));
        margin-top: var(--lp-gy);
      }

      /* gap-3 = 1 rem  |  gap-4 = 1.5 rem  (matches Bootstrap spacing scale) */
      .lp-gap-3 { --lp-gx: 1rem;   --lp-gy: 1rem;   }
      .lp-gap-4 { --lp-gx: 1.5rem; --lp-gy: 1.5rem; }

      /* ── Columns (mobile-first: 100 % default) ── */
      /* sm ≥ 576 */
      @media (min-width: 576px) {
        .lp-col-sm-6 { flex: 0 0 50%; max-width: 50%; }
      }
      /* md ≥ 768 */
      @media (min-width: 768px) {
        .lp-col-md-4  { flex: 0 0 33.3333%; max-width: 33.3333%; }
        .lp-col-md-12 { flex: 0 0 100%;     max-width: 100%;     }
      }
      /* lg ≥ 992 */
      @media (min-width: 992px) {
        .lp-col-lg-6 { flex: 0 0 50%; max-width: 50%; }
      }

      /* ── Utilities ── */
      .lp-pos-rel  { position: relative; }
      .lp-align-start { align-items: flex-end; }
      .lp-img-fluid { max-width: 100%; height: auto; display: block; }


      /* ══════════════════════════════════════════════════
         SECTION 1 – Revolution
      ══════════════════════════════════════════════════ */
      .revolution-section {
        background: linear-gradient(90deg, #5b3a6d, #0b0c1f);
        position: relative;
        overflow: hidden;
        padding-top: 3rem;
      }
      .revolution-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        top: -150px;
        left: -100px;
        pointer-events: none;
      }
      .revolution-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        bottom: -100px;
        right: 200px;
        pointer-events: none;
      }

      /* left column */
      .rev-tagline {
        font-family: "Nunito", sans-serif;
        font-size: 1rem;
        font-weight: 400;
        color: #b0afd0;
        letter-spacing: 0.04em;
        margin-bottom: 2px;
      }
      .rev-headline {
        font-family: "Nunito", sans-serif;
        font-size: 2.35rem;
        font-weight: 400;
        line-height: 1.15;
        color: #ffffff;
        margin-bottom: 14px;
      }
      .rev-headline strong { font-weight: 900; }

      .rev-cards-row { margin-bottom: 1rem; }

      /* feature cards */
      .rev-feat-card {
        background: #f3f1f6;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
        height: 100%;
        transition: background 0.25s;
      }
      .rev-feat-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 10px;
        opacity: 0.85;
      }
      .rev-feat-title {
        font-size: 17px;
        font-weight: 700;
        color: #5f3d68;
        margin-bottom: 7px;
        line-height: 1.3;
      }
      .rev-feat-body {
        font-size: 0.75rem;
        color: #665f5f;
        line-height: 1.55;
      }

      /* bottom edv image */
      .rev-bottom-img { padding-bottom: 1rem; width: 100%; }

      /* right column – large image area */
      .rev-img-area {
        height: 100%;
        min-height: 340px;
        position: relative;
      }
      .rev-hero-img {
        position: absolute;
        bottom: 0;
        left: 0;
        max-width: 100%;
      }
      .rev-hero-img img { width: 100%; height: auto; display: block; }

      /* tablet / mobile override */
      @media (max-width: 991px) {
        .rev-img-area   { min-height: 0; }
        .rev-hero-img   { position: static; margin-top: 20px; text-align: center; }
        .rev-hero-img img { width: 80%; margin: 0 auto; }
        .rev-headline   { font-size: 1.9rem; }
      }
      @media (max-width: 575px) {
        .rev-headline   { font-size: 1.6rem; }
      }




      /* ══════════════════════════════════════════════════
         SECTION 2 – AI cards
      ══════════════════════════════════════════════════ */
      .ai-section {
        background:
          radial-gradient(ellipse 80% 50% at 50% 110%, rgba(100,60,220,.3) 0%, transparent 70%),
          radial-gradient(ellipse 60% 40% at 80% 20%,  rgba(60,30,160,.2)  0%, transparent 60%),
          linear-gradient(170deg, #0e0c28 0%, #140f40 50%, #0b0927 100%);
        padding: 80px 0 90px;
        position: relative;
        overflow: hidden;
      }
      .ai-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("https://www.lpu.in/landing-pages/lp-resources/img/common/artificial-intelligence-bg.webp");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        pointer-events: none;
        bottom: -360px;
      }

      .ai-icon-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 18px;
        font-size: 2rem;
      }
      .ai-section-title {
        font-family: "Nunito", sans-serif;
        font-size: 2.3rem;
        font-weight: 800;
        background: linear-gradient(90deg, #ecb412, #fff176);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 18px;
      }
      .ai-section-sub {
        font-size: 0.97rem;
        color: #b0afd0;
        text-align: center;
        max-width: 720px;
        margin: 0 auto 52px;
        line-height: 1.7;
      }

      .ai-cards-row-top    { margin-bottom: 1.5rem; }

      /* AI feature cards */
      .ai-card {
        border-radius: 16px;
        padding: 20px;
        height: 100%;
        position: relative;
      }
      .ai-card--green    { background: #f5ffed; }
      .ai-card--purple   { background: #f3ebff; }
      .ai-card--seashell { background: #fff6ee; }
      .ai-card--blue     { background: #fdebeb; }
      .ai-card--pastel   { background: #eaffff; }
      .ai-card--pink     { background: #ffe7f6; }

      .ai-card-icon {
        width: 48px;
        height: 48px;
        background: #f5a623;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.35rem;
      }
      .ai-card-title {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 16px;
        line-height: 1.3;
      }
      .ai-card ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .ai-card ul li {
        font-size: 0.83rem;
        color: #3a3a5c;
        line-height: 1.55;
        padding-left: 16px;
        position: relative;
        margin-bottom: 9px;
      }
      .ai-card ul li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #231f20;
        font-weight: 900;
      }

      /* Responsive tweaks */
      @media (max-width: 767px) {
        .ai-section          { padding: 50px 0 60px; }
        .ai-section-title    { font-size: 1.7rem; }
        .ai-card-title       { font-size: 20px; }
        .ai-section-sub      { margin-bottom: 32px; }
      }
      @media (max-width: 575px) {
        .ai-section-title    { font-size: 1.4rem; }
      }