/* =============================================================
   InstaCoach Landing Page — landing.css
   Brand: #0d1a3a (dark navy) | #4f7fff (blue) | Poppins
   Spacing: em units (base 16px = 1em)
   ============================================================= */

/* ----- Reset & base ------------------------------------------ */
/* #ic-landing *,
#ic-landing *::before,
#ic-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
} */

#ic-landing {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #0d1a3a;
  background: #fff;
  line-height: 1.6;
  /* push content below fixed nav (+ banner when present via --ic-lp-pad) */
  padding-top: var(--ic-lp-pad, 4em);
  /* push content above sticky footer; safe-area for mobile notch */
  padding-bottom: calc(5.5em + env(safe-area-inset-bottom, 0px));
}

/* ----- Shared button ----------------------------------------- */
.ic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375em;                                            /* 6px */
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.ic-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.ic-btn:active {
  transform: translateY(0);
}

.ic-btn--primary {
  background: #FF6B35;
  color: #fff;
  padding: 0.875em 1.75em;                                 /* 14px 28px */
}
.ic-btn--primary:hover {
  background: #E85A24;
  opacity: 1;
}

.ic-btn--white {
  background: #fff;
  color: #0d1a3a;
  padding: 0.875em 1.75em;                                 /* 14px 28px */
}

/* ----- Shared section chrome --------------------------------- */
.ic-section {
  padding: 3.25em 1.25em;                                  /* 52px 20px */
}

.ic-section__inner {
  max-width: 80%;
  margin: 0 auto;
}

.ic-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d1a3a;
  margin-bottom: 0.375em;                                  /* 6px */
}

.ic-section__title--spaced {
  margin-top: 2.5em;                                       /* 40px */
}

.ic-section__sub {
  font-size: 14px;
  color: #6b738f;
  margin-bottom: 1.75em;                                   /* 28px */
}

/* =============================================================
   NAV
   ============================================================= */
.ic-nav {
  position: fixed;
  top: var(--ic-pwa-banner-h, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eaedf5;
  transition: box-shadow 0.2s, transform 0.3s ease, top 0.2s ease;
}

.ic-nav--scrolled {
  box-shadow: 0 2px 16px rgba(13, 26, 58, 0.10);
}

/* Slide nav out of view when user scrolls down */
.ic-nav--hidden {
  transform: translateY(-100%);
}

.ic-nav__inner {
  max-width: 80%;                                         /* 720px */
  margin: 0 auto;
  padding: 0 1.25em;                                       /* 0 20px */
  height: 4em;                                             /* 64px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ic-nav__logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0d1a3a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.375em;                                            /* 6px */
}

.ic-nav__logo-pill {
  background: #0238a8;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 0.2em 0.8em;                                    /* ~2px 8px at 10px base */
  border-radius: 50px;
  letter-spacing: 0.3px;
}

/* ── Desktop nav links ──────────────────────────────────── */
.ic-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25em;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.ic-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #0d1a3a;
  text-decoration: none;
  padding: 0.5em 0.75em;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.ic-nav__link:hover {
  background: #f0f2f7;
  color: #FF6B35;
}

/* ── Right-side action cluster ──────────────────────────── */
.ic-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625em;                                            /* 10px */
}

.ic-nav__login {
  font-size: 14px;
  font-weight: 500;
  color: #6b738f;
  text-decoration: none;
  padding: 0.5em 0.75em;
  white-space: nowrap;
  transition: color 0.15s;
}

.ic-nav__login:hover {
  color: #0d1a3a;
}

.ic-nav__cta {
  font-size: 14px;
  padding: 0.625em 1.375em;                                /* 10px 22px */
  border-radius: 50px !important;
}

/* ── Hamburger (hidden on desktop) ─────────────────────── */
.ic-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.25em;
  height: 2.25em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.ic-nav__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0d1a3a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ic-nav--open .ic-nav__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ic-nav--open .ic-nav__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.ic-nav--open .ic-nav__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu drawer ─────────────────────────────────── */
.ic-nav__mobile-menu {
  background: #fff;
  border-top: 1px solid #eaedf5;
  padding: 1em 1.25em 1.25em;
}

.ic-nav__mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.ic-nav__mobile-link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #0d1a3a;
  text-decoration: none;
  padding: 0.75em 0.5em;
  border-radius: 8px;
  transition: background 0.15s;
}

.ic-nav__mobile-link:hover {
  background: #f0f2f7;
}

.ic-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  border-bottom: 1px solid #eaedf5;
}

/* Landing page mobile nav: Login + Book A Session side by side */
#ic-nav-mobile .ic-nav__mobile-actions {
  flex-direction: row;
  align-items: center;
  gap: 0.75em;
  border-top: 1px solid #eaedf5;
  border-bottom: none;
  padding-top: 0.75em;
  margin-top: 0.75em;
  padding-bottom: 0;
  margin-bottom: 0;
}

#ic-nav-mobile .ic-nav__mobile-actions .ic-nav__login {
  flex: 1;
  text-align: center;
}

.ic-nav__mobile-cta {
  flex: 1;
  justify-content: center;
}

/* ── Responsive — show hamburger, hide desktop links ────── */
@media (max-width: 768px) {
  .ic-nav__links  { display: none; }
  .ic-nav__actions { display: none; }
  .ic-nav__hamburger { display: flex; }
  .ic-nav__inner { max-width: 100%; }
}

/* =============================================================
   PAGE TRANSITION — landing → /instacoach
   ============================================================= */

/* Full-page overlay that slides up to cover the landing page before navigation */
.ic-page-exit {
  position: fixed;
  inset: 0;
  background: #0d1a3a;                                       /* dark navy — matches login header */
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform;
}

.ic-page-exit--active {
  transform: translateY(0);
}

/* =============================================================
   TRUST & STATS SECTION
   ============================================================= */
.ic-trust-stats {
  background: #fff;
  padding: 4em 1.5em;
  text-align: center;
}

.ic-trust-stats__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75em;
}

/* Green scalloped badge icon */
.ic-trust-stats__shield {
  width: 5rem;
  height: 5rem;
  display: block;
}

/* Main headline */
.ic-trust-stats__headline {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 700;
  color: #9ca3af;                                            /* greyed-out body text */
  line-height: 1.35;
  margin: 0;
}

/* Brand-blue accent phrase */
.ic-trust-stats__accent {
  color: #4f7fff;
  display: block;
}

/* Handwritten-style underline SVG beneath the accent */
.ic-trust-stats__underline {
  display: block;
  width: 12rem;
  margin: 0.25em auto 0;
  line-height: 0;
}

.ic-trust-stats__underline svg {
  width: 100%;
  height: auto;
}

/* Stat bar — light grey pill */
.ic-trust-stats__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f3f4f6;
  border-radius: 1.25rem;
  padding: 1.25em 2em;
  width: 100%;
  max-width: 38rem;
}

.ic-trust-stats__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}

.ic-trust-stats__stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.ic-trust-stats__stat-label {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 400;
}

/* Thin vertical divider between stats */
.ic-trust-stats__divider {
  width: 1px;
  height: 2.5em;
  background: #d1d5db;
  flex-shrink: 0;
}

/* =============================================================
   HERO
   ============================================================= */
.ic-hero {
  /* background: linear-gradient(145deg, #0d1a3a 0%, #1a3270 60%, #1e3fa8 100%); */
  /* background: linear-gradient(145deg, #185bff 0%, #63bbdd 60%, #00BCD4 100%); */
  background: linear-gradient(145deg, #185bff 0%, #395bb3 60%, #002394 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.ic-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.ic-hero__arch {
  width: 30vw;                                             /* 208px */
  height: 50vh;                                            /* 272px */
  background: rgba(255, 255, 255, 0.10);
  border-radius: 80% 80% 0 0;                         /* arch/tombstone top */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.ic-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.ic-hero__inner {
  max-width: 80%;
  margin: 0 auto;
  padding: 3.25em 1.5em 0;                                 /* 52px 24px 0 */
  display: flex;
  /* align-items: flex-end; */
  justify-content: space-between;
  gap: 2em;     
  height: 65vh;
  align-items: stretch;                                            /* 32px */
}

.ic-hero__content {
  flex: 1;
  min-width: 0;                                            /* prevent flex overflow */
  padding-bottom: 2.5em;                                   /* 40px */
}

.ic-hero__badge {
  display: inline-block;
  background: #fffbe6;
  color: #7a5a00;
  font-size: 12px;
  font-weight: 700;
  padding: 0.3125em 0.875em;                               /* 5px 14px */
  border-radius: 50px;
  margin-bottom: 1.25em;                                   /* 20px */
  letter-spacing: 0.5px;
}

.ic-hero__headline {
  font-size: clamp(1.75em, 5vw, 2.5em);                   /* 28px – 40px */
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0px;                                      /* 16px */
  width: 100%;
}

.ic-hero__accent {
  color: #7dd3b0;
}

.ic-hero__sub {
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.6;
  margin: 1.1em 0px;                                      /* 32px */
  width: 70%; 
}

.ic-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  flex-wrap: wrap;
}

.ic-hero__book-btn {
  font-size: 16px;
  padding: 0.7em 1.5em;                               /* 15px 30px */
  border-radius: 12px;
  box-shadow: 0 0.25em 1.25em rgba(255, 107, 53, 0.30);
}

.ic-hero__cta-subtext {
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  padding-left: 0.25em;
}

.ic-hero__price-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 0.75em 1.125em;                                 /* 12px 18px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ic-hero__price-amount {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.ic-hero__price-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.ic-hero__visual {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* Semicircle figure — matches reference design */
.ic-hero__figure {
  width: 10em;                                             /* 160px */
  height: 10em;                                            /* 160px */
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50% 50% 0 0;                              /* top-half circle */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;                                        /* clips emoji to semicircle */
}

.ic-hero__figure-inner {
  font-size: 5em;                                          /* 80px */
  line-height: 1;
  filter: drop-shadow(0 0.25em 0.75em rgba(0, 0, 0, 0.20));
}

.ic-hero__promo-bar {
  background: #f07030;
  color: #fff;
  text-align: center;
  padding: 0.75em 1.25em;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125em;
}

/* Line 1: icon + main text together */
.ic-hero__promo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375em;
  flex-wrap: nowrap;
}

