     :root{
      --navy:#0b2456;
      --text:#0f172a;
      --muted:#334155;
      --card:rgba(255,255,255,.70);
      --card-strong:rgba(255,255,255,.82);
      --glass-border:rgba(255,255,255,.55);

      --btn1:#1ea8ff;
      --btn2:#006dff;

      --radius-xl:26px;
      --radius-lg:20px;
      --radius-md:16px;

      --shadow:0 22px 70px rgba(2, 14, 46, .18);
      --shadow-soft:0 12px 40px rgba(2, 14, 46, .14);

      --max:1200px;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
      color:var(--text);
      background:#eaf6ff;
    }

    /* ---------- HERO BACKGROUND ---------- */
    .hero{
      min-height: 92vh;
      position: relative;
      overflow:hidden;
      background:
        radial-gradient(1200px 600px at 25% 15%, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 60%),
        url("https://fridgebuddies.eu/images/bg-ice.jpg") center/cover no-repeat;
    }

    /* soft snow sparkle overlay (optional) */
    .hero::before{
      content:"";
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 10% 20%, rgba(255,255,255,.32) 0 2px, transparent 3px) 0 0/140px 140px,
        radial-gradient(circle at 60% 30%, rgba(255,255,255,.25) 0 2px, transparent 3px) 0 0/180px 180px,
        radial-gradient(circle at 85% 15%, rgba(255,255,255,.18) 0 2px, transparent 3px) 0 0/220px 220px;
      opacity:.35;
      pointer-events:none;
      mix-blend-mode: screen;
    }

    .wrap{
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 18px 60px;
      position: relative;
      z-index: 1;
    }

    /* ---------- TOP NAV ---------- */

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:4px;

  padding: 4px 4px 3px;   /* extra bottom padding = space for ice */
  border-radius: 999px;
 background: rgba(255,255,255,.55);

    box-shadow: var(--shadow-soft);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
}
    

    .brand2{
      display:flex; align-items:center; gap:10px;
      min-width: 0;
    }

    .brand2 img{
      width:64px; height:64px; border-radius:50%;
      background: rgba(255,255,255,.65);
      padding: 4px 4px;
      border: 1px solid rgba(255,255,255,.55);
      box-shadow: 0 10px 25px rgba(2,14,46,.12);
      object-fit: cover;
    }

    .brand b{
      font-size:16px; letter-spacing:.2px;
      color: var(--navy);
      white-space:nowrap;
    }
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}  

    .nav a{
      text-decoration:none;
      font-weight:800;
      letter-spacing:.2px;
      color: rgba(11,36,86,.78);
      padding: 10px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.40);
      border: 1px solid rgba(255,255,255,.50);
      transition: transform .15s ease, background .15s ease;
      font-size: 13px;
      text-transform: uppercase;
    }
    .nav a:hover{ transform: translateY(-1px); background: rgba(38, 149, 224);  color: rgba(255,255,255,.98); border: 2px solid rgba(255,255,255,.80);}

    .social{
      display:flex; align-items:center; gap:8px;
    }
    .iconBtn{
      width:44px; height:44px;
      display:grid; place-items:center;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.55);
      background: rgba(255,255,255,.40);
      box-shadow: 0 10px 25px rgba(2,14,46,.10);
      text-decoration:none;
      color: rgba(11,36,86,.85);
      font-weight:900;
    }

    /* Mobile menu */
    .menuBtn{ display:none; }
    @media (max-width: 860px){
      .nav{ display:none; }
      .menuBtn{ display:grid; }
    }

    /* ---------- HERO LAYOUT ---------- */
    .heroGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 6px;
      align-items:center;
      padding: 4px 4px 18px;
    }
    @media (max-width: 980px){
      .heroGrid{ grid-template-columns:1fr; padding-top:26px; }
    }

    .headline{
      color: var(--navy);
      text-transform: uppercase;
      font-weight: 1000;
      letter-spacing: .5px;
      font-size: clamp(46px, 7vw, 86px);
      line-height: .92;
      margin: 0 0 14px;
      text-shadow: 0 10px 40px rgba(2,14,46,.10);
    }

    .headline2{
      color: var(--navy);
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: .5px;
      font-size: clamp(46px, 7vw, 86px);
      line-height: .92;
      margin: 0 0 14px;
      text-shadow: 0 10px 40px rgba(2,14,46,.10);
    }

    .subhead{
      margin: 0 0 22px;
      font-size: clamp(16px, 2.3vw, 20px);
      line-height: 1.45;
      color: rgba(11,36,86,.78);
      max-width: 560px;
      font-weight: 700;
    }

    .ctaRow{
      display:flex; gap:10px; flex-wrap:wrap;
      margin: 18px 0 0;
    }

    .btn{
      border:none;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 950;
      letter-spacing: .2px;
      cursor:pointer;
      box-shadow: 0 18px 40px rgba(0,109,255,.22);
      transition: transform .12s ease, filter .12s ease;
      font-size: 16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      text-decoration:none;
      user-select:none;
    }

    .btnPrimary{
      color:#fff;
      background: linear-gradient(180deg, var(--btn1), var(--btn2));
    }
    .btnSecondary{
      color: rgba(11,36,86,.92);
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(255,255,255,.65);
      box-shadow: 0 18px 40px rgba(2,14,46,.14);
    }

    .btnTetary{
      color: #fff;
      background: orange;
      border: 1px solid rgba(255,255,255,.65);
      box-shadow: 0 18px 40px rgba(2,14,46,.14);
    }
    .btn:hover{ transform: translateY(-1px); filter: brightness(1.02); border: 2px solid rgba(255,255,255,.65);}

    /* Right visual (placeholder for Pengi) */
    .pengiCard{
      justify-self:end;
      width: min(520px, 100%);
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.20);
      border: 1px solid rgba(255,255,255,.45);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 18px;
      position: relative;
      overflow:hidden;
    }

    .pengiCard::after{
      content:"";
      position:absolute;
      inset:-80px -80px auto auto;
      width: 220px; height:220px;
      background: radial-gradient(circle, rgba(30,168,255,.35), rgba(30,168,255,0) 60%);
      transform: rotate(18deg);
      pointer-events:none;
    }

    .pengiStage{
      height: 380px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.18));
      border: 1px solid rgba(255,255,255,.55);
      display:grid;
      place-items:center;
      overflow:hidden;
    }

    .pengiStage img{
      max-height: 92%;
      max-width: 92%;
      object-fit: contain;
      filter: drop-shadow(0 18px 30px rgba(2,14,46,.22));
      transform: translateY(6px);
    }

    /* ---------- FEATURE CARD ---------- */
    .featureCard{
      margin-top: 122px;
      border-radius: var(--radius-xl);
      background: var(--card);
      border: 1px solid rgba(255,255,255,.65);
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 18px;
      display:grid;
      grid-template-columns: 91px 1fr auto;
      gap: 16px;
      align-items:center;
    }
    @media (max-width: 740px){
      .featureCard{ grid-template-columns: 72px 1fr; }
      .featureCard .miniCta{ grid-column: 1 / -1; justify-self:start; }
    }

    .appIcon{
      width:88px; height:88px;
      display:grid; place-items:center;
      overflow:hidden;
    }
    .appIcon img{ width:100%; height:100%; object-fit:cover; }

    .featureCard h3{
      margin: 0 0 6px;
      color: var(--navy);
      font-size: 22px;
      letter-spacing: .2px;
      text-transform: uppercase;
      font-weight: 1000;
    }
    .featureCard p{
      margin:0;
      color: rgba(11,36,86,.78);
      font-weight: 700;
      line-height: 1.45;
    }

    .miniCta{
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.65);
      background: linear-gradient(180deg, rgba(30,168,255,.30), rgba(255,255,255,.35));
      color: rgba(11,36,86,.95);
      font-weight: 950;
      text-decoration:none;
      box-shadow: 0 18px 40px rgba(2,14,46,.12);
      white-space:nowrap;
    }

    /* ---------- SECTIONS ---------- */
    .section{
      background: #f7fbff;
      padding: 64px 18px;
    }
    .section .wrap{ padding:0 18px; }
    .section h2{
      margin: 0 0 10px;
      font-size: 34px;
      color: var(--navy);
      letter-spacing:.2px;
    }
    .section p.lead{
      margin: 0 0 28px;
      color: #334155;
      font-weight: 500;
      line-height: 1.4;
      max-width: 760px;
    }

    .cards{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    @media (max-width: 980px){ .cards{ grid-template-columns:1fr; } }

    .card{
      border-radius: var(--radius-xl);
      background: #fff;
      border: 1px solid rgba(2,14,46,.08);
      box-shadow: 0 16px 45px rgba(2,14,46,.08);
      padding: 18px;
    }
    .card b{ display:block; color: var(--navy); margin-bottom: 8px; font-size: 18px; }
    .card span{ color:#334155; font-weight:650; line-height: 1.6; display:block; }

    footer{
      padding: 26px 18px;
      background:#eef7ff;
      border-top: 1px solid rgba(2,14,46,.06);
      color:#475569;
      font-weight:650;
    }

    /* Simple mobile dropdown panel */
    .mobilePanel{
      display:none;
      margin-top: 10px;
      padding: 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.60);
      border: 1px solid rgba(255,255,255,.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--shadow-soft);
    }
    .mobilePanel a{
      display:block;
      padding: 12px 14px;
      border-radius: 14px;
      text-decoration:none;
      color: rgba(11,36,86,.9);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .2px;
      background: rgba(255,255,255,.45);
      border: 1px solid rgba(255,255,255,.55);
      margin-top: 8px;
    }
    .mobilePanel a:first-child{ margin-top:0; }
    .mobilePanel.open{ display:block; }

.pengiFloat{
  justify-self: end;
  align-self: end;
  width: min(520px, 100%);
  height: 680px;               /* controls “stage” height */
  position: relative;
  display: grid;
  place-items: end center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.pengiFloat img{
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(10px); /* slight “standing on ice” feel */
  filter: drop-shadow(0 28px 38px rgba(2,14,46,.22));
}

/* Responsive: keep Pengi big on mobile, but not too tall */
@media (max-width: 980px){
  .pengiFloat{
    justify-self: center;
    height: 420px;
    margin-top: 8px;
  }
}
@media (max-width: 520px){
  .pengiFloat{ height: 360px; }
}
.pengiFloat video,
.pengiFloat .pengivideo{
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(10px); /* match the img */
  filter: drop-shadow(0 28px 38px rgba(2,14,46,.22));
  display: block;              /* removes inline gap issues */
}
@media (max-width: 520px){
  .pengiFloat video,
  .pengiFloat .pengivideo{
    height: auto;
    max-height: 280px;   /* 👈 adjust: 240–300px is ideal */
    width: auto;
  }
}

.heroTitle{
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: .95;
  
}

.heroTitleSmall{
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: .95;  
}

.heroTitle .line{
  display: block;
}


.heroTitle .main{
  font-size: clamp(46px, 7vw, 86px);
}

.heroTitle .brand{
  position: relative;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: .35em;
  margin: 6px 0 8px;
  opacity: .95;
}


.heroTitle .brandMark{
  position: absolute;
  top: -22%;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  opacity: .10;
  z-index: -1;
  pointer-events: none;
}


@media (max-width: 520px){
  .heroTitle .brandMark{
    width: 72px;
    height: 72px;
    top: -18%;
  }
}

.section.how{
  background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
  position: relative;
  overflow: hidden;
}

.section.how::before{
  content:"";
  position:absolute;
  inset:-40px 0 auto 0;
  height: 220px;
  background: radial-gradient(900px 220px at 20% 20%, rgba(30,168,255,.20), transparent 60%),
              radial-gradient(900px 220px at 80% 10%, rgba(255,255,255,.65), transparent 55%);
  pointer-events:none;
  opacity:.9;
}

.howHead{
  position: relative;
  z-index: 1;
}

.howGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px){
  .howGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .howGrid{ grid-template-columns: 1fr; }
}

.howCard{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 16px 45px rgba(2,14,46,.10);
  overflow:hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .15s ease, filter .15s ease;
}

.howCard:hover{
  transform: translateY(-2px);
  filter: brightness(1.01);
}

.howMedia{
  height: 170px;
  background: linear-gradient(180deg, rgba(30,168,255,.18), rgba(255,255,255,.10));
  position: relative;
}

.howMedia img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.howBody{
  padding: 14px 14px 16px;
}

.howStep{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.75);
  color: rgba(11,36,86,.82);
  font-weight: 950;
  letter-spacing: .2px;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(2,14,46,.08);
  margin-bottom: 10px;
}

