/* ===========================================
   INVISION PHARMA PAGES PLUGIN — v2.0.0
   Brand: IPL Teal #1db8c2 + Lime #7dc242
   Namespace: .ipp-*  |  OceanWP / Astra safe
   =========================================== */

/* ── GOOGLE FONTS IMPORT ─────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── BRAND TOKENS ────────────────────────── */
.ipp-wrap {
  /* IPL Brand Colors — from logo */
  --ipp-teal:       #1db8c2;   /* primary: IPL cyan/teal */
  --ipp-teal-dk:    #15939b;   /* darker teal for hover */
  --ipp-teal-lt:    #4fd0d8;   /* lighter teal */
  --ipp-lime:       #7dc242;   /* secondary: IPL lime green */
  --ipp-lime-dk:    #62a030;   /* darker lime */
  --ipp-lime-lt:    #9ed666;   /* lighter lime */
  --ipp-black:      #0d0d0d;   /* brand black */
  --ipp-dark:       #111827;   /* near-black for sections */
  --ipp-dark-mid:   #1f2937;   /* dark mid */
  --ipp-white:      #ffffff;
  --ipp-offwhite:   #f4f9f9;   /* teal-tinted offwhite */
  --ipp-gray:       #6b7280;
  --ipp-gray-lt:    #e5eaea;
  --ipp-text:       #1a1f2e;

  /* Layout */
  --ipp-r:          8px;
  --ipp-r-lg:       16px;
  --ipp-r-xl:       24px;
  --ipp-shadow:     0 4px 20px rgba(29,184,194,.12);
  --ipp-shadow-lg:  0 12px 48px rgba(29,184,194,.18);

  /* Typography — Poppins + Open Sans */
  --ipp-font-h:     'Poppins', sans-serif;
  --ipp-font-b:     'Open Sans', sans-serif;
}

/* ── RESET ───────────────────────────────── */
.ipp-wrap *, .ipp-wrap *::before, .ipp-wrap *::after { box-sizing: border-box; }
.ipp-wrap {
  line-height: 1.7;
  color: var(--ipp-text);
  font-family: var(--ipp-font-b);
  font-size: 16px;
}
.ipp-wrap a { text-decoration: none; transition: color .2s; }
.ipp-wrap img { max-width: 100%; height: auto; display: block; }
.ipp-wrap ul { list-style: none; margin: 0; padding: 0; }
.ipp-wrap h1, .ipp-wrap h2, .ipp-wrap h3, .ipp-wrap h4, .ipp-wrap h5 {
  font-family: var(--ipp-font-h);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}
.ipp-wrap p { margin: 0 0 1em; }
.ipp-wrap strong { font-weight: 700; }

/* ── CONTAINER ───────────────────────────── */
.ipp-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.ipp-container--narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }

/* ── SECTIONS ────────────────────────────── */
.ipp-section { padding: 80px 0; }
.ipp-section--sm { padding: 48px 0; }
.ipp-section--light  { background: var(--ipp-offwhite); }
.ipp-section--dark   { background: var(--ipp-dark); color: #fff; }
.ipp-section--black  { background: var(--ipp-black); color: #fff; }
.ipp-section--teal   { background: linear-gradient(135deg, var(--ipp-teal) 0%, var(--ipp-teal-dk) 100%); color: #fff; }
.ipp-section--teal-lime {
  background: linear-gradient(135deg, var(--ipp-dark) 0%, #0f2320 60%, #0a1a10 100%);
  color: #fff;
}

/* ── EYEBROW LABEL ───────────────────────── */
.ipp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ipp-font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ipp-teal);
  margin-bottom: 12px;
}
.ipp-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 3px;
  background: var(--ipp-lime);
  border-radius: 2px;
  flex-shrink: 0;
}
.ipp-section--dark .ipp-eyebrow,
.ipp-section--black .ipp-eyebrow,
.ipp-section--teal-lime .ipp-eyebrow { color: var(--ipp-lime-lt); }
.ipp-section--teal .ipp-eyebrow { color: rgba(255,255,255,.9); }
.ipp-section--teal .ipp-eyebrow::before { background: rgba(255,255,255,.5); }

/* ── SECTION HEADERS ─────────────────────── */
.ipp-section-header { margin-bottom: 52px; }
.ipp-section-header--center { text-align: center; }
.ipp-section-header--center .ipp-section-sub { margin: 0 auto; }
.ipp-section-header--center .ipp-eyebrow { display: inline-flex; }

.ipp-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 800;
  color: var(--ipp-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.ipp-section-title span.ipp-lime  { color: var(--ipp-lime); }
.ipp-section-title span.ipp-teal  { color: var(--ipp-teal); }

.ipp-section--dark .ipp-section-title,
.ipp-section--black .ipp-section-title,
.ipp-section--teal-lime .ipp-section-title { color: #fff; }
.ipp-section--teal .ipp-section-title { color: #fff; }

.ipp-section-sub {
  font-size: 1.05rem;
  color: var(--ipp-gray);
  max-width: 600px;
  line-height: 1.8;
}
.ipp-section--dark .ipp-section-sub,
.ipp-section--black .ipp-section-sub,
.ipp-section--teal-lime .ipp-section-sub,
.ipp-section--teal .ipp-section-sub { color: rgba(255,255,255,.72); }

/* ── HERO ────────────────────────────────── */
.ipp-hero {
  background: linear-gradient(135deg, var(--ipp-black) 0%, #0d1a1b 55%, #0a1e1e 100%);
  color: #fff;
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Teal radial glow */
.ipp-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(29,184,194,.16) 0%, transparent 65%);
  pointer-events: none;
}
/* Lime accent glow */
.ipp-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125,194,66,.08) 0%, transparent 65%);
  pointer-events: none;
}
.ipp-hero__inner { position: relative; z-index: 1; }

.ipp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,184,194,.12);
  color: var(--ipp-teal-lt);
  border: 1px solid rgba(29,184,194,.3);
  font-family: var(--ipp-font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.ipp-hero h1 {
  font-family: var(--ipp-font-h);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.ipp-hero h1 em {
  font-style: normal;
  color: var(--ipp-lime);
}
.ipp-hero h1 .ipp-teal-text { color: var(--ipp-teal); }

.ipp-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  max-width: 660px;
  margin: 0 auto 36px;
  line-height: 1.85;
}
.ipp-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Hero stats */
.ipp-hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 36px;
}
.ipp-hero__stat {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.ipp-hero__stat:last-child { border-right: none; }
.ipp-hero__stat-num {
  display: block;
  font-family: var(--ipp-font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ipp-lime);
  line-height: 1;
}
.ipp-hero__stat-label {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  font-family: var(--ipp-font-h);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-top: 5px;
}

/* ── TRUST / CERT BAR ────────────────────── */
.ipp-trust-bar {
  background: var(--ipp-dark);
  border-top: 3px solid var(--ipp-teal);
  padding: 22px 0;
}
.ipp-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 36px;
  flex-wrap: wrap;
}
.ipp-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ipp-font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
}
.ipp-cert__icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--ipp-lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: #fff; font-weight: 900;
}

/* ── SPLIT LAYOUT ────────────────────────── */
.ipp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ipp-split--flip { direction: rtl; }
.ipp-split--flip > * { direction: ltr; }

/* Dark visual panel */
.ipp-visual-panel {
  background: linear-gradient(135deg, var(--ipp-dark) 0%, #0d1e1e 100%);
  border-radius: var(--ipp-r-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--ipp-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29,184,194,.15);
}
.ipp-visual-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(125,194,66,.1) 0%, transparent 70%);
}
.ipp-visual-panel .icon-lg { font-size: 4.5rem; margin-bottom: 16px; }
.ipp-visual-panel p { color: rgba(255,255,255,.5); font-size: .88rem; }