.ic-hero__promo-icon {
  width: 1.375em;                                          /* 22px */
  height: 1.375em;
  object-fit: contain;
  flex-shrink: 0;
}

/* Line 2: subtext */
.ic-hero__promo-sub {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.90;
  display: block;
}

/* =============================================================
   HERO 2 — SLIDER
   ============================================================= */

/* Track: matches hero1 inner (65vh) + its top padding (3.25em) + dot clearance */
.ic-hero2__track {
  position: relative;
  height: calc(45vh + 3.25em + 2.5rem);
  margin-top: var(--ic-pwa-banner-h, 0px);
}

/* Inside hero2, let the inner fill the slide height (overrides the standalone 65vh) */
.ic-hero2 .ic-hero__inner {
  height: calc(40vh + 2.3em + 2.5rem);
}

/* All slides stacked; incoming slides enter from the right */
.ic-hero2__slide {
  position: absolute;
  inset: 0;                                                  /* top/left/right/bottom: 0 */
  height: 100%;
  opacity: 0; /* start hidden */
  transform: translateX(1.5rem);                             /* enter from right → left-to-right feel */
  transition: opacity 500ms ease-in-out, transform 500ms ease-in-out;
  pointer-events: none;
}

/* Active slide — fully visible, centred */
.ic-hero2__slide--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Exiting slide — slides out to the left */
.ic-hero2__slide--exit {
  opacity: 0;
  transform: translateX(-1.5rem);
  pointer-events: none;
}

/* Dots container — centered, overlaid at bottom of track */
.ic-hero2__dots {
  position: absolute;
  bottom: 1rem;
  left: 10%;
  /* transform: translateX(-50%); */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

/* Individual dot */
.ic-hero2__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.40);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 300ms ease, width 300ms ease, border-radius 300ms ease;
  flex-shrink: 0;
}

/* Active dot — filled white, pill shape */
.ic-hero2__dot--active {
  background: #fff;
  width: 1.5rem;
  border-radius: 0.25rem;
}

/* Hover state for inactive dots */
.ic-hero2__dot:not(.ic-hero2__dot--active):hover {
  background: rgba(255, 255, 255, 0.70);
}

/* Float animation — active slide's image */
@keyframes ic-hero2-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-0.5rem); }              /* 8px float */
}


/* Paused when hero is out of view (JS adds this class) */
.ic-hero2--paused .ic-hero2__slide--active .ic-hero2__img {
  animation-play-state: paused;
}

/* CTA hover lift (scoped to hero2 so hero1 is unaffected) */
.ic-hero2 .ic-hero__book-btn {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.ic-hero2 .ic-hero__book-btn:hover {
  transform: translateY(-0.1875rem);                         /* 3px lift */
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

/* Skeleton fallback for missing images */
.ic-hero2__img-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.08) 25%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 75%
  );
  background-size: 200% 100%;
  animation: ic-hero2-skeleton 1.4s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes ic-hero2-skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================================
   INSIGHTS / WHY COACHING WORKS
   ============================================================= */
.ic-insights {
  background: #f5f6fa;
}

/* ── Folder-tab strip ─────────────────────────────────────── */
.ic-insights__tabs {
  display: flex;
  /* gap: 0.375em; */
  margin-bottom: 0;                                        /* flush onto card */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-end;                                   /* inactive tabs sit lower */
  padding: 0 0.125em;
}
.ic-insights__tabs::-webkit-scrollbar { display: none; }

.ic-insights__tab {
  flex-shrink: 0;
  background: #ffffff;                                     /* muted grey-blue inactive */
  color: #4f7fff;
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 0.625em 1.375em;                                /* 10px 22px */
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, padding-top 0.2s;
  position: relative;
}
.ic-insights__tab:not(.ic-insights__tab--active):hover {
  background: #4f7fff;
  color: #ffffff;
}
.ic-insights__tab--active {
  background: #4f7fff;
  color: #ffffff;
  padding-top: 0.9375em;                                   /* taller = raised/active look */
  box-shadow: 0 -2px 10px rgba(13, 26, 58, 0.06);
}

/* ── Panels — acts as the card container ─────────────────── */
.ic-insights__panels {
  position: relative;
  background: #fff;
  border-radius: 0 20px 20px 20px;                        /* no top-left = merges with first tab */
  box-shadow: 0 4px 24px rgba(13, 26, 58, 0.08);
  overflow: hidden;
}

.ic-insights__panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.ic-insights__panel--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Card is now just the inner padding layer */
.ic-insights__card {
  padding: 1.75em 1.75em 1.5em;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-top: 10vh;
}

/* Big stat */
.ic-insights__stat {
  font-size: 3em;
  font-weight: 700;
  color: #0d1a3a;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.02em;
}

.ic-insights__stat-desc {
  font-size: 1.2em;
  color: #6b738f;
  text-align: center;
  line-height: 1.65;
  margin: 5px auto 0 auto;
  max-width: 34em;
}

.ic-insights__body-copy {
  font-size: 1em;
  color: #8b93ac;
  text-align: center;
  line-height: 1.7;
  font-style: italic;
  margin: 10px auto 12vh auto;
  max-width: 34em;
}

/* ── Person icons using man.svg ───────────────────────────── */
.ic-insights__people {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 0.75em; */
  margin-bottom: 1.75em;
}

.ic-insights__person {
  width: 8%;                                           /* 44px circle */
  /* height: 15%; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* .ic-insights__person--filled { background: #4f7fff; }
.ic-insights__person--grey   { background: #d1d5db; } */

.ic-insights__person-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

/* ── CTA inside each card ─────────────────────────────────── */
.ic-insights__cta-row {
  text-align: center;
}

.ic-insights__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375em;
  background: #FF6B35;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0.9375em 2.25em;                                /* 15px 36px */
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 107, 53, 0.30);
  transition: background 0.15s, opacity 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.ic-insights__cta:hover {
  background: #E85A24;
  opacity: 1;
  transform: translateY(-1px);
}

/* ── Mobile: pill strip (≤ 768px) ────────────────────────── */
@media (max-width: 768px) {

  /* Pill strip — horizontally scrollable row */
  .ic-insights__tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;                  /* pills sit at same height */
    padding: 0.25em 0.125em 0.75em;
    margin-bottom: 0;
  }
  .ic-insights__tabs::-webkit-scrollbar { display: none; }

  /* Reset the folder-tab shape — become pills */
  .ic-insights__tab {
    border-radius: 999px;
    padding: 0.5em 1.125em;
    min-height: 36px;
    font-size: 13px;
    background: #eef3ff;
    color: #4f7fff;
    border: 1.5px solid #d0dcff;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    /* remove the "raised active" padding-top shift used on desktop */
    padding-top: 0.5em;
  }
  .ic-insights__tab:not(.ic-insights__tab--active):hover {
    background: #d8e5ff;
    color: #4f7fff;
    border-color: #4f7fff;
  }
  .ic-insights__tab--active {
    background: #4f7fff;
    color: #fff;
    border-color: #4f7fff;
    padding-top: 0.5em;                   /* override desktop raised-tab override */
    box-shadow: 0 2px 10px rgba(79, 127, 255, 0.28);
  }

  /* Panels: rounded on all corners since folder-tab shape is gone */
  .ic-insights__panels {
    border-radius: 20px;
  }

  /* Allow horizontal swipe, pass vertical scroll to page */
  .ic-insights__panel {
    touch-action: pan-y;
  }

  .ic-insights__person {
    width: 12%;
    height: 15%;
  }
}

/* =============================================================
   BOOK SESSION
   ============================================================= */
.ic-book {
  background: #fff;
}