.howCard h3{
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: .2px;
  text-transform: uppercase;
  font-weight: 1000;
}

.howCard p{
  margin:0;
  color: rgba(11,36,86,.78);
  font-weight: 600;
  line-height: 1.55;
  font-size: 14px;
}


.howCardHighlight{
  border: 1px solid rgba(30,168,255,.35);
  box-shadow: 0 22px 70px rgba(0,109,255,.14);
}

.howBadge{
  position:absolute;
  top: 12px;
  right: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(30,168,255,.95), rgba(0,109,255,.95));
  color:#fff;
  font-weight: 950;
  letter-spacing: .25px;
  font-size: 12px;
  box-shadow: 0 16px 35px rgba(0,109,255,.20);
}

.howCta{
  margin-top: 20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  position: relative;
  z-index: 1;
}
.brand {
  position: relative;
  font-weight: 1000;
  font-size: 34px;
  letter-spacing: -1px;
  z-index: 1;
}
.brand2 {
  position: relative;
  font-weight: 1000;
  font-size: 64px;
  letter-spacing: -0.04em;
  z-index: 1;
}


.brand::after {
  content: "®";
  position: absolute;
  top: -0.35em;
  right: -0.6em;
  font-size: 0.35em;
  font-weight: 700;
  opacity: 0.6;
  z-index: -1;
}
.menuBtn {
  display: grid;
}