/* Stat grid inside visual panel */
.ipp-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.ipp-stat-box {
  padding: 16px 12px;
  border-radius: var(--ipp-r);
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
}
.ipp-stat-box--teal { background: rgba(29,184,194,.12); border-color: rgba(29,184,194,.25); }
.ipp-stat-box--lime { background: rgba(125,194,66,.1);  border-color: rgba(125,194,66,.25); }
.ipp-stat-box .num {
  font-family: var(--ipp-font-h);
  font-size: 1.7rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.ipp-stat-box--teal .num { color: var(--ipp-teal-lt); }
.ipp-stat-box--lime .num { color: var(--ipp-lime-lt); }
.ipp-stat-box .lbl { font-size: .68rem; color: rgba(255,255,255,.48); margin-top: 5px; display: block; font-family: var(--ipp-font-h); text-transform: uppercase; letter-spacing: 1px; }

/* ── CHECKLIST ───────────────────────────── */
.ipp-checklist { margin: 0; padding: 0; }
.ipp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ipp-gray-lt);
  font-size: .94rem;
  color: var(--ipp-text);
  line-height: 1.6;
}
.ipp-checklist li:last-child { border-bottom: none; }
.ipp-check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--ipp-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .65rem; font-weight: 900;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────── */
.ipp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--ipp-r);
  font-family: var(--ipp-font-h);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  text-align: center;
  line-height: 1;
  letter-spacing: .3px;
}
/* Primary: Teal */
.ipp-btn--teal { background: var(--ipp-teal); color: #fff; border-color: var(--ipp-teal); }
.ipp-btn--teal:hover { background: var(--ipp-teal-dk); border-color: var(--ipp-teal-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,184,194,.35); }
/* Secondary: Lime */
.ipp-btn--lime { background: var(--ipp-lime); color: #fff; border-color: var(--ipp-lime); }
.ipp-btn--lime:hover { background: var(--ipp-lime-dk); border-color: var(--ipp-lime-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(125,194,66,.35); }
/* Outline white */
.ipp-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.ipp-btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
/* Outline teal */
.ipp-btn--outline-teal { background: transparent; color: var(--ipp-teal); border-color: var(--ipp-teal); }
.ipp-btn--outline-teal:hover { background: var(--ipp-teal); color: #fff; }
/* Dark */
.ipp-btn--dark { background: var(--ipp-dark); color: #fff; border-color: var(--ipp-dark); }
.ipp-btn--dark:hover { background: #000; color: #fff; }

.ipp-btn--lg  { padding: 16px 38px; font-size: 1rem; }
.ipp-btn--sm  { padding: 8px 16px; font-size: .78rem; }
.ipp-btn--full { width: 100%; justify-content: center; }

/* PopMake trigger */
.ipp-btn.popmake-2774 { cursor: pointer; }

/* ── PRODUCT GRID ────────────────────────── */
.ipp-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 20px;
}
.ipp-product-card {
  background: var(--ipp-white);
  border: 1px solid var(--ipp-gray-lt);
  border-radius: var(--ipp-r-lg);
  overflow: hidden;
  transition: all .25s;
  box-shadow: 0 2px 12px rgba(29,184,194,.07);
  display: flex;
  flex-direction: column;
}
.ipp-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(29,184,194,.18);
  border-color: var(--ipp-teal);
}
.ipp-product-card__img {
  height: 150px;
  background: linear-gradient(135deg, #0d1e1e 0%, #0f2929 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.ipp-product-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ipp-teal), var(--ipp-lime));
}
.ipp-product-card__img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ipp-product-card__body { padding: 18px 18px 0; flex: 1; }
.ipp-product-card h3 { font-size: .96rem; color: var(--ipp-dark); margin-bottom: 6px; font-weight: 700; }
.ipp-product-card p  { font-size: .82rem; color: var(--ipp-gray); margin: 0; line-height: 1.6; }
.ipp-product-card__footer {
  padding: 12px 18px 16px;
  display: flex; justify-content: space-between; align-items: center;
}

/* ── BADGES ──────────────────────────────── */
.ipp-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--ipp-font-h);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ipp-badge--teal { background: rgba(29,184,194,.12); color: var(--ipp-teal-dk); }
.ipp-badge--lime { background: rgba(125,194,66,.13);  color: var(--ipp-lime-dk); }
.ipp-badge--dark { background: rgba(17,24,39,.08);    color: var(--ipp-dark); }
.ipp-badge--new  { background: rgba(239,68,68,.1);    color: #dc2626; }

/* ── CARD GRID (Benefits / Why Us) ──────── */
.ipp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.ipp-card {
  background: var(--ipp-white);
  border: 1px solid var(--ipp-gray-lt);
  border-radius: var(--ipp-r-lg);
  padding: 30px 26px;
  box-shadow: 0 2px 12px rgba(29,184,194,.06);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.ipp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ipp-teal), var(--ipp-lime));
  opacity: 0;
  transition: opacity .25s;
}
.ipp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(29,184,194,.15); border-color: var(--ipp-teal); }
.ipp-card:hover::before { opacity: 1; }

.ipp-card--dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.ipp-card--dark:hover { border-color: var(--ipp-teal); }

.ipp-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(29,184,194,.15), rgba(125,194,66,.08));
  margin-bottom: 18px;
  border: 1px solid rgba(29,184,194,.15);
}
.ipp-card--dark .ipp-card__icon { background: rgba(29,184,194,.15); border-color: rgba(29,184,194,.2); }
.ipp-card h3 { font-size: 1.02rem; color: var(--ipp-dark); margin-bottom: 8px; font-weight: 700; }
.ipp-card--dark h3 { color: #fff; }
.ipp-card p  { font-size: .87rem; color: var(--ipp-gray); margin: 0; line-height: 1.65; }
.ipp-card--dark p { color: rgba(255,255,255,.6); }

/* ── PROCESS STEPS ───────────────────────── */
.ipp-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0;
  position: relative;
}
.ipp-process::before {
  content: '';
  position: absolute;
  top: 31px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--ipp-teal), var(--ipp-lime));
  z-index: 0;
}
.ipp-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.ipp-step__num {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--ipp-white);
  color: var(--ipp-teal);
  border: 3px solid var(--ipp-teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ipp-font-h);
  font-size: 1.25rem;
  font-weight: 900;
  position: relative;
}
.ipp-step__num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(125,194,66,.3);
}
.ipp-section--light .ipp-step__num { background: var(--ipp-offwhite); }
.ipp-section--dark  .ipp-step__num { background: var(--ipp-dark); }
.ipp-step h4 { font-size: .88rem; color: var(--ipp-dark); margin-bottom: 7px; font-weight: 700; }
.ipp-section--dark .ipp-step h4 { color: #fff; }
.ipp-step p  { font-size: .78rem; color: var(--ipp-gray); margin: 0; line-height: 1.6; }
.ipp-section--dark .ipp-step p { color: rgba(255,255,255,.55); }

/* ── DATA TABLE ──────────────────────────── */
.ipp-table-wrap { border-radius: var(--ipp-r-lg); overflow: hidden; box-shadow: var(--ipp-shadow); border: 1px solid var(--ipp-gray-lt); }
.ipp-table { width: 100%; border-collapse: collapse; }
.ipp-table thead { background: linear-gradient(90deg, var(--ipp-dark) 0%, #0d2020 100%); }
.ipp-table th {
  color: #fff;
  padding: 15px 20px;
  font-family: var(--ipp-font-h);
  font-size: .78rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.ipp-table th:first-child { border-left: 4px solid var(--ipp-teal); }
.ipp-table td { padding: 13px 20px; border-bottom: 1px solid var(--ipp-gray-lt); font-size: .9rem; background: #fff; }
.ipp-table tr:last-child td { border-bottom: none; }
.ipp-table tbody tr:hover td { background: var(--ipp-offwhite); }
.ipp-table td:first-child { font-weight: 600; color: var(--ipp-dark); }

/* ── FAQ ACCORDION ───────────────────────── */
.ipp-faq { max-width: 840px; margin: 0 auto; }
.ipp-faq-item {
  border: 1px solid var(--ipp-gray-lt);
  border-radius: var(--ipp-r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.ipp-faq-item.open {
  box-shadow: 0 4px 20px rgba(29,184,194,.12);
  border-color: var(--ipp-teal);
}
.ipp-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--ipp-font-h);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ipp-dark);
  text-align: left;
  gap: 14px;
  transition: background .15s;
}
.ipp-faq-q:hover { background: var(--ipp-offwhite); }
.ipp-faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ipp-teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .3s, background .2s;
  line-height: 1;
}
.ipp-faq-item.open .ipp-faq-icon { transform: rotate(45deg); background: var(--ipp-lime); }
.ipp-faq-a {
  display: none;
  padding: 4px 22px 20px;
  font-size: .92rem;
  color: var(--ipp-gray);
  line-height: 1.75;
  border-top: 1px solid var(--ipp-gray-lt);
}
.ipp-faq-item.open .ipp-faq-a { display: block; }

/* ── CTA STRIP ───────────────────────────── */
.ipp-cta-section { text-align: center; }
.ipp-cta-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #fff; margin-bottom: 14px;
  font-weight: 800;
}
.ipp-cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.ipp-cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── COMPARISON TABLE (Liposomal) ────────── */
.ipp-compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 8px; align-items: center;
  padding: 11px 14px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.06);
}
.ipp-compare-row .lbl { font-size: .83rem; color: rgba(255,255,255,.7); font-family: var(--ipp-font-h); }
.ipp-compare-row .bad  { font-size: .78rem; color: rgba(255,120,120,.9); }
.ipp-compare-row .good { font-size: .78rem; color: var(--ipp-lime-lt); font-weight: 600; }