.ic-book__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;                                    /* 24px */
  flex-wrap: nowrap;                                       /* FIX: prevent awkward wrapping */
  gap: 0.5em;                                              /* 8px */
}

.ic-book__rating {
  font-size: 14px;
  font-weight: 600;
  color: #4f7fff;
  white-space: nowrap;                                     /* FIX: keep rating on one line */
  flex-shrink: 0;
}

.ic-book__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625em;                                            /* 10px */
  background: #f0f2f7;
  border-radius: 16px;
  padding: 0.375em;                                        /* 6px */
  margin-bottom: 1.5em;                                    /* 24px */
}

.ic-book__tab {
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 0.75em 0.5em;                                   /* 12px 8px */
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125em;                                            /* 2px */
  transition: background 0.15s, box-shadow 0.15s;
  font-family: 'Poppins', sans-serif;
}

.ic-book__tab:hover {
  background: rgba(255, 255, 255, 0.7);
}

.ic-book__tab--active {
  background: #4f7fff;
  box-shadow: 0 2px 10px rgba(79, 127, 255, 0.30);
}

.ic-book__tab--active .ic-book__tab-title {
  color: #fff;
}

.ic-book__tab--active .ic-book__tab-sub {
  color: rgba(255, 255, 255, 0.80);
}

.ic-book__tab-icon {
  font-size: 16px;
}

.ic-book__tab-title {
  font-size: 14px;
  font-weight: 600;
  color: #0d1a3a;
}

.ic-book__tab-sub {
  font-size: 12px;
  color: #6b738f;
}

.ic-book__durations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em;                                             /* 12px */
  margin-bottom: 1.25em;                                   /* 20px */
}

.ic-book__duration-card {
  border: 1.5px solid #dde1f0;
  border-radius: 16px;
  padding: 1.25em 0.75em;                                  /* 20px 12px */
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25em;                                             /* 4px */
}

.ic-book__duration-card:hover {
  border-color: #4f7fff;
}

.ic-book__duration-card--selected {
  border-color: #4f7fff;
  background: #eef3ff;
}

.ic-book__duration-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1a3a;
}

.ic-book__duration-price {
  font-size: 20px;
  font-weight: 700;
  color: #4f7fff;
}

.ic-book__duration-original {
  font-size: 13px;
  color: #a0a8c0;
  text-decoration: line-through;
}

.ic-book__discount-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  padding: 0.1875em 0.625em;                               /* 3px 10px */
  border-radius: 50px;
  margin-top: 0.25em;                                      /* 4px */
}

.ic-book__cta {
  display: flex;
  width: 100%;
  font-size: 16px;
  padding: 1.125em;                                        /* 18px */
  border-radius: 12px;
  margin-bottom: 1em;                                      /* 16px */
}

.ic-book__note {
  text-align: center;
  font-size: 13px;
  color: #6b738f;
  background: #f8f9ff;
  border-radius: 10px;
  padding: 0.75em 1em;                                     /* 12px 16px */
}

/* =============================================================
   OFFER SECTION
   ============================================================= */
.ic-offer {
  background: #f8f9ff;
}

/* Desktop: flat chip cloud, slider hidden */
.ic-offer__chips--desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em;                                            /* 10px */
  margin-top: 1.25em;                                      /* 20px */
}

.ic-offer__slider {
  display: none;                                           /* Hidden on desktop */
}

.ic-offer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em;                                            /* 10px */
}

.ic-offer__dots {
  display: none;
}

.ic-offer__chip {
  font-size: 14px;
  font-weight: 500;
  padding: 0.625em 1.125em;                                /* 10px 18px */
  border-radius: 12px;
  cursor: default;
}

.ic-offer__chip--blue {
  background: #eef3ff;
  color: #4f7fff;
}

.ic-offer__chip--green {
  background: #ecfdf5;
  color: #059669;
}

.ic-offer__chip--orange {
  background: #fff7ed;
  color: #c2410c;
}

/* Placeholder shown until full offer content is added */
.ic-offer__placeholder {
  margin-top: 1.5em;                                       /* 24px */
  min-height: 4em;                                         /* 64px */
  border: 1.5px dashed #c7d0e8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;                                          /* 24px */
  background: rgba(79, 127, 255, 0.03);
}

.ic-offer__placeholder-text {
  font-size: 14px;
  color: #a0a8c0;
  text-align: center;
}

/* =============================================================
   TIMELINE
   ============================================================= */
.ic-timeline {
  background: #fff;                                        /* FIX: was #f8f9ff — now alternates correctly with ic-offer */
}

.ic-timeline__list {
  margin-top: 1.75em;                                      /* 28px */
  display: flex;
  flex-direction: column;
  gap: 0.75em;                                             /* 12px between cards */
}

.ic-timeline__item {
  display: flex;
  align-items: center;
  gap: 1em;                                                /* 16px */
  padding: 1.25em;                                         /* 20px — inset on all sides for card */
  background: #fff;
  border: 1px solid #eaedf5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(13, 26, 58, 0.06);
}

.ic-timeline__icon {
  width: 50px;
  height: 50px;
  background: #eef3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ic-timeline__icon-img {
  width: 1.5em;
  height: 1.5em;
  display: block;
}

.ic-timeline__body {
  flex: 1;
}

.ic-timeline__label {
  font-size: 15px;
  font-weight: 600;
  color: #0d1a3a;
  margin-bottom: 0.125em;                                  /* 2px */
}

.ic-timeline__desc {
  font-size: 13px;
  color: #6b738f;
}

.ic-timeline__duration {
  font-size: 16px;
  /* font-weight: 700; */
  color: #4f7fff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* -- Category pill ------------------------------------------ */
.ic-timeline__category {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid transparent;        /* color set via inline style */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 4px;
  /* background & border-color & color come from inline styles */
}

/* -- Filter bar + nav arrows -------------------------------- */
.ic-timeline__nav {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1.25em;
  margin-bottom: 0.25em;
}

.ic-timeline__nav .ic-timeline__filters {
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.ic-timeline__nav-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #e0e4ef;
  background: #fff;
  color: #0d1a3a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  line-height: 1;
}

.ic-timeline__nav-arrow:hover {
  background: #eef3ff;
  border-color: #4f7fff;
  color: #4f7fff;
}

@media (max-width: 768px) {
  .ic-timeline__nav-arrow {
    display: none;
  }
}

.ic-timeline__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.25em;
  margin-bottom: 0.25em;               /* list already has margin-top */
}

.ic-timeline__filter-btn {
  padding: 5px 16px;
  border-radius: 999px;
  border: 1.5px solid #e0e4ef;
  background: transparent;
  font-size: 12.5px;
  font-weight: 500;
  color: #6b738f;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  line-height: 1.5;
}

