:root{
  --main-color:   #2298f2;
  --container:     1400px;
  --font:         "Poppins", sans-serif;
  --brand:        #025c9a;
  --brand-dark:   #014a7d;
  --brand-deep:   #012f50;    
  --brand-pale:   #e8f3fb;
  --brand-mid:    #0470bb;
  --brand-glow:   rgba(2,92,154,.18);
  --brand-light:  #dbeeff;
  --brand-xlight: #f0f8ff;
  --accent:       #00b4d8;
  --accent-light: #caf0f8;
  --off-white:    #f6fafd;    
  --white:        #ffffff;
  --text:         #1a2740;
  --darkText:     #222;
  --text-dark:    #09192a;
  --text-body:    #2c4260;
  --text-muted:   #607d99;

  --muted:      #5a6b80;
  --eyebrow:    #5075a7;
  --shadow:     0 12px 40px rgba(2,92,154,0.16);
  --shadow-sub: 0 6px 24px rgba(2,92,154,0.13);
  --radius:     10px;
  --nav-h:      70px;
  --footer-bg:#0b1e30;
  --footer-border:rgba(255,255,255,0.07);
  --text-dim:rgba(255,255,255,0.45);
  --text-mid:rgba(255,255,255,0.65);

  --border:       #d0e5f5;
  --border-light: #e6f2fb;
  --border-dark:  rgba(2,92,154,0.10);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --shadow-sm:    0 2px 12px rgba(2,92,154,.07);
  --shadow-md:    0 8px 32px rgba(2,92,154,.12);
  --shadow-lg:    0 20px 60px rgba(2,92,154,.17);
  --shadow-card:  0 4px 24px rgba(9,25,42,.08);
  --gap:          100px;

  --blue:       #2563EB;
  --blue-dk:    #1D4ED8;
  --blue-lt:    #DBEAFE;
  --green:      #059669;
  --green-lt:   #D1FAE5;
  --purple:     #7C3AED;
  --purple-lt:  #EDE9FE;
  --amber:      #D97706;
  --amber-lt:   #FEF3C7;
  --red:        #DC2626;
  --red-lt:     #FEE2E2;
  --text-mid2:   #334155;
  --card:       #FFFFFF;
  --page:       #F0F4FF;
  --shadow2:     0 1px 4px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.07);
  --shadow-2lg:  0 8px 40px rgba(15,23,42,.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; outline: none;}
p{margin-bottom: 15px;}
p:last-child{margin-bottom: 0;}
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}

img{max-width: 100%;}

a{color: var(--main-color);  text-decoration: none;}

.entry-title{
  font-size: 35px;
  color: var(--brand-mid);
  margin: 0 0 15px;
  font-weight: 400;
  line-height: 1.2;
}
h1 {
  font-size: 48px;
  color: var(--brand-mid);
  margin: 0 0 15px;
  font-weight: 400;
  line-height: 1.2;
}

.frame{
      padding: 70px 50px;
}

.container, .wrap{
    max-width: var(--container);
    margin: auto;
    position: relative;
    z-index: 1;
} 

.content-section{
  margin-bottom: 30px;
}

.align-center{text-align: center;}

  /* ************************ COMMON ***************************** */
.section-header {
  text-align: center; margin-bottom: 60px;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.5s ease 0.05s forwards;
}

.section-header h2,.section-header h3,.section-header h4,.section-header h5,.section-header h6 {
  font-family:var(--font);
  font-size: 44px; font-weight: 400;
  color: var(--brand); line-height: 1.2; margin-bottom: 14px;
}
.section-header p {
  font-size: 15px; color: #7080a0; line-height: 1.7;
}

.subtitle, .eyebrow {
  color: var(--eyebrow);
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  gap: 8px;
  display: flex;
  align-items: center;
}

.eyebrow i { font-size: 10px; }

.eyebrow--light { color: rgba(255,255,255,.7); }
.eyebrow--light i { color: var(--accent); }

.sec-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.sec-title--light { color: var(--white); }
.sec-title em, .sec-title i { font-style: italic; color: var(--brand-mid); }
.sec-title--light em { color: #7dd9f5; }

.sec-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 52px;
}
.sec-desc--light { color: rgba(255,255,255,.6); }


/**************************** HEADER ***************************/
header{
    background: rgba(255,255,255,0.8); 
    position: sticky; 
    top:0;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 12px 10px;
    z-index: 10;
    box-shadow: 0 2px 8px rgb(0 70 119 / 20%);

}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.site-branding a{display: block;}
.site-branding img{
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
}



/**************************************  
        START NAVIGATION MENU
**************************************/
/* ── ROOT MENU ── */
ul.primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 28px;
  gap: 2px;
}

/* ── ALL <li> ── */
ul.primary-menu li { position: relative; }

/* ── ALL LINKS & TRIGGERS ── */
ul.primary-menu a,
ul.primary-menu button.le-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px 8px 14px;
  
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  /* white-space: nowrap; */
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

/* Hover / active */
ul.primary-menu a:hover,
ul.primary-menu button.le-trigger:hover,
ul.primary-menu li:hover > a,
ul.primary-menu li:hover > button.le-trigger {
  color: var(--brand);
  background: var(--brand-pale);
}

/* ── ICON ── */
.le-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--brand-pale);
  border-radius: 7px;
  flex-shrink: 0;
  color: var(--brand);
  transition: background 0.15s;
}
.le-icon svg { width: 14px; height: 14px; }

/* Top-level icons — no pill */
ul.primary-menu > li > a .le-icon,
ul.primary-menu > li > button.le-trigger .le-icon {
  background: transparent;
  width: 18px; height: 18px;
  opacity: 0.65;
}
ul.primary-menu > li > a .le-icon svg,
ul.primary-menu > li > button.le-trigger .le-icon svg { width: 15px; height: 15px; }
ul.primary-menu > li:hover > a .le-icon,
ul.primary-menu > li:hover > button.le-trigger .le-icon { opacity: 1; }

/* Dropdown icon hover */
ul.sub-menu li:hover > a .le-icon,
ul ul ul.sub-menu li:hover > a .le-icon { background: rgba(2,92,154,0.16); }

/* ── CARET ── */
.le-caret {
  display: inline-flex; align-items: center;
  margin-left: 2px; opacity: 0.45;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  flex-shrink: 0;
}
.le-caret svg { width: 13px; height: 13px; }

/* Rotate caret on hover of parent li */
ul.primary-menu > li:hover > a .le-caret,
ul.primary-menu > li:hover > button.le-trigger .le-caret { transform: rotate(180deg); opacity: 1; }

/* Right caret for fly-out */
.le-caret-r { transform: rotate(-90deg); }
ul.sub-menu li:hover > a .le-caret-r { transform: rotate(-90deg); opacity: 1; }

/* ── FIRST-LEVEL DROPDOWN ── */
ul.sub-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 235px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  /* Smooth show/hide */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity     0.22s cubic-bezier(0.4,0,0.2,1),
    transform   0.22s cubic-bezier(0.4,0,0.2,1),
    visibility  0s   linear 0.22s;
  pointer-events: none;
}

/* Arrow tip */
ul.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 20px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(2,92,154,0.12);
}
ul.sub-menu::after {
  content: '';
  position: absolute;
  top: -5px; left: 21px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--white);
}

/* ── HOVER BRIDGE — invisible gap filler so mouse travel doesn't close dropdown ── */
ul.primary-menu > li::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0; right: 0;
  height: 10px;
  z-index: 1;
}

/* Show on hover */
ul.primary-menu > li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity   0.22s cubic-bezier(0.4,0,0.2,1),
    transform 0.22s cubic-bezier(0.4,0,0.2,1);
  pointer-events: all;
}

/* Dropdown links */
ul.sub-menu > li { position: relative; }
ul.sub-menu a,
ul.sub-menu button.le-trigger {
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 8px;
  gap: 10px;
  width: 100%;
}

/* ── DIVIDER ── */
li.le-div {
  height: 1px;
  background: var(--border-dark);
  margin: 6px 4px;
  pointer-events: none;
}
li.le-div > * { display: none; }

/* ── SECOND-LEVEL FLY-OUT ── */
ul ul ul.sub-menu {
  list-style: none;
  position: absolute;
  top: -9px;
  left: calc(100% + 4px);
  min-width: 180px;
  max-width: 240px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sub);

  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition:
    opacity     0.18s cubic-bezier(0.4,0,0.2,1),
    transform   0.18s cubic-bezier(0.4,0,0.2,1),
    visibility  0s   linear 0.18s;
  pointer-events: none;
}
ul ul ul.sub-menu::before,ul ul ul.sub-menu::after{display: none;}
/* Hover bridge for sub-dropdown */
ul.sub-menu li::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: -6px;
  width: 8px;
  z-index: 1;
}

ul.sub-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition:
    opacity   0.18s cubic-bezier(0.4,0,0.2,1),
    transform 0.18s cubic-bezier(0.4,0,0.2,1);
  pointer-events: all;
}

ul ul ul.sub-menu a {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  gap: 10px;
  width: 100%;
}
ul ul ul.sub-menu li:hover > a {
  color: var(--brand);
  background: var(--brand-pale);
}

/* ── HAMBURGER ── */
.le-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
  margin-left: auto;
}
.le-burger:hover,.le-burger:focus { background:none; }
.le-burger:hover span,.le-burger.open span{background: var(--brand);}
.le-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transform-origin: center;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}
.le-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.le-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.le-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-item-has-children{position: relative;}
.menu-item-has-children::after{content: "\f107"; position:absolute; right: 10px; top: 11px; font-family: "Font Awesome 6 Free"; font-weight: 600; font-size: 11px;}
.sub-menu .menu-item-has-children::after{content: "\f105";}


/**************************************  
        END NAVIGATION MENU
**************************************/

/* HERO */
#hero {
    background: url(../images/liposedge-banner-1.jpg) #041420 no-repeat center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    padding: 70px 50px;
    color: #FFF;
    }

#hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 10px; /* optional */
    align-items: center;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

#hero model-viewer{
  height: 500px;
  width: 100%;
  display: block;
}

.banner-cta-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 500;
    border: 2px solid var(--main-color);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-cta-btn:hover {
    background-color: #48b0ff;
    border: 2px solid #48b0ff;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(34, 152, 242, 0.2) 
}

.banner-left .banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
  }

  .banner-left .banner-title span {
    font-weight: 300;
    font-size: 30px;
    text-transform: capitalize;
    letter-spacing: 1.5px;
  }


#expertModal{display: none;}


/* ***************INTRODUCTION*************** */
  .liposome-introduction {
    position: relative;
    background: url(../images/liposome-bg.jpg) no-repeat right top;
    background-size: cover;
    padding: 80px 20px 40px;
    overflow: hidden;
  }

  .liposome-introduction::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f7fbff 20%, rgba(247,251,255,0));
    z-index: 1;
  }

  .liposome-introduction .container,
  .carousel-wrapper {
    position: relative;
    z-index: 2;
  }

  .liposome-introduction .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-content {
    max-width: 50%;
    flex-shrink: 0;
  }


  .liposome-introduction p.description {
    color: #5a6b82;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
  }

  /* CAROUSEL  — shared base styles */
  .carousel-wrapper {
    max-width: var(--container);
    margin: 40px auto 0;
    padding: 0 20px;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
  }
  .card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: opacity 0.4s, transform 0.4s, box-shadow 0.4s;
  }

  .card img {
    width: 100%;
    border-radius: 10px;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .card h3 {
    margin-top: 14px;
    font-size: 16px;
    color: var(--brand-dark);
  }

  .card p {
    color: #7a8fa8;
    font-size: 13px;
    margin-top: 4px;
  }

  .carousel-dots {
    margin-top: 18px;
    text-align: center;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .dot.active {
    background: #2f5fa7;
    transform: scale(1.3);
  }


/* ************************************THE JOURNEY OF LIPOSOMES********************************** */
#journey{
  position: relative;
  background: #ebf3ff;
}

.deco-liposome {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-45%);
  width: 210px; height: 210px;
  pointer-events: none; z-index: 0;
}
.deco-network {
  position: absolute; left: 28px; bottom: 180px;
  width: 100px; height: 120px;
  pointer-events: none; z-index: 0;
}



/* ═══════════════════════════════════════════
   TIMELINE OUTER — centers the block
═══════════════════════════════════════════ */
.timeline-outer {
  display: flex; justify-content: center;
  position: relative; z-index: 1;
}
.timeline-block {
  position: relative;
}
/* Vertical center line */
.timeline-block::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: #d0dce8;
  transform: translateX(-50%); z-index: 0;
}

/* ═══════════════════════════════════════════
   tl-item  ← THE SINGLE REPEATING UNIT
   Every item in the loop outputs this exact
   same HTML structure. CSS nth-child handles
   all left/right + blue/orange differences.
═══════════════════════════════════════════ */
.tl-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

/* stagger */
.tl-item:nth-child(1){animation-delay:.10s}
.tl-item:nth-child(2){animation-delay:.20s}
.tl-item:nth-child(3){animation-delay:.30s}
.tl-item:nth-child(4){animation-delay:.40s}
.tl-item:nth-child(5){animation-delay:.50s}
.tl-item:nth-child(6){animation-delay:.60s}
.tl-item:nth-child(7){animation-delay:.70s}

/* ── SLOT: left half and right half ── */
.tl-slot {
  width: 50%;
  display: flex;
  align-items: flex-start;
}

/*
  HTML order is always: [tl-slot--empty] ... [tl-slot--card]
  ODD  rows → card on RIGHT (natural order, right padding)
  EVEN rows → card on LEFT  (swap via order, left padding)
*/
.tl-item:nth-child(odd)  .tl-slot--empty { order: 1; }
.tl-item:nth-child(odd)  .tl-slot--card  { order: 2; justify-content: flex-start; padding: 10px 0 10px 52px; }

.tl-item:nth-child(even) .tl-slot--card  { order: 1; justify-content: flex-end;   padding: 10px 52px 10px 0; }
.tl-item:nth-child(even) .tl-slot--empty { order: 2; }

