:root {
  --primarybuttonColor: linear-gradient(90deg, rgba(213, 32, 40, 1) 0%, rgba(255, 90, 95, 1) 100%);
  --blackColor: linear-gradient(90deg, #000 0%, #484848 100%);
  --footerColor: linear-gradient(90deg, #fff 0%, #FFEFF0 100%);
  --shadow: 0 18px 40px rgba(17, 17, 18, .10);
  --radius: 10px;
  /* Section-component palette (partners, capabilities, models,
     how-it-works, ecosystem, blog, cta/footer) */
  --red-1: linear-gradient(90deg, rgba(213, 32, 40, 1) 0%, rgba(255, 90, 95, 1) 100%);
  --red-2: linear-gradient(90deg, rgba(213, 32, 40, 1) 0%, rgba(255, 90, 95, 1) 100%);
  --black-1: #1a1a1a;
  --black-2: #2c2c2c;
  --text-dark: #111111;
  --text-muted: #5a5a5a;
  --border-light: #ececec;
  --logo-gray: #9a9a9a;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --textgradient:  -webkit-linear-gradient(rgba(213, 32, 40, 1), rgba(255, 90, 95, 1));
  --newred: linear-gradient(rgba(255, 255, 255, 1) 0%, rgba(255, 90, 95, 1) 100%);
  /* Previously used via var() but never defined — added to match the
     site's existing red brand palette and body font */
  --orange: #d92845;
  --border: #ececec;
  --font-display: "Plus Jakarta Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

p {font-size: 16px; font-weight: 500; color: #000;}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.primarybutton {
  background: linear-gradient(90deg, #df2e35 0%, #ff5a5f 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position .5s ease, transform .15s ease, box-shadow .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 20px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(223, 46, 53, .32);
}

.primarybutton:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(223, 46, 53, .4);
}

.primarybutton:active{
    transform:translateY(0);
    box-shadow:0 10px 18px rgba(223,46,53,.3);
  }

header {
  border: 1px #F3F3F3 solid;
  box-shadow: 0px 0px 5px 0px #ddd;
}

.header-strip {
  position: relative;
  border-bottom: 1px solid var(--border);
  z-index: 110;
}

/* ---------------- NAVBAR ---------------- */
nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0px;

  opacity: 0;
  animation: fadeDown 0.8s ease forwards 0.15s;
  /* background: rgba(13,13,13,0.35); */
  /* backdrop-filter: blur(6px); */
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.logo .hex {
  color: var(--orange);
  position: relative;
}

.logo .hex::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  transform: rotate(45deg);
}

.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-stack .top {
  color: var(--orange);
  font-size: 1.15rem;
}

.logo-stack .bottom {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 17px;
  color: #000;
  margin: 0;
}

.nav-links li,
.dividerline,
.steps-wrap,
.cards-wrap,
.highlight,
.field{
  position: relative;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 800;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.cap-item .card-copy{
  color: #000;
}

.nav-links.open a:hover {color: #FFF;}

.nav-links a:hover::after {
  width: 100%;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.has-menu:hover .chevron {
  transform: rotate(225deg) translateY(2px);
}

/* Mega menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 620px;
  background: rgba(20, 20, 20, 0.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.has-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 14px;
  text-align: center;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mega-menu a:hover {
  background: rgba(255, 106, 31, 0.12);
}

.mega-menu a:hover::after {
  width: 0;
}

.mega-menu .pill-title {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

.mega-menu .pill-sub {
  font-size: 0.76rem;
  color: #FFF;
}

.mega-menu .num {
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.proposal-btn {
  padding: 11px 24px;
  border: 1.5px solid var(--orange);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.2s ease;
  z-index: 1;
  cursor: pointer;
}

.modal {
  z-index: 1100;
}

.proposal-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.proposal-btn:hover::before {
  transform: translateX(0);
}

.proposal-btn:hover {
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* HERO */

.hero-section{
    position:relative;
    width:100%;
    min-height:720px;
    overflow:hidden;
    padding:70px 0 70px;
    background:url("../images/hero-bg.png") no-repeat;
    background-size: cover;
}

.hero-container{
    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 25px;
}

.hero-row{
    min-height:600px;
    display:grid;
    grid-template-columns:48% 52%;
    align-items:center;
}

/* LEFT CONTENT */

.hero-content{
    position:relative;
    z-index:10;
}

.hero-title{
    margin:0 0 28px;
    font-size:70px;
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:800;
    color: #000;
}

.hero-title span{
    color:#d92845;
    font-style:italic;
    position:relative;
}

.hero-title span:after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:3px;
    height:10px;
    background:#f7dce1;
    z-index:-1;
}

.hero-content p{
    max-width:550px;
    margin:0 0 20px;
    font-size:18px;
    font-weight: 500;
    line-height:1.65;
    color:#303030;
}

.hero-buttons{
    display:flex;
    align-items:flex-start;
    flex-direction: column;
    gap:10px;
    flex-wrap:wrap;
    margin-top:28px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.3s ease;
}

.hero-btn-primary{
    color:#fff;
    background: var(--primarybuttonColor);
    box-shadow:0 8px 20px rgba(217,40,69,.15);
}

.hero-btn-primary:hover{
    background:#c51f3c;
    transform:translateY(-2px);
}

.hero-btn-secondary{
    color:#111;
    border:1px solid #cfcfcf;
    background:#fff;
}

.hero-btn-secondary:hover{
    color:#d92845;
    border-color:#d92845;
}

/* RIGHT VIDEO AREA */

.hero-video-area{
    position:relative;
    width:700px;
    height:673px;
    margin-left:auto;
      animation: upDown 3s ease-in-out infinite;
}

@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}
  .video-mask {
      position: relative;
      width: 593px;
      height: 673px;
      /* SAME PATH FOR BOTH */
      -webkit-mask-image: url("../../assets/images/hero-pru-icon.png");
      mask-image: url("../../assets/images/hero-pru-icon.png");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      margin: 0px auto;
    }

    .video-mask video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-mask:after {content: ""; position: absolute; width: 100%; height: 100%; background: rgb(197, 31, 60, 1); mix-blend-mode: multiply;}

    @media (max-width: 650px) {
      .video-mask {
        width: 90vw;
        height: auto;
        aspect-ratio: 593 / 673;
      }
    }
/* ONE SINGLE VIDEO */
/* TILE LABELS */

.video-label{
    position:absolute;
    z-index:10;
    display:flex;
    align-items:center;
    gap:7px;
    height:38px;
    padding:0 16px;
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:25px;
    font-size:13px;
    font-weight:700;
    color: #000;
    white-space:nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,.07);
}

.video-label span{
    color:#d92845;
    font-size:15px;
}
.video-label span img,
.eco-card-icon svg,
.who-icon svg{width: 18px; height: 18px;}

/* Strategy */
.label-strategy{
    top:8px;
    left:240px;
}

/* Partnerships */

.label-partnerships{
    top:270px;
    left:200px;
}

/* Scale */

.label-scale{
    top:285px;
    right:85px;
}

/* Performance */

.label-performance{
    top:365px;
    left:20px;
}


.dividerline:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
  height: 12px;                 /* container = the taller (right) height */
  background: var(--primarybuttonColor); /* or any color/gradient */
  clip-path: polygon(0 8px, 100% 0, 100% 100%, 0 10px);
  transform: rotate(-2deg);
}

/* MOBILE */
/* MOBILE 650 */

@media(max-width:650px){

    /*
       Coordinates are percentages of
       the original 600px composition.
    */

    .label-strategy{
        top:4.5%;
        right:18%;
    }

    .label-partnerships{
        top:42%;
        left:34%;
    }

    .label-scale{
        top:45%;
        right:0;
    }

    .label-performance{
        top:57%;
        left:0;
    }

}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  nav {
    padding: 20px 32px;
  }

  .nav-links {
    gap: 24px;
    font-size: 0.85rem;
  }

  .mega-menu {
    width: 480px;
  }

  .magic-section {
    padding: 80px 6vw 90px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 30px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
    border-left: 1px solid var(--border);
    z-index: 60;
    display: none;
  }

  .nav-links.open {
    transform: translateX(-15px);
    display: flex;
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
    transition: all 0.3s ease;
  }

  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    background: transparent;
  }

  .has-menu.open .mega-menu {
    display: grid;
  }

  .proposal-btn,