.ic-timeline__filter-btn:hover {
  border-color: var(--ic-cat-color, #4f7fff);
  color: var(--ic-cat-color, #4f7fff);
}

.ic-timeline__filter-btn.ic-active {
  background: var(--ic-cat-color, #0d1a3a);
  border-color: var(--ic-cat-color, #0d1a3a);
  color: #fff;
}

/* -- Item filter animation ---------------------------------- */
@keyframes ic-slide-left-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ic-timeline__item.ic-tl-hidden {
  display: none !important;
}

.ic-timeline__item.ic-tl-enter {
  animation: ic-slide-left-in 0.28s ease both;
}

@keyframes ic-slide-right-in {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ic-timeline__item.ic-tl-enter--right {
  animation: ic-slide-right-in 0.28s ease both;
}

/* Mobile: slightly tighter filter row */
@media (max-width: 480px) {
  .ic-timeline__filters {
    gap: 6px;
    justify-content: center;
  }

  .ic-timeline__filter-btn {
    font-size: 12px;
    padding: 5px 13px;
  }
}

/* =============================================================
   INCLUSIONS
   ============================================================= */
.ic-inclusions {
  background: #fff;
}

/* Single outer card */
.ic-inclusions__card {
  border-radius: 16px;
  border: 1.5px solid #eaedf5;
  background: #fff;
  overflow: hidden;
}

/* Card header row */
.ic-inclusions__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125em 1.5em;                                  /* 18px 24px */
  border-bottom: 1.5px solid #eaedf5;
  cursor: pointer;
  user-select: none;
}

.ic-inclusions__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1a3a;
}

.ic-inclusions__collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #6b738f;
  padding: 0 0.25em;
  transition: color 0.15s, transform 0.25s;
  flex-shrink: 0;
}

.ic-inclusions__collapse-btn:hover {
  color: #0d1a3a;
}

/* When collapsed the button shows a + */
.ic-inclusions__card--collapsed .ic-inclusions__collapse-btn {
  transform: rotate(45deg);
}

/* Collapsible body */
.ic-inclusions__body {
  max-height: 2000px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ic-inclusions__card--collapsed .ic-inclusions__body {
  max-height: 0;
}

/* Two-column layout */
.ic-inclusions__columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 1.25em 1.5em 1.5em;                             /* 20px 24px 24px */
  gap: 0;
}

/* Vertical divider between columns */
.ic-inclusions__vdivider {
  width: 1.5px;
  background: #eaedf5;
  margin: 0 1.5em;                                         /* 24px */
  align-self: stretch;
}

/* Column header */
.ic-inclusions__col-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding-bottom: 0.75em;                                  /* 12px */
  margin-bottom: 0.25em;
}

.ic-inclusions__col-header--yes {
  color: #059669;
}

.ic-inclusions__col-header--no {
  color: #dc2626;
}

/* Individual row */
.ic-inclusions__item {
  display: flex;
  align-items: flex-start;
  gap: 0.625em;                                            /* 10px */
  padding: 0.5em 0;                                        /* 8px 0 */
  font-size: 14px;
  color: #0d1a3a;
  border-bottom: 1px solid #f0f2f7;
}

.ic-inclusions__item:last-child {
  border-bottom: none;
}

.ic-inclusions__item--no {
  color: #6b738f;
}

.ic-inclusions__icon--yes {
  color: #059669;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.ic-inclusions__icon--no {
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* =============================================================
   STAY SAFE
   ============================================================= */
.ic-safe {
  background: #f8f9ff;
}

.ic-safe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875em;                                            /* 14px */
  margin-top: 1.5em;                                       /* 24px */
}

.ic-safe__card {
  background: #fff;
  border: 1.5px solid #eaedf5;
  border-radius: 16px;
  padding: 1.75em 1em;                                     /* 28px 16px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875em;                                            /* 14px */
  text-align: center;
}

.ic-safe__icon {
  font-size: 36px;
  line-height: 1;
}

.ic-safe__label {
  font-size: 1.2em;
  font-weight: 600;
  color: #0d1a3a;
  line-height: 1.4;
}

.ic-safe__card-desc {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* =============================================================
   FAQs
   ============================================================= */
.ic-faq {
  background: #fff;
}

.ic-faq__list {
  margin-top: 1.5em;                                       /* 24px */
}

.ic-faq__item {
  border-bottom: 1px solid #eaedf5;
}

.ic-faq__item:first-child {
  border-top: 1px solid #eaedf5;
}

.ic-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.125em 0;                                      /* 18px 0 */
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0d1a3a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75em;                                             /* 12px */
  line-height: 1.4;
}

.ic-faq__question:hover {
  color: #4f7fff;
}

.ic-faq__arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  transition: transform 0.2s;
}

.ic-faq__item--open .ic-faq__arrow {
  transform: rotate(45deg);
}

.ic-faq__answer {
  font-size: 14px;
  color: #6b738f;
  line-height: 1.7;
  padding-bottom: 1.125em;                                 /* 18px */
  display: none;
}

.ic-faq__item--open .ic-faq__answer {
  display: block;
}

/* =============================================================
   REVIEWS
   ============================================================= */
.ic-reviews {
  background: #f8f9ff;
}

.ic-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 0.875em;                                            /* 14px */
  margin-top: 1.5em;                                       /* 24px */
}

.ic-reviews__card {
  background: #fff;
  border: 1.5px solid #eaedf5;
  border-radius: 16px;
  padding: 1.25em;                                         /* 20px */
}

.ic-reviews__card--hidden {
  display: none;
}

@keyframes ic-review-ease-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ic-reviews__card--enter {
  animation: ic-review-ease-in 0.35s ease both;
}

.ic-reviews__show-more {
  display: block;
  margin: 1.25em auto 0;
  padding: 0;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4f7fff;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

.ic-reviews__show-more:hover {
  color: #0d1a3a;
}

.ic-reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125em;                                            /* 2px */
  margin-bottom: 0.625em;                                  /* 10px */
}

.ic-reviews__name {
  font-size: 15px;
  font-weight: 700;
  color: #0d1a3a;
}

.ic-reviews__info {
  font-size: 13px;
  color: #a0a8c0;
}

.ic-reviews__body {
  font-size: 14px;
  color: #3a4460;
  line-height: 1.65;
}

/* =============================================================
   STICKY FOOTER
   ============================================================= */
.ic-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;                                           /* above nav (1000) and everything else */
  background: #fff;
  border-top: 2px solid #FF6B35;
  box-shadow: 0 -4px 20px rgba(255, 107, 53, 0.10);
  padding: 0.75em 1.25em;                                  /* 12px 20px */
  /* safe-area-inset-bottom prevents footer from being clipped by mobile notch */
  padding-bottom: calc(0.75em + env(safe-area-inset-bottom, 0px));
  /* Forces a dedicated GPU compositing layer — prevents the footer from
     flickering or disappearing when the browser re-composites on scroll
     (common on iOS Safari / Chrome Android when child elements have transitions) */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.ic-sticky-footer__inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;                                                /* 16px */
}

.ic-sticky-footer__copy {
  flex: 1;
  min-width: 0;
}
.ic-sticky-footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: #0d1a3a;
  line-height: 1.3;
  margin: 0;
}
.ic-sticky-footer__desc {
  font-size: 12px;
  color: #6b738f;
  line-height: 1.4;
  margin: .2em 0 0;
}

.ic-sticky-footer__btn {
  font-size: 15px;
  padding: 0.875em 1.75em;                                 /* 14px 28px */
  flex-shrink: 0;
  border-radius: 12px;
}

/* =============================================================
   COACH TYPE SELECT
   ============================================================= */
.ic-coach-types {
  background: #fff;
}

.ic-coach-types__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75em;
  margin-top: 1.25em;
}

.ic-coach-chip-wrap {
  position: relative;
}

.ic-coach-chip {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.875em 1.25em;
  width: 100%;
  border-radius: 50px;
  border: 1.5px solid #4f7fff;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #0d1a3a;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ic-coach-chip:hover {
  background: #eef3ff;
  border-color: #4f7fff;
}

.ic-coach-chip--active {
  background: #eef3ff;
  border-color: #4f7fff;
  color: #4f7fff;
  font-weight: 600;
}

.ic-coach-chip__icon {
  font-size: 1em;
}

/* ── Bottom-sheet modal ────────────────────────────────────── */
.ic-coach-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
}

.ic-coach-modal[hidden] {
  display: none;
}

.ic-coach-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 58, 0.50);
  animation: ic-modal-backdrop-in 0.22s ease both;
}

@keyframes ic-modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ic-coach-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 1.5em 1.5em 2em;
  box-shadow: 0 -4px 32px rgba(13, 26, 58, 0.12);
  animation: ic-sheet-in 0.28s cubic-bezier(0.34, 1.10, 0.64, 1) both;
  max-height: 85vh;
  overflow-y: auto;
}

@keyframes ic-sheet-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.ic-coach-modal.ic-coach-modal--closing .ic-coach-modal__sheet {
  animation: ic-sheet-out 0.22s ease both;
}

.ic-coach-modal.ic-coach-modal--closing .ic-coach-modal__backdrop {
  animation: ic-modal-backdrop-out 0.22s ease both;
}

@keyframes ic-sheet-out {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}

@keyframes ic-modal-backdrop-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.ic-coach-modal__close {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  background: #f0f2f7;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #0d1a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.ic-coach-modal__close:hover {
  background: #e0e4f0;
}

.ic-coach-modal__header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1.25em;
  padding-right: 2.5em;
}

.ic-coach-modal__icon {
  font-size: 1.5em;
}

.ic-coach-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1a3a;
}

.ic-coach-modal__list {
  margin: 0 0 1.25em;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.ic-coach-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  font-size: 14px;
  color: #3d4a6b;
  line-height: 1.5;
}

.ic-coach-modal__list li::before {
  content: attr(data-n);
  flex-shrink: 0;
  width: 1.75em;
  height: 1.75em;
  background: #4f7fff;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-coach-modal__cta {
  display: flex;
  /* width: 100%; */
  justify-content: center;
  font-size: 15px;
  padding: 0.9em 1em;
}

.ic-coach-modal__subtext {
  font-size: 12px;
  color: #a0a8c0;
  text-align: center;
  margin: 0.625em 0 0;
}

img.ic-safe__icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ── Timeline item clickable ──────────────────────────────── */
.ic-timeline__item {
  cursor: pointer;
  transition: box-shadow 0.15s, transform 0.15s;
}

.ic-timeline__item:hover {
  box-shadow: 0 4px 16px rgba(13, 26, 58, 0.10);
  transform: translateY(-1px);
}

/* ── Timeline session detail modal ───────────────────────── */
.ic-tl-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
}

.ic-tl-modal[hidden] {
  display: none;
}

.ic-tl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 58, 0.50);
  animation: ic-modal-backdrop-in 0.22s ease both;
}

.ic-tl-modal__sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 1.5em 1.5em 2em;
  box-shadow: 0 -4px 32px rgba(13, 26, 58, 0.12);
  animation: ic-sheet-in 0.28s cubic-bezier(0.34, 1.10, 0.64, 1) both;
  max-height: 85vh;
  overflow-y: auto;
}