/* ── DOT on the center line ── */
.tl-dot {
  position: absolute;
  left: 50%; top:30px;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #3b82d4; /* blue for odd */
  z-index: 3;
  transition: transform 0.22s;
}
/* ODD rows → orange dot */
.tl-item:nth-child(odd) .tl-dot { border-color: #e87722; }
/* EVEN rows → blue dot (default already blue, but be explicit) */
.tl-item:nth-child(even) .tl-dot { border-color: #3b82d4; }
.tl-item:hover .tl-dot { transform: translateX(-50%) scale(1.2); }

/* ── CONNECTOR LINE: card edge → dot ── */
.card-wrap {
  position: relative;
  width: 100%;
}
/* ODD: card is on RIGHT → connector goes left from card toward dot */
.tl-item:nth-child(odd) .card-wrap::before {
  content: '';
  position: absolute;
  left: -52px; top: 30px;
  width: 52px; height: 1.5px;
  background: #d0dce8;
}
/* EVEN: card is on LEFT → connector goes right from card toward dot */
.tl-item:nth-child(even) .card-wrap::after {
  content: '';
  position: absolute;
  right: -52px; top: 30px;
  width: 52px; height: 1.5px;
  background: #d0dce8;
}

/* ═══════════════════════════════════════════
   CARD  — same HTML, CSS handles color
═══════════════════════════════════════════ */
.jl-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 18px rgba(20,50,110,0.08);
  width: 100%;
  border-left: 4px solid #e87722; /* orange for ODD (right side) */
  transition: box-shadow 0.22s, transform 0.22s;
}
.jl-card:hover {
  box-shadow: 0 6px 30px rgba(20,50,110,0.13);
  transform: translateY(-2px);
}
/* EVEN rows → blue border */
.tl-item:nth-child(even) .jl-card { border-left-color: #2563c9; }

/* ── card top row: icon-box + text + btn ── */
.card-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Icon box — hidden by default, shown only for item 1 */
.card-icon {
  display: none;
  width: 62px; height: 62px; min-width: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5a040, #e87722);
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(232,119,34,0.28);
  flex-shrink: 0;
}
.card-icon svg { width: 32px; height: 32px; }
/* Show icon only on the first item */
.tl-item:nth-child(1) .card-icon { display: flex; }

.card-text { flex: 1; min-width: 0; }

.card-title {
  
  font-size: 15px; font-weight: 700;
  color: #d96800; /* orange for ODD (right side) */
  margin-bottom: 5px; line-height: 1.35;
}
/* EVEN → blue title */
.tl-item:nth-child(even) .card-title { color: #1a4fa8; }

.card-desc {
  font-size: 13px; color: #7080a0; line-height: 1.62;
}

/* ── + BUTTON ── */
.plus-btn {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%; border: none;
  background: #e87722; /* orange for ODD (right side) */
  color: #fff; font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(232,119,34,0.30);
  transition: background 0.18s, transform 0.32s cubic-bezier(0.4,0,0.2,1);
  padding-bottom: 1px; line-height: 1;
}
.plus-btn:hover { background: #c96010; }
/* EVEN → blue button */
.tl-item:nth-child(even) .plus-btn {
  background: #2563c9;
  box-shadow: 0 2px 8px rgba(37,99,201,0.28);
}
.tl-item:nth-child(even) .plus-btn:hover { background: #1a4fa8; }
/* Rotated state when open */
.plus-btn.open { transform: rotate(45deg); }

/* ═══════════════════════════════════════════
   EXPANDABLE SECTION
═══════════════════════════════════════════ */
.card-extra {
  overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease, padding-top 0.3s;
  padding-top: 0;
}
.card-extra.open {
  max-height: 300px; opacity: 1; padding-top: 13px;
}
.card-extra-inner {
  border-top: 1px solid #f3dfc8; /* orange tint for ODD */
  padding-top: 12px;
  font-size: 13px; color: #7080a0; line-height: 1.7;
}
/* EVEN → blue tint divider */
.tl-item:nth-child(even) .card-extra-inner { border-top-color: #e6eef8; }
.card-extra-inner strong { color: #1a2338; font-weight: 600; }
.card-extra-inner ul { padding-left: 16px; margin-top: 6px; }
.card-extra-inner li { margin-bottom: 3px; }

/* ═══════════════════════════════════════════
   CTA
═══════════════════════════════════════════ */
.cta-wrap {
  display: flex; justify-content: center;
  margin-top: 50px; position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.5s ease 0.82s forwards;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: none; border-radius: 50px;
  padding: 14px 34px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: #1a4fa8; cursor: pointer; text-decoration: none;
  box-shadow: 0 2px 18px rgba(20,50,110,0.10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cta-btn:hover { box-shadow: 0 6px 28px rgba(20,50,110,0.16); transform: translateY(-2px); }
.cta-btn svg { width: 17px; height: 17px; }


/* ********************************************LIPOSOME SECTION************************************ */
.section-entry__banner {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url(../images/section-header-bg.jpg) #04111f no-repeat right center;
  background-size: cover;
  padding: 0 40px;
  text-align: center;
}

/* right-side image panel */
.section-entry__banner-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-entry__banner-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(0.5);
}
/* diagonal dark mask — covers left ~55%, fades into image */
.section-entry__banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(4,17,31,0.40) 0%, rgba(4,17,31,0.8) 25%, rgba(4,17,31,1) 50%, rgba(4,17,31,.8) 75%, rgba(4,17,31,0.40) 100%  );
}

/* subtle dot grid — only on dark zone */
.section-entry__banner::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(rgba(34,152,242,0.2) 1px, transparent 1px);
  background-size: 24px 24px;
  /* mask it to only show left portion */
  -webkit-mask-image: linear-gradient(to right, transparent 0%,  black 50%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%,  black 50%, transparent 100%);
}

/* large ghost number behind title */
.section-entry__banner-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  /* z-index: 1; */
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -8px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(34,152,242,0.2);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* inner content */
.section-entry__banner-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

/* eyebrow pill */
.section-entry__banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  opacity: 0;
  animation: bEntryUp .5s ease .05s forwards;
}
.section-entry__banner-eyebrow-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--main-color);
  flex-shrink: 0;
}
.section-entry__banner-eyebrow-text {
  font-size: 12px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--main-color);
}

/* main title */
.section-entry__banner-title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
  color: #fff;
  max-width: 620px;
  opacity: 0;
  animation: bEntryUp .6s ease .15s forwards;
  position: relative;
}
.section-entry__banner-title span {
  /* animated underline on keyword */
  position: relative;
  color: var(--main-color);
}
.section-entry__banner-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 1px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, rgba(34,152,242,0), var(--main-color), rgba(34,152,242,0));
  border-radius: 2px;
  transform: translateX(-50%);
  animation: bUnderline .7s ease .8s forwards;
}
@keyframes bUnderline { to { width: 100%; } }

@keyframes bEntryUp {
  from { opacity:0; transform: translateY(14px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION BODY — exactly as previous best version
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-entry__body {
  padding: 90px 24px 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
/* faint bg dot pattern */
.section-entry__body::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(2,92,154,0.055) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* grid — text left, image right */
.section-entry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* TEXT SIDE */
.section-entry__content {
  opacity: 0;
  animation: entrySlideLeft .7s ease .1s forwards;
}

.section-entry__heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800; line-height: 1.18;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.section-entry__heading em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  display: inline-block;
}

.section-entry__text {
  font-size: 15px; line-height: 1.82;
  color: var(--muted);
  margin-bottom: 36px;
}

/* stat pills */
.section-entry__stats {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.entry-stat {
  display: flex; align-items: center; gap: 10px;
  background: var(--brand-pale);
  border: 1px solid rgba(2,92,154,0.12);
  border-radius: 50px;
  padding: 10px 18px;
  transition: transform .2s, box-shadow .2s;
}
.entry-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2,92,154,0.12);
}
.entry-stat__icon {
	width: 30px; height: 30px; border-radius: 50%;
	background: var(--brand);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	color: #FFF;
	font-weight: 300;
	font-size: 14px;
}

.entry-stat__text {
  font-size: 12px; font-weight: 600;
  color: var(--brand-dark); letter-spacing: .3px;
}

/* IMAGE SIDE */
.section-entry__visual {
  position: relative;
  opacity: 0;
  animation: entrySlideRight .7s ease .25s forwards;
}
.section-entry__visual::before {
  content: ""; position: absolute;
  top: -14px; right: -14px;
  width: 70px; height: 70px;
  border-top: 3px solid var(--main-color);
  border-right: 3px solid var(--main-color);
  border-radius: 0 10px 0 0;
  z-index: 2; opacity: .6;
}
.section-entry__visual::after {
  content: ""; position: absolute;
  bottom: -14px; left: -14px;
  width: 70px; height: 70px;
  border-bottom: 3px solid var(--main-color);
  border-left: 3px solid var(--main-color);
  border-radius: 0 0 0 10px;
  z-index: 2; opacity: .6;
}
.section-entry__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2,92,154,0.18);
}
.section-entry__img-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,152,242,0.10) 0%, transparent 60%);
  transition: opacity .4s; opacity: 0;
}
.section-entry__img-wrap:hover::after { opacity: 1; }
.section-entry__img-wrap img {
  width: 100%;
  height:500px;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}
.section-entry__img-wrap:hover img { transform: scale(1.03); }

/* floating badge */
.section-entry__badge {
  position: absolute;
  bottom: 22px; left: 22px; z-index: 3;
  background: rgba(1,36,64,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34,152,242,0.25);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-entry__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d46a;
  box-shadow: 0 0 0 3px rgba(34,212,106,0.25);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,212,106,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(34,212,106,0.10); }
}
.section-entry__badge-text {
  font-size: 11px; font-weight: 600;
  color: #fff; letter-spacing: .5px; line-height: 1.3;
}
.section-entry__badge-text span {
  display: block; font-size: 10px; font-weight: 400;
  color: rgba(255,255,255,0.55); margin-top: 1px;
}

/* animations */
@keyframes entrySlideLeft {
  from { opacity:0; transform:translateX(-32px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes entrySlideRight {
  from { opacity:0; transform:translateX(32px); }
  to   { opacity:1; transform:translateX(0); }
}





/* ********************************************FAQS*********************************************** */
.section-faqs__banner {
  position: relative;
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1e35 0%, #013d6b 55%, #025c9a 100%);
}
.section-faqs__banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 350px at 80% 50%, rgba(34,152,242,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 400px 200px at 10% 60%, rgba(1,74,125,0.35) 0%, transparent 60%);
  pointer-events: none;
}

/* floating orbs */
.section-faqs__banner .faqs-orb {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(34,152,242,0.22);
  animation: faqsFloatOrb 8s ease-in-out infinite;
}
.faqs-orb--1 { width:110px; height:110px; top:12%; left:5%;   animation-delay:0s;   }
.faqs-orb--2 { width: 60px; height: 60px; top:55%; left:18%;  animation-delay:2s;   }
.faqs-orb--3 { width: 80px; height: 80px; bottom:8%; right:10%; animation-delay:4s; }
.faqs-orb--4 { width: 44px; height: 44px; top:18%; right:22%; animation-delay:1.5s; }
@keyframes faqsFloatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-12px) scale(1.04); }
}

.section-faqs__banner-inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 40px 20px;
}
.section-faqs__eyebrow {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(34,152,242,0.9);
  border: 1px solid rgba(34,152,242,0.28);
  padding: 5px 16px; border-radius: 20px;
  margin-bottom: 16px;
}
.section-faqs__title {
  font-size: clamp(24px, 4.5vw, 50px);
  font-weight: 800; letter-spacing: 6px;
  color: #fff; text-transform: uppercase; line-height: 1.1;
}
.section-faqs__title span { color: var(--main-color); }
.section-faqs__divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--main-color), transparent);
  margin: 16px auto 0; border-radius: 2px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION BODY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-faqs__body {
  padding: 80px 24px 100px;
  background: #f4f8fd;
}
.section-faqs__wrap {
  max-width: 1180px;
  margin: 0 auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TWO INDEPENDENT COLUMNS
   align-items:start = each col grows on its own
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-faqs__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.section-faqs__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ CARD
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faqs-item {
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
  opacity: 0;
  animation: faqsFadeUp .5s ease forwards;
}
.section-faqs__col:nth-child(1) .faqs-item:nth-child(1){animation-delay:.05s;}
.section-faqs__col:nth-child(1) .faqs-item:nth-child(2){animation-delay:.17s;}
.section-faqs__col:nth-child(1) .faqs-item:nth-child(3){animation-delay:.29s;}
.section-faqs__col:nth-child(1) .faqs-item:nth-child(4){animation-delay:.41s;}
.section-faqs__col:nth-child(2) .faqs-item:nth-child(1){animation-delay:.11s;}
.section-faqs__col:nth-child(2) .faqs-item:nth-child(2){animation-delay:.23s;}
.section-faqs__col:nth-child(2) .faqs-item:nth-child(3){animation-delay:.35s;}
.section-faqs__col:nth-child(2) .faqs-item:nth-child(4){animation-delay:.47s;}

.faqs-item:hover {
  box-shadow: var(--shadow);
  border-color: rgba(2,92,154,0.22);
}
.faqs-item.is-open {
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

/* top progress bar */
.faqs-item__bar {
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--main-color), var(--brand-dark));
  transition: width .45s cubic-bezier(.4,0,.2,1);
}
.faqs-item.is-open .faqs-item__bar { width: 100%; }

/* question row */
.faqs-item__head {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  cursor: pointer; user-select: none;
}
.faqs-item__num {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-pale); color: var(--brand);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.faqs-item.is-open .faqs-item__num { background: var(--brand); color: #fff; }

.faqs-item__question {
  flex: 1;
  font-size: 14px; font-weight: 500; line-height: 1.5;
  color: var(--text);
  transition: color .25s;
}
.faqs-item.is-open .faqs-item__question { color: var(--brand); }

.faqs-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s;
}
.faqs-item__icon svg {
  width: 12px; height: 12px;
  stroke: var(--muted);
  transition: transform .35s ease, stroke .25s;
}
.faqs-item.is-open .faqs-item__icon { background: var(--brand); border-color: var(--brand); }
.faqs-item.is-open .faqs-item__icon svg { transform: rotate(45deg); stroke: #fff; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANSWER — smooth height via CSS grid trick
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faqs-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1);
}
.faqs-item.is-open .faqs-item__body { grid-template-rows: 1fr; }
.faqs-item__body-inner { overflow: hidden; }
.faqs-item__answer {
  border-top: 1px solid var(--brand-pale);
  padding: 16px 22px 20px 68px;
  font-size: 13.5px; line-height: 1.78;
  color: var(--muted);
}
/* wysiwyg output resets */
.faqs-item__answer p              { margin: 0 0 10px; }
.faqs-item__answer p:last-child   { margin-bottom: 0; }
.faqs-item__answer ul,
.faqs-item__answer ol             { padding-left: 18px; margin: 6px 0 10px; }
.faqs-item__answer li             { margin-bottom: 4px; }
.faqs-item__answer a              { color: var(--brand); text-decoration: underline; }
.faqs-item__answer strong         { color: var(--text); }

@keyframes faqsFadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}




/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--footer-bg);
  font-family: var(--font);
}

.footer-inner {
  margin: 0 auto;
  padding: 64px 40px 0;
}

/* ── TOP DIVIDER LINE with logo centred ──────── */
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 52px;
}
.footer-brand-row__line {
  flex: 1;
  height: 1px;
  background: var(--footer-border);
}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.footer-logo span { color: var(--main-color); }

.footer-logo img{height: auto; width:170px;}

/* ── 4-COL GRID ──────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 52px;
}

/* column label */
.footer-col__title, .widget-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 20px;
}