/* ── MACRO BAR (Keto) ────────────────────── */
.ipp-macro {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ipp-offwhite);
  border-radius: var(--ipp-r);
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left-width: 4px;
  border-left-style: solid;
}
.ipp-macro .name { font-family: var(--ipp-font-h); font-size: .88rem; font-weight: 700; color: var(--ipp-dark); }
.ipp-macro .val  { font-family: var(--ipp-font-h); font-size: .95rem; font-weight: 800; }

/* ── MODAL ───────────────────────────────── */
.ipp-modal {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.ipp-modal[hidden] { display: none; }
.ipp-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,10,10,.82);
  backdrop-filter: blur(6px);
}
.ipp-modal__box {
  position: relative; z-index: 1;
  background: #fff;
  border-radius: var(--ipp-r-xl);
  width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  animation: ippModalIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes ippModalIn { from { opacity:0; transform: scale(.92) translateY(30px); } to { opacity:1; transform: none; } }
.ipp-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none; color: #fff; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .2s; line-height: 1;
}
.ipp-modal__close:hover { background: rgba(255,255,255,.25); }
.ipp-modal__header {
  background: linear-gradient(135deg, var(--ipp-black), #0d2222);
  color: #fff;
  padding: 32px 28px 26px;
  border-radius: var(--ipp-r-xl) var(--ipp-r-xl) 0 0;
  text-align: center;
  border-bottom: 3px solid var(--ipp-teal);
}
.ipp-modal__icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.ipp-modal__header h2 { font-size: 1.4rem; color: #fff; margin-bottom: 8px; }
.ipp-modal__header p  { font-size: .88rem; color: rgba(255,255,255,.65); margin: 0; }
.ipp-modal__header strong { color: var(--ipp-lime-lt); }
.ipp-modal__body  { padding: 28px; }
.ipp-modal__footer {
  padding: 16px 28px 22px;
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--ipp-gray-lt);
  background: var(--ipp-offwhite);
  border-radius: 0 0 var(--ipp-r-xl) var(--ipp-r-xl);
}
.ipp-modal__contact-link {
  font-family: var(--ipp-font-h); font-size: .82rem; font-weight: 700;
  color: var(--ipp-teal);
  display: flex; align-items: center; gap: 6px;
}
.ipp-modal__contact-link:hover { color: var(--ipp-lime-dk); }

/* ── FORM ────────────────────────────────── */
.ipp-fallback-form .ipp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ipp-form-group { margin-bottom: 14px; }
.ipp-form-group label {
  display: block;
  font-family: var(--ipp-font-h);
  font-size: .72rem; font-weight: 700;
  color: var(--ipp-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ipp-form-group input,
.ipp-form-group select,
.ipp-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ipp-gray-lt);
  border-radius: var(--ipp-r);
  font-family: var(--ipp-font-b);
  font-size: .93rem;
  color: var(--ipp-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.ipp-form-group input:focus,
.ipp-form-group select:focus,
.ipp-form-group textarea:focus {
  border-color: var(--ipp-teal);
  box-shadow: 0 0 0 3px rgba(29,184,194,.12);
}
.ipp-form-group textarea { resize: vertical; min-height: 100px; }
.ipp-form-notice {
  padding: 12px 16px;
  border-radius: var(--ipp-r);
  font-family: var(--ipp-font-h);
  font-size: .85rem;
  margin-bottom: 12px;
}
.ipp-form-notice--success { background: rgba(29,184,194,.1); color: var(--ipp-teal-dk); border: 1px solid var(--ipp-teal); }
.ipp-form-notice--error   { background: rgba(220,53,69,.08); color: #dc3545; border: 1px solid #dc3545; }

/* ── FLOATING ENQUIRY BUTTON ─────────────── */
.ipp-float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--ipp-teal), var(--ipp-lime));
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: var(--ipp-font-h);
  font-size: .85rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(29,184,194,.4);
  cursor: pointer;
  border: none;
  transition: all .25s;
  animation: ippPulse 2.5s ease-in-out infinite;
}
.ipp-float-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(29,184,194,.5); color: #fff; }
@keyframes ippPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(29,184,194,.4); }
  50% { box-shadow: 0 8px 32px rgba(29,184,194,.4), 0 0 0 8px rgba(29,184,194,.1); }
}