.ic-tl-modal.ic-tl-modal--closing .ic-tl-modal__sheet {
  animation: ic-sheet-out 0.22s ease both;
}

.ic-tl-modal.ic-tl-modal--closing .ic-tl-modal__backdrop {
  animation: ic-modal-backdrop-out 0.22s ease both;
}

/* ── Top row: category label + close button ──────────────── */
.ic-tl-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875em;
}

.ic-tl-modal__cat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ic-tl-modal__close {
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  background: #f0f2f7;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #0d1a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.ic-tl-modal__close:hover {
  background: #e0e4f0;
}

/* ── Header row: icon + title + subtitle ─────────────────── */
.ic-tl-modal__header {
  display: flex;
  align-items: flex-start;
  gap: 0.875em;
  margin-bottom: 1.25em;
}

.ic-tl-modal__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.ic-tl-modal__icon img {
  width: 1.75em;
  height: 1.75em;
  display: block;
}

.ic-tl-modal__icon-emoji {
  font-size: 1.5em;
}

.ic-tl-modal__header-body {
  flex: 1;
  min-width: 0;
}

.ic-tl-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #0d1a3a;
  line-height: 1.2;
  margin-bottom: 0.3em;
}

.ic-tl-modal__subtitle {
  font-size: 14px;
  color: #6b738f;
  line-height: 1.4;
}

.ic-tl-modal__subtitle strong {
  color: #4f7fff;
  font-weight: 700;
}

/* ── Divider ─────────────────────────────────────────────── */
.ic-tl-modal__divider {
  border: none;
  border-top: 1px solid #eaedf5;
  margin: 1.125em 0;
}

/* ── Section label ───────────────────────────────────────── */
.ic-tl-modal__section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a0a8c0;
  margin: 0 0 0.875em;
}

/* ── Numbered bullet list ────────────────────────────────── */
.ic-tl-modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875em;
}

.ic-tl-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75em;
  font-size: 14px;
  color: #3d4a6b;
  line-height: 1.55;
}

.ic-tl-modal__list li::before {
  content: attr(data-n);
  flex-shrink: 0;
  width: 1.75em;
  height: 1.75em;
  background: #4f7fff;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Footer: CTA + subtext side by side ─────────────────── */
.ic-tl-modal__footer {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}

.ic-tl-modal__cta {
  flex-shrink: 0;
  font-size: 15px;
  padding: 0.875em 1.75em;
  border-radius: 12px !important;
}

.ic-tl-modal__subtext {
  font-size: 13px;
  color: #a0a8c0;
  margin: 0;
  line-height: 1.4;
}

/* =============================================================
   PRICING
   ============================================================= */
.ic-pricing {
  background: #f8f9ff;
}

.ic-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25em;
  margin-top: 2em;
  align-items: start;
}

.ic-pricing__card {
  position: relative;
  background: #fff;
  border: 1.5px solid #eaedf5;
  border-radius: 16px;
  padding: 2em 1.5em 1.5em;
  display: flex;
  flex-direction: column;
}

.ic-pricing__card--popular {
  border-color: #FF6B35;
  background: rgba(255, 107, 53, 0.04);
}

.ic-pricing__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FF6B35;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0.375em 1.125em;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.ic-pricing__label {
  font-size: 13px;
  font-weight: 500;
  color: #6b738f;
  margin-bottom: 0.625em;
}

.ic-pricing__price {
  font-size: 48px;
  font-weight: 800;
  color: #0d1a3a;
  line-height: 1;
  margin-bottom: 0.2em;
  letter-spacing: -0.02em;
}

.ic-pricing__duration {
  font-size: 14px;
  font-weight: 600;
  color: #4f7fff;
  margin-bottom: 1em;
}

.ic-pricing__desc {
  font-size: 13.5px;
  color: #6b738f;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.5em;
}

.ic-pricing__cta {
  display: block;
  /* width: 100%; */
  text-align: center;
  font-size: 15px;
  padding: 0.875em 1em;
}

@media (max-width: 900px) {
  .ic-pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================================
   SUPER SAVER PACK
   ============================================================= */
.ic-saver {
  padding: 1.25em 1.5em;                                 /* sides + bottom only */
}

.ic-saver__card {
  background: linear-gradient(135deg, #0d1a3a 0%, #1a3270 60%, #1e3fa8 100%);
  border-radius: 20px;
  padding: 1.25em 1.5em;                                   /* 20px 24px */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.ic-saver__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25em;                                             /* 4px */
}

.ic-saver__tag {
  display: inline-block;
  background: #00c48c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: 50px;
  letter-spacing: 0.4px;
  width: fit-content;
  margin-bottom: 0.25em;
}

.ic-saver__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.ic-saver__og {
  font-size: 12px;
  opacity: 0.65;
  text-decoration: line-through;
}

.ic-saver__price {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.ic-saver__per {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.80;
}

.ic-saver__sub {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 0.125em;
}

.ic-saver__cta {
  display: inline-block;
  margin-top: 0.75em;
  background: #FF6B35;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 0.625em 1em;                                    /* 10px 16px */
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}

.ic-saver__cta:hover {
  background: #E85A24;
  opacity: 1;
}

.ic-saver__gift {
  font-size: 4em;                                          /* 64px */
  line-height: 1;
  flex-shrink: 0;
}


/* =============================================================
   RATINGS BREAKDOWN
   ============================================================= */
.ic-ratings__hero {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #0d1a3a;
  border-bottom: 1px dashed #a0a8c0;
  padding-bottom: 2px;
  margin-top: 0.375em;                                     /* 6px below heading */
  margin-bottom: 1.5em;                                    /* 24px before reviews */
}

/* =============================================================
   REVIEWS — header, filters, badge
   ============================================================= */
.ic-reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75em;
}

.ic-reviews__title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1a3a;
}

.ic-reviews__filters {
  display: flex;
  gap: 0.5em;                                              /* 8px */
  overflow-x: auto;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  scrollbar-width: none;
}

.ic-reviews__filters::-webkit-scrollbar {
  display: none;
}

.ic-reviews__filter {
  white-space: nowrap;
  padding: 0.4375em 0.875em;                               /* 7px 14px */
  border: 1.5px solid #dde1f0;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  background: #fff;
  color: #6b738f;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.ic-reviews__filter--active,
.ic-reviews__filter:hover {
  border-color: #4f7fff;
  color: #4f7fff;
  background: #eef3ff;
}

/* Update review card to accommodate top row */
.ic-reviews__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5em;
  margin-bottom: 0.625em;                                  /* 10px */
}

.ic-reviews__badge {
  flex-shrink: 0;
  line-height: 1;
}

.ic-star-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.ic-star {
  width: 1.2em;
  height: 1.2em;
  display: block;
  flex-shrink: 0;
}

/* =============================================================
   RESPONSIVE — 560px (small tablets / large phones)
   ============================================================= */
@media (max-width: 560px) {

  .ic-trust-stats__inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75em;
    padding: 21px;
  }

  /* Track: matches mobile inner (62vh) + its top padding (2.5em) + dot clearance */
  .ic-hero2__track {
    height: calc(35vh + 2.5em + 2.4rem);
  }

  .ic-hero__headline {                                  /* 16px */
    width: 100%;
  }
  .ic-hero__sub {
    font-size: 1em;
    margin: 1.1em 0px;                                      /* 32px */
  }

  .ic-hero__inner {
    padding: 2.5em 1.25em 0;                               /* 40px 20px 0 */
    position: relative;
    gap: 0;
    height: 62vh;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  /* In hero2 on mobile, inner fills the slide (overrides above 62vh) */
  .ic-hero2 .ic-hero__inner {
    height: calc(40vh + .5em + 1.9rem);
  }

  /* Arch sits absolute at bottom-right — content takes full width for 2-line headline */
  .ic-hero__visual {
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
  }

  .ic-hero__arch {
    width: 45vw;
    height: 25vh;
    border-radius: 80% 80% 0 0;
    opacity: 0.9;
  }

  .ic-hero__content {
    width: 100%;
    /* padding-bottom: 12em;                                   clear the arch */
    display: flex;
    flex-direction: column;
  }

  .ic-hero__figure {
    width: 8em;                                            /* 128px */
    height: 8em;
  }

  .ic-hero__figure-inner {
    font-size: 4em;                                        /* 64px */
  }

  .ic-saver__gift {
    font-size: 3em;
  }

  .ic-book__durations {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5em;                                            /* 8px */
  }

  .ic-book__duration-title {
    font-size: 15px;
  }

  .ic-book__duration-price {
    font-size: 17px;
  }

  .ic-safe__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625em;                                          /* 10px */
  }

  .ic-safe__card {
    padding: 1em 0.3em;                               /* 20px 10px */
  }

  .ic-safe__icon {
    font-size: 28px;
  }

  .ic-safe__label {
    font-size: 0.9em;
  }

  .ic-safe__card-desc {
    font-size: 0.6em;
  }

  .ic-sticky-footer__inner {
    gap: 0.625em;                                          /* 10px */
  }

  .ic-sticky-footer__btn {
    padding: 0.75em 1.25em;                                /* 12px 20px */
    font-size: 14px;
  }

  .ic-ratings__hero {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================================
   RESPONSIVE — 420px (standard mobile phones)
   ============================================================= */
@media (max-width: 420px) {

  .ic-faq__arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
  }

  .ic-ratings__hero {
    font-size: 12px;
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .ic-section__sub {
    text-align: center;
    margin: 0px;
  }

  .ic-trust-stats__stat-value {
    font-size: 1em;
    font-weight: 700;
    color: #111827;
    line-height: 1;
  }
  .ic-trust-stats__stat-label {
    font-size: 0.7em;
    color: #6b7280;
    font-weight: 400;
  }

  .ic-trust-stats__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #f3f4f6;
    border-radius: 1.25rem;
    padding: 1.25rem 0px;
    width: 100%;
    max-width: 38rem;
  }

  .ic-trust-stats__inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75em;
    padding: 20px 15px;
  }

  /* In hero2 on mobile, inner fills the slide (overrides above 62vh) */
  .ic-hero2 .ic-hero__inner {
    height: calc(35vh + .5em + 1.9rem)
  }

  /* Track: matches mobile inner (62vh) + top padding (2.5em) + dot clearance */
  .ic-hero2__track {
    height: calc(35vh + 2.5em + 2.4rem);
  }

  .ic-sticky-footer__inner {
    max-width: 100%;
    }

  .ic-section__title{
    text-align: center;
  }


  .ic-hero__inner {
    max-width: 90%;
  }

  .ic-section {
    padding: 3.25em 0em;                                  /* 52px 20px */
  }

  .ic-section__inner {
    max-width: 90%;
  }

  .ic-insights__stat {
    font-size: 2em;
    font-weight: 700;
    color: #0d1a3a;
    line-height: 1;
    text-align: center;
    letter-spacing: -0.02em;
  }

  .ic-hero__headline {                                  /* 16px */
    width: 100%;
  }
  .ic-hero__sub {
    font-size: 1em;
    margin: 1.1em 0px;                                      /* 32px */
  }

  .ic-hero::before {
    width: 350px;
    height: 350px;
  }

  .ic-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ic-hero__book-btn {
    width: 35%;
    justify-content: center;
    padding: 10px 12px;
  }
  .ic-hero__book-btn{
    font-size: 0.7em;
  }

  .ic-hero__price-pill {
    width: 100%;
  }

  .ic-book__durations {
    grid-template-columns: 1fr;
  }

  .ic-book__duration-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 1em 1.25em;                                   /* 16px 20px */
    text-align: left;
    align-items: center;
    flex-wrap: wrap;
  }

  /* .ic-safe__grid {
    grid-template-columns: 1fr;
  } */


  img.ic-safe__icon-img{
    width: 30px;
    height: 30px;
  }

  /* Mobile offer slider — flat cloud hidden, slider shown */
  .ic-offer__chips--desktop {
    display: none;
  }

  .ic-offer__slider {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-top: 1.25em;
  }

  .ic-offer__track {
    display: flex;
    width: 100%;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .ic-offer__page {
    display: block;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .ic-offer__chips {
    flex-wrap: wrap;
  }

  .ic-offer__dots {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    margin-top: 1.25em;
  }

  .ic-offer__dot {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c7d0e8;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }

  /* Invisible tap-target expansion via pseudo-element */
  .ic-offer__dot::after {
    content: '';
    position: absolute;
    inset: -8px;
  }

  .ic-offer__dot--active {
    background: #4f7fff;
    transform: scale(1.3);
  }
}

/* =============================================================
   QUOTE CARDS CAROUSEL
   ============================================================= */
.ic-qc {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
}

.ic-qc__heading {
  text-align: center;
  margin-bottom: 40px;
}

/* ── Viewport + Track ── */
.ic-qc__viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
}