@media (min-width: 861px) {
  .menuBtn {
    display: none;
  }
}

/* --- MEET PENGI --- */
.meetGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px){
  .meetGrid{ grid-template-columns:1fr; }
}

.meetCard{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(2,14,46,.08);
  box-shadow: 0 18px 55px rgba(2,14,46,.10);
  padding: 22px;
}

.meetTitle{
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 38px;
  letter-spacing: .2px;
}

.meetLead{
  margin: 0 0 16px;
  color: rgba(11,36,86,.78);
  font-weight: 750;
  line-height: 1.6;
  max-width: 760px;
}

.meetBullets{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
@media (max-width: 740px){
  .meetBullets{ grid-template-columns:1fr; }
}

.meetBullet{
  border-radius: 18px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.75);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(2,14,46,.08);
}
.meetBullet b{
  display:block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
  letter-spacing:.1px;
}
.meetBullet span{
  display:block;
  color: rgba(11,36,86,.75);
  font-weight: 500;
  line-height: 1.45;
}

.meetCallout{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(30,168,255,.20), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 14px 30px rgba(2,14,46,.08);
}
.meetCallout b{
  display:block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 16px;
}
.meetCallout span{
  display:block;
  color: rgba(11,36,86,.78);
  font-weight: 700;
  line-height: 1.45;
}