.scroll-cue{
    display: none;
  }

  .burger {
    display: flex;
    z-index: 70;
  }

  

}

@media (max-width: 640px) {
  nav {
    padding: 18px 20px;
  }

  .has-menu:hover .mega-menu {
    transform: translateX(0%) translateY(0);
  }

  .nav-links.open {
    overflow: auto;
  }
}

@media (max-width: 650px) {
    .video-tile-borders{
        width: 100%;
        height: 100%;
    }
}

  .partners-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 64px;
    text-align: center;
  }
 
  .partners-heading{
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 4px;
  }
 
  .partners-heading .highlight,
.capabilities-heading .highlight,
.models-heading .highlight,
.how-heading .highlight,
.eco-heading .highlight,
.blog-heading .highlight,
.ecosystem-heading .highlight,
.who-heading .highlight,
.faq-heading .highlight,
.help-heading .highlight,
.contact-heading .highlight{
     background: var(--textgradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
    padding: 0 4px;
  }
 
  .partners-subtext{
    max-width: 620px;
    margin: 20px auto 48px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
  }
 
  /* Logo grid */
  .logo-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px 16px;
    align-items: center;
    justify-items: center;
    margin-bottom: 56px;
  }
 
  .logo-item{
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.55;
    font-weight: 700;
    font-size: 16px;
    color: var(--logo-gray);
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: opacity 0.25s ease, filter 0.25s ease;
  }
 
  .logo-item:hover{
    filter: grayscale(0%);
    opacity: 1;
  }
 
  .logo-item .sub{
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
 
  /* Stats row */
  .stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
  }
 
  .stat-card{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 22px 20px;
    text-align: left;
    color: #ffffff;
    isolation: isolate;
  }
 
  .stat-card.red,
.contact-card.red{
    background: var(--primarybuttonColor);
  }
 
  .stat-card.black{
    background: var(--blackColor);
  }
 
  .stat-card::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: url("../images/logo-icon-light.svg") no-repeat;
    background-size: 77px; 
    background-position: 90% 52%;
  }
 
  .stat-number{
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 800;
    margin: 0 0 4px;
  }
 
  .stat-label{
    font-size: 13px;
    font-weight: 500;
    opacity: 0.92;
  }
 
  /* Responsive breakpoints */
  @media (max-width: 900px){
    .logo-grid{
      grid-template-columns: repeat(3, 1fr);
      gap: 28px 12px;
    }
    .stats-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 520px){
    .partners-section{
      padding: 48px 16px 40px;
    }
    .logo-grid{
      grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid{
      grid-template-columns: 1fr;
    }
    .logo-item{
      font-size: 14px;
    }
  }

  .capabilities-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 0px;
  }
 
  .capabilities-heading{
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin: 0 0 48px;
  }
 
  
 
  /* Row of items — each item animates its own width */
  .capabilities-row{
    display: flex;
    gap: 20px;
    align-items: stretch;
  }
 
  .cap-item{
    position: relative;
    min-height: 360px;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    flex: 0 0 76px;
    transition: flex-grow 0.6s var(--ease), flex-basis 0.6s var(--ease), border-color 0.3s ease;
  }
 
  .cap-item.active{
    flex: 1 1 560px;
  }
 
  .cap-item:not(.active){
    cursor: pointer;
  }
 
  .cap-item:not(.active):hover{
    border-color: #d8d8d8;
    background: #fafafa;
  }
 
  /* Collapsed vertical label */
  .tab-label{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
 
  .cap-item.active .tab-label{
    opacity: 0;
  }
 
  .tab-label span{
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    white-space: nowrap;
  }
 
  /* Expanded content */
  .card-content{
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 44px;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
 
  .cap-item.active .card-content{
    opacity: 1;
    transition: opacity 0.4s ease 0.25s;
    pointer-events: auto;
  }
 
  .card-title{
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 16px;
  }
 
  .card-copy{
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0 0 28px;
    max-width: 400px;
  }
 
  .card-cta{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: var(--primarybuttonColor);
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }
 
  .card-media{
    position: relative;
    border: 5px solid var(--red-1);
    border-radius: 20px;
    overflow: hidden;
    /* aspect-ratio: 4 / 3; */
  }
 
  .card-media img,
  .card-media .placeholder{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .card-media .placeholder{
    background: linear-gradient(135deg, #ece9e9, #d9d5d5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
  }
 
  /* Responsive */
  @media (max-width: 860px){
    .capabilities-row{
      flex-direction: column;
    }
    .cap-item{
      flex: 0 0 auto;
      min-height: 52px;
    }
    .cap-item.active{
      min-height: 480px;
    }
    .tab-label span{
      writing-mode: horizontal-tb;
      transform: none;
    }
    .card-content{
      grid-template-columns: 1fr;
      padding: 28px;
    }
    .card-media{
      order: -1;
    }
  }
 
  @media (max-width: 480px){
    .capabilities-section{
      padding: 48px 16px 64px;
    }
    .card-content{
      padding: 22px;
    }
    .card-title{
      font-size: 21px;
    }
  }

  .models-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 96px;
  }
 
  /* Header row */
  .models-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
 
  .models-heading{
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
  }
 
  
 
  .models-intro,
.ecosystem-intro{
    max-width: 380px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 6px 0 0;
  }
 
  /* Card grid */
  .models-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
  }
 
  .model-card{
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 0px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  }
 
  .model-code{
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
  }
 
  .model-label{
    font-size: 12px;
    font-weight: 700;
    color: var(--red-1);
    margin: 0 0 18px;
    line-height: 1.4;
  }
 
  .model-divider{
    width: 22px;
    height: 2px;
    background: var(--red-1);
    opacity: 0.4;
    margin: 0 0 16px;
  }
 
  .model-copy{
    margin: 0;
  }
 
  /* Responsive */
  @media (max-width: 1000px){
    .models-grid{
      grid-template-columns: repeat(3, 1fr);
    }
  }
 
  @media (max-width: 620px){
    .models-grid{
      grid-template-columns: repeat(2, 1fr);
    }
    .models-header{
      gap: 20px;
    }
  }
 
  @media (max-width: 400px){
    .models-section{
      padding: 48px 16px 64px;
    }
    .models-grid{
      grid-template-columns: 1fr;
    }
  }

  .how-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 0px;
  }
 
  .how-heading{
    text-align: center;
    font-size: clamp(24px, 3.4vw, 36px);
    font-weight: 800;
    margin: 0 0 12px;
  }
 
  
 
  .how-subtext{
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 56px;
  }
 
  /* Wave + steps */
  
 
  .wave-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    display: block;
  }
 
  .steps-grid{
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding-top: 100px;
  }
 
  .step{
    text-align: center;
    padding: 0 12px;
    /* animation: upDown 3s ease-in-out infinite; */
  }
 
  .step-icon{
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 30px auto;
  }

/* 
.step-animation1 {
  animation: upDown 3s ease-in-out infinite;
}

.step-animation2 {
  animation: upDown 3s ease-in-out 0.3s infinite;
}

.step-animation3 {
  animation: upDown 3s ease-in-out 0.6s infinite;
}

.step-animation4 {
  animation: upDown 3s ease-in-out 0.9s infinite;
}

.step-animation5 {
  animation: upDown 3s ease-in-out 1.2s infinite;
}

@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
} */

  .step:nth-child(1) .step-icon{ left: 10%; }
  .step:nth-child(2) .step-icon{ left: 30%; }
  .step:nth-child(3) .step-icon{ left: 50%; }
  .step:nth-child(4) .step-icon{ left: 70%; }
  .step:nth-child(5) .step-icon{ left: 90%; }
 
  .step-icon img { width: 100%; border-radius: 50%;}
 
  .step-title,