/* ── COL 1: about ────────────────────────────── */
.footer-about__desc {
  font-size: 13.5px;
  line-height: 1.80;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.footer-socials {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social {
  width: 34px; height: 34px;
  border-radius: 6px;
  border: 1px solid var(--footer-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-social:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

/* ── COL 2 & 3: links ────────────────────────── */
.footer-links {
  list-style: none;
  display: flex; flex-direction: column;
}
.footer-links li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--footer-border);
  transition: color .2s, padding-left .2s;
}

.footer-links li a::before{content: "\f105"; font-family: "Font Awesome 6 Free"; font-weight: 600; font-size: 9px;color: var(--main-color);transition: transform .2s;}

.footer-links li:last-child a { border-bottom: none; }
.footer-links li a i {
  font-size: 9px;
  color: var(--main-color);
  transition: transform .2s;
}
.footer-links li a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-links li a:hover i { transform: translateX(2px); }

/* ── COL 4: contact + newsletter ─────────────── */
.footer-contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 28px;
}
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-contact-list li i {
  font-size: 13px;
  color: var(--main-color);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list li a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-list li a:hover { color: #fff; }

/* newsletter */
.footer-newsletter__text, .footer-col p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-newsletter__form p {
  display: flex;
  border: 1px solid var(--footer-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.footer-newsletter__form:focus-within {
  border-color: rgba(34,152,242,0.45);
}
.footer-newsletter__input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 13px;
  color: #fff;
  width: 100%;
}
.footer-newsletter__input::placeholder { color: rgba(255,255,255,0.20); }
.footer-newsletter__btn {
  background: var(--main-color);
  border: none; cursor: pointer;
  padding: 11px 16px;
  font-family: var(--font);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: #fff;
  transition: background .2s;
  white-space: nowrap;
}
.footer-newsletter__btn:hover { background: var(--brand-dark); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOTTOM BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-bottom {
  border-top: 1px solid var(--footer-border);
  margin-top: 0;
}
.footer-bottom__inner {
  
  margin: 0 auto;
  padding: 18px 40px;
}

.footer-bottom__inner .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom__copy span { color: var(--main-color); }
.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  
}
.footer-bottom__nav a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 2px 8px;
  transition: color .2s;
}
.footer-bottom__nav a:hover { color: #fff; }
.footer-bottom__nav .sep {
  color: var(--footer-border);
  font-size: 11px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:1024px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media(max-width:640px){
  .footer-inner { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom__inner { padding: 16px 20px; }
  .footer-bottom__inner .wrap { flex-direction: column; align-items: flex-start; }
  .footer-brand-row { margin-bottom: 36px; }
}

.wpcf7-spinner{display: none !important;}

#top {
  position: fixed;
  font-size: 0;
  color: transparent;
  left: 17px;
  bottom: 70px;
  width: 40px;
  height: 40px;
  background: url(../images/home-white.png) no-repeat var(--brand) center;
  border-radius: 4px;
  outline: 0;
  z-index: 10;
  border:none;
  transition:all 0.2s ease-in-out;
  cursor: pointer;
}
#top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

footer .wpcf7 form.sent .wpcf7-response-output{border: none; background: #46b450; color: #FFF; border-radius: 5px; font-size: 12.5px; padding: 5px 12px; margin: 5px 0;}

#sub-hero-section{position: relative; overflow: hidden; padding: 80px 20px; text-align: center; color: #FFF;}
#sub-hero-section img{position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;}
#sub-hero-section::before{background:rgb(0 37 59 / 72%); content: ""; width: 100%; height: 100%; z-index: 1; position: absolute; left: 0; top:0;}
#sub-hero-section .container{ max-width: 800px; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2;}
.sh-title{font-weight: 300; font-size: 36px; line-height: 42px;}
.breadcrumbs-wrapper{
  display: flex;
  justify-content: center;
}
.breadcrumbs-wrapper a{color: #64ccff;}
.rank-math-breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgb(255 255 255);
  letter-spacing: 1px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}


/* >>>>>>>>>>>>>>>>>>>SUPPORT POST<<<<<<<<<<<<<<<<<<<<<<< */
.hero {
  position: relative;
  background: linear-gradient(135deg, #e8f4f9 0%, #f2f9fc 50%, #e3f1f7 100%);
  overflow: hidden;
  padding: 96px 20px 80px;
  border-bottom: 1px solid #d1dce6;
}

/* ═══════════════════════════════════════════
   BACKGROUND LAYERS - MULTIPLE ANIMATED ELEMENTS
   ═══════════════════════════════════════════ */

/* Large gradient orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(4, 112, 187, 0.15) 0%, transparent 70%);
  top: -150px;
  right: 5%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: 10%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(125, 217, 245, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: orbFloat3 22s ease-in-out infinite;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(4, 112, 187, 0.08) 0%, transparent 70%);
  top: 20%;
  right: 40%;
  animation: orbFloat4 18s ease-in-out infinite;
}

@keyframes orbFloat{
  0%,100%{transform:translateY(0) scale(1)}
  50%{transform:translateY(-18px) scale(1.05)}
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(-60px, 80px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(40px, -50px) scale(0.9); opacity: 1; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(70px, -60px) scale(1.15); opacity: 0.85; }
  66% { transform: translate(-50px, 70px) scale(0.95); opacity: 1; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  50% { transform: translate(50px, 50px) scale(1.2) rotate(180deg); opacity: 0.9; }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  50% { transform: translate(-40px, 60px) scale(1.1) rotate(-180deg); opacity: 0.85; }
}

/* Floating circles (hollow liposome rings) */
.hero-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(4, 112, 187, 0.15);
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 12%;
  animation: circleFloat1 15s ease-in-out infinite;
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 25%;
  right: 15%;
  border-color: rgba(0, 180, 216, 0.12);
  animation: circleFloat2 18s ease-in-out infinite;
}

.circle-3 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 20%;
  border-color: rgba(125, 217, 245, 0.1);
  animation: circleFloat3 20s ease-in-out infinite;
}

.circle-4 {
  width: 90px;
  height: 90px;
  bottom: 15%;
  right: 10%;
  animation: circleFloat4 17s ease-in-out infinite;
}

.circle-5 {
  width: 50px;
  height: 50px;
  top: 45%;
  left: 8%;
  border-color: rgba(0, 180, 216, 0.1);
  animation: circleFloat5 16s ease-in-out infinite;
}

.circle-6 {
  width: 65px;
  height: 65px;
  top: 55%;
  right: 25%;
  border-color: rgba(125, 217, 245, 0.12);
  animation: circleFloat6 19s ease-in-out infinite;
}

@keyframes circleFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(40px, -50px) rotate(180deg); opacity: 1; }
}

@keyframes circleFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(-35px, 60px) rotate(-180deg); opacity: 0.9; }
}

@keyframes circleFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.55; }
  50% { transform: translate(50px, -40px) rotate(180deg); opacity: 0.95; }
}

@keyframes circleFloat4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(-45px, -55px) rotate(-180deg); opacity: 1; }
}

@keyframes circleFloat5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(30px, 45px) rotate(180deg); opacity: 0.85; }
}

@keyframes circleFloat6 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  50% { transform: translate(-40px, -30px) rotate(-180deg); opacity: 0.9; }
}

/* Glowing particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: #0470bb;
}

.particle-1 { width: 8px; height: 8px; top: 12%; left: 18%; 
  background: linear-gradient(135deg, #0470bb, #00b4d8);
  box-shadow: 0 0 20px rgba(4, 112, 187, 0.5);
  animation: particleFloat1 7s ease-in-out infinite; }

.particle-2 { width: 6px; height: 6px; top: 28%; right: 22%;
  background: linear-gradient(135deg, #00b4d8, #7dd9f5);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
  animation: particleFloat2 9s ease-in-out infinite; }

.particle-3 { width: 7px; height: 7px; bottom: 25%; left: 15%;
  background: linear-gradient(135deg, #7dd9f5, #a8edff);
  box-shadow: 0 0 18px rgba(125, 217, 245, 0.5);
  animation: particleFloat3 8s ease-in-out infinite; }

.particle-4 { width: 9px; height: 9px; bottom: 18%; right: 12%;
  background: linear-gradient(135deg, #0470bb, #00b4d8);
  box-shadow: 0 0 22px rgba(4, 112, 187, 0.5);
  animation: particleFloat4 10s ease-in-out infinite; }

.particle-5 { width: 5px; height: 5px; top: 48%; left: 8%;
  background: linear-gradient(135deg, #00b4d8, #7dd9f5);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.5);
  animation: particleFloat5 6s ease-in-out infinite; }

.particle-6 { width: 8px; height: 8px; top: 38%; right: 18%;
  background: linear-gradient(135deg, #7dd9f5, #a8edff);
  box-shadow: 0 0 20px rgba(125, 217, 245, 0.5);
  animation: particleFloat6 11s ease-in-out infinite; }

.particle-7 { width: 6px; height: 6px; top: 65%; left: 25%;
  background: linear-gradient(135deg, #0470bb, #00b4d8);
  box-shadow: 0 0 16px rgba(4, 112, 187, 0.5);
  animation: particleFloat7 7.5s ease-in-out infinite; }

.particle-8 { width: 7px; height: 7px; top: 22%; left: 45%;
  background: linear-gradient(135deg, #00b4d8, #7dd9f5);
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.5);
  animation: particleFloat8 8.5s ease-in-out infinite; }

.particle-9 { width: 5px; height: 5px; bottom: 35%; right: 28%;
  background: linear-gradient(135deg, #7dd9f5, #a8edff);
  box-shadow: 0 0 14px rgba(125, 217, 245, 0.5);
  animation: particleFloat9 9.5s ease-in-out infinite; }

.particle-10 { width: 8px; height: 8px; top: 52%; right: 8%;
  background: linear-gradient(135deg, #0470bb, #00b4d8);
  box-shadow: 0 0 20px rgba(4, 112, 187, 0.5);
  animation: particleFloat10 10.5s ease-in-out infinite; }

.particle-11 { width: 6px; height: 6px; bottom: 42%; left: 35%;
  background: linear-gradient(135deg, #00b4d8, #7dd9f5);
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.5);
  animation: particleFloat11 7.8s ease-in-out infinite; }

.particle-12 { width: 7px; height: 7px; top: 75%; right: 35%;
  background: linear-gradient(135deg, #7dd9f5, #a8edff);
  box-shadow: 0 0 18px rgba(125, 217, 245, 0.5);
  animation: particleFloat12 8.8s ease-in-out infinite; }

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(35px, -45px); opacity: 1; }
}

@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.45; }
  50% { transform: translate(-30px, 55px); opacity: 0.95; }
}

@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(45px, -35px); opacity: 1; }
}

@keyframes particleFloat4 {
  0%, 100% { transform: translate(0, 0); opacity: 0.48; }
  50% { transform: translate(-40px, -50px); opacity: 0.98; }
}

@keyframes particleFloat5 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(25px, 40px); opacity: 1; }
}

@keyframes particleFloat6 {
  0%, 100% { transform: translate(0, 0); opacity: 0.52; }
  50% { transform: translate(-35px, -40px); opacity: 1; }
}

@keyframes particleFloat7 {
  0%, 100% { transform: translate(0, 0); opacity: 0.48; }
  50% { transform: translate(40px, 45px); opacity: 0.98; }
}

@keyframes particleFloat8 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-25px, 35px); opacity: 1; }
}

@keyframes particleFloat9 {
  0%, 100% { transform: translate(0, 0); opacity: 0.46; }
  50% { transform: translate(38px, -42px); opacity: 0.96; }
}

@keyframes particleFloat10 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-32px, 48px); opacity: 1; }
}

@keyframes particleFloat11 {
  0%, 100% { transform: translate(0, 0); opacity: 0.48; }
  50% { transform: translate(28px, -38px); opacity: 0.98; }
}

@keyframes particleFloat12 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(-36px, -32px); opacity: 1; }
}

/* Connecting lines (molecular bonds) */
.hero-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connection-line {
  stroke: rgba(4, 112, 187, 0.15);
  stroke-width: 1.5;
  stroke-dasharray: 5, 5;
}

.line-1 { animation: lineAnimate1 8s ease-in-out infinite; }
.line-2 { animation: lineAnimate2 10s ease-in-out infinite; }
.line-3 { animation: lineAnimate3 9s ease-in-out infinite; }
.line-4 { animation: lineAnimate4 11s ease-in-out infinite; }

@keyframes lineAnimate1 {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.4; }
  50% { stroke-dashoffset: 20; opacity: 0.8; }
}

@keyframes lineAnimate2 {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.35; }
  50% { stroke-dashoffset: -20; opacity: 0.75; }
}

@keyframes lineAnimate3 {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.4; }
  50% { stroke-dashoffset: 20; opacity: 0.8; }
}

@keyframes lineAnimate4 {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.38; }
  50% { stroke-dashoffset: -20; opacity: 0.78; }
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 112, 187, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 112, 187, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
  animation: gridDrift 30s linear infinite;
  z-index: 1;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

/* Wave pattern at bottom */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  pointer-events: none;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
}

.wave-1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,50 Q300,10 600,50 T1200,50 L1200,120 L0,120 Z' fill='rgba(4,112,187,0.03)'/%3E%3C/svg%3E");
  animation: waveDrift1 15s linear infinite;
  opacity: 0.5;
}

.wave-2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,70 Q300,30 600,70 T1200,70 L1200,120 L0,120 Z' fill='rgba(0,180,216,0.02)'/%3E%3C/svg%3E");
  animation: waveDrift2 20s linear infinite;
  opacity: 0.6;
}

@keyframes waveDrift1 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes waveDrift2 {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   CONTENT STYLES - CLEAN & PROFESSIONAL
   ═══════════════════════════════════════════ */

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d1dce6;
  border-radius: 100px;
  padding: 6px 18px 6px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4a5f7a;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.badge-dot {
  width: 8px; 
  height: 8px;
  border-radius: 50%;
  background: #0470bb;
  box-shadow: 0 0 0 3px rgba(4, 112, 187, 0.15);
  animation: badgePulse 2.2s infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(4, 112, 187, 0.15);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(4, 112, 187, 0.1);
  }
}

/* Heading */
.hero h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  color: var(--brand-mid);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(90deg, #0470bb 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 16px;
  color: #4a5f7a;
  font-weight: 400;
  line-height: 1.85;
}

/* Clean professional panel */
.hero-panel {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d1dce6;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.02);
}

.hero-panel__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7a8fa6;
  margin-bottom: 4px;
}

/* Clean chips */
.hero-chip {
  background: #f8fafb;
  border: 1px solid #e5eaf0;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s ease;
  cursor: pointer;
}

.hero-chip:hover { 
  background: #ffffff;
  border-color: #0470bb;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(4, 112, 187, 0.08);
}

.hero-chip__icon {
  width: 36px; 
  height: 36px;
  border-radius: 8px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.hero-chip .hero-chip__icon svg{
  width: 22px;
}

.hero-chip:hover .hero-chip__icon {
  transform: scale(1.1);
}


.hero-chip-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Icon colors */
.hero-chip:nth-child(odd) .hero-chip__icon { 
  background: #e8f4f8; 
  color: #0470bb;
  border: 1px solid #d1e8f2;
}

.hero-chip:nth-child(even) .hero-chip__icon { 
  background: #e8f8f5; 
  color: #00b4d8;
  border: 1px solid #d1f0ea;
}

.hero-chip__name { 
  font-size: 13px; 
  font-weight: 600; 
  color: #1a2b3d;
}

.hero-chip__sub { 
  font-size: 11px; 
  color: #7a8fa6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-panel {
    max-width: 500px;
    margin: 0 auto;
  }
}