.meetVisual{
  display:grid;
  gap: 12px;
}

.meetStage{
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.30);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px;
  overflow:hidden;
}

.meetStage img{
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(2,14,46,.22));
}

.meetMini{
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.75);
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(2,14,46,.08);
}
.meetMini b{
  display:block;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing:.1px;
}
.meetMini span{
  color: rgba(11,36,86,.78);
  font-weight: 700;
}

/* Snow overlay */
#snow{
  position: fixed;           /* snow over the whole site */
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;      /* don't block buttons/links */
  z-index: 999;              /* above background */
  opacity: .6;               /* adjust intensity */
}

/* Respect accessibility */
@media (prefers-reduced-motion: reduce){
  #snow{ display:none; }
}
.heroLogo{
  display:block;
  max-width: 820px;        /* desktop size */
  width: 100%;
  height: auto;
  margin-bottom: 14px;
}

/* Tablet */
@media (max-width: 980px){
  .heroLogo{
    max-width: 460px;
    margin-bottom: 12px;
  }
}

/* Mobile */
@media (max-width: 480px){
  .heroLogo{
    max-width: 320px;
    margin-bottom: 10px;
  }
}

@media (max-width: 980px){
  .heroText{
    text-align: center;
  }

  .heroLogo{
    margin-left: auto;
    margin-right: auto;
  }
}
.buyGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

@media (max-width: 980px){
  .buyGrid{ grid-template-columns: 1fr; }
}

.buyCard{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius: var(--radius-xl);
  text-decoration:none;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(2,14,46,.08);
  box-shadow: 0 16px 45px rgba(2,14,46,.08);
  transition: transform .12s ease, filter .12s ease;
}