.blog-title{
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 8px;
  }
 
  .step-divider{
    width: 22px;
    height: 2px;
    background: var(--red-1);
    margin: 0 auto 14px;
  }
 
  .step-copy{
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
 
  .wave-wrap {
    width: 90%;
    max-width: 1320px;
  }
  .wave-bg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
  }

  .wave-bg image {border-radius: 50%; width: 40px;}

  /* Responsive: collapse to vertical timeline */
  @media (max-width: 860px){
    .wave-bg{ display: none; }
 
    .steps-grid{
      grid-template-columns: 1fr;
      padding-top: 0;
      gap: 0;
    }
 
    .step{
      position: relative;
      text-align: left;
      padding: 0 0 40px 64px;
      border-left: 2px dashed var(--red-1);
      margin-left: 27px;
    }
 
    .step:last-child{
      border-left-color: transparent;
      padding-bottom: 0;
    }
 
    .step-icon{
      position: absolute;
      top: 0;
      left: -27px;
      transform: none;
    }
 
    .step-divider{
      margin: 0 0 12px;
    }
  }
 
  @media (max-width: 480px){
    .how-section{
      padding: 48px 16px 64px;
    }
  }
  .eco-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 64px;
  }
 
  /* Top row: text + graphic */
  .eco-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
  }
 
  .eco-heading,
.culture-heading{
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
  }
 
  
 
  .eco-eyebrow{
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin: 20px 0 10px;
  }
 
  .eco-copy{
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0;
  }
 
  /* Decorative graphic */
  .eco-graphic{
    position: relative;
    aspect-ratio: 16 / 8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .ring{
    position: absolute;
    border: 1px solid rgba(255, 90, 95, 0.35);
    border-radius: 999px;
  }
 
  .ring.outer{ inset: 0; }
  .ring.inner{ inset: 14%; }
 
  .ring-dot{
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-1);
  }
 
  .dot-top{ top: -4px; left: 50%; transform: translateX(-50%); }
  .dot-bottom{ bottom: -4px; left: 50%; transform: translateX(-50%); }
  .dot-left{ left: -4px; top: 50%; transform: translateY(-50%); }
  .dot-right{ right: -4px; top: 50%; transform: translateY(-50%); }
 
  .pixel-cluster{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
  }
 
  .pixel-cluster span{
    background: #d9d5d5;
    border-radius: 2px;
  }
 
  .pixel-cluster.left{ left: 8%; }
  .pixel-cluster.right{ right: 8%; }
 
  .eco-logo{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 26px;
    font-weight: 800;
  }
 
  .eco-logo .pru,