/* ── HIGHLIGHT BOX ───────────────────────── */
.ipp-highlight {
  background: linear-gradient(135deg, rgba(29,184,194,.08), rgba(125,194,66,.05));
  border: 1px solid rgba(29,184,194,.2);
  border-left: 4px solid var(--ipp-teal);
  border-radius: var(--ipp-r);
  padding: 20px 22px;
  margin: 20px 0;
}
.ipp-highlight p { margin: 0; font-size: .93rem; color: var(--ipp-dark); font-style: italic; }
.ipp-highlight strong { color: var(--ipp-teal-dk); }

/* ── DIVIDER LINE ────────────────────────── */
.ipp-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--ipp-teal), var(--ipp-lime), transparent);
  border: none;
  margin: 0;
}

/* ── SCROLL REVEAL ───────────────────────── */
.ipp-reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.ipp-reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .ipp-split { grid-template-columns: 1fr; gap: 36px; }
  .ipp-split--flip { direction: ltr; }
}
@media (max-width: 768px) {
  .ipp-section { padding: 56px 0; }
  .ipp-process::before { display: none; }
  .ipp-process { grid-template-columns: 1fr 1fr; }
  .ipp-hero { padding: 64px 0 52px; }
  .ipp-hero__stat { padding: 0 18px; }
  .ipp-hero__actions { flex-direction: column; align-items: center; }
  .ipp-fallback-form .ipp-form-row { grid-template-columns: 1fr; }
  .ipp-float-btn { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .8rem; }
  .ipp-trust-bar__inner { gap: 8px 20px; }
}
@media (max-width: 540px) {
  .ipp-process { grid-template-columns: 1fr; }
  .ipp-card-grid { grid-template-columns: 1fr; }
  .ipp-product-grid { grid-template-columns: 1fr 1fr; }
  .ipp-hero__stats { flex-direction: column; gap: 16px; }
  .ipp-hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; }
  .ipp-hero__stat:last-child { border-bottom: none; }
}
@media (max-width: 380px) {
  .ipp-product-grid { grid-template-columns: 1fr; }
}