/* Hero stat pills */
.hero-pills {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgb(4 112 187 / 82%);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,1);
  backdrop-filter: blur(6px);
}
.pill i { color: var(--accent-light); font-size: 11px; }


/* ══════════════════════════════════════════
    SECTIONS
══════════════════════════════════════════ */
.section         { padding: var(--gap) 20px; }
.section--alt{background:linear-gradient(170deg,#f3f8fd 0%,#eaf3fb 100%)}
.section--gray   { background: var(--off-white); }
.section--dark   {
  background:linear-gradient(135deg,#010f1e 0%,#013463 55%,#025c9a 100%);color:#fff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(4,112,187,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 5% 80%,  rgba(0,180,216,.12) 0%, transparent 55%);
  pointer-events: none;
}
.section--dark .section__inner { position: relative; z-index: 1; }

/* ── SPLIT LAYOUT (text + image) ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ACF-safe alternating: nth-child on .split-block reverses order */
.split-block:nth-child(even) .split {
  direction: rtl;
}
.split-block:nth-child(even) .split > * {
  direction: ltr;
}

/* Image frame */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}


.img-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform .6s ease;
  box-shadow: var(--shadow-lg);
}
.img-frame:hover img { transform: scale(1.03); }

/* Dark section image overlay */
.img-frame--dark img {
  filter: brightness(.88) saturate(1.05);
}

/* ── BULLET LIST ── */

.process-block h2, .process-block h3, .process-block h4, .process-block h5, .process-block h6{
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.process-block h2 i, .process-block h3 i, .process-block h4 i, .process-block h5 i, .process-block h6 i,.process-block h2 em, .process-block h3 em, .process-block h4 em, .process-block h5 em, .process-block h6 em{
  font-style: normal;
  color: var(--brand-mid);
}

.blist{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-block ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}


.process-block ul li{
  position: relative;  
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand);;
  background: var(--white);
  transition: box-shadow .28s, transform .28s;
  padding:16px 20px 16px 40px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.process-block ul li b,.process-block ul li strong{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 2px;
}

.process-block p{
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

.process-block ul li::before{
  content:'\f058';  
  position:absolute;
  left: 13px;
  top: 15px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--brand);
}


.split-block:nth-child(even){
  background: var(--brand-deep);
  position: relative;
  overflow: hidden;
}


.split-block:nth-child(even) .process-block ul li::before{
  color: var(--accent);
}


.split-block:nth-child(even) .process-block ul li b,.split-block:nth-child(even) .process-block ul li strong{
  color: var(--accent);
}

.split-block:nth-child(even) .process-block ul li{
  color: rgba(255,255,255,.9);
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .09);
  border-left-color: var(--accent);
}

.split-block:nth-child(even) .process-block ul li ul li{
  background:none;
  border-radius:none;
  border:0;
  transition: box-shadow .28s, transform .28s;
  padding:0 0 0 20px;
  overflow: auto;
}

.process-block ul li ul{padding-top: 12px;}

.process-block ul li ul li::before{
  content:'\f105';  
  left: 0;  
  top: 0;
}

.split-block:nth-child(even) .process-block p{
  color: rgba(255,255,255,.6);
}
.split-block:nth-child(even) .process-block ul li strong{
  color: var(--white);
}

.split-block:nth-child(even) .subtitle, .split-block:nth-child(even) .eyebrow {
  color: rgba(255,255,255,.7);
}

.split-block:nth-child(even) .eyebrow i { color: var(--accent);}

.split-block:nth-child(even) .process-block h2, .split-block:nth-child(even) .process-block h3, .split-block:nth-child(even) .process-block h4, .split-block:nth-child(even) .process-block h5, .split-block:nth-child(even) .process-block h6{
  color: var(--white);
}

.split-block:nth-child(even) .process-block h2 i, 
.split-block:nth-child(even) .process-block h3 i, 
.split-block:nth-child(even) .process-block h4 i, 
.split-block:nth-child(even) .process-block h5 i, 
.split-block:nth-child(even) .process-block h6 i,
.split-block:nth-child(even) .process-block h2 em, 
.split-block:nth-child(even) .process-block h3 em, 
.split-block:nth-child(even) .process-block h4 em, 
.split-block:nth-child(even) .process-block h5 em, 
.split-block:nth-child(even) .process-block h6 em{
  color: var(--white);
}

/* Odd: bottom-right accent corner */
.split-block:nth-child(odd)  .img-frame::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  opacity: .25;
  z-index: -1;
}
/* Even: top-left accent corner */
.split-block:nth-child(even) .img-frame::after {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  opacity: .22;
  z-index: -1;
}

.bitem {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: box-shadow .28s, transform .28s;
}
.section--gray .bitem { background: var(--white); }
.bitem:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }

/* Accent strip — nth-child on bitem */
.bitem__strip {
  width: 4px;
  flex-shrink: 0;
}
.bitem:nth-child(odd)  .bitem__strip { background: var(--brand); }
.bitem:nth-child(even) .bitem__strip { background: var(--accent); }

.bitem__icon {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  font-size: 14px;
}
.bitem:nth-child(odd)  .bitem__icon { color: var(--brand); }
.bitem:nth-child(even) .bitem__icon { color: var(--accent); }

.bitem__body { padding: 16px 18px 16px 4px; }
.bitem__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.bitem__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Dark variant bullet items */
.bitem--dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.09);
}
.bitem--dark:hover { box-shadow: 0 8px 32px rgba(0,0,0,.2); transform: translateX(3px); }
.bitem--dark .bitem__strip { opacity: .8; }
.bitem--dark .bitem__title { color: var(--white); }
.bitem--dark .bitem__text  { color: rgba(255,255,255,.6); }
.bitem--dark .bitem__icon  { opacity: .85; }