.footer-brand .pru{ color: #e04347; }
  .eco-logo .digital,
.footer-brand .digital,
.footer-col a:hover,
.legal-links a:hover{ color: var(--text-dark); }
  .eco-logo .squares,
.footer-brand .squares{
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    margin: 0 3px;
  }
  .eco-logo .squares span{
    width: 6px;
    height: 6px;
    border-radius: 1px;
  }
  .eco-logo .squares span:nth-child(1),
.footer-brand .squares span:nth-child(1){ background: var(--text-dark); height: 5px; }
  .eco-logo .squares span:nth-child(2),
.footer-brand .squares span:nth-child(2){ background: var(--red-1); height: 8px; }
  .eco-logo .squares span:nth-child(3),
.footer-brand .squares span:nth-child(3){ background: var(--text-dark); height: 6px; }
  .eco-logo .media{
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    margin-left: 4px;
    align-self: flex-end;
  }
 
  /* Capability cards */
  .eco-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
 
  .eco-card{
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 28px 28px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  }
 
  .eco-card-head{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
  }
 
  .eco-card-icon{
    flex: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primarybuttonColor);
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  
 
  .eco-card-title{
    font-size: 17px;
    font-weight: 800;
    margin: 0;
  }
 
  .eco-list-columns{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
 
  .eco-cards .eco-card:last-child .eco-list-columns{
    grid-template-columns: repeat(3, 1fr);
  }
 
  .eco-list-columns ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
 
  .eco-list-columns li{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }
 
  .eco-list-columns li svg{
    flex: none;
    width: 13px;
    height: 13px;
    margin-top: 2px;
  }
 
  .eco-footnote{
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
  }
 
  /* Responsive */
  @media (max-width: 900px){
    .eco-top,
.eco-cards{
      grid-template-columns: 1fr;
    }
    .eco-graphic{
      order: -1;
      aspect-ratio: 16 / 9;
    }
    
    .eco-cards .eco-card:last-child .eco-list-columns{
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 520px){
    .eco-section{
      padding: 48px 16px 48px;
    }
    .eco-list-columns,
    .eco-cards .eco-card:last-child .eco-list-columns{
      grid-template-columns: 1fr 1fr;
    }
    .eco-logo{ font-size: 20px; }
    .pixel-cluster{ display: none; }
  }
  .blog-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 20px;
  }
 
  .blog-heading{
    text-align: center;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    margin: 0 0 48px;
  }
 
  
 
  .blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
 
  .blog-card{
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
  }
 
  .blog-thumb{
    position: relative;
    background: linear-gradient(135deg, #f3f1f1, #e6e3e3);
    overflow: hidden;
  }
 
  .blog-thumb img,
.culture-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .blog-thumb .thumb-caption{
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
  }
 
  .blog-thumb .thumb-caption .accent{
    color: var(--red-1);
  }
 
  .blog-body{
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
 
  
 
  .blog-copy{
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 20px;
    flex: 1;
  }
 
  .blog-arrow{
    align-self: flex-end;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primarybuttonColor);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: none;
    transition: transform 0.2s ease;
  }
 
  .blog-arrow:hover{
    transform: translateX(3px);
  }
 
  .blog-arrow svg{ width: 15px; height: 15px; }
 
  /* Responsive */
  @media (max-width: 900px){
    .blog-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 600px){
    .blog-grid{
      grid-template-columns: 1fr;
    }
    .blog-section{
      padding: 48px 16px 64px;
    }
  }

  .page-wrap{
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px 40px;
    position: relative;
    z-index: 1;
  }
 
  /* CTA banner */
  .cta-banner{
    position: relative;
    background: var(--primarybuttonColor);
    border-radius: 32px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 40px;
  }
 
  .cta-title{
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 18px;
  }
 
  .cta-copy{
    font-size: 14.5px;
    line-height: 1.65;
    opacity: 0.95;
    max-width: 460px;
    color: #FFF;
    margin: 0 0 28px;
  }
 
  .cta-button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: var(--blackColor);
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
 
  /* Decorative illustration (simplified vector scene) */
  .cta-art{
    position: relative;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .cta-art svg{ width: 100%; height: 100%; max-width: 340px; }
 
footer {background: var(--footerColor); padding: 270px 0px 0px 0px; position: relative; margin-top: -300px;}
  footer::before {content: "";
    position: absolute;
    top: 0;
    width: 100%;
  height: 12px;                 /* container = the taller (right) height */
  background: var(--primarybuttonColor); /* or any color/gradient */
  clip-path: polygon(0 8px, 100% 0, 100% 100%, 0 10px);
  transform: rotate(-2deg);}

  /* Footer */
  .footer-brand{
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 18px;
  }
 
  
  
  
  .footer-brand .squares span{ width: 5px; border-radius: 1px; }
  
  
  
  .footer-brand .media{
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--text-dark);
    margin-left: 4px;
    align-self: flex-end;
  }
 
  .footer-top{
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--red-1);
    margin-bottom: 32px;
  }
 
  .footer-desc{
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
  }
 
  .footer-columns{
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.2fr;
    gap: 24px;
    margin-bottom: 40px;
  }
 
  .footer-col h4{
    font-size: 13.5px;
    font-weight: 800;
    margin: 0 0 16px;
  }
 
  .footer-col ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
 
  .footer-col a{
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
  }
 
  
 
  .connect-list li{
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .connect-icon{
    flex: none;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(213, 32, 40, 1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .connect-icon svg,
.check-icon svg{ width: 11px; height: 11px; }
 
  .social-icons{
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
  }
 
  .social-icons a{
    width: 32px;
    height: 32px;
    border: 1px solid var(--text-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
 
  .social-icons a svg{ width: 14px; height: 14px; }
 
  .legal-links{
    font-size: 12.5px;
    color: var(--text-muted);
  }
 
  .legal-links a{
    color: var(--text-muted);
    text-decoration: none;
  }
 
  
 
  .footer-bottom{
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-size: 12.5px;
  }
 
  .footer-bottom .brand-name{
    color: #e04347;
    font-weight: 700;
  }

  /* Responsive */
  @media (max-width: 900px){
    .cta-banner{
      grid-template-columns: 1fr;
      padding: 40px;
    }
    .cta-art{ order: -1; height: 160px; }
    .footer-top{
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .footer-columns{
      grid-template-columns: repeat(2, 1fr);
      row-gap: 32px;
    }
  }
 
  @media (max-width: 520px){
    .page-wrap{ padding: 40px 16px 32px; }
    .cta-banner{ padding: 28px; border-radius: 24px; }
    .footer-columns{ grid-template-columns: 1fr 1fr; }
  }

  /* ===== Common strip container ===== */
  .strip-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
  }
 
  /* fade edges */
  .strip-wrap::before,
  .strip-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .strip-wrap::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
  }
  .strip-wrap::after {
    right: 0;
    background: linear-gradient(270deg, #fff, transparent);
  }
 
  .strip-track {
    display: flex;
    align-items: center;
    width: max-content;
  }
 
  .strip-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 70px;
    margin: 0 24px;
    background: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #222;
  }
 
  /* ===== 1) Left to Right ===== */
  .strip-ltr .strip-track {
    animation: strip-move-ltr 20s linear infinite;
  }
 
  @keyframes strip-move-ltr {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0%); }
  }
 
  /* ===== 2) Right to Left ===== */
  .strip-rtl .strip-track {
    animation: strip-move-rtl 20s linear infinite;
  }
 
  @keyframes strip-move-rtl {
    from { transform: translateX(0%); }
    to   { transform: translateX(-50%); }
  }
 
  /* pause on hover (optional, remove if not needed) */
  .strip-wrap:hover .strip-track {
    animation-play-state: paused;
  }

 /* .strip-item img {mix-blend-mode: luminosity;} */

   :root{
    --black-1: #1a1a1a;
    --black-2: #2c2c2c;
    --text-dark: #111111;
    --text-muted: #5a5a5a;
    --card-radius: 40px;
  }
 
  .ecosystem-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 96px;
  }
 
  /* Header row */
  .ecosystem-header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
 
  .ecosystem-heading{
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
  }
 
  
 
  
 
  /* Cards row + connector */
  
 
  .connector{
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 140px;
    background: var(--red-1);
    z-index: 2;
  }
 
  .connector-icon{
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid #f0d9da;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    z-index: 3;
  }
 
  .connector-icon svg,
.contact-icon svg{ width: 16px; height: 16px; }
 
  .cards-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
  }
 
  .card{
    padding: 48px 44px 44px;
    color: #ffffff;
    border-radius: 100px;
  }
 
  .card.red{
    background: var(--primarybuttonColor)
  }
 
  .card.black{
    background: linear-gradient(160deg, var(--black-1), var(--black-2) 90%);
  }
 
  .card-title{
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 18px;
  }
 
  .card-subtitle{
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px;
  }
 
  .card-copy {
    font-size: 14px;
    line-height: 1.65;
    color: #FFF;
    opacity: 0.92;
    margin: 0 0 24px;
    max-width: 420px;
  }
 


  .card-list{
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
 
  .card-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
  }
 
  .check-icon{
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .card.red .check-icon{ background: rgba(0,0,0,1); }
  .card.black .check-icon{ background: rgba(255,255,255,1); }
 
  
 
  .card-cta{
    max-width: 265px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: var(--primarybuttonColor);
  }
 
  .card.red .card-cta{
    background: var(--black-1);
    color: #ffffff;
  }
 
  .card.black .card-cta{
    background: var(--primarybuttonColor);
    color: #ffffff;
  }

    /* Decorative graphic */
  .eco-graphic{
    position: relative;
    aspect-ratio: 16 / 8;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .eco-graphic::before {content: ""; position: absolute; top: 6%; left: -3.5%; width: 100%; height: 88%; border: 1px rgba(255, 90, 95, 1) solid; border-radius: 200px; opacity: 0.2;}
  .eco-graphic::after {content: ""; position: absolute; top: 22%; left: 4.5%; width: 84%; height: 56%; border: 1px rgba(255, 90, 95, 1) solid; border-radius: 200px; opacity: 0.2;}

  .eco-rings{
    position: absolute;
    inset: 0;
    width: 93%;
    height: 100%;
    display: block;
  }

  .ring-track{
    fill: none;
    stroke: rgba(255, 90, 95, 1);
    stroke-width: 1;
  }

  .ring-track-faint{
    stroke-opacity: 0.08;
  }

  .ring-dot{
    fill: var(--red-1);
  }

  /* Dots travel along the exact stroke path, looping forever */
  @keyframes travelRing{
    from{ offset-distance: 0%; }
    to{ offset-distance: 100%; }
  }
.dot-outer-a,
.dot-outer-b,
.dot-outer-c,
.dot-outer-d{
  offset-path: path("M140,41 L560,41 A134,134 0 0 1 560,309 L140,309 A134,134 0 0 1 140,41 Z");
  animation: travelRing 9s linear infinite;
}

.dot-outer-b{ animation-delay: -2.25s; }
.dot-outer-c{ animation-delay: -4.5s; }
.dot-outer-d{ animation-delay: -6.75s; }

.dot-inner-a,
.dot-inner-b{
  offset-path: path("M182,83 L518,83 A92,92 0 0 1 518,267 L182,267 A92,92 0 0 1 182,83 Z");
  animation: travelRing 7s linear infinite reverse;
}

.dot-inner-b{ animation-delay: -3.5s; }
  .pixel-cluster{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
  }
 
  
 
  .pixel-cluster.left{ left: 15%; }
  .pixel-cluster.right{ right: 20%; }
 
  .eco-logo{
    position: relative;
    z-index: 2;
  }
  .eco-logo img {width: 200px;}

.model-card {
  perspective: 1000px;
  width: 100%;
  height: 290px;
}

.model-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

/* Flip on hover */
.model-card:hover .model-card-inner {
  transform: rotateY(180deg);
}

/* Both sides */
.model-card-front,
.model-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front */
.model-card-front {
  padding: 20px;
  background: #fff;
}

/* Back */
.model-card-back {
  transform: rotateY(180deg);
  overflow: hidden;
}

.model-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; border-radius: 20px;
}
 
  /* Responsive */
  @media (max-width: 860px){
    .cards-grid{
      grid-template-columns: 1fr;
      border-radius: 28px;
    }
    .card{
      padding: 40px 32px;
    }
    .connector,
.connector-icon{
      display: none;
    }
    
    .ecosystem-header{
      gap: 20px;
    }
  }
 
  @media (max-width: 480px){
    .ecosystem-section{
      padding: 48px 16px 64px;
    }
    .card{
      padding: 32px 24px;
    }
    .card-title{
      font-size: 22px;
    }
  }

.burger span {background: #000;}

.inner-banner {background: var(--primarybuttonColor); min-height: 400px; text-align: center;}
.inner-banner-content h1 {font-size: 50px; font-weight: 800; color: #FFF;}
.inner-banner-content p {font-size: 18px; font-weight: 500; color: #FFF;}
.inner-banner-content,
.termsConditions ul{}

  :root{
    --text-dark: #111111;
    --text-muted: #5a5a5a;
    --border-light: #ececec;
  }
 
  .who-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 0px;
    display: grid;
    grid-template-columns: 0.50fr 2.1fr;
    gap: 48px;
    align-items: start;
  }
 
  /* Left column */
  .who-heading{
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
  }
 
  
 
  .who-eyebrow{
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.4px;
    line-height: 1.5;
    margin: 0 0 14px;
  }
 
  .who-copy{
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
  }
 
  /* Right column: cards grid */
  .who-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
 
  .who-card{
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  }
 
  .who-icon{
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primarybuttonColor);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
  }
 
  
 
  .who-card-title{
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
  }
 
  /* Faint decorative pixel cluster in the corner */
  .who-pixels{
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0.5;
  }
 
  .who-pixels span{
    background: #ece7e7;
    border-radius: 2px;
  }
 
  .who-pixels span:nth-child(2),
.who-pixels span:nth-child(5),
.culture-pixels span:nth-child(2),
.culture-pixels span:nth-child(4),
.culture-pixels span:nth-child(8){ background: transparent; }
 
  /* Responsive */
  @media (max-width: 900px){
    .who-section{
      grid-template-columns: 1fr;
    }
    .who-grid{
      grid-template-columns: repeat(2, 1fr);
    }
  }
 
  @media (max-width: 560px){
    .who-section{
      padding: 48px 16px 64px;
    }
    .who-grid{
      grid-template-columns: 1fr;
    }
  }

    
 
  .faq-outer{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px;
  }
 
  .faq-card{
        border-radius: 28px;
    box-shadow: 0 0px 5px #ddd;
    padding: 30px;
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 48px;
    align-items: start;
  }
 
  /* Left column */
  .faq-heading{
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
  }
 
  
 
  .faq-copy{
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 18px 0 0;
    max-width: 320px;
  }
 
  /* Right column: accordion */
  .faq-list{
    display: flex;
    flex-direction: column;
  }
 
  .faq-item{
    border-bottom: 1px solid var(--border-light);
  }
 
  .faq-item:first-child{
    border-top: 1px solid var(--border-light);
  }
 
  .faq-question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }
 
  .faq-question-text{
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-dark);
  }
 
  .faq-toggle{
    flex: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primarybuttonColor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease, ease);
  }
 
  .faq-toggle svg{
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
  }
 
  .faq-item.open .faq-toggle svg{
    transform: rotate(180deg);
  }
 
  .faq-answer{
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
 
  .faq-answer-inner{
    padding: 0 4px 20px;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-muted);
  }
 
  /* Responsive */
  @media (max-width: 860px){
    .faq-card{
      grid-template-columns: 1fr;
      padding: 36px;
      gap: 28px;
    }
  }
 
  @media (max-width: 480px){
    .faq-outer{
      padding: 0px 16px;
    }
    .faq-card{
      padding: 26px;
      border-radius: 22px;
    }
  }

.inner-partner .models-header {text-align: left;}
.inner-partner .models-intro {text-align: right;}


.highlight::after {content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: var(--newred); opacity: 0.2; z-index: -1;}
.privacy-policy-banner {min-height: 200px;}
.termsConditions {color: #000; padding: 50px 0px;}
.termsConditions h2 {font-size: 24px; font-weight: 600;}
.termsConditions h3 {font-size: 20px; font-weight: 600;}
.termsConditions h4 {font-size: 16px; font-weight: 600;}
.termsConditions strong {font-weight: 600;}

.termsConditions ul li {list-style-type: disc;}
.termsConditions a {color: #0d6efd;}

.carer-why-heading {grid-template-columns: 1fr;}
.carer-why-heading .who-intro {display: flex; justify-content: space-between;}
.carer-why-heading .who-intro .highlight {display: block;}
.carer-why-heading .who-intro .who-copy {max-width: 400px; text-align: right;}
.carer-why-heading .who-grid {grid-template-columns: repeat(4, 1fr);}

  .culture-section{
    max-width: 100%;
    margin: 0 auto;
    padding: 72px 0px 0;
  }
 
  /* Header row */
  .culture-header{
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
    margin: 0px auto;
    margin-bottom: 40px;
    
    max-width: 1240px;
  }
 
  
 
  .culture-heading .highlight{
    color: var(--red-1);
    background: linear-gradient(to bottom, transparent 62%, rgba(255,90,95,0.18) 62%);
    padding: 0 4px;
  }
 
  .culture-copy{
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 16px;
  }
 
  .culture-copy:last-child{ margin-bottom: 0; }
 
  /* Pills grid */
  .culture-pills{
    
    max-width: 1240px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0px auto;
    margin-bottom: -34px;
    position: relative;
    z-index: 2;
  }
 
  .culture-pill{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
  }
 
  .culture-pill.red{ background: var(--red-1); }
  .culture-pill.black,
.contact-card.black{ background: linear-gradient(135deg, var(--black-1), var(--black-2)); }
 
  .culture-pill .check{
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .culture-pill.red .check svg path,
.culture-pill.black .check svg path{ stroke: var(--orange); }
  
 
  /* Photo banner */
  .culture-photo{
    position: relative;
    margin-top: -75px;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: linear-gradient(135deg, #d9d9d9, #f2f2f2);
  }
 
  
 
  .culture-photo .placeholder-note{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
  }
 
  .culture-pixels{
    position: absolute;
    top: 8%;
    left: 3%;
    display: grid;
    grid-template-columns: repeat(3, 30px);
    grid-template-rows: repeat(3, 30px);
    gap: 10px;
    opacity: 0.35;
    z-index: 3;
  }
 
  .culture-pixels span{
    background: rgba(255,255,255,0.75);
    border-radius: 6px;
  }
 
  
 
  /* Responsive */
  @media (max-width: 900px){
    .culture-header{ grid-template-columns: 1fr; gap: 20px; }
    .culture-pills{ grid-template-columns: repeat(2, 1fr); margin-bottom: -20px; }
    .culture-photo{ margin-top: 60px; aspect-ratio: 4 / 3; }
  }
 
  @media (max-width: 560px){
    .culture-section{ padding: 48px 16px 0; }
    .culture-pills{ grid-template-columns: 1fr; }
    .culture-pill{ font-size: 13px; padding: 12px 16px; }
    .culture-photo{ margin-top: 16px; aspect-ratio: 3 / 4; }
    .culture-pixels{ grid-template-columns: repeat(3, 20px); grid-template-rows: repeat(3, 20px); gap: 6px; }
  }

  .apply-outer{
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px;
  }
 
  .apply-grid{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    align-items: stretch;
  }
 
  /* Left card: Who Should Apply */
  .apply-card{
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  }
 
  .apply-heading{
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px;
  }
 
  .apply-subtext{
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0 0 18px;
  }
 
  .apply-list{
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
  }
 
  .apply-list li{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 600;
  }
 
  .apply-list li:last-child{ border-bottom: none; }
 
  .apply-check{
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primarybuttonColor);
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .apply-footnote{
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
  }
 
  /* Right card: Join Our Team form */
  .join-card{
    background: var(--blackColor);
    border-radius: 24px;
    padding: 36px 32px;
    color: #ffffff;
  }
 
  .join-heading{
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 20px;
  }
 
  .join-form{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
 
  .form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
 
  
 
  .field input,
  .field select{
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    border: none;
    background: #ffffff;
    color: var(--text-dark);
    font-size: 13.5px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
  }
 
  .field input::placeholder,
.field select{
    color: #8a8a8a;
  }
 
  
 
  .field.has-caret::after{
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #8a8a8a;
    border-bottom: 2px solid #8a8a8a;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }
 
  .upload-box{
    border: 1px dashed #cfcfcf;
    border-radius: 10px;
    background: #ffffff;
    padding: 14px 16px;
    text-align: center;
    cursor: pointer;
  }
 
  .upload-box .upload-title{
    color: var(--red-2);
    font-size: 13.5px;
    font-weight: 700;
    margin: 0 0 3px;
  }
 
  .upload-box .upload-hint{
    font-size: 11.5px;
    color: #8a8a8a;
    margin: 0;
  }
 
  .upload-box input[type="file"]{
    display: none;
  }
 
  .submit-btn{
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: var(--primarybuttonColor);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
 
  .submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(224,67,71,0.35);
  }
 
  /* Responsive */
  @media (max-width: 900px){
    .apply-grid{ grid-template-columns: 1fr; }
  }
 
  @media (max-width: 560px){
    .apply-outer{ padding: 40px 16px; }
    .apply-card,
    .join-card{ padding: 26px 22px; border-radius: 20px; }
    .form-row{ grid-template-columns: 1fr; }
  }

  .help-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px 96px;
  }
 
  .help-heading{
    text-align: center;
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    margin: 0 0 48px;
  }
 
  
 
  .help-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
 
  .help-card{
    display: flex;
    align-items: flex-start;
    gap: 22px;
    background: #FFF;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  }
 
  .help-icon{
    flex: none;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .help-icon svg{ width: 100%; height: 100%; }
 
  .help-title{
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 6px;
  }
 
  .help-divider{
    width: 18px;
    height: 2px;
    background: var(--red-1);
    margin: 0 0 10px;
  }
 
  .help-copy{
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 16px;
  }
 
  .help-cta{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--primarybuttonColor);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
  }
 
  /* Responsive */
  @media (max-width: 760px){
    .help-grid{ grid-template-columns: 1fr; }
  }
 
  @media (max-width: 480px){
    .help-section{ padding: 48px 16px 64px; }
    .help-card{ flex-direction: column; gap: 14px; padding: 20px; }
    .help-icon{ width: 100px; height: 100px; }
    .help-icon img {width: 100%;}
  }
  .contact-section{
    max-width: 1320px;
    margin: 0 auto;
    padding: 15px;
  }
 
  .contact-heading{
    text-align: center;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    margin: 0 0 32px;
  }
 
  
 
  .contact-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
 
  .contact-card{
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 18px 20px;
    color: #ffffff;
    isolation: isolate;
  }
 
  
  
 
  .contact-card::after{
    content: "";
    /* position: absolute; */
    inset: 0;
    z-index: -1;
    background: url("../images/logo-icon-light.svg") no-repeat;
    background-size: 77px;width: 100px;
    height: 100px;
    top: 20px;
    right: 0;
    position: absolute;
    left: auto;
  }
 
  .contact-icon{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
 
  
 
  .contact-label{
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 3px;
    color: #FFF;
  }
 
  .contact-value{
    font-size: 12.5px;
    font-weight: 500;
    opacity: 0.92;
    margin: 0;
    color: #FFF;
  }
 

  
.blogBox {margin-bottom: 20px; padding: 0px; border-radius: 10px; box-shadow: 0px 0px 5px 0px #ccc;}
.blogBox a {width: 100%; max-width: 500px;}
.blogBox a img {width: 100%; border-radius: 10px 10px 0px 0px;}
.blog-content {padding: 20px;}
/* Teaser cards only — the two-line clamp keeps the grid rows even.
   Scoped to .blog-content deliberately: the blog detail page reuses .blogBox
   as the article wrapper, so an unscoped `.blogBox p` clamped every paragraph
   of the article body to two lines and cut it off with an ellipsis. The
   article lives in .blog-details-content and must never be clamped. */
.blogBox h1 {font-size: 22px; color: #000; margin: 10px 0px;}
.blogBox p {font-size: 16px; color: #000;}
.blogBox .blog-content h1 {display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;}
.blogBox .blog-content p {display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;}
.blogBox h1 a {color: #000;}
a.text-button {font-size: 12px; font-weight: 600; background: var(--primarybuttonColor);    display: inline-block;
  width: auto;  
  padding: 10px 20px;
    border: none;
    border-radius: 999px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(223, 46, 53, .32);}

.blogBox img {width: 100%;}
.blog-details-content {padding: 20px;}
.blog-detail-heading {display: flex; justify-content: space-between;}
.blog-detail-heading .blog-detail-author {display: flex; flex-direction: column; text-align: right;}
.blog-detail-heading .blog-detail-author span:nth-of-type(1) {font-weight: 600; color: #FE722C;}
.blog-detail-heading .blog-detail-author span:nth-of-type(2) {font-weight: 600; color: #000;}
.blog-details-content h1 {display: block; max-width: 620px;}
.blog-details-content p {display: block;}

.blog-details-section h2 {font-size: 20px; font-weight: 600; color: #000;}
.blog-details-section h3 {font-size: 18px; font-weight: 600; color: #000;}
.blog-details-section ul li {font-weight: 400; color: #000; list-style-type: disc;}
.blog-details-section h2 {font-size: 20px; font-weight: 600; color: #000;}
.blog-details-section a {color: #0d6efd;}

.faq-section .faq-accordion-wrap p {color: #FFF;}
.blog-detail-right {padding: 10px; border-radius: 10px; box-shadow: 0px 0px 5px 0px #ccc;}
.blog-detail-right .blogBox {display: grid; grid-template-columns: 25% 75%; gap: 10px; box-shadow: 0px 0px 0px 0px #ccc;}
.blog-detail-right .blogBox img {width: 95px;}
.blog-detail-right .blogBox .blog-content {padding: 0px 10px 0px 0px;}
.blog-detail-right .blogBox .blog-content h1 {font-size: 18px;}
.blog-detail-right .blogBox .blog-content p {font-size: 14px;}
.blog-detail-right h3 {font-size: 18px; font-weight: 600; color: #000; padding-bottom: 10px; margin-bottom: 20px; border-bottom: 1px #ddd solid;}


/* Project */

.projects {padding: 50px 0px;}

.project-box {
  position: relative;
  margin: auto;
  overflow: hidden;
  margin-bottom: 20px;
}

.project-image{
  width: 100%;
  border-radius: 10px 10px 0px 0px;
}

.project-details {
  text-align: left;
  padding: 20px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.project-box:hover .project-details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.project-details h3 {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.project-details p{
  color: #000;
  font-size: 0.8em;
}

.fadeIn-bottom{
  top: 80%;
}
.project-box {box-shadow: 0px 0px 5px 0px #ccc; border-radius: 10px;}



  :root{
    --ink:#111214;
    --border:#ececec;
    --pink:#ff2d8c;
    --transition: 480ms cubic-bezier(.22,.9,.28,1);
  }

.capaa-subpanel {    border-radius: 28px;
    box-shadow: 0 0px 5px #ddd; padding: 30px;}

  .capaa-wrap{
    width:100%;
    max-width:1320px;
    background:#fff;
    margin: 80px auto;
    /* border:1px solid var(--border); */
    border-radius:28px;
    padding:28px;
  }
 
  /* ---- Tab nav ---- */
  .capaa-tabnav{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:var(--blackColor);
    border-radius:999px;
    padding:6px;
    gap:4px;
    overflow:hidden;
    isolation:isolate;
  }
 
  .capaa-tabnav button{
    all:unset;
    position:relative;
    z-index:2;
    flex:1 1 0;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 18px;
    border-radius:999px;
    cursor:pointer;
    color:#FFF;
    font-size:14px;
    font-weight:600;
    letter-spacing:.01em;
    white-space:nowrap;
    transition: color 320ms ease;
  }
 
  .capaa-tabnav button .capaa-num{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#3a3a3d;
    color:#d9d9dc;
    font-size:11px;
    font-weight:700;
    flex:0 0 auto;
    transition: background 320ms ease, color 320ms ease;
  }
 
  .capaa-tabnav button[aria-selected="true"]{
    color:#fff;
    background: rgba(255,255,255,0.2);
  }
  .capaa-tabnav button .capaa-num{
    background:var(--primarybuttonColor);
    color:#fff;
  }
    .capaa-tabnav button[aria-selected="true"] .capaa-num{
    background:var(--primarybuttonColor);
    color:#fff;
  }
 
  /* the sliding active pill */
  .capaa-slider{
    position:absolute;
    top:6px;
    bottom:6px;
    left:6px;
    width:0;
    border-radius:999px;
    /* background:#000; */
    z-index:1;
    transition: transform var(--transition), width var(--transition);
  }
 
  /* ---- Panels ---- */
  .capaa-panels{
    margin-top:36px;
    position:relative;
  }
 
  .capaa-panel{
    display:flex;
    flex-direction: column;
    gap:36px;
    align-items:center;
  }

  .capaa-media-con {display: flex; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border);}

    .capaa-media-con .capaa-media {width: 100%;}
    .capaa-media-con .capaa-copy {width: 100%;}


  .capaa-panel[hidden]{ display:none; }
 
  /* enter animation */
  .capaa-panel.capaa-animate-in{
    animation: capaaPanelIn var(--transition) both;
  }
  @keyframes capaaPanelIn{
    from{ opacity:0; transform: translateY(14px) scale(.985); }
    to{ opacity:1; transform: translateY(0) scale(1); }
  }
 
  .capaa-media{
    border-radius:20px;
  }
  .capaa-media img{
    width:100%;
    border-radius: 20px;
  }
  .capaa-tag{
    position:absolute;
    left:58%;
    top:44%;
    background:var(--pink);
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:5px 10px;
    border-radius:6px;
    transform:translate(-50%,-50%);
  }
 
  .capaa-copy h2{
    margin:0 0 18px;
    font-size:clamp(22px, 3vw, 30px);
    line-height:1.2;
    font-weight:700;
    color:var(--ink);
  }
  .capaa-copy p{
    margin:0;
    color:#57575c;
    font-size:15px;
    line-height:1.7;
  }
 
  .capaa-wrap hr{
    border:none;
    border-top:1px solid var(--border);
    margin-top:36px;
  }
 
  @media (max-width: 720px){
    .capaa-wrap{ padding:18px; border-radius:22px; }
 
    .capaa-tabnav{
      flex-wrap:nowrap;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      border-radius:30px;
      padding:8px;
    }
    .capaa-tabnav::-webkit-scrollbar{ display:none; }
    .capaa-tabnav button{
      flex:0 0 auto;
      padding:12px 16px;
      font-size:13px;
    }
    .capaa-slider{ border-radius:14px; }
 
    .capaa-panel{
      grid-template-columns: 1fr;
      gap:20px;
    }
    .capaa-copy h2{ font-size:22px; }
  }
 
  @media (prefers-reduced-motion: reduce){
    .capaa-panel.capaa-animate-in{ animation:none; }
    .capaa-slider{ transition:none; }
  }

  :root{
    --ink:#111214;
    --red:#e8393a;
    --muted:#6b6b70;
    --border:#ececec;
    --transition: 420ms cubic-bezier(.22,.9,.28,1);
  }
  
  .servicesfaq-wrap{
    width:100%;
    max-width:1320px;
    background:#fff;
  }
 
  .servicesfaq-item{
    border-bottom:1px solid var(--border);
  }
  .servicesfaq-item:last-child{
    border-bottom:none;
  }
 
  .servicesfaq-trigger{
    all:unset;
    display:grid;
    grid-template-columns: 46% 50% 2%;
    align-items:start;
    gap:20px;
    width:100%;
    padding:26px 0;
    cursor:pointer;
    box-sizing:border-box;
  }
 
  .servicesfaq-headrow{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
  }


 
  .servicesfaq-num{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:50%;
    background:var(--red);
    color:#fff;
    font-size:12px;
    font-weight:700;
  }
 
  .servicesfaq-title{
    font-size:18px;
    font-weight:700;
    color:var(--ink);
    line-height:1.3;
  }
 
  .servicesfaq-preview{
    width: 100%;
    color: #000;
    font-size:14px;
    line-height:1.6;
    text-align:left;
    align-self:center;
    transition: opacity 200ms ease;
  }
 
  .servicesfaq-icon{
    flex:0 0 auto;
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    align-self:center;
    color:var(--ink);
    transition: transform var(--transition);
    /* background: url('../images/faq-down-arrow.png') no-repeat;
    background-size: cover; */
  }
  /* .servicesfaq-icon img{
    width:16px;
    height:16px;
    display:block;
  } */

    .servicesfaq-item[data-open="false"] .servicesfaq-icon{
      background: url('../images/faq-down-arrow.png') no-repeat;
      background-size: cover;
    }
  
  .servicesfaq-item[data-open="true"] .servicesfaq-icon{
    /* transform: rotate(180deg); */
    background: url('../images/faq-up-arrow.png') no-repeat;
    background-size: cover;
  }
 
  .servicesfaq-panel{
    display:grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition);
  }
  .servicesfaq-item[data-open="true"] .servicesfaq-panel{
    grid-template-rows: 1fr;
  }
 
  .servicesfaq-panel-inner{
    overflow:hidden;
  }
 
  .servicesfaq-body{
    padding: 0 44px 28px 600px;
    opacity:0;
    transform: translateY(-6px);
    transition: opacity 320ms ease, transform 320ms ease;
    transition-delay: 60ms;
  }
  .servicesfaq-item[data-open="true"] .servicesfaq-body{
    opacity:1;
    transform: translateY(0);
  }
 
  .servicesfaq-body p{
    margin:0 0 18px;
    font-size:14.5px;
    line-height:1.7;
  }
  .servicesfaq-body p:last-child{
    margin-bottom:0;
  }
 
  .servicesfaq-checklist{
    list-style:none;
    margin:0 0 18px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .servicesfaq-checklist li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14.5px;
    color:#000;
    line-height:1.5;
  }
  .servicesfaq-check{
    flex:0 0 auto;
    width:18px;
    height:18px;
    border-radius:50%;
    background:var(--red);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:2px;
  }
  .servicesfaq-check svg{
    width:10px;
    height:10px;
  }
 
  @media (max-width: 640px){
    .servicesfaq-wrap{ padding:6px 18px; border-radius:16px; }
 
    .servicesfaq-trigger{
      grid-template-columns: 1fr auto;
      grid-template-areas:
        "head icon"
        "prev prev";
      row-gap:8px;
      padding:20px 0;
    }
    .servicesfaq-headrow{ grid-area:head; }
    .servicesfaq-icon{ grid-area:icon; }
    .servicesfaq-preview{ grid-area:prev; }
 
    .servicesfaq-title{ font-size:16px; }
 
    .servicesfaq-body{
      padding: 0 0 24px;
    }
  }
 
  @media (prefers-reduced-motion: reduce){
    .servicesfaq-panel,
    .servicesfaq-body,
    .servicesfaq-icon{ transition:none; }
  }

   .ta-section {
    --ta-red: #c8262b;
    --ta-red-light: #ff5a5f;
    --ta-bg-1: #1a1a1a;
    --ta-bg-2: #0a0a0a;
    --ta-text: #ffffff;
    --ta-text-muted: #b9b9b9;
    --ta-radius: 50px;
    box-sizing: border-box;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
 
  .ta-section *,
  .ta-section *::before,
  .ta-section *::after {
    box-sizing: border-box;
  }
 
  .ta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
    gap: 0;
    background:
      radial-gradient(120% 160% at 0% 0%, #2b2b2b 0%, #161616 45%, var(--ta-bg-2) 100%);
    border-radius: var(--ta-radius);
    overflow: hidden;
    /* box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55); */
  }
 
  .ta-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .ta-heading {
    margin: 0 0 20px;
    font-size: clamp(1.7rem, 2.4vw + 1rem, 2.35rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--ta-text);
    letter-spacing: -0.01em;
  }
 
  .ta-text {
    margin: 0 0 28px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #FFF;
    max-width: 46ch;
  }
 
  .ta-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
 
  .ta-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ta-text);
  }
 
    /* .ta-content li p {color: #FFF;} */
  .ta-check {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ta-red-light), var(--ta-red));
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .ta-check svg {
    width: 11px;
    height: 11px;
  }
 
  .ta-media {
    position: relative;
    margin: 40px;
  }
 
  .ta-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 40px;
  }
 
  /* Tablet */
  @media (max-width: 900px) {
    .ta-card {
      grid-template-columns: 1fr;
    }
    .ta-media {
      min-height: 300px;
      order: -1;
    }
    .ta-content {
      padding: 40px 32px;
    }
  }
 
  /* Mobile */
  @media (max-width: 520px) {
    .ta-section {
      padding: 16px;
    }
    .ta-card {
      border-radius: 20px;
    }
    .ta-content {
      padding: 32px 22px;
    }
    .ta-heading {
      font-size: 1.5rem;
    }
    .ta-text {
      font-size: 0.92rem;
    }
    .ta-media {
      min-height: 220px;
    }
  }


  
/* Right */

.getintouch-form-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.getintouch-form-box h2{
    font-size:24px;
    margin-bottom:30px;
    color:#111;
    text-align: center;
}

.getintouch-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.getintouch-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.getintouch-form input,
.getintouch-form select,
.getintouch-form textarea{
    width:100%;
    border:1px solid #e3e3e3;
    border-radius:8px;
    padding:14px 15px;
    outline:none;
    font-size:14px;
}

.getintouch-form input,
.getintouch-form select{
    height:52px;
}

.getintouch-form textarea{
    height:130px;
    resize:none;
}

.getintouch-form button{
    height:55px;
    border:none;
    background:var(--primarybuttonColor);
    color:#fff;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

#requestpopup .btn-close {
    position: absolute;
    right: -10px;
    background: var(--primarybuttonColor);
    width: 30px;
    height: 30px;
    color: #FFF;
    z-index: 1100;
    opacity: 1;
    top: -10px;
    border-radius: 50%;}

    
  .se-card {
    max-width: 1320px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0,0,0,0.06);
    padding: 24px;
    display: flex;
    gap: 28px;
  }
 
  .se-image {
    flex: 0 0 32%;
    border-radius: 14px;
    overflow: hidden;
    min-height: 480px;
  }
 
  .se-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* filter: grayscale(100%); */
  }
 
  .se-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0px 4px;
  }
 
  .se-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #111;
  }
 
  .se-title-highlight {
    color: #ff3b30;
    background: rgba(255,59,48,0.1);
    padding: 2px 8px;
    border-radius: 6px;
  }
 
  .se-subtitle {
    color: #666;
    font-size: 15px;
    margin: 0 0 22px;
  }
 
  .se-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
 
  .se-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
 
  .se-field {
    position: relative;
    display: flex;
    flex-direction: column;
  }
 
  .se-input,
  .se-select,
  .se-textarea {
    width: 100%;
    border: 1px solid #e2e2e6;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
 
  .se-input:focus,
  .se-select:focus,
  .se-textarea:focus {
    border-color: #ff3b30;
    box-shadow: 0 0 0 3px rgba(255,59,48,0.12);
  }
 
  .se-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%23555' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
  }
 
  .se-textarea {
    resize: vertical;
    min-height: 168px;
    font-family: inherit;
  }
 
  .se-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
  }
 
  .se-checkbox {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: #ff3b30;
    flex-shrink: 0;
  }
 
  .se-consent a {
    color: #ff3b30;
    text-decoration: none;
    font-weight: 600;
  }
 
  .se-consent a:hover {
    text-decoration: underline;
  }
 
  .se-submit {
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: var(--primarybuttonColor);
    transition: opacity 0.2s ease, transform 0.1s ease;
  }
 
  .se-submit:hover {
    opacity: 0.92;
  }
 
  .se-submit:active {
    transform: scale(0.99);
  }
 
@media (min-width: 576px) {
    .modal-dialog {max-width: 1024px;}
}

  /* ---- Responsive ---- */
  @media (max-width: 900px) {
    .se-card {
      flex-direction: column;
      padding: 18px;
    }
    .se-image {
      flex-basis: auto;
      min-height: 260px;
    }
    .se-title {
      font-size: 28px;
    }
  }
 
  @media (max-width: 560px) {
    body { padding: 12px; }
    .se-row {
      grid-template-columns: 1fr;
    }
    .se-title {
      font-size: 24px;
    }
    .se-image {
      min-height: 200px;
    }
    .se-card {
      border-radius: 14px;
      padding: 14px;
    }
  }
  
  /* Responsive */
  @media (max-width: 760px){
    .contact-grid{ grid-template-columns: repeat(2, 1fr); }
        .getintouch-row {
        grid-template-columns: 1fr;
    }
  }
 
  @media (max-width: 420px){
    .contact-section{ padding: 40px 16px; }
    .contact-grid{ grid-template-columns: 1fr; }
  }


  @media (max-width: 768px) {
    .logo img {width: 100%; max-width: 100px;}
    nav {padding: 18px 5px;}
    .hero-title {font-size: 26px;}
    .hero-title br {display: none;}
    .hero-row,
.eco-list-columns,
.carer-why-heading .who-intro,
.carer-why-heading .who-grid{display: block;}
    .video-mask,
.privacy-policy-banner .inner-banner-content h1{margin: 0;}
    .hero-video-area {width: 100%; height: auto;}
    .card {margin-bottom: 20px; border-radius: 20px;}
    .ecosystem-section {padding: 0 16px 0px;}
    .models-section {padding: 0px 24px 0px;}
    .step:nth-child(1) .step-icon,
.step:nth-child(2) .step-icon,
.step:nth-child(3) .step-icon,
.step:nth-child(4) .step-icon,
.step:nth-child(5) .step-icon{left: -7%;}
    
    
    
    
    .how-section,
.who-section,
.capabilities-section{padding: 48px 16px 0px;}
    .cta-art {order: initial; height: auto;}
    footer {padding: 40px 0px 0px 0px; margin-top: auto;}
    .cta-banner {display: block; margin: 0;}
    .nav-links a {color: #FFF;}
    .chevron {border-right: 2px solid #FFF; border-bottom: 2px solid #FFF;}
    .primarybutton {padding: 5px 12px; font-size: 12px;}
    .blog-section {padding: 20px 16px 20px;}
    .inner-banner-content h1 {font-size: 24px; font-weight: 700;}
    .inner-banner-content p {font-size: 14px;}
    .who-card-title {font-weight: 700;}
    
    .privacy-policy-banner {min-height: auto; padding: 30px 0 30px;}
    
    .label-strategy {left: auto;}
    .label-partnerships {top: 37%; left: 15%;}
    .partners-heading {font-size: clamp(20px, 4vw, 50px);}
    
    .eco-list-columns ul {gap: 8px;}
    .footer-columns {grid-template-columns: 1fr;}
    .inner-partner .models-intro, .carer-why-heading .who-intro .who-copy{text-align: left;}
    .termsConditions {padding: 20px 0px;}
    .termsConditions h2 {font-size: 20px;}
    .termsConditions h3 {font-size: 16px;}
    .termsConditions h4 {font-size: 12px;}
    
    .blog-detail-heading {flex-direction: column; margin-bottom: 10px;}
    .blog-detail-heading .blog-detail-author {text-align: left;}
    .blogBox h1 {font-size: 16px;}
    
   .capaa-media-con {
    display: block;} 
  }
@media (max-width: 768px) {
    .mega-menu a {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 0px;
        text-align: left;
    }
}