.buyCard:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.buyIcon{
  width:62px;
  height:62px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  font-weight: 1000;
  color: rgba(11,36,86,.92);
  background: linear-gradient(180deg, rgba(30,168,255,.22), rgba(255,255,255,.55));
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 14px 35px rgba(2,14,46,.10);
  flex: 0 0 auto;
  text-transform: uppercase;
}

.buyText b{
  display:block;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: .2px;
}

.buyText span{
  display:block;
  margin-top: 4px;
  color: rgba(11,36,86,.72);
  font-weight: 700;
  line-height: 1.4;
}

.buyArrow{
  margin-left:auto;
  font-weight: 1000;
  color: rgba(11,36,86,.55);
  font-size: 22px;
}

.buyCardPrimary{
  border: 1px solid rgba(0,109,255,.22);
  background: linear-gradient(180deg, rgba(30,168,255,.20), rgba(255,255,255,.80));
}

.buyNote{
  margin-top: 14px;
  color: rgba(11,36,86,.70);
  font-weight: 650;
}
.buyNote a{
  color: rgba(11,36,86,.92);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(30,168,255,.40);
}


.pengiFloat{
  position: relative;
  display: inline-block;
}

/* SPEECH bubble */
.pengiBubble{
  position: absolute;
  left: 55%;              /* close to Pengi */
  top: 52%;

  max-width: 220px;
  padding: 14px 14px;

  background: #ffffff;
  color: #111;

  font: 700 14px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);

  opacity: 0;
  transform: translateY(6px) scale(.98);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}