.sec-cont h2,.sec-cont h3,.sec-cont h4,.sec-cont h5,.sec-cont h6 {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.sec-cont h2 i, .sec-cont h3 i, .sec-cont h4 i, .sec-cont h5 i, .sec-cont h6 i,.sec-cont h2 em, .sec-cont h3 em, .sec-cont h4 em, .sec-cont h5 em, .sec-cont h6 em{
  font-style: normal;
  color: var(--brand-mid);
}

.section--dark .sec-cont h2,.section--dark .sec-cont h3,.section--dark .sec-cont h4,.section--dark .sec-cont h5,.section--dark .sec-cont h6{
  color: var(--white);
}
.sec-cont h2 i, .sec-cont h3 i, .sec-cont h4 i, .sec-cont h5 i, .sec-cont h6 i,.sec-cont h2 em, .sec-cont h3 em, .sec-cont h4 em, .sec-cont h5 em, .sec-cont h6 em{
  color: #7dd9f5;
}

/* ══════════════════════════════════════════
    PRODUCT-SPECIFIC TESTING — 4-col cards
══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.scard {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.scard:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Top colour bar via nth-child */
.scard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.scard:nth-child(1)::before { background: linear-gradient(90deg, var(--brand), var(--brand-mid)); }
.scard:nth-child(2)::before { background: linear-gradient(90deg, var(--accent), #48cae4); }
.scard:nth-child(3)::before { background: linear-gradient(90deg, #f4a261, #e76f51); }
.scard:nth-child(4)::before { background: linear-gradient(90deg, #74c69d, #52b788); }

.scard__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}
.scard:nth-child(1) .scard__icon { background: var(--brand-light);  color: var(--brand); }
.scard:nth-child(2) .scard__icon { background: var(--accent-light);  color: #0096b4; }
.scard:nth-child(3) .scard__icon { background: #fde8d8; color: #c15a2a; }
.scard:nth-child(4) .scard__icon { background: #d8f3dc; color: #2d6a4f; }

.scard__title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.scard__body  { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════
    TROUBLESHOOTING — 2×2 grid
══════════════════════════════════════════ */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.tcard {
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid transparent;
  transition: transform .28s, box-shadow .28s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.tcard:nth-child(odd)  { background: var(--brand-xlight); border-color: var(--border-light); }
.tcard:nth-child(even) { background: var(--white);        border-color: var(--border); }

.tcard__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--white);
}
.tcard:nth-child(odd)  .tcard__icon { background: var(--brand); }
.tcard:nth-child(even) .tcard__icon { background: var(--accent); }

.tcard__title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.tcard__body  { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════
    ANALYTICAL READINESS — 4-step row
    ACF-safe: nth-child for delays, no d1/d2/d3
══════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}

.step {
  padding: 36px 28px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .28s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(255,255,255,.08); }

/* nth-child accent colours — no manual delay classes needed */
.step:nth-child(1) .step__num { color: #7dd9f5; }
.step:nth-child(2) .step__num { color: #74c69d; }
.step:nth-child(3) .step__num { color: #ffd166; }
.step:nth-child(4) .step__num { color: #ef8a75; }

.step:nth-child(1) .step__icon { background: rgba(125,217,245,.15); color: #7dd9f5; }
.step:nth-child(2) .step__icon { background: rgba(116,198,157,.15); color: #74c69d; }
.step:nth-child(3) .step__icon { background: rgba(255,209,102,.15); color: #ffd166; }
.step:nth-child(4) .step__icon { background: rgba(239,138,117,.15); color: #ef8a75; }

/* Scroll reveal delay via nth-child — ACF repeater safe */
.steps-row .step:nth-child(1) { transition-delay: .05s; }
.steps-row .step:nth-child(2) { transition-delay: .15s; }
.steps-row .step:nth-child(3) { transition-delay: .25s; }
.steps-row .step:nth-child(4) { transition-delay: .35s; }

.step__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  margin-bottom: 18px;
}
.step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.step__title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.step__body  { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.75; }

/* Outro box */
.readiness-box {
  margin-top: 36px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.readiness-box i { color: var(--accent); font-size: 18px; margin-top: 2px; flex-shrink: 0; }

/* Image below readiness */
.readiness-img {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.readiness-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(.9) saturate(1.05);
}

/* ══════════════════════════════════════════
    WHY COLLABORATE
══════════════════════════════════════════ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 52px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  border: 1px solid var(--border-light);
  border-left: 4px solid transparent;
  transition: transform .25s, box-shadow .25s;
}
.why-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }

/* nth-child left-border colour */
.why-item:nth-child(odd)  { border-left-color: var(--brand); }
.why-item:nth-child(even) { border-left-color: var(--accent); }

/* nth-child icon bg */
.why-item:nth-child(odd)  .why-icon { background: var(--brand-light);  color: var(--brand); }
.why-item:nth-child(even) .why-icon { background: var(--accent-light);  color: #007ea5; }

.why-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.why-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 3px; }
.why-body  { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════
       CTA
    ══════════════════════════════════════════ */
.cta {
  position: relative;
  background: var(--brand-dark);
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 120%, rgba(4,112,187,.4) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% -10%, rgba(0,180,216,.15) 0%, transparent 55%);
  pointer-events: none;
}
/* Grid lines */
.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.cta p {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all .25s;
}
.btn--solid {
  background: var(--white);
  color: var(--brand);
}
.btn--solid:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.06); }

/* ══════════════════════════════════════════
    SCROLL REVEAL
    ACF-safe: delays on children via nth-child
    in CSS, not inline d1/d2/d3 classes
══════════════════════════════════════════ */
@keyframes fadeUp{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideR{from{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:none}}
@keyframes pulse{0%,100%{opacity:.6}50%{opacity:1}}
@keyframes shimmer{0%{transform:translateX(-100%)}100%{transform:translateX(100%)}}
.reveal{opacity:0;transform:translateY(32px);transition:opacity 0.65s cubic-bezier(.22,.8,.36,1),transform 0.65s cubic-bezier(.22,.8,.36,1)}
.reveal.on{opacity:1;transform:none}
.reveal.in { opacity: 1; transform: none; }
.reveal-r{opacity:0;transform:translateX(-30px);transition:opacity 0.65s cubic-bezier(.22,.8,.36,1),transform 0.65s cubic-bezier(.22,.8,.36,1)}
.reveal-r.on{opacity:1;transform:none}

/* Grid children stagger via nth-child — works in any ACF loop */
.cards-grid  .scard:nth-child(1) { transition-delay: .05s; }
.cards-grid  .scard:nth-child(2) { transition-delay: .13s; }
.cards-grid  .scard:nth-child(3) { transition-delay: .21s; }
.cards-grid  .scard:nth-child(4) { transition-delay: .29s; }

.trouble-grid .tcard:nth-child(1) { transition-delay: .05s; }
.trouble-grid .tcard:nth-child(2) { transition-delay: .13s; }
.trouble-grid .tcard:nth-child(3) { transition-delay: .21s; }
.trouble-grid .tcard:nth-child(4) { transition-delay: .29s; }

.why-list .why-item:nth-child(1) { transition-delay: .04s; }
.why-list .why-item:nth-child(2) { transition-delay: .10s; }
.why-list .why-item:nth-child(3) { transition-delay: .16s; }
.why-list .why-item:nth-child(4) { transition-delay: .22s; }
.why-list .why-item:nth-child(5) { transition-delay: .28s; }


/* GLOBAL IMPACT */
/* ═══════════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════════ */
.lipo-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 70px 40px 80px;
}
@media(max-width:768px){ .lipo-wrap{ padding:50px 20px 60px; } }

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.lipo-header {
  text-align: center;
  margin-bottom: 56px;
}
.lipo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin-bottom: 14px;
}
.lipo-eyebrow::before,
.lipo-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--eyebrow);
  opacity: .45;
}
.lipo-title {
  
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brand-mid);
  line-height: 1.1;
  margin-bottom: 14px;
}
.lipo-subtitle {
  font-size: clamp(.88rem, 1.8vw, 1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   DIVIDER BETWEEN SECTIONS
═══════════════════════════════════════════ */
.lipo-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  margin-top: 60px;
}
.lipo-section-label:first-child { margin-top: 0; }
.lipo-section-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.lipo-section-label-text {
  
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-mid);
  white-space: nowrap;
  padding: 5px 14px;
  background: var(--brand-pale);
  border-radius: 99px;
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   CARD BASE
═══════════════════════════════════════════ */
.lc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
}
.lc-title {  
  font-size: 20px;
  font-weight: 500;
  color: var(--brand-mid);
  line-height: 1.25;
  margin-bottom: 2px;
}
.lc-desc{ font-size: 14px; }

/* Icon bubble */
.lib {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lib svg { width: 19px; height: 19px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lib.blue   { background: var(--blue-lt);   } .lib.blue svg   { stroke: var(--blue); }
.lib.green  { background: var(--green-lt);  } .lib.green svg  { stroke: var(--green); }
.lib.purple { background: var(--purple-lt); } .lib.purple svg { stroke: var(--purple); }
.lib.amber  { background: var(--amber-lt);  } .lib.amber svg  { stroke: var(--amber); }

/* Card header row */
.lc-hdr {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
}

/* ═══════════════════════════════════════════
   SECTION 1 — GLOBAL OVERVIEW
   TOP: line chart (left) + journey card (right)
═══════════════════════════════════════════ */
.ov-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}
@media(max-width:820px){ .ov-top{ grid-template-columns:1fr; } }

/* ── Left: Line Chart ── */
.ov-chart-card { display: flex; flex-direction: column; }

/* SVG chart styles */
.lcs-grid { stroke: #E2E8F0; stroke-width: 1; stroke-dasharray: 4 3; }
.lcs-axis { font-size: 11px; fill: #94A3B8;  }
.lcs-area { fill: url(#lcGrad); }
.lcs-line { fill: none; stroke: var(--blue); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.lcs-dot  { fill: var(--blue); stroke: #fff; stroke-width: 3; }
.lcs-val  {font-size: 12px; font-weight: 700; fill: var(--blue); }

/* Highlight strip */
.hl-strip {
  display: flex; align-items: center; gap: 12px;
  background: #EFF6FF; border-radius: 10px;
  padding: 14px 16px; margin-top: 16px;
}
.hl-title {font-size: 14px; font-weight: 700; color: var(--blue); }
.hl-desc  { font-size:13px;}

/* ── Right: Research Journey card ── */
.ov-journey-card { display: flex; flex-direction: column; }

.jt-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.jt-header-icon {
  width: 46px; height: 46px;
  background: var(--brand-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.jt-header-icon svg { width: 22px; height: 22px; }

.jt-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--brand-mid);
  line-height: 1.25;
}
.jt-desc {
  font-size: 14px;
  margin-bottom: 24px;
}

/* 3 stat tiles */
.jt-tiles {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  flex: 1;
  align-content: end;
}
@media(max-width:960px) and (min-width:821px){ .jt-tiles{ grid-template-columns:1fr; gap:8px; } }
@media(max-width:540px){ .jt-tiles{ grid-template-columns:1fr; } }

.jt-tile {
  background: var(--brand-xlight);
  border: 1.5px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 12px 16px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 9px;
  transition: transform .2s, box-shadow .2s;
}
.jt-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.jt-icon {
  width: 52px; height: 52px;
  background: var(--brand-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.jt-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--brand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.jt-val {
  
  font-size: 15px; font-weight: 600;
  color: var(--brand);
}
.jt-lbl {
  font-size: 14px; line-height: 1.3;
}

/* ── Bottom: 4 feature cards ── */
.ov-features {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
@media(max-width:900px){ .ov-features{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .ov-features{ grid-template-columns:1fr; } }

.ov-feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex; align-items: flex-start; gap: 15px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.ov-feat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sub); }

.ov-feat-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--brand-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ov-feat-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--brand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.ov-feat-tag {  
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-mid); margin-bottom: 5px;
}
.ov-feat-text { font-size: .81rem; color: var(--text-body); line-height: 1.55; }

/* ═══════════════════════════════════════════
   SECTION 2 — COUNTRY INSIGHTS
   TOP: horizontal bar chart (left) + vertical timeline (right)
   BOTTOM: 3 "why" cards
═══════════════════════════════════════════ */
.ci-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}
@media(max-width:820px){ .ci-top{ grid-template-columns:1fr; } }

/* Bar chart card */
.ci-chart-card { display: flex; flex-direction: column; }

.hbar-list { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.hbar-row  { display: flex; align-items: center; gap: 12px; }
.hbar-meta { width: 88px; flex-shrink: 0; text-align: right; }
.hbar-name  { font-weight: 600; font-size: .84rem; color: var(--text-dark); }
.hbar-years { font-size: .68rem; color: var(--text-muted); }
.hbar-track {
  flex: 1; height: 32px;
  background: #F1F5F9;
  border-radius: 7px; overflow: hidden;
}
.hbar-fill {
  height: 100%; border-radius: 7px; width: 0;
  transition: width 1.1s cubic-bezier(.23,1,.32,1);
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 11px;
 font-size: .78rem; font-weight: 700;
  color: #fff; white-space: nowrap;
}
.hbar-xaxis {
  display: flex; justify-content: space-between;
  padding: 9px 0 0 100px;
  font-size: 12px; color: var(--text-muted);
  
}

/* Timeline card (right) */
.ci-tl-card {
  display: flex;
  flex-direction: column;
}

.tl-title {  
  font-size: 20px;
  font-weight: 500;
  color: var(--brand-mid);
  line-height: 1.25;
  margin-bottom: 4px;
}
.tl-sub   { font-size: 14px; margin-bottom: 20px;}

.tl-track-vert { display: flex; flex-direction: column; flex: 1; justify-content: space-between; }

.tlv-step  { display: flex; gap: 14px; align-items: flex-start; }
.tlv-left  { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tlv-line  {
  width: 2px; flex: 1; min-height: 14px;
  background: linear-gradient(180deg, var(--border), transparent);
  margin: 4px 0;
}
.tlv-body  { padding-bottom: 14px; flex: 1; }

.tl-dot2 {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid #fff; box-shadow: 0 0 0 2px var(--border);
}
.tl-dot2 svg { width: 19px; height: 19px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tl-dot2.d-blue   { background: var(--blue-lt);   } .tl-dot2.d-blue   svg { stroke: var(--blue); }
.tl-dot2.d-green  { background: var(--green-lt);  } .tl-dot2.d-green  svg { stroke: var(--green); }
.tl-dot2.d-purple { background: var(--purple-lt); } .tl-dot2.d-purple svg { stroke: var(--purple); }
.tl-dot2.d-amber  { background: var(--amber-lt);  } .tl-dot2.d-amber  svg { stroke: var(--amber); }
.tl-dot2.d-sky    { background: #E0F2FE; }           .tl-dot2.d-sky    svg { stroke: #0284C7; }

.tl-decade {font-size: .82rem; font-weight: 700; margin-bottom: 2px; }
.tl-decade {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.c-blue   { color: var(--blue); }   .c-green  { color: var(--green); }
.c-purple { color: var(--purple); } .c-amber  { color: var(--amber); }
.c-sky    { color: #0284C7; }
.tl-text  { font-size: 13px; }

/* Why it matters */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
@media(max-width:700px){ .why-grid{ grid-template-columns:1fr; } }

.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sub); }

.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-icon.green  { background: var(--green-lt);  } .why-icon.green  svg { stroke: var(--green); }
.why-icon.purple { background: var(--purple-lt); } .why-icon.purple svg { stroke: var(--purple); }
.why-icon.amber  { background: var(--amber-lt);  } .why-icon.amber  svg { stroke: var(--amber); }

.why-tag  {font-size: 15px; font-weight: 600; text-transform: uppercase; color: var(--brand-mid); margin-bottom: 5px; }
.why-text { font-size: 14px; line-height: 1.4; }

/* ═══════════════════════════════════════════
   RESPONSIVE HELPERS
═══════════════════════════════════════════ */
@media(max-width:600px){
  .lc{ padding: 20px 18px; }
  .ov-feat-card { padding: 18px 14px; }
}

/* Chart Animations */
@keyframes lcDrawLine { to { stroke-dashoffset: 0; } }
@keyframes lcFadeArea { from { opacity:0; transform:scaleY(0.3); } to { opacity:1; transform:scaleY(1); } }
@keyframes lcPopDot { 0%{opacity:0;} 70%{opacity:1;} 100%{opacity:1;} }
@keyframes lcSlideLabel { from{opacity:0;transform:translateY(8px);} to{opacity:1;transform:translateY(0);} }
@keyframes lcFadeGrid { from{opacity:0;} to{opacity:1;} }

/* ═══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
═══════════════════════════════════════════ */

/* Base hidden state for all reveal elements */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}
.sr.sr--left  { transform: translateX(-32px); }
.sr.sr--right { transform: translateX(32px); }
.sr.sr--scale { transform: translateY(24px) scale(.97); }
.sr.sr--up    { transform: translateY(48px); }

/* Visible state */
.sr.in {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* Stagger delays */
.sr-d1  { transition-delay: .08s; }
.sr-d2  { transition-delay: .16s; }
.sr-d3  { transition-delay: .24s; }
.sr-d4  { transition-delay: .32s; }
.sr-d5  { transition-delay: .40s; }
.sr-d6  { transition-delay: .48s; }

/* Section label reveal */
.lipo-section-label { opacity: 0; transition: opacity .5s ease, transform .5s ease; transform: scaleX(.85); transform-origin: center; }
.lipo-section-label.in { opacity: 1; transform: scaleX(1); }

/* Header */
.lipo-header { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.lipo-header.in { opacity: 1; transform: translateY(0); }

/* Tile counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(6px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.jt-val.in-val { animation: countUp .5s cubic-bezier(.22,1,.36,1) both; }



/* PAGINATION */
.navigation.pagination {
  margin: 3rem 0;
  font-family: var(--font);
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Base styles for all page links and current page */
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

/* Hover state for clickable links */
.navigation.pagination a.page-numbers:hover {
  background: var(--brand-pale);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px var(--brand-glow);
}

/* Current page */
.navigation.pagination .page-numbers.current {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  border-color: var(--brand);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(2, 92, 154, 0.35);
  cursor: default;
}

/* Previous / Next buttons */
.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
  padding: 0 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  gap: 6px;
}

.navigation.pagination .prev.page-numbers::before {
  content: "←";
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.navigation.pagination .next.page-numbers::after {
  content: "→";
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.navigation.pagination .prev.page-numbers:hover::before {
  transform: translateX(-3px);
}

.navigation.pagination .next.page-numbers:hover::after {
  transform: translateX(3px);
}

/* Dots (ellipsis between distant pages) */
.navigation.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  box-shadow: none;
  color: var(--brand);
  font-weight: 700;
  cursor: default;
}

/* Hide screen-reader-only text visually but keep accessibility */
.navigation.pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .navigation.pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 0.875rem;
  }

  .navigation.pagination .prev.page-numbers,
  .navigation.pagination .next.page-numbers {
    padding: 0 14px;
  }
}

/* TECHNOLOGY */
/* ═══════════════════════════════════════════════
   COMMON SECTION HEADER
═══════════════════════════════════════════════ */
.main-header,.sec-head{text-align:center; max-width:800px;margin:0 auto 56px;}
.main-header:last-child,.sec-head:last-child{margin-bottom:0}
.main-header .eyebrow,.sec-head .eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:600;letter-spacing:3px;text-transform:uppercase;
  color:var(--brand);margin-bottom:14px;
}
.main-header .eyebrow::before,
.main-header .eyebrow::after,
.sec-head .eyebrow::before,
.sec-head .eyebrow::after{
  content:'';width:24px;height:1px;background:currentColor;opacity:0.5;
}

.main-header h1, .sec-head h1, .sec-head h2,.sec-head h3{
  font-size:clamp(30px,4vw,48px);
  font-weight:400;color:var(--brand-dark);line-height:1.15;margin-bottom:14px;
}

.main-header h2,.main-header h3{
  font-size:clamp(20px,4vw,28px);
  font-weight:400;color:var(--brand-dark);line-height:1.15;margin-bottom:14px;
}

.main-header h1 em,.main-header h2 em,.main-header h3 em,.sec-head h1 em,.sec-head h2 em,.sec-head h3 em{font-style: normal;color:var(--main-color)}
.main-header p,
.sec-head p{font-size:15px;color:var(--muted);line-height:1.75;}

.sec-head--light .eyebrow{color:#7dd3fc}
.sec-head--light h2{color:#fff}
.sec-head--light p{color:rgba(255,255,255,0.6)}

/* ═══════════════════════════════════════════════
   ██ INTRO DUAL CARDS
   ACF: repeater → .card-item (same class for all)
═══════════════════════════════════════════════ */
.dual-cards{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.card-item{
  background:#fff;border-radius:20px;padding:38px 34px;
  border:1px solid var(--border);position:relative;overflow:hidden;
  transition:transform 0.35s cubic-bezier(.22,.8,.36,1),box-shadow 0.35s;
  box-shadow:var(--shadow-sub);
}
.card-item:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.card-item::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(34,152,242,0.04) 0%,transparent 60%);
  pointer-events:none;
}
.card-item__accent{
  position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--brand),var(--main-color),#7dd3fc);border-radius:20px 20px 0 0;
}
.card-item__label{
  font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  color:var(--brand);margin-bottom:24px;display:flex;align-items:center;gap:8px;
}
.card-item__label::after{flex:1;content:'';height:1px;background:var(--border)}
/* Each row inside card — ACF sub-repeater */
.card-row{display:flex;align-items:flex-start;gap:14px;padding:11px 0;border-bottom:1px solid rgba(2,92,154,0.06)}
.card-row:last-child{border-bottom:none;padding-bottom:0}
.card-row__dot{
  width:32px;height:32px;border-radius:8px;flex-shrink:0;
  background:linear-gradient(135deg,var(--brand-pale),#c5e0f7);
  display:flex;align-items:center;justify-content:center;font-size:14px;margin-top:1px;
}
.card-row__body{flex:1}
.card-row__body strong{font-size:13.5px;font-weight:600;color:var(--text);display:block;margin-bottom:2px}
.card-row__body p{font-size:13px;color:var(--muted);line-height:1.55}

/* ═══════════════════════════════════════════════
   ██ SOURCE CARDS — ACF repeater .source-card
═══════════════════════════════════════════════ */
.source-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:900px;margin:0 auto}
.source-card{
  background:#fff;border-radius:20px;padding:38px 28px 32px;text-align:center;
  border:1px solid var(--border);box-shadow:var(--shadow-sub);
  transition:transform 0.35s,box-shadow 0.35s;cursor:default;position:relative;overflow:hidden;
}
.source-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.source-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--brand),var(--main-color));
  transform:scaleX(0);transform-origin:left;transition:transform 0.35s;
}
.source-card:hover::after{transform:scaleX(1)}
.source-card__icon{
  width:76px;height:76px;border-radius:50%;margin:0 auto 18px;
  background:linear-gradient(135deg,#e8f3fb,#c5dff7);
  display:flex;align-items:center;justify-content:center;font-size:34px;
  box-shadow:0 4px 16px rgba(2,92,154,0.12);
}
.source-card h4{font-size:16px;font-weight:600;color:var(--brand-dark);margin-bottom:6px}
.source-card p{font-size:12.5px;color:var(--muted);line-height:1.55}
.source-card__badge{
  display:inline-block;margin-top:14px;padding:4px 12px;border-radius:50px;
  font-size:11px;font-weight:600;letter-spacing:0.5px;
}
.source-card__badge--preferred{background:#e6f6ee;color:#0f7c45}
.source-card__badge--caution{background:#fff4e5;color:#a05a00}
.source-card__badge--limited{background:#fde8e8;color:#9b2b2b}

/* ═══════════════════════════════════════════════
   ██ RESPONSIVE TABLE → MOBILE CARD STACK
   Desktop: normal table | Mobile: label/value stack
═══════════════════════════════════════════════ */
.rtable-wrap{border-radius:16px;overflow:hidden;box-shadow:var(--shadow-sub);border:1px solid var(--border)}
.rtable{width:100%;border-collapse:collapse;font-size:14px}
.rtable thead tr{background:linear-gradient(90deg,var(--brand-dark),var(--brand))}
.rtable thead th{padding:16px 22px;color:#fff;font-weight:600;font-size:12.5px;letter-spacing:0.8px;text-align:left;white-space:nowrap}
.rtable tbody tr{border-bottom:1px solid rgba(2,92,154,0.07);transition:background 0.2s}
.rtable tbody tr:last-child{border:none}
.rtable tbody tr:hover{background:#f4f9ff}
.rtable tbody td{padding:14px 22px;color:var(--muted);vertical-align:middle;line-height:1.5}
.rtable tbody td:first-child{color:var(--text);font-weight:500}
.rtable .badge{display:inline-block;padding:3px 11px;border-radius:50px;font-size:11.5px;font-weight:600;line-height:1.4}
.rtable .badge-y{background:#e6f6ee;color:#0f7c45}
.rtable .badge-n{background:#fde8e8;color:#9b2b2b}
.rtable .badge-c{background:#fff4e5;color:#8c5600}
.rtable td.highlight{color:var(--brand);font-weight:600}
.rtable .rprdct a{color:var(--brand);font-weight:600}
.rtable .pform{display: inline-block; margin: 2px;}
.rtable .pform a{
  color: var(--brand);
  padding: 2px 12px;
  display: block;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  background: var(--blue-lt);
  transition: all 0.2s ease-in-out;
}
.rtable .pform a:hover{color: var(--white);background: var(--brand);}
.rtable .pform a::before{content: ""; width: 4px; height: 4px; background: var(--brand-deep); border-radius: 20px; display: inline-block; margin: 0 4px 2px 0; transition: all 0.2s ease-in-out;}
.rtable .pform a:hover::before{background: var(--accent-light);}

/* ── Mobile: Card-stack table ───────────────────── */
@media(max-width:768px){
  .rtable thead{display:none}
  .rtable,.rtable tbody,.rtable tr,.rtable td{display:block;width:100%}
  .rtable tbody tr{
    border-bottom:none;margin-bottom:12px;border-radius:14px;
    background:#fff;box-shadow:var(--shadow-sub);border:1px solid var(--border);overflow:hidden;
  }
  .rtable tbody tr:hover{background:#fff}
  .rtable tbody td{
    padding:10px 16px;display:flex;justify-content:space-between;align-items:flex-start;
    gap:12px;border-bottom:1px solid rgba(2,92,154,0.06);font-size:13px;
  }
  .rtable tbody td:last-child{border-bottom:none}
  .rtable tbody td:first-child{
    background:linear-gradient(90deg,var(--brand-dark),var(--brand));
    color:#fff;font-weight:600;font-size:13px;border-bottom:none;
    padding:12px 16px;border-radius:14px 14px 0 0;display:block;
  }
  
  .rtable tbody td:first-child a,.rtable .rprdct a{color:#fff;}

  .rtable tbody td::before{
    content:attr(data-label);
    font-size:11px;font-weight:600;letter-spacing:0.5px;color:var(--brand);
    text-transform:uppercase;min-width:90px;flex-shrink:0;padding-top:1px;
  }
  .rtable tbody td:first-child::before{display:none}
}

/* ═══════════════════════════════════════════════
   ██ WHY COMPARISON CARDS — same .cmp-card class
═══════════════════════════════════════════════ */
.cmp-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-top:50px}
.cmp-card{border-radius:20px;padding:36px 32px;border:1px solid transparent;position:relative;overflow:hidden}
.cmp-card--yes{background:linear-gradient(135deg,#eaf5ff 0%,#d5ecfc 100%);border-color:rgba(2,92,154,0.12)}
.cmp-card--no{background:linear-gradient(135deg,#fff8f3 0%,#fde8d5 100%);border-color:rgba(180,90,20,0.1)}
.cmp-card::before{
  content:'';position:absolute;top:0;left:0;bottom:0;width:4px;border-radius:20px 0 0 20px;
}
.cmp-card--yes::before{background:linear-gradient(180deg,var(--brand),var(--main-color))}
.cmp-card--no::before{background:linear-gradient(180deg,#e07a30,#f0b060)}
.cmp-card__tag{
  display:inline-block;padding:5px 14px;border-radius:50px;font-size:11px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:16px;
}
.cmp-card--yes .cmp-card__tag{background:rgba(2,92,154,0.1);color:var(--brand-dark)}
.cmp-card--no .cmp-card__tag{background:rgba(180,80,10,0.1);color:#8c3d05}
.cmp-card h3{font-size:20px;font-weight:600;margin-bottom:14px;color:var(--text)}
.cmp-card p{font-size:13.5px;color:var(--muted);line-height:1.75}
.cmp-card p+p{margin-top:10px}

/* ═══════════════════════════════════════════════
   ██ ADVANTAGE CARDS — ACF repeater .adv-card
═══════════════════════════════════════════════ */
.adv-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.adv-card{
  border-radius:18px;padding:28px 20px 26px;text-align:center;
  background:#fff;border:1px solid var(--border);
  transition:transform 0.35s,box-shadow 0.35s;cursor:default;
  position:relative;overflow:hidden;
}
.adv-card::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(160deg,var(--brand-dark),var(--brand),var(--main-color));
  opacity:0;transition:opacity 0.35s;
}
.adv-card:hover::before{opacity:1}
.adv-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.adv-card *{position:relative;z-index:1}
.adv-card__icon{
  width:60px;height:60px;border-radius:16px;margin:0 auto 16px;
  background:var(--brand-pale);display:flex;align-items:center;justify-content:center;
  font-size:24px;transition:background 0.35s,transform 0.35s;
}
.adv-card:hover .adv-card__icon{background:rgba(255,255,255,0.15);transform:scale(1.1) rotate(-5deg)}
.adv-card h4{font-size:13.5px;font-weight:700;color:var(--brand-dark);margin-bottom:8px;line-height:1.3;transition:color 0.35s}
.adv-card p{font-size:12px;color:var(--muted);line-height:1.6;transition:color 0.35s}
.adv-card:hover h4,.adv-card:hover p{color:rgba(255,255,255,0.9)}
.adv-card:hover h4{color:#fff}

/* ═══════════════════════════════════════════════
   ██ PURIFICATION SPLIT
═══════════════════════════════════════════════ */
.purif-split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.purif-text .eyebrow-inline{
  font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  color:var(--brand);margin-bottom:12px;display:block;
}
.purif-text h2{
  font-size:clamp(28px,3.5vw,42px);
  font-weight:400;color:var(--brand-dark);margin-bottom:18px;line-height:1.2;
}
.purif-text p{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:24px}
/* ACF list items — all .purif-item */
.purif-items{display:flex;flex-direction:column;gap:2px}
.purif-item{
  display:flex;align-items:center;gap:16px;
  padding:14px 16px;border-radius:12px;cursor:default;
  transition:background 0.25s,box-shadow 0.25s;
}
.purif-item:hover{background:#f0f8ff;box-shadow:var(--shadow-sub)}
.purif-item__ico{
  width:40px;height:40px;border-radius:10px;flex-shrink:0;
  background:linear-gradient(135deg,var(--brand),var(--main-color));
  display:flex;align-items:center;justify-content:center;font-size:18px;
  box-shadow:0 4px 12px rgba(2,92,154,0.25);
}
.purif-item__text{font-size:14px;font-weight:500;color:var(--text)}

/* Flow diagram */
.flow-diagram{background:#fff;border-radius:20px;box-shadow:var(--shadow);border:1px solid var(--border); overflow: hidden;}
.flow-diagram img{display: block;}

/* ═══════════════════════════════════════════════
   ██ TECH STANDOUT
═══════════════════════════════════════════════ */
.tech-split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.tech-media{
  border-radius:20px;overflow:hidden;position:relative;
  background:linear-gradient(135deg,#e0eff9,#c2ddf5);
  aspect-ratio:4/3;box-shadow:var(--shadow);
}
.tech-media img{width:100%;height:100%;object-fit:cover}
.tech-media__fallback{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:80px;
}
.tech-media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(1,74,125,0.3),transparent 50%);
}
.tech-text .eyebrow-inline{font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--brand);margin-bottom:12px;display:block}
.tech-text h2{font-size:clamp(28px,3.5vw,42px);font-weight:400;color:var(--brand-dark);margin-bottom:16px;line-height:1.2}
.tech-text p{font-size:14px;color:var(--muted);line-height:1.8;margin-bottom:32px}
/* ACF repeater .stat-card */
.stat-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.stat-card{
  background:linear-gradient(135deg,#f0f8ff,#e3f1fc);border-radius:14px;padding:20px 18px;
  border:1px solid rgba(2,92,154,0.1);transition:transform 0.3s,box-shadow 0.3s;
}
.stat-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sub)}
.stat-card__val{font-size:32px;font-weight:400;color:var(--brand);line-height:1}
.stat-card__lbl{font-size:12px;color:var(--muted);margin-top:5px;line-height:1.4}

/* ═══════════════════════════════════════════════
   ██ QUALITY ICONS — ACF repeater .quality-item
═══════════════════════════════════════════════ */
.quality-row{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.quality-item{
  text-align:center;background:#fff;border-radius:16px;padding:28px 10px 22px;
  box-shadow:var(--shadow-sub);border:1px solid var(--border);
  transition:transform 0.3s,box-shadow 0.3s;cursor:default;
}
.quality-item:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.quality-item__ico{
  width:54px;height:54px;border-radius:14px;margin:0 auto 12px;
  background:linear-gradient(135deg,var(--brand-pale),#c5dff7);
  display:flex;align-items:center;justify-content:center;font-size:22px;
}
.quality-item h5{font-size:12.5px;font-weight:600;color:var(--brand);line-height:1.35}

/* ═══════════════════════════════════════════════
   ██ CHARACTERIZATION TABS
═══════════════════════════════════════════════ */
.char-nav{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;margin-bottom:40px}
.char-btn{
  padding:10px 24px;border-radius:50px;font-size:13px;font-weight:500;cursor:pointer;
  border:1.5px solid var(--border);color:var(--muted);background:#fff;
  transition:all 0.25s;font-family:var(--font);
}
.char-btn:hover,.char-btn.active{
  background:linear-gradient(90deg,var(--brand-dark),var(--main-color));
  color:#fff;border-color:transparent;box-shadow:0 6px 18px rgba(2,92,154,0.28);
  transform:translateY(-1px);
}
.char-panel{display:none;max-width:980px;margin:0 auto;animation:fadeIn 0.3s ease}
.char-panel.active{display:block}
/* ACF sub-repeater .char-item */
.char-items{display:flex;flex-direction:column;gap:10px}
.char-item{
  display:flex;align-items:flex-start;gap:16px;
  background:#f8fbff;border:1px solid rgba(2,92,154,0.08);
  border-radius:12px;padding:16px 20px;
  transition:background 0.2s,box-shadow 0.2s,transform 0.2s;
}
.char-item:hover{background:#fff;box-shadow:var(--shadow-sub);transform:translateX(4px)}
.char-item__num{
  width:28px;height:28px;border-radius:8px;flex-shrink:0;
  background:linear-gradient(135deg,var(--brand),var(--main-color));
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;color:#fff;margin-top:1px;
}
.char-item__body{flex:1}
.char-item__body strong{font-size:13.5px;font-weight:600;color:var(--text);display:block;margin-bottom:3px}
.char-item__body p{font-size:13px;color:var(--muted);line-height:1.6}

/* ═══════════════════════════════════════════════
   ██ WBCIL DARK SECTION
═══════════════════════════════════════════════ */
.wbcil-split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.wbcil-img{border-radius:20px;overflow:hidden;box-shadow:0 24px 72px rgba(0,0,0,0.5);position:relative}
.wbcil-img img{width:100%;display:block;filter:brightness(0.88) contrast(1.05)}
.wbcil-img::after{
  content:'';position:absolute;inset:0;border-radius:20px;
  border:1px solid rgba(255,255,255,0.08);pointer-events:none;
}
.wbcil-text .eyebrow{color:#7dd3fc;margin-bottom:12px}
.wbcil-text h2{
  font-size:clamp(28px,3.5vw,44px);
  font-weight:400;color:#fff;margin-bottom:18px;line-height:1.15;
}
.wbcil-text p{font-size:14px;color:rgba(255,255,255,0.65);line-height:1.85;margin-bottom:16px}
/* ACF repeater .wbcil-tag */
.wbcil-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:24px}
.wbcil-tag{
  padding:8px 18px;border-radius:50px;font-size:12px;font-weight:500;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.15);color:rgba(255,255,255,0.8);
  transition:background 0.25s;
}
.wbcil-tag:hover{background:rgba(34,152,242,0.3);border-color:rgba(34,152,242,0.4);color:#fff}




/* ═══════════════════════════════════════════════
   STAGGER DELAYS utility
═══════════════════════════════════════════════ */
.d1{transition-delay:0.08s}.d2{transition-delay:0.16s}.d3{transition-delay:0.24s}
.d4{transition-delay:0.32s}.d5{transition-delay:0.40s}.d6{transition-delay:0.48s}
.d7{transition-delay:.42s}.d8{transition-delay:.48s}.d9{transition-delay:.54s}

/* SEARCH FORM */
/* Ultra-Modern Glassmorphism Search */
#searchForm {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.search-form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(2, 92, 154, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-form::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 60px;
  padding: 2px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.search-form:hover::after {
  opacity: 0.6;
}

.search-form:focus-within {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 20px 60px rgba(2, 92, 154, 0.18),
    0 0 0 4px rgba(2, 92, 154, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-4px);
}

.search-form:focus-within::after {
  opacity: 1;
}

.search-form label {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.search-form label::before {
  content: '';
  position: absolute;
  left: 32px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23025c9a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.search-form:focus-within label::before {
  opacity: 1;
  transform: scale(1.1);
}

.search-form .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.search-form .search-field {
  width: 100%;
  padding: 24px 32px 24px 66px;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  letter-spacing: 0.2px;
}

.search-form .search-field::placeholder {
  color: var(--text-muted);
  font-weight: 400;
  transition: all 0.3s ease;
}

.search-form:focus-within .search-field::placeholder {
  color: var(--brand);
  transform: translateX(4px);
}

.search-form .search-submit {
  padding: 24px 48px;
  margin: 8px;
  border: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(2, 92, 154, 0.25);
}

.search-form .search-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-form .search-submit::after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 20px;
}

.search-form .search-submit:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(2, 92, 154, 0.35);
  padding-right: 56px;
}

.search-form .search-submit:hover::before {
  opacity: 1;
}

.search-form .search-submit:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.search-form .search-submit:active {
  transform: scale(0.96) translateX(4px);
}

.search-form .search-submit .screen-reader-text {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* ═══════════════════════════════════════
   PRODUCT SECTION WRAPPER
═══════════════════════════════════════ */
.prod-section{
  padding:80px 10px;
  background:#fff;
  position:relative;
  overflow:hidden;
}
/* subtle bg texture */
.prod-section::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(34,152,242,0.045) 0%,transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(2,92,154,0.035) 0%,transparent 55%);
  pointer-events:none;
}

/* ─── Section Header ──────────────────── */
.prod-header{margin-bottom:20px;max-width:var(--container);margin-left:auto;margin-right:auto;padding:0 32px}
.prod-header__top{margin-bottom:18px}
.prod-header__text{}
.prod-header__text .eyebrow{margin-bottom:10px}
.prod-header__text h2{
  font-size:clamp(26px,3.5vw,44px);font-weight:600;color:var(--brand-dark);
  line-height:1.15;margin:0;letter-spacing:-.02em;
}
.prod-header__text h2 em{font-style:italic;font-weight:400;color:var(--main-color)}
.prod-header__desc{
  font-size:14.5px;color:var(--muted);line-height:1.8;font-weight:300;
  max-width:760px;margin-top:14px;
}
.prod-header__desc strong{color:var(--text);font-weight:500}
.prod-header__desc a{color:var(--main-color);font-weight:500}

/* ─── Grid ───────────────────────────── */
.prod-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:var(--container);
  margin:0 auto;
  /* padding:0 32px; */
}

/* ═══════════════════════════════════════
   PRODUCT CARD  — ACF repeater: .prod-card
   All cards share ONE class only
═══════════════════════════════════════ */
.prod-card{
  background:#fff;border-radius:18px;
  border:1.5px solid var(--border);
  overflow:hidden;
  display:flex;flex-direction:column;
  position:relative;
  transition:transform 0.35s cubic-bezier(.22,.8,.36,1),box-shadow 0.35s,border-color 0.25s;
  cursor:pointer;
}
.prod-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
  border-color:rgba(34,152,242,0.3);
}

/* ── Hover top-bar accent ── */
.prod-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--brand-dark),var(--main-color),#7dd3fc);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.35s cubic-bezier(.22,.8,.36,1);
  z-index:3;border-radius:18px 18px 0 0;
}
.prod-card:hover::before{transform:scaleX(1)}

/* ── Image wrapper ── */
.prod-card__img{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#eaf4fd,#d5ecfc);
  aspect-ratio:16/10;
}
.prod-card__img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.5s cubic-bezier(.22,.8,.36,1);
  display:block;
}
.prod-card:hover .prod-card__img img{transform:scale(1.04)}

/* Formula badge — top-left */
.prod-card__formula{
  position:absolute;top:12px;left:12px;z-index:2;
  background:rgba(1,74,125,0.82);backdrop-filter:blur(8px);
  color:#fff;font-size:13px;font-weight:500;letter-spacing:0.3px;
  padding:4px 10px;border-radius:6px;line-height:1.4;
  border:1px solid rgba(255,255,255,0.12);
}

/* Quick-view overlay */
.prod-card__overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(1,39,90,0.72) 0%,transparent 55%);
  display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:18px;
  opacity:0;transition:opacity 0.3s;
}
.prod-card:hover .prod-card__overlay{opacity:1}
.prod-card__overlay-btn{
  background:#fff;color:var(--brand-dark);
  font-size:12px;font-weight:600;letter-spacing:0.5px;
  padding:9px 24px;border-radius:50px;
  box-shadow:0 4px 16px rgba(0,0,0,0.2);
  transform:translateY(8px);transition:transform 0.3s 0.05s,box-shadow 0.3s;
}
.prod-card:hover .prod-card__overlay-btn{transform:translateY(0)}
.prod-card__overlay-btn:hover{background:var(--brand-pale);box-shadow:0 6px 20px rgba(0,0,0,0.25)}

/* ── Card body ── */
.prod-card__body{
  padding:20px 22px 22px;flex:1;display:flex;flex-direction:column;gap:0;
}

/* Category + meta row */
.prod-card__meta{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:10px;gap:8px;flex-wrap:wrap;
}
/* ACF: category field */
.prod-card__cat{
  font-size:10.5px;font-weight:700;letter-spacing:2px;text-transform:uppercase;
  color:var(--main-color);display:flex;align-items:center;gap:5px;
}
.prod-card__cat::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--main-color);flex-shrink:0}

/* ACF: cas + hsn fields */
.prod-card__codes{
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px;
}
.prod-card__code{
  font-size:11px;font-weight:400;color:var(--muted);
  background:#f4f8fc;border:1px solid var(--border);
  border-radius:5px;padding:3px 8px;line-height:1.4;
}
.prod-card__code span{font-weight:600;color:var(--text)}

/* ACF: product name / title */
.prod-card__title{
  font-size:16px;font-weight:700;color:var(--brand-dark);
  line-height:1.3;margin-bottom:0;letter-spacing:-.01em;
  position:relative;padding-bottom:14px;
}
.prod-card__title::after{
  content:'';position:absolute;bottom:0;left:0;
  width:36px;height:2.5px;border-radius:2px;
  background:linear-gradient(90deg,var(--main-color),#7dd3fc);
  transition:width 0.35s cubic-bezier(.22,.8,.36,1);
}
.prod-card:hover .prod-card__title::after{width:70px}

/* Arrow link */
.prod-card__link{
  display:inline-flex;align-items:center;gap:6px;
  margin-top:14px;font-size:12.5px;font-weight:600;
  color:var(--main-color);letter-spacing:0.2px;
  transition:gap 0.2s;
}
.prod-card__link:hover{gap:10px}
.prod-card__link svg{width:14px;height:14px;flex-shrink:0;transition:transform 0.2s}
.prod-card:hover .prod-card__link svg{transform:translateX(3px)}

/* ─── Load More ────────────────────────── */
.prod-more{
  text-align:center;margin-top:52px;
  max-width:var(--container);margin-left:auto;margin-right:auto;padding:52px 32px 0;
}
.btn-load{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 38px;border-radius:50px;font-size:14px;font-weight:600;
  background:linear-gradient(90deg,var(--brand-dark),var(--main-color));
  color:#fff;border:none;cursor:pointer;font-family:var(--font);
  transition:transform 0.25s,box-shadow 0.25s;
  box-shadow:0 6px 22px rgba(2,92,154,0.3);
}
.btn-load:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(2,92,154,0.38)}
.btn-load svg{width:16px;height:16px}




/* ══════════════════════════════════════════
    FAQ
══════════════════════════════════════════ */
.full-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 52px;
}
.full-faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color .22s, box-shadow .22s;
}
.full-faq-item:hover        { border-color: var(--border); }
.full-faq-item.open         { border-color: var(--brand-light); box-shadow: var(--shadow-sm); }

.full-faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}
.full-faq-item.open .full-faq-btn { background: var(--brand-xlight); }

/* Numbered badge — nth-child colours, no extra classes */
.full-faq-badge {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.full-faq-item:nth-child(odd)  .full-faq-badge { background: var(--brand-light);  color: var(--brand); }
.full-faq-item:nth-child(even) .full-faq-badge { background: var(--accent-light);  color: #007ea5; }

.full-faq-q    { flex: 1; font-size: 14.5px; font-weight: 600; color: var(--text-dark); line-height: 1.45; }
.full-faq-arr  {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: 13px;
  transition: all .3s;
}
.full-faq-item.open .full-faq-arr { background: var(--brand); color: var(--white); transform: rotate(180deg); }

.full-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .3s;
  padding: 0 26px;
}
.full-faq-item.open .full-faq-panel { max-height: 500px; padding: 0 26px 22px; }
.full-faq-panel p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.85;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

/* Change icon color just with CSS — no SVG edits needed */
.jt-icon svg { color: var(--brand); }         /* brand blue */
.why-icon.green svg { color: var(--green); }  /* green */
.ov-feat-icon svg { color: var(--brand-mid); } /* mid blue */


/* ══════════════════════════════════════════
APPLICATIONS
══════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   STICKY APP NAV
════════════════════════════════════════════════ */
.app-nav{
  position:sticky;top:106px;z-index:4;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border-light);
  box-shadow:0 2px 24px rgba(2,92,154,0.09);
  transition:box-shadow .3s;
}
.app-nav.scrolled{box-shadow:0 4px 32px rgba(2,92,154,0.14)}
.app-nav__inner{
  max-width:var(--container);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:0 32px;height:64px;
}
.app-nav__label{
  font-size:11px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--muted);white-space:nowrap;flex-shrink:0;
}

/* The 3 CTA tabs — all same class .app-nav__tab */
.app-nav__tabs{display:flex;align-items:center;gap:6px;flex:1;justify-content:center;flex-wrap:wrap}
.app-nav__tab{
  display:inline-flex;align-items:center;gap:9px;
  padding:10px 24px;border-radius:50px;font-size:13px;font-weight:600;
  border:1.5px solid var(--border);color:var(--muted);background:#fff;
  cursor:pointer;font-family:var(--font);
  transition:all .25s cubic-bezier(.22,.8,.36,1);white-space:nowrap;
  text-decoration:none;
}
.app-nav__tab:hover{border-color:var(--main-color);color:var(--brand);background:var(--brand-pale)}
.app-nav__tab.active{
  background:linear-gradient(90deg,var(--brand-dark),var(--main-color));
  color:#fff;border-color:transparent;
  box-shadow:0 4px 16px rgba(2,92,154,0.28);
}
.app-nav__tab-ico{
  width:26px;height:26px;border-radius:8px;
  background:rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;font-size:13px;
}
.app-nav__tab:not(.active) .app-nav__tab-ico{background:var(--brand-pale)}
/* progress dot */
.app-nav__dot{
  width:6px;height:6px;border-radius:50%;
  background:rgba(255,255,255,0.5);flex-shrink:0;
  transition:background .25s,transform .25s;
}
.app-nav__tab.active .app-nav__dot{background:#fff;transform:scale(1.4)}

/* ════════════════════════════════════════════════
   APPLICATION SECTIONS WRAPPER
════════════════════════════════════════════════ */
.app-sections{background:#fff}

/* Each application section */
.app-block{padding:96px 32px 100px;position:relative;overflow:hidden}
.app-block:nth-child(even){background:linear-gradient(170deg,#f3f8fd 0%,#eaf3fb 100%)}
.app-block:nth-child(odd){background:#fff}
/* faint radial bg */
.app-block::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 55% 45% at 90% 10%,rgba(34,152,242,0.04) 0%,transparent 60%),
             radial-gradient(ellipse 45% 55% at 5% 85%,rgba(2,92,154,0.03) 0%,transparent 55%);
}
.app-block__inner{max-width:var(--container);margin:0 auto;position:relative;z-index:1}

/* ── Section top: icon pill + title + desc ── */
.app-block__head{margin-bottom:64px}
.app-block__eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  margin-bottom:18px;
}
.app-block__eyebrow-ico{
  width:44px;height:44px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:20px;
  flex-shrink:0;
}
/* Per-block colour via :nth-child — no extra class needed */
.app-block:nth-child(1) .app-block__eyebrow-ico{background:linear-gradient(135deg,#dbeeff,#b8d4f8);color:#1a4fa8}
.app-block:nth-child(2) .app-block__eyebrow-ico{background:linear-gradient(135deg,#d1fae5,#a7f3d0);color:#065f46}
.app-block:nth-child(3) .app-block__eyebrow-ico{background:linear-gradient(135deg,#ede9fe,#ddd6fe);color:#5b21b6}
.app-block__eyebrow-text{
  font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  color:var(--eyebrow);
}
.app-block__title{
  font-size:clamp(28px,4vw,52px);font-weight:700;
  color:var(--brand-dark);line-height:1.1;
  letter-spacing:-.025em;margin-bottom:16px;
}
.app-block__title em{font-style:italic;font-weight:400;color:var(--main-color)}
.app-block__desc{
  max-width:840px;
}

/* ── Liposomal Advantage box ── */
.lipo-advantage{
  border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--border);margin-bottom:56px;
}
.lipo-advantage__head{
  background:linear-gradient(90deg,var(--brand-dark),var(--brand));
  padding:18px 28px;display:flex;align-items:center;gap:12px;
}
.lipo-advantage__head-ico{
  width:36px;height:36px;border-radius:10px;
  background:rgba(255,255,255,0.15);
  display:flex;align-items:center;justify-content:center;font-size:16px;
}
.lipo-advantage__head-title{
  font-size:12px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:#fff;
}
.lipo-advantage__body{
  display:grid;grid-template-columns:1fr 1fr;
  background:#fff;
}
.lipo-advantage__list{padding:28px 32px}
/* ACF sub-repeater — all same .adv-point */
.adv-point{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 0;border-bottom:1px solid var(--border-light);
}
.adv-point:last-child{border-bottom:none;padding-bottom:0}
.adv-point__dot{
  width:30px;height:30px;border-radius:8px;flex-shrink:0;margin-top:1px;
  display:flex;align-items:center;justify-content:center;font-size:13px;
  background:linear-gradient(135deg,var(--brand-pale),#c5dff7);color:var(--brand);
}
.adv-point__body{flex:1}
.adv-point__body strong{
  font-size:13px;font-weight:700;color:var(--text-dark);display:block;margin-bottom:3px;
}
.adv-point__body p{font-size:12.5px;color:var(--muted);line-height:1.65}
/* Image panel inside advantage box */
.lipo-advantage__img{
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#e0eff9,#c2ddf5);
  min-height:260px;
}
.lipo-advantage__img img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s cubic-bezier(.22,.8,.36,1);
}
.lipo-advantage:hover .lipo-advantage__img img{transform:scale(1.04)}

/* ── Applications & Benefits table ── */
.app-table-section{margin-bottom:56px}
.app-table-label{
  font-size:11px;font-weight:700;letter-spacing:3px;text-transform:uppercase;
  color:var(--brand);margin-bottom:16px;display:flex;align-items:center;gap:8px;
}
.app-table-label::after{flex:1;content:'';height:1px;background:var(--border)}
/* Industry note below table */
.app-note{
  margin-top:16px;padding:14px 20px;
  background:var(--brand-xlight);border-radius:var(--radius-sm);
  border-left:3px solid var(--brand);
  font-size:13px;color:var(--text-body);line-height:1.65;
}
.app-note strong{color:var(--brand-dark)}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media(max-width:1024px){
  .lipo-advantage__body{grid-template-columns:1fr}
  .lipo-advantage__img{min-height:220px}
}
@media(max-width:768px){
  .app-block{padding:60px 16px 70px}
  .faq-section{padding:60px 16px 70px}
  .app-nav__inner{padding:0 16px;height:58px}
  .app-nav__label{display:none}
  .app-nav__tab{padding:8px 14px;font-size:12px;gap:7px}
  .app-nav__tab-ico{display:none}
  .page-banner{min-height:320px}
  .page-banner::after{height:36px}
  .page-banner__content{padding:48px 16px 60px}
}
@media(max-width:480px){
  .app-nav__tab{padding:8px 11px;font-size:11.5px}
  .lipo-advantage__list{padding:20px 18px}
}


/* ════════════════════════════════════════════════
CONTACT PAGE
════════════════════════════════════════════════ */
/* ════════════════════════════════════════
   CONTACT SECTION WRAPPER
════════════════════════════════════════ */
.contact-section{
  padding:96px 24px 110px;background:#fff;
  position:relative;overflow:hidden;
}
.contact-section::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 55% 40% at 95% 8%,rgba(34,152,242,.045) 0%,transparent 60%),
    radial-gradient(ellipse 45% 50% at 3% 90%,rgba(2,92,154,.03) 0%,transparent 55%);
}
.contact-inner{
  max-width:var(--container);margin:0 auto;
  display:grid;grid-template-columns:420px 1fr;
  gap:48px;align-items:start;position:relative;z-index:1;
}

/* ════════════════════════════════════════
   LEFT PANEL — Info + Map
════════════════════════════════════════ */
.contact-info{display:flex;flex-direction:column;gap:0}

/* Info card */
.info-card{
  background:#fff;border-radius:var(--radius-lg);
  border:1.5px solid var(--border);box-shadow:var(--shadow-card);
  overflow:hidden;margin-bottom:20px;
}
.info-card__head{
  background:linear-gradient(110deg,var(--brand-dark) 0%,var(--brand) 60%,var(--main-color) 100%);
  padding:28px 28px 24px;position:relative;overflow:hidden;
}
.info-card__head::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='28' stroke='rgba(255,255,255,.07)' fill='none'/%3E%3C/svg%3E") 0 0/60px 60px;
  pointer-events:none;
}
.info-card__head-eyebrow{font-size:10px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:rgba(255,255,255,.55);margin-bottom:8px;display:block}
.info-card__head-title{font-size:22px;font-weight:700;color:#fff;line-height:1.2;margin-bottom:4px}
.info-card__head-sub{font-size:13px;color:rgba(255,255,255,.55);font-weight:300}

/* Info rows — ACF repeater: all .info-row */
.info-rows{padding:8px 0}
.info-row{
  display:flex;align-items:flex-start;gap:16px;
  padding:18px 28px;border-bottom:1px solid var(--border-light);
  transition:background .2s;cursor:default;
}
.info-row:last-child{border-bottom:none}
.info-row:hover{background:var(--brand-xlight)}
.info-row__ico{
  width:42px;height:42px;border-radius:12px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:17px;
  background:linear-gradient(135deg,var(--brand-pale),#c5dff7);
  box-shadow:0 2px 10px rgba(2,92,154,.12);
  transition:transform .25s,box-shadow .25s;
}
.info-row:hover .info-row__ico{transform:scale(1.08);box-shadow:0 4px 16px rgba(2,92,154,.2)}
.info-row__body{flex:1;min-width:0}
.info-row__label{font-size:10.5px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:4px;display:block}
.info-row__value{font-size:13.5px;font-weight:500;color:var(--text-dark);line-height:1.5}
.info-row__value a{color:var(--brand);transition:color .2s}
.info-row__value a:hover{color:var(--main-color)}

/* Map card */
.map-card{
  border-radius:var(--radius-lg);overflow:hidden;
  border:1.5px solid var(--border);box-shadow:var(--shadow-card);
  position:relative;
}
.map-card__bar{
  background:linear-gradient(90deg,var(--brand-dark),var(--brand));
  padding:10px 20px;display:flex;align-items:center;gap:10px;
}
.map-card__bar-dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.4)}
.map-card__bar-title{font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.75)}
.map-card__frame{
  width:100%;height:260px;display:block;border:none;
  filter:saturate(0.85);transition:filter .3s;
}
.map-card:hover .map-card__frame{filter:saturate(1)}
.map-card__overlay{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(to top,rgba(1,47,80,.7) 0%,transparent 100%);
  padding:16px 20px 14px;pointer-events:none;
}
.map-card__overlay-text{font-size:11.5px;color:rgba(255,255,255,.8);display:flex;align-items:center;gap:6px}

/* ════════════════════════════════════════
   RIGHT PANEL — Contact Form
════════════════════════════════════════ */
.form-card{
  background:#fff;border-radius:var(--radius-lg);
  border:1.5px solid var(--border);box-shadow:var(--shadow-card);
  overflow:hidden;
}
.form-card__head{
  padding:32px 36px 28px;border-bottom:1px solid var(--border-light);
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  flex-wrap:wrap;
}
.form-card__head-left{}
.form-card__eyebrow{font-size:10.5px;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--main-color);margin-bottom:8px;display:flex;align-items:center;gap:6px}
.form-card__eyebrow::before{content:'';width:20px;height:1.5px;background:var(--main-color);opacity:.5}
.form-card__title{font-size:24px;font-weight:700;color:var(--brand-dark);line-height:1.2;letter-spacing:-.02em}
.form-card__title em{font-style:normal;font-weight:400;color:var(--main-color)}
.form-card__sub{font-size:13px;color:var(--muted);line-height:1.6;margin-top:6px;max-width:380px}
/* Response time badge */
.form-badge{
  display:inline-flex;align-items:center;gap:8px;flex-shrink:0;
  background:var(--brand-xlight);border:1px solid var(--border);
  border-radius:50px;padding:8px 16px;
  font-size:11.5px;font-weight:500;color:var(--brand);
  align-self:flex-start;margin-top:4px;
}
.form-badge__dot{width:7px;height:7px;border-radius:50%;background:#22d46a;flex-shrink:0;animation:pulse1 2s ease infinite}

/* Form body */
.form-card__body{padding:32px 36px 36px}

/* ── Field groups — CF7 compatible ── */
.cf7-row{display:grid;gap:16px;margin-bottom:16px}
.cf7-row--2{grid-template-columns:1fr 1fr}
.cf7-row--1{grid-template-columns:1fr}

.cf7-field{position:relative;display:flex;flex-direction:column;gap:6px}
.cf7-label{
  font-size:11.5px;font-weight:600;letter-spacing:.5px;
  color:var(--text-body);display:block;
}
.cf7-label span{color:var(--main-color);margin-left:2px}

/* Input / textarea base */
.cf7-input,
.cf7-textarea,
.cf7-select{
  width:100%;font-family:var(--font);font-size:14px;color:var(--text-dark);
  background:#fff;
  border:1.5px solid var(--border);border-radius:var(--radius-sm);
  padding:13px 16px;
  transition:border-color .22s,box-shadow .22s,background .22s;
  appearance:none;-webkit-appearance:none;
}
.cf7-input::placeholder,.cf7-textarea::placeholder{color:var(--muted);font-weight:300}
.cf7-input:hover,.cf7-textarea:hover,.cf7-select:hover{border-color:rgba(2,92,154,.35)}
.cf7-input:focus,.cf7-textarea:focus,.cf7-select:focus{
  border-color:var(--main-color);
  box-shadow:0 0 0 4px rgba(34,152,242,.1);
  background:#fafcff;
  outline:none;
}
/* Floating focus bar */
.cf7-field::after{
  content:'';position:absolute;bottom:0;left:16px;right:16px;height:2px;
  background:linear-gradient(90deg,var(--brand),var(--main-color));
  border-radius:2px;transform:scaleX(0);transform-origin:left;
  transition:transform .3s cubic-bezier(.22,.8,.36,1);pointer-events:none;
}
.cf7-field:focus-within::after{transform:scaleX(1)}
.cf7-field::after{bottom:1px} /* sits just inside border */

.cf7-textarea{resize:vertical;min-height:140px;line-height:1.7}

/* Select */
.cf7-select-wrap{position:relative}
.cf7-select-wrap::after{
  content:'▾';position:absolute;right:14px;top:50%;transform:translateY(-50%);
  font-size:13px;color:var(--muted);pointer-events:none;
}
.cf7-select{cursor:pointer;padding-right:36px}

/* Phone row: prefix + input */
.cf7-phone-row{display:flex;gap:0;border:1.5px solid var(--border);border-radius:var(--radius-sm);overflow:hidden;transition:border-color .22s,box-shadow .22s}
.cf7-phone-row:focus-within{border-color:var(--main-color);box-shadow:0 0 0 4px rgba(34,152,242,.1)}
.cf7-phone-prefix{
  flex-shrink:0;padding:13px 14px;background:var(--brand-xlight);
  border-right:1.5px solid var(--border);
  font-size:13.5px;font-weight:600;color:var(--brand);white-space:nowrap;
  display:flex;align-items:center;gap:6px;
}
.cf7-phone-row .cf7-input{border:none;border-radius:0;box-shadow:none!important}
.cf7-phone-row .cf7-input:focus{background:#fafcff}
.cf7-field:has(.cf7-phone-row)::after{display:none}

/* Checkbox */
.cf7-check-row{display:flex;align-items:flex-start;gap:12px;margin-top:8px}
.cf7-check-row input[type="checkbox"]{
  width:18px;height:18px;border-radius:5px;border:1.5px solid var(--border);
  appearance:none;-webkit-appearance:none;flex-shrink:0;margin-top:1px;
  cursor:pointer;transition:all .2s;background:#fff;
}
.cf7-check-row input[type="checkbox"]:checked{
  background:var(--brand);border-color:var(--brand);
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E");
  background-size:70%;background-position:center;background-repeat:no-repeat;
}
.cf7-check-label{font-size:12.5px;color:var(--muted);line-height:1.6}
.cf7-check-label a{color:var(--main-color);font-weight:500}

/* Submit button */
.cf7-submit-row{margin-top:24px}
.cf7-submit{
  width:100%;padding:16px 32px;
  background:linear-gradient(90deg,var(--brand-dark),var(--main-color));
  color:#fff;border:none;border-radius:var(--radius-sm);
  font-family:var(--font);font-size:14px;font-weight:700;
  letter-spacing:.5px;text-transform:uppercase;
  cursor:pointer;position:relative;overflow:hidden;
  transition:transform .25s,box-shadow .25s,filter .25s;
  box-shadow:0 6px 22px rgba(2,92,154,.32);
}
.cf7-submit:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(2,92,154,.4);filter:brightness(1.06)}
.cf7-submit:active{transform:translateY(0);filter:brightness(.97)}
/* shimmer on hover */
.cf7-submit::before{
  content:'';position:absolute;top:0;left:-100%;width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transition:left .55s ease;
}
.cf7-submit:hover::before{left:160%}
/* arrow */
.cf7-submit::after{content:'→';margin-left:10px;font-size:16px;transition:transform .2s}
.cf7-submit:hover::after{transform:translateX(4px)}

/* Success state */
.cf7-success{
  display:none;text-align:center;padding:40px 20px;
}
.cf7-success.show{display:block;animation:fadeUp .5s ease}
.cf7-success__ico{
  width:72px;height:72px;border-radius:50%;margin:0 auto 18px;
  background:linear-gradient(135deg,#d1fae5,#a7f3d0);
  display:flex;align-items:center;justify-content:center;font-size:30px;
  animation:checkPop .5s cubic-bezier(.22,.8,.36,1) both;
}
.cf7-success__title{font-size:22px;font-weight:700;color:var(--text-dark);margin-bottom:8px}
.cf7-success__sub{font-size:14px;color:var(--muted);line-height:1.7}

/* ════════════════════════════════════════
   QUICK INFO STRIP  (below the main grid)
════════════════════════════════════════ */
.contact-strip{
  max-width:var(--container);margin:52px auto 0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  position:relative;z-index:1;
}
/* ACF repeater — all .cstrip-item */
.cstrip-item{
  display:flex;align-items:center;gap:18px;
  background:#fff;border-radius:var(--radius-md);padding:22px 24px;
  border:1.5px solid var(--border);box-shadow:var(--shadow-card);
  transition:transform .3s,box-shadow .3s,border-color .25s;
}
.cstrip-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-sub);border-color:rgba(34,152,242,.3)}
.cstrip-item__ico{
  width:50px;height:50px;border-radius:14px;flex-shrink:0;
  background:linear-gradient(135deg,var(--brand-pale),#c5dff7);
  display:flex;align-items:center;justify-content:center;font-size:22px;
  box-shadow:0 2px 12px rgba(2,92,154,.12);
}
.cstrip-item__body{}
.cstrip-item__label{font-size:10.5px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--muted);margin-bottom:4px;display:block}
.cstrip-item__val{font-size:14px;font-weight:600;color:var(--text-dark);line-height:1.4}
.cstrip-item__val a{color:var(--brand);transition:color .2s}
.cstrip-item__val a:hover{color:var(--main-color)}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1100px){
  .contact-inner{grid-template-columns:360px 1fr;gap:32px}
}
@media(max-width:900px){
  .contact-inner{grid-template-columns:1fr}
  .contact-strip{grid-template-columns:1fr 1fr}
  .form-card__head{flex-direction:column}
}
@media(max-width:640px){
  .contact-section{padding:56px 16px 70px}
  .cf7-row--2{grid-template-columns:1fr}
  .form-card__head{padding:24px 20px 20px}
  .form-card__body{padding:22px 20px 26px}
  .contact-strip{grid-template-columns:1fr}
  .page-banner{min-height:300px}
  .page-banner::after{height:36px}
  .page-banner__content{padding:44px 16px 56px}
}

@keyframes pulse1{0%,100%{box-shadow:0 0 0 0 rgba(34,152,242,.35)}70%{box-shadow:0 0 0 10px rgba(34,152,242,0)}}
@keyframes checkPop{0%{transform:scale(0) rotate(-10deg);opacity:0}60%{transform:scale(1.15) rotate(3deg)}100%{transform:scale(1) rotate(0deg);opacity:1}}
@keyframes lineGrow{from{width:0}to{width:100%}}


/* ================================================================
   PRODUCT CATEGORY CTA CARDS — Stylesheet
   Container max-width: 1400px (via global .wrap)
   ================================================================ */
.cat-wrap {
  font-family: var(--font);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 10px;
  font-weight: 500;
  opacity: 0.7;
}
.cat-heading {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  color: var(--brand);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: var(--container);
}
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  transition: transform 0.32s cubic-bezier(.22,.68,0,1.2), box-shadow 0.32s ease;
  box-shadow: var(--shadow-sub);
}
.cat-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(2,92,154,0.26);
}
.cat-card-1 { background: linear-gradient(135deg, #025c9a 0%, #012f50 100%); }
.cat-card-2 { background: linear-gradient(135deg, #0470bb 0%, #014a7d 100%); }
.cat-card-3 { background: linear-gradient(135deg, #00b4d8 0%, #0470bb 100%); }

.cat-card-bg-orb {
  position: absolute;
  right: -18px; bottom: -18px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: white; opacity: 0.08;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cat-card:hover .cat-card-bg-orb { transform: scale(1.3); opacity: 0.13; }

.cat-card-accent-bar {
  position: absolute;
  top: 0; left: 20px;
  width: 32px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: rgba(255,255,255,0.35);
}
.cat-card-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white;
  transition: background 0.3s ease;
}
.cat-card-icon svg{
  width: 36px;
  height: 36px;
}
.cat-card:hover .cat-card-icon { background: rgba(255,255,255,0.25); }

.cat-card-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cat-card-title {
  font-size: 14px; font-weight: 600;
  color: #fff; line-height: 1.25;
}
.cat-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.cat-card-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.6);
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.cat-card:hover .cat-card-arrow {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.65);
  transform: translateX(3px); color: #fff;
}
@media (max-width: 768px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-heading { text-align: center; }
}