.ic-qc__viewport:active { cursor: grabbing; }

.ic-qc__track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Snap-stop during drag (JS removes transition class) */
.ic-qc__track--dragging {
  transition: none;
}

/* ── Cards ── */
.ic-qc__card {
  position: relative;
  flex: 0 0 calc(80% - 20px); /* peek: shows ~20% of next card */
  max-width: 420px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 26, 58, 0.18);
  background: #0d1a3a;
}

.ic-qc__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
}

/* ── Overlay — resting state: bottom gradient with no text ── */
.ic-qc__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  background: linear-gradient(
    to top,
    rgba(8, 15, 40, 0.78) 0%,
    rgba(8, 15, 40, 0.15) 55%,
    transparent 100%
  );
  transition: background 0.38s ease;
}

/* ── Hover: overlay covers full card ── */
.ic-qc__card:hover .ic-qc__overlay,
.ic-qc__card:focus-within .ic-qc__overlay {
  background: rgba(8, 15, 40, 0.82);
  align-items: center;
}

.ic-qc__card:hover .ic-qc__img,
.ic-qc__card:focus-within .ic-qc__img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

/* ── Quote text ── */
.ic-qc__quote {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: #f0f4ff;
  font-style: normal;
  /* Resting: show only last ~3 lines via clamp */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: overflow 0s;
}

.ic-qc__card:hover .ic-qc__quote,
.ic-qc__card:focus-within .ic-qc__quote {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  text-align: center;
}

/* ── Highlight words ── */
.ic-qc__hl {
  background: none;
  color: #4f7fff;
  font-weight: 700;
}

/* ── Dots ── */
.ic-qc__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.ic-qc__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5cde8;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.ic-qc__dot--active {
  background: #4f7fff;
  transform: scale(1.35);
}

/* ── Scroll-trigger entrance animation ── */
.ic-qc__card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease,
              box-shadow 0.3s ease;
}

.ic-qc--visible .ic-qc__card {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card */
.ic-qc--visible .ic-qc__card:nth-child(1) { transition-delay: 0s; }
.ic-qc--visible .ic-qc__card:nth-child(2) { transition-delay: 0.1s; }
.ic-qc--visible .ic-qc__card:nth-child(3) { transition-delay: 0.2s; }
.ic-qc--visible .ic-qc__card:nth-child(4) { transition-delay: 0.3s; }
.ic-qc--visible .ic-qc__card:nth-child(5) { transition-delay: 0.4s; }
.ic-qc--visible .ic-qc__card:nth-child(n+6) { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (min-width: 600px) {
  .ic-qc__card {
    /* Show ~2.2 cards on tablet */
    flex: 0 0 calc(46% - 10px);
  }
}

@media (min-width: 960px) {
  .ic-qc__card {
    /* Show ~3 cards on desktop, with right peek */
    flex: 0 0 calc(31% - 14px);
  }
}

/* Disable hover overlay on touch (handled by JS tap) */
@media (hover: none) {
  .ic-qc__card:hover .ic-qc__overlay {
    background: linear-gradient(
      to top,
      rgba(8, 15, 40, 0.78) 0%,
      rgba(8, 15, 40, 0.15) 55%,
      transparent 100%
    );
    align-items: flex-end;
  }
  .ic-qc__card:hover .ic-qc__img {
    transform: none;
    filter: none;
  }
  .ic-qc__card:hover .ic-qc__quote {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-align: left;
  }
  /* JS adds .ic-qc__card--tapped on mobile tap */
  .ic-qc__card--tapped .ic-qc__overlay {
    background: rgba(8, 15, 40, 0.82) !important;
    align-items: center !important;
  }
  .ic-qc__card--tapped .ic-qc__img {
    transform: scale(1.04) !important;
    filter: brightness(0.55) !important;
  }
  .ic-qc__card--tapped .ic-qc__quote {
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    overflow: visible !important;
    text-align: center !important;
  }
}

/* =============================================================
   FOOTER
   ============================================================= */
.ic-footer {
  background: #f8f9ff;
  border-top: 1px solid #eaedf5;
  font-family: 'Poppins', sans-serif;
  margin-top: 10%;
}

.ic-footer__main {
  max-width: 80%;
  margin: 0 auto;
  padding: 3em 1.25em 1.75em;
  display: flex;
  flex-direction: column;
  gap: 1.75em;
}

/* Get In Touch — prominent, multi-line */
.ic-footer__heading {
  font-size: 16px;
  font-weight: 700;
  color: #0d1a3a;
  margin: 0 0 1.375em;
}

.ic-footer__contact-email,
.ic-footer__contact-phone {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0d1a3a;
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.85;
}

.ic-footer__contact-email:hover,
.ic-footer__contact-phone:hover { color: #4f7fff; }

.ic-footer__contact-hours {
  font-size: 13px;
  color: #6b738f;
  margin-top: 0.5em;
  line-height: 1.6;
}

.ic-footer__contact-address {
  font-size: 13px;
  color: #6b738f;
  margin-top: 1.25em;
  line-height: 1.75;
  font-style: normal;
}

/* About — breadcrumb row, hidden until interacted */
.ic-footer__col--about {
  padding-bottom: 0.25em;
}

.ic-footer__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 5px;
}

.ic-footer__link {
  font-size: 11px;
  font-weight: 500;
  color: #0d1a3a;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: color 0.18s, opacity 0.18s;
}

.ic-footer__sep {
  font-size: 11px;
  color: #0d1a3a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  user-select: none;
}

/* Reveal on hover over the row or keyboard focus-within */
.ic-footer__col--about:hover .ic-footer__link,
.ic-footer__col--about:focus-within .ic-footer__link,
.ic-footer__col--about:hover .ic-footer__sep,
.ic-footer__col--about:focus-within .ic-footer__sep {
  opacity: 1;
  pointer-events: auto;
}

.ic-footer__link:hover,
.ic-footer__link:focus {
  color: #4f7fff;
  outline: none;
}

/* Copyright bar */
.ic-footer__bar {
  border-top: 1px solid #eaedf5;
  padding: 1.125em 1.25em;
  text-align: center;
  background: #f8f9ff;
}

.ic-footer__bar p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6b738f;
  margin: 0.25em 0;
  line-height: 1.6;
}

/* Responsive footer */
@media (max-width: 680px) {
  .ic-footer__main {
    max-width: 100%;
    gap: 1.5em;
    padding: 2.5em 1.5em 1.5em;
  }
}

/* =============================================================
   APP PAGE NAV — landing nav shown on /instacoach for direct
   URL visitors. Loaded when landing.css is enqueued on both pages.
   ============================================================= */

/* =============================================================
   BENTO GRID SECTION
   ============================================================= */

/* ── Section wrapper ── */
.ic-bento-grid {
  background: #fff;
}

/* ── Two-column asymmetric layout ── */
.ic-bento-grid__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25em;                                             /* 20px */
  align-items: start;
}