/* Visible */
.pengiBubble.isOn{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Sharp speech tail */
.pengiBubble::after{
  content: "";
  position: absolute;
  left: -8px;
  top: 18px;

  width: 0;
  height: 0;

  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid #ffffff;

  filter: drop-shadow(-2px 4px 4px rgba(0,0,0,.15));
}

/* Mobile: bubble above Pengi */
@media (max-width: 600px){
  .pengiBubble{
    left: 55%;
    top: 128px;
    transform: translate(-50%, -100%) scale(.98);
    max-width: min(260px, 90vw);
    text-align: center;
  }

  .pengiBubble.isOn{
    transform: translate(-50%, -100%) scale(1);
  }

  .pengiBubble::after{
    left: 50%;
    top: auto;
    bottom: -10px;
    transform: translateX(-50%);

    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #ffffff;
    border-bottom: none;
  }
}
/* Ensure popups can extend outside the card */
.companyCardWrap{
  position: relative;
  overflow: visible !important;
}

/* Trigger */
.companyHover{
  position: relative;
  display: inline-block;
  outline: none;
}

/* "Hover bridge" to prevent flicker/gap when moving mouse to the popup */
.companyHover::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

/* Popup */
.companyPopup{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);

  min-width: 260px;
  padding: 14px 16px;

  background: var(--card, #ffffff);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,.14);

  font-size: 14px;
  line-height: 1.5;
  color: var(--fg, #111);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 9999;

  /* Critical: allow copying even if the site globally disables selection */
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* Also force children to be selectable */
.companyPopup, .companyPopup *{
  user-select: text !important;
  -webkit-user-select: text !important;
}

/* Show on hover OR when focused/clicked (tabindex makes this work) */
.companyHover:hover .companyPopup,
.companyHover:focus .companyPopup,
.companyHover:focus-within .companyPopup{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.companyPopup strong{ font-weight: 600; }

.companyPopup a{
  color: var(--link, #0b57d0);
  text-decoration: none;
}
.companyPopup a:hover{ text-decoration: underline; }


.featureRow{
  display: flex;
  align-items: center;
  gap: 16px;
}

.featureIcons{
  display: flex;
  gap: 10px;
}

.featureIcons img{
  height: 56px;        /* better balance than 80px */
  width: auto;
}

.featureText{
  line-height: 1.4;
  font-size: 14px;
}

.siteFooter{
  padding: 26px 16px 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.footerGrid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Use your existing .card if you already have it;
   these are safe enhancements for footer cards. */
.footerCard{
  padding: 16px 16px;
}

.footerText{
  margin-top: 8px;
  color: var(--muted, #555);
  font-size: 14px;
  line-height: 1.5;
}

.footerText strong{
  color: var(--fg, #111);
  font-weight: 600;
}

.footerText a{
  color: var(--link, #0b57d0);
  text-decoration: none;
}

.footerText a:hover{
  text-decoration: underline;
}

.footerLinks{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footerLinks a{
  color: var(--link, #0b57d0);
  text-decoration: none;
}

.footerLinks a:hover{
  text-decoration: underline;
}

/* Expandable details */
.footerDetails{
  margin: 0;
}

.footerSummary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerSummary::-webkit-details-marker{ display:none; }

.summaryHint{
  margin-left: auto;
  color: var(--muted, #555);
  font-size: 13px;
  white-space: nowrap;
}

.chev{
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted, #555);
  border-bottom: 2px solid var(--muted, #555);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-left: 2px;
}

.footerDetails[open] .chev{
  transform: rotate(-135deg);
}

.footerLegalBody{
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 12px;
  display: grid;
  gap: 12px;
}

.legalTitle{
  font-size: 13px;
  color: var(--fg, #111);
  font-weight: 600;
  margin-bottom: 4px;
}

.muted{
  color: var(--muted, #555);
  font-weight: 500;
}

.footerBottom{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
  color: var(--muted, #555);
  font-size: 13px;
  text-align: center;
}

/* Mobile */
@media (max-width: 820px){
  .footerGrid{
    grid-template-columns: 1fr;
  }
  .summaryHint{
    display: none; /* cleaner on mobile */
  }
}

.langSelect{
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.40);
  box-shadow: 0 10px 25px rgba(2,14,46,.10);
  color: rgba(11,36,86,.92);
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* small helper for accessibility label */
.srOnly{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* On smaller screens let it wrap nicely */
@media (max-width: 760px){
  .topbar{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .langWrap{
    margin-left: auto;
  }
}

  /* Make flag + select sit nicely together */
  .langWrap{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .langFlag{
    width: 26px;
    height: 18px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(2,14,46,.10);
    border: 1px solid rgba(255,255,255,.65);
    background: rgba(255,255,255,.55);
    object-fit: cover;
    flex: 0 0 auto;
  }

.meetVisual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.meetStage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meetStage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

/* Slide buttons */
.slideBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 151, 255, 0.85);
  color: #fff;
  font-size: 24px;
  cursor: pointer;

  opacity: 1;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.slideBtn.prev { left: 10px; }
.slideBtn.next { right: 10px; }

/* Show on hover (desktop) */
.meetStage:hover .slideBtn {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile: always visible when hover is not supported */
@media (hover: none) {
  .slideBtn {
    opacity: 1;
    pointer-events: auto;
  }
}
.adoptGrid {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.adoptionText {
  flex: 1 1 0%;
}

.adoptionImage {
  flex: 0 0 30%;
  text-align: left;
}

.adoptionImage img {
  max-width: 100%;
  height: auto;
}

/* Mobile / small screens */
@media (max-width: 768px) {
  .adoptGrid {
    flex-direction: column;
  }

  .adoptionImage {
    text-align: left;
    margin-top: 24px;
  }
}
.pengiMapBtn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #2da9ff, #6fd3ff);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pengiMapBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.pengiMapBtn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* Mobile: full-width, friendly tap target */
@media (max-width: 600px) {
  .pengiMapBtn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 1.1rem;
  }
}
/* group language + menu on the right */
.topActions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left:auto;
}
.italicSmall{
  color: var(--navy);
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-transform: none;
  margin: 0;
  text-shadow: none;
}
/* --- Ensure predictable stacking inside HERO --- */
.hero{
  position: relative;
  overflow: hidden;
}

/* Put the sparkle overlay behind content, but above background */
.hero::before{
  z-index: 1;
}

/* Keep your content above everything in the hero */
.hero .wrap{
  position: relative;
  z-index: 3;
}
  /* Scoped styling for Distributors section */
  .distSection{
    padding: 56px 16px;
    background: radial-gradient(1200px 600px at 20% 0%, rgba(0,151,255,.14), transparent 60%),
                radial-gradient(1000px 520px at 90% 20%, rgba(139,211,255,.14), transparent 55%),
                #0b1220;
    color: #fff;
  }

  .distWrap{
    max-width: 1100px;
    margin: 0 auto;
  }

  .distHead{
    text-align: center;
    margin-bottom: 22px;
  }

  .distHead h2{
    margin: 0 0 10px;
    font-size: clamp(26px, 3.2vw, 40px);
    letter-spacing: .2px;
    color: rgba(255,255,255,.88);
  }

  .distLead{
    margin: 0 auto;
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255,255,255,.85);
  }

  .distGrid{
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 18px;
  }

  .distCard{
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
    backdrop-filter: blur(6px);
  }

  .distCardAlt{
    background: rgba(255,255,255,.04);
  }

  .distSub{
    margin: 0 0 12px;
    font-size: 1.1rem;
  }

  .distCountries{
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 12px;
    list-style: none;
  }

  .distCountry{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    font-weight: 700;
  }

  .flag{ font-size: 1.2rem; }

  .distNote{
    margin: 10px 0 0;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
  }

  .distActions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .distBtn, .distBtnOutline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .2px;
    transition: transform .12s ease, filter .12s ease, background .12s ease;
    will-change: transform;
  }

  .distBtn{
    background: #0097ff;
    color: #062033;
    border: 1px solid rgba(255,255,255,.12);
  }

  .distBtnOutline{
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
  }

  .distBtn:hover, .distBtnOutline:hover{
    transform: translateY(-1px);
    filter: brightness(1.05);
  }

  .distWhy{
    padding-left: 18px;
    margin: 0 0 10px;
    color: rgba(255,255,255,.88);
    line-height: 1.55;
  }

  .distSmall{
    margin: 10px 0 0;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
    font-size: .95rem;
  }

  /* Responsive */
  @media (max-width: 860px){
    .distGrid{ grid-template-columns: 1fr; }
    .distCard{ padding: 16px; }
  }

  @media (max-width: 420px){
    .distActions{ flex-direction: column; }
    .distBtn, .distBtnOutline{ width: 100%; }
  }
#meetSlideWrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

#meetSlideWrap img,
#meetSlideWrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox{
  position:fixed; inset:0; display:none;
  align-items:center; justify-content:center;
  background:rgba(0,0,0,.85); z-index:9999;
}
.lightbox.active{ display:flex; }
.lightboxContent{ max-width:90vw; max-height:90vh; }
.lightboxContent img, .lightboxContent video{
  width:100%; height:100%; max-height:90vh; object-fit:contain; border-radius:12px;
}
.lightboxClose{
  position:absolute; top:18px; right:20px;
  font-size:36px; line-height:1;
  background:transparent; border:0; color:#fff; cursor:pointer;
}
#whypengi {
  padding: 2rem 1rem;
}

.whypengi-wrap {
  display: flex;
  justify-content: center;
}

.whypengi-wrap img {
  width: 100%;
  max-width: 900px;   /* adjust if needed */
  height: auto;
  display: block;
}
.heroCaption{
  margin-top: 12px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 22px);
  color: #12324a;
  line-height: 1.35;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: subtle emphasis */
.heroCaption::before{
  content: "✨";
}
.heroCaption::after{
  content: "✨";
}

/* ============================= */
/* Reviews Section */
/* ============================= */

.reviews {
  padding: 10px 0 80px;
  background: linear-gradient(to bottom, #f7fbff, #ffffff);
}

.reviewsTitle {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

/* Grid */
.reviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.reviewCard {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 56px 26px 28px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  text-align: center;
}

/* Avatar */
.reviewAvatar {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Avatar variants */
.avatar-mom {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}
.avatar-mom::after { content: "👩"; }

.avatar-dad {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
}
.avatar-dad::after { content: "👨"; }

.avatar-family {
  background: linear-gradient(135deg, #84fab0, #8fd3f4);
}
.avatar-family::after { content: "👨‍👩‍👧"; }

/* Stars */
.stars {
  color: #f6b400;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* Text */
.reviewText {
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
  color: #1f2937; 

}

/* Author */
.reviewAuthor {
  font-weight: 600;
  font-size: 0.9rem;
}

.reviewAuthor span {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .reviewsGrid {
    grid-template-columns: 1fr;
  }

  .reviewCard {
    padding-top: 60px;
  }
}
@media (max-width: 520px){
  .pengiFloat video,
  .pengiFloat .pengivideo{
    height: auto;
    max-height: 480px;   /* 👈 adjust: 240–300px is ideal */
    width: auto;
  }
}
.pengiFloat video,
.pengiFloat .pengivideo{
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transform: translateY(10px); /* match the img */
  filter: drop-shadow(0 28px 38px rgba(2,14,46,.22));
  display: block;              /* removes inline gap issues */
}