/* ── Base tile ── */
.ic-bento__tile {
  border-radius: var(--ic-radius, 10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ic-bento__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 26, 58, 0.13);
}

/* ── Story tile (left, full height) ── */
.ic-bento__story {
  background: #0d1a3a;
  color: #fff;
  padding: 2.25em 2em;                                     /* 36px 32px */
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.ic-bento__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1a3a;
  background: #c8f0e0;
  border-radius: 50px;
  padding: 0.35em 0.875em;
  align-self: flex-start;
}

.ic-bento__headline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.ic-bento__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.ic-bento__quote {
  border-left: 3px solid #4f7fff;
  margin: 0.25em 0 0;
  padding: 0.75em 1em;
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  background: rgba(79, 127, 255, 0.10);
  border-radius: 0 6px 6px 0;
}

.ic-bento__closing {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── Right column ── */
.ic-bento__right {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* ── Stats grid ── */
.ic-bento__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}

/* 3 stats: last child spans full width */
.ic-bento__stats-grid--3 .ic-bento__stat:last-child {
  grid-column: 1 / -1;
}

/* 5 stats: last child spans full width */
.ic-bento__stats-grid--5 .ic-bento__stat:last-child {
  grid-column: 1 / -1;
}

.ic-bento__stat {
  background: #f8f9fc;
  border: 1px solid #dde3f0;
  padding: 1.25em 1.25em 1em;
}

.ic-bento__stat-value {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  flex-wrap: nowrap;
}

.ic-bento__stat-num {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: #0d1a3a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ic-bento__stat-sym {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: #4f7fff;
  line-height: 1;
}

.ic-bento__stat-sym--pre {
  order: -1;
}

.ic-bento__stat-label {
  font-size: 12px;
  color: #6b7a99;
  margin: 0.4em 0 0;
  line-height: 1.4;
}

/* ── Feature checklist ── */
.ic-bento__features {
  display: flex;
  flex-direction: column;
  gap: 0.625em;                                            /* 10px */
}

.ic-bento__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.875em;                                            /* 14px */
  padding: 0.875em 1em;
  background: #f8f9fc;
  border: 1px solid #dde3f0;
  border-radius: var(--ic-radius, 10px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ic-bento__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13, 26, 58, 0.10);
}

.ic-bento__feature-icon-wrap {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: #eef2ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ic-bento__feature-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.ic-bento__feature-body {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.ic-bento__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a3a;
  margin: 0;
}

.ic-bento__feature-desc {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.5;
  margin: 0;
}

/* ── Scroll-entrance animation ── */
.ic-bento-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ic-bento-anim.ic-bento-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive: tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .ic-bento-grid__layout {
    grid-template-columns: 1fr;
  }

  .ic-bento__story {
    padding: 1.75em 1.5em;
  }

  .ic-bento__stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* On tablet, no last-child spanning needed — 2-col stays sensible */
  .ic-bento__stats-grid--3 .ic-bento__stat:last-child,
  .ic-bento__stats-grid--5 .ic-bento__stat:last-child {
    grid-column: auto;
  }
}

/* ── Responsive: mobile (≤ 560px) ── */
@media (max-width: 560px) {
  .ic-bento__stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ic-bento__stat-num {
    font-size: 24px;
  }

  .ic-bento__stat-sym {
    font-size: 18px;
  }

  .ic-bento__headline {
    font-size: 20px;
  }
}

/* =============================================================
   MEET OUR PROFESSIONALS  (.ic-prof)
   ============================================================= */

/* ── Section header ── */
.ic-prof__head {
  text-align: center;
  margin-bottom: 2em;
}

.ic-prof__sub {
  font-size: 14px;
  color: var(--ic-muted);
  margin: 0.5em 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.ic-prof__verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Carousel wrapper (holds arrows + viewport) ── */
.ic-prof__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Prev / Next arrows ── */
.ic-prof__arrow {
  flex-shrink: 0;
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  border: 1.5px solid var(--ic-border, #dde3f0);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(13,26,58,0.08);
}
.ic-prof__arrow:hover:not(:disabled) {
  background: var(--ic-blue, #4f7fff);
  border-color: var(--ic-blue, #4f7fff);
}
.ic-prof__arrow:hover:not(:disabled) img {
  filter: brightness(0) invert(1);
}
.ic-prof__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
.ic-prof__arrow img {
  width: 16px;
  height: 16px;
  display: block;
  transition: filter 0.18s;
}
/* Flip arrow image for "prev" */
.ic-prof__arrow--prev img {
  transform: rotate(180deg);
}

/* ── Viewport: overflow hidden, keyboard-focusable ── */
.ic-prof__viewport {
  flex: 1;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  touch-action: pan-y pinch-zoom;
}
.ic-prof__viewport:active { cursor: grabbing; }

/* ── Track: flex row of cards ── */
.ic-prof__track {
  display: flex;
  gap: 1.25em;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.ic-prof__track--instant {
  transition: none !important;
}

/* ── Individual professional card ── */
.ic-prof__card {
  flex-shrink: 0;
  width: 292px;
  background: #fff;
  border: 1px solid var(--ic-border, #dde3f0);
  border-radius: 16px;
  padding: 1.5em 1.25em 1.25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55em;
  box-shadow: 0 2px 12px rgba(13,26,58,0.06);
  transition: box-shadow 0.22s, transform 0.22s;
  scroll-snap-align: start;
}
.ic-prof__card:hover {
  box-shadow: 0 6px 24px rgba(13,26,58,0.12);
  transform: translateY(-2px);
}

/* ── Avatar ── */
.ic-prof__avatar-wrap {
  margin-bottom: 0.25em;
}

.ic-prof__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eef2ff;
  display: block;
}

.ic-prof__avatar--initials {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--ic-prof-color, #4f7fff);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  border: 3px solid rgba(255,255,255,0.3);
}

/* ── Role badges ── */
.ic-prof__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
  justify-content: center;
}

.ic-prof__badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ic-blue, #4f7fff);
  background: #eef2ff;
  border-radius: 999px;
  padding: 3px 9px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ── Name & role ── */
.ic-prof__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ic-navy, #0d1a3a);
  margin: 0;
  line-height: 1.3;
}

.ic-prof__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--ic-blue, #4f7fff);
  margin: 0;
}

/* ── Certifications ── */
.ic-prof__certs {
  font-size: 11.5px;
  color: var(--ic-muted, #6b7a99);
  margin: 0;
  line-height: 1.5;
}

/* ── Experience ── */
.ic-prof__exp {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 12px;
  font-weight: 600;
  color: #2ab27b;
  background: #e8f8f1;
  border-radius: 999px;
  padding: 3px 10px;
  margin: 0;
  white-space: nowrap;
}

.ic-prof__exp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ab27b;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Star rating ── */
.ic-prof__rating {
  display: flex;
  align-items: center;
  gap: 0.3em;
  justify-content: center;
  flex-wrap: wrap;
}

.ic-prof__rating .ic-star-row {
  display: flex;
  gap: 1px;
}
.ic-prof__rating .ic-star {
  width: 13px;
  height: 13px;
}

.ic-prof__rating-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--ic-navy, #0d1a3a);
}

.ic-prof__rating-count {
  font-size: 11.5px;
  color: var(--ic-muted, #6b7a99);
}

/* ── Personal statement ── */
.ic-prof__statement {
  font-size: 13px;
  font-style: italic;
  color: var(--ic-navy, #0d1a3a);
  border-left: 3px solid var(--ic-blue, #4f7fff);
  margin: 0.25em 0 0;
  padding: 0.4em 0.75em;
  text-align: left;
  line-height: 1.55;
  border-radius: 0 4px 4px 0;
  background: #f7f9ff;
}

/* ── Description ── */
.ic-prof__desc {
  font-size: 12.5px;
  color: var(--ic-muted, #6b7a99);
  margin: 0;
  line-height: 1.55;
  text-align: center;
}

/* ── Languages ── */
.ic-prof__langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35em;
  justify-content: center;
  margin-top: 0.1em;
}

.ic-prof__langs-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ic-muted, #6b7a99);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ic-prof__lang {
  font-size: 11px;
  color: var(--ic-navy, #0d1a3a);
  background: #f0f2f5;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 500;
}

/* ── Dot navigation ── */
.ic-prof__dots {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1.25em;
}

.ic-prof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--ic-border, #dde3f0);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.ic-prof__dot--active {
  background: var(--ic-blue, #4f7fff);
  transform: scale(1.35);
}

/* ── Section CTA ── */
.ic-prof__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}

.ic-prof__cta {
  min-width: 200px;
}

/* ── Scroll-entrance animation ── */
.ic-prof {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.ic-prof--visible {
  opacity: 1;
}
.ic-prof__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.22s, border-color 0.22s;
}
.ic-prof--visible .ic-prof__card {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each card */
.ic-prof--visible .ic-prof__card:nth-child(1) { transition-delay: 0.05s; }
.ic-prof--visible .ic-prof__card:nth-child(2) { transition-delay: 0.13s; }
.ic-prof--visible .ic-prof__card:nth-child(3) { transition-delay: 0.21s; }
.ic-prof--visible .ic-prof__card:nth-child(4) { transition-delay: 0.29s; }
.ic-prof--visible .ic-prof__card:nth-child(5) { transition-delay: 0.37s; }
.ic-prof--visible .ic-prof__card:nth-child(6) { transition-delay: 0.45s; }

/* ── Responsive: tablet (≤ 860px) ── */
@media (max-width: 860px) {
  .ic-prof__card {
    width: 260px;
  }
  .ic-prof__arrow {
    width: 2em;
    height: 2em;
  }
}

/* ── Responsive: mobile (≤ 600px) ── */
@media (max-width: 600px) {
  .ic-prof__carousel-wrap {
    gap: 0;
  }
  .ic-prof__card {
    width: calc(85vw - 2em);
    max-width: 320px;
  }
  .ic-prof__arrow {
    display: none; /* touch swipe is the primary control */
  }
  .ic-prof__viewport {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}

/* ══════════════════════════════════════════════════════════════
   BREAK-PATTERN CTA
   ══════════════════════════════════════════════════════════════ */

.ic-ctab {
  padding: 4em 1.5em;
}
.ic-ctab__inner {
  max-width: 38em;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.ic-ctab__heading {
  font-size: clamp(1.375em, 4vw, 2em);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .625em;
  line-height: 1.25;
}
.ic-ctab__sub {
  font-size: clamp(.875em, 2.5vw, 1em);
  color: rgba(255, 255, 255, .80);
  margin: 0 0 2em;
  line-height: 1.6;
  max-width: 30em;
}
.ic-ctab__btn {
  display: inline-block;
  width: 100%;
  max-width: 26em;
  padding: .875em 2em;
  background: #FF6B35;
  color: #fff;
  font-size: clamp(.9375em, 2.5vw, 1.0625em);
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition: background .18s ease, transform .14s ease, box-shadow .18s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.40);
}
.ic-ctab__btn:hover {
  background: #E85A24;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.30);
}
.ic-ctab__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.20);
}
.ic-ctab__secondary {
  display: inline-block;
  margin-top: 1.375em;
  font-size: .9em;
  color: rgba(255, 255, 255, .90);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, .45);
  transition: color .15s ease, text-decoration-color .15s ease;
}
.ic-ctab__secondary:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, .85);
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .ic-ctab {
    padding: 3em 1.25em;
  }
  .ic-ctab__btn {
    max-width: 80%;
    font-size: .9375em;
  }
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════ */

.ic-hiw {
  background: #f8f9ff;
  padding: 3.25em 0;
}
.ic-hiw .ic-section__inner {
  max-width: 80%;
  margin: 0 auto;
}

/* Header */
.ic-hiw__header {
  text-align: center;
  margin-bottom: 2.5em;
}
.ic-hiw__heading {
  font-size: clamp(.875em, 2.5vw, 1.125em);
  font-weight: 700;
  color: #0d1a3a;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  line-height: 1.3;
}
.ic-hiw__sub {
  font-size: .875em;
  color: #6b738f;
  margin: 0;
  line-height: 1.5;
}

/* Steps row */
.ic-hiw__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Individual step */
.ic-hiw__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .875em;
  min-width: 0; /* prevent overflow on narrow screens */
}

/* Numbered circle */
.ic-hiw__badge {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: #4f7fff;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Horizontal connector line */
.ic-hiw__connector {
  flex: 0 1 3em;           /* shrinks gracefully on small screens */
  min-width: .75em;
  height: 2px;
  background: #dde1f0;
  border-radius: 1px;
  align-self: flex-start;
  /* Center vertically with the badge:
     badge = 3em tall, connector = 2px → offset = (3em / 2) - 1px ≈ 1.4375em */
  margin-top: 1.4375em;
}

/* Step title */
.ic-hiw__title {
  font-size: clamp(.8125em, 2.2vw, 1em);
  font-weight: 700;
  color: #0d1a3a;
  margin: 0;
  line-height: 1.3;
}

/* Step description */
.ic-hiw__desc {
  font-size: clamp(.6875em, 1.8vw, .875em);
  color: #6b738f;
  margin: 0;
  line-height: 1.45;
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  .ic-hiw .ic-section__inner {
    max-width: 90%;
  }
  .ic-hiw__connector {
    flex-basis: 1.5em;
    min-width: .5em;
  }
}

/* ── Mobile (≤ 480px) — stays single row, scales down ── */
@media (max-width: 480px) {
  .ic-hiw {
    padding: 2.25em 0;
  }
  .ic-hiw .ic-section__inner {
    max-width: 95%;
  }
  .ic-hiw__header {
    margin-bottom: 1.75em;
  }
  .ic-hiw__badge {
    width: 2.25em;
    height: 2.25em;
    font-size: 1em;
  }
  .ic-hiw__connector {
    flex-basis: .75em;
    min-width: .375em;
    /* Recalculate for smaller badge: (2.25em / 2) - 1px ≈ 1.0625em */
    margin-top: 1.0625em;
  }
  .ic-hiw__step {
    gap: .5em;
  }
}

/* ── Inclusions — mobile: stack columns vertically ── */
@media (max-width: 640px) {
  .ic-inclusions__columns {
    grid-template-columns: 1fr;
    padding: 1em 1.25em 1.25em;
  }

  .ic-inclusions__vdivider {
    height: 1.5px;
    width: auto;
    margin: 1em 0;
  }
}

/* ── Nav auth buttons: reset <button> defaults to match link styling ── */
button.ic-nav__login {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
button.ic-nav__mobile-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

/* ── PWA Install Banner ──────────────────────────────────────────────────── */
.ic-pwa-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1001;
}
.ic-pwa-banner[hidden] { display: none; }

.ic-pwa-banner__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.ic-pwa-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ic-pwa-banner__title {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ic-pwa-banner__sub {
  font-size: 12px;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ic-pwa-banner__btn {
  background: #fff;
  color: #4f7fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .15s;
}
.ic-pwa-banner__btn:hover { opacity: .88; }
.ic-pwa-banner__close {
  background: rgba(255,255,255,.2);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.ic-pwa-banner__close:hover { background: rgba(255,255,255,.35); }

/* iOS step panel */
.ic-pwa-ios-steps {
  width: 100%;
  background: rgba(0,0,0,.15);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 6px;
  font-size: 13px;
}
.ic-pwa-ios-steps[hidden] { display: none; }
.ic-pwa-ios-steps ol { margin: 0 0 10px; padding-left: 18px; }
.ic-pwa-ios-steps li { margin-bottom: 4px; line-height: 1.6; }
.ic-pwa-ios-steps strong { font-weight: 700; }
.ic-pwa-ios-got-it {
  background: none;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 480px) {
  .ic-pwa-banner__sub { display: none; }
  .ic-pwa-banner__btn { padding: 7px 14px; font-size: 12px; }
}

