:root{
  --max-width:1100px;
  --bg:#f7f8fb;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#f58220;
  --accent-dark:#d96a00;
  --black:#0f1724;
  --radius:12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:var(--black);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* Wrapper */
.wrap{max-width:var(--max-width);margin:0 auto;padding:28px}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(15,23,42,0.04);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;gap:12px;align-items:center}
.brand-logo{height:48px;width:auto;display:block}
.brand-name{font-weight:700;font-size:16px}
.brand-sub{font-size:12px;color:var(--muted)}

/* Nav */
.nav ul{display:flex;gap:18px;list-style:none;margin:0;padding:0}
.nav a{color:var(--black);text-decoration:none;font-weight:600;font-size:14px}
.nav-toggle{display:none;background:none;border:0;font-size:20px;padding:6px;cursor:pointer}

/* Mobile full-screen nav */
.mobile-nav{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.9);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:100;
}
.mobile-nav.open{
  opacity:1;
  pointer-events:auto;
}
.mobile-inner{
  display:flex;
  flex-direction:column;
  gap:18px;
  text-align:center;
}
.mobile-link{
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}
.nav-close{
  position:absolute;
  top:18px;
  right:18px;
  background:none;
  border:0;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* HERO */
.hero{
  padding:72px 0 64px;
  background:linear-gradient(180deg,#fffdf7,#ffffff);
  box-shadow:0 6px 20px rgba(15,23,42,0.02);
}
.hero-grid{display:grid;grid-template-columns:1fr;gap:28px;align-items:center}
.eyebrow{
  display:inline-block;
  background:linear-gradient(90deg,var(--accent),#ff9a3b);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
}
.hero h1{
  font-family:Poppins;
  font-size:32px;
  margin:10px 0 8px;
}
.lead{color:var(--muted);max-width:620px}
.hero-ctas{margin:18px 0;display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  font-size:14px;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 8px 24px rgba(245,130,32,0.12);
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn.primary:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(245,130,32,0.18);
  
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(15,23,42,0.06);
  color:var(--black);
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn.ghost:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 32px rgba(245,130,32,0.18); 
}
.btn.small{padding:8px 14px;font-size:13px}

/* pill style for card CTAs */
.btn.pill{
  border-radius:999px;
  padding:9px 20px;
  font-size:13px;
}
.btn.pill-light{
  background:#fcd37a;
  color:#111;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* Quick stats */
.quick-stats{display:flex;gap:18px;margin-top:12px;list-style:none;padding:0;flex-wrap:wrap}
.quick-stats li{font-size:13px;color:var(--muted)}

/* Hero media */
.hero-media{text-align:center}
.hero-img{
  width:320px;
  max-width:100%;
  border-radius:14px;
  box-shadow:0 12px 40px rgba(15,23,42,0.12);
}
.hero-badge{
  margin-top:12px;
  display:inline-block;
  background:rgba(15,23,42,0.06);
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  color:var(--muted);
}
.hero-media {
  position: relative;
}

/* slider box uses same size as your old image */
.hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

/* slides */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease;
}
.hero-slide.is-active {
  opacity: 1;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10%;
}

/* arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-nav:hover {
  background: rgba(0, 0, 0, 0.55);
}

/* dots */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.hero-dot.is-active {
  width: 18px;
  background: #fff;
}


/* SECTION */
.section{padding:64px 0}
.section-header h2{margin:0 0 8px;font-family:Poppins}
.muted{color:var(--muted)}

/* CARDS */
.cards{display:grid;grid-template-columns:1fr;gap:20px}
.card{
  display:flex;
  gap:18px;
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
  box-shadow:0 8px 30px rgba(15,23,42,0.03);
  align-items:center;
  overflow:hidden;
}
.card-media img{
  width:180px;
  height:140px;
  object-fit:cover;
  border-radius:10px;
}
.card-body h3{margin:0 0 8px;font-size:20px}
.bullets{list-style:disc;padding-left:18px;margin:10px 0 0}
.bullets li{padding:4px 0;color:var(--muted)}
.card-actions{margin-top:14px}

/* Brand-specific accents */
.card-junaki{border-left:6px solid var(--accent)}
.card-d3{
  border-left:6px solid var(--black);
  background:linear-gradient(180deg,#111,#000);
  color:#fff;
}
.card-d3 .muted{color:rgba(255,255,255,0.8)}
.card-d3 .btn.pill-light{color:#111}

/* Comparison */
.alt{background:transparent}
.compare-wrap{
  overflow:auto;
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(15,23,42,0.03);
}
.compare-table{width:100%;border-collapse:collapse;font-size:14px}
.compare-table th, .compare-table td{
  padding:14px;
  border-bottom:1px solid rgba(15,23,42,0.06);
  text-align:left;
}
.compare-table thead th{
  color:var(--muted);
  font-weight:700;
  background:rgba(15,23,42,0.02);
}
.compare-table td:nth-child(3),
.compare-table th:nth-child(3){
  background:rgba(244,244,248,0.7);
}

 Yolk comparison strip 
.yolk-compare{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:32px;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}

.yolk-side ul{
  list-style:none;
  padding:0;
  margin:14px 0 0;
}

.yolk-side li{
  margin-bottom:6px;
  font-size:14px;
  color:var(--muted);
}

.yolk-pill{
  display:inline-block;
  padding:6px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.yolk-pill-left{
  background:linear-gradient(90deg,var(--accent),#ffb347);
  color:#fff;
}

.yolk-pill-right{
  background:#e5e7eb;
  color:#111827;
}

.yolk-center img{
  max-width:180px;
  width:100%;
  border-radius:999px;
  box-shadow:0 14px 32px rgba(0,0,0,0.18);
}




/* FEATURES */
.features{display:grid;grid-template-columns:1fr;gap:18px;margin-top:14px}
.feature{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:var(--card);
  padding:14px;
  border-radius:10px;
  box-shadow:0 8px 30px rgba(15,23,42,0.03);
}
.f-icon{
  width:48px;height:48px;border-radius:8px;
  background:rgba(15,23,42,0.04);
  display:flex;align-items:center;justify-content:center;
  font-size:20px;
}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr;gap:18px}
.contact-card{
  background:var(--card);
  padding:22px;
  border-radius:12px;
  box-shadow:0 12px 36px rgba(15,23,42,0.03);
}
.contact-items{display:flex;flex-direction:column;gap:10px;margin-top:14px}
.label{display:block;font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.04em}
.value{font-weight:600}
.map-card .map-placeholder{
  height:180px;
  border-radius:10px;
  overflow:hidden;
}

/* WhatsApp floating */
.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25D366;
  color:#fff;
  padding:12px;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(37,211,102,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  z-index:90;
}
.whatsapp-float svg{display:block}
.instagram-float {
  position: fixed;
  right: 18px;
  bottom: 85px;
  background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 100%);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(40, 90, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 89;
  transition: transform 0.2s ease;
}
.instagram-float img {
  display: block;
   width: 28px;                  
  height: 28px;
}

/* Footer */
.site-footer{padding:30px 0;color:var(--muted)}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  font-size:13px;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:8px;
}
.footer-logo{
  height:28px;
  width:auto;
  display:block;
}
.dev-credit{
  color:inherit;
  text-decoration:none;
}
.dev-credit:hover{
  text-decoration:underline;
}

/* Animations: fade on scroll */
.fade{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease,transform .7s ease;
}
.fade.show{
  opacity:1;
  transform:none;
}

/* Responsive */
@media(min-width:780px){
  .hero-grid{grid-template-columns:1fr 420px}
  .cards{grid-template-columns:1fr 1fr}
  .features{grid-template-columns:repeat(3,1fr)}
  .contact-grid{grid-template-columns:1fr 420px}
}
@media(max-width:780px){
  .nav ul{display:none}
  .nav-toggle{display:inline-block}
  .wrap{padding:18px}
  .hero-img{width:260px}
  .hero{padding:56px 0}
  .hero h1{font-size:26px}
  .card{flex-direction:column;align-items:flex-start}
  .card-media img{width:100%;height:160px}
}
/* Fun Fact*/
.egg-panels {
  padding: 72px 0;
  background: #fffdf7;
}

.egg-panels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.egg-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px 20px;
  box-shadow: 0 18px 50px rgba(15, 35, 95, 0.06);
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 220px; /* taller for heading + image */
}

.egg-panel:hover {
  height: 100%; /* expands for details */
  box-shadow: 0 28px 70px rgba(15, 35, 95, 0.12);
  transform: translateY(-6px);
}

.egg-panel img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.egg-panel:hover img {
  transform: scale(1.02);
}

.egg-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #2c3e50;
  letter-spacing: 0.02em;
}

.egg-text p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #64748b;
  font-weight: 500;
  
}

.egg-panel:hover .egg-text p {
  max-height: 50px; /* enough for 2 lines */
  opacity: 1;
  padding-top: 4px;
  
}

/* responsive */
@media (max-width: 960px) {
  .egg-panels-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== MASCOT FLOAT ========== */

.mascot-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 160px;           /* smaller */
  max-width: 38vw;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 35, 95, 0.22);
  cursor: pointer;
  z-index: 120;
  overflow: hidden;
}

.mascot-float-video {
  width: 100%;
  height: auto;
  display: block;
}

.mascot-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 600px) {
  .mascot-float {
    left: 12px;
    right: auto;
    bottom: 18px;
    width: 140px;
    height: auto;
  }
}


.mascot-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 130;
}

.mascot-modal.is-open {
  display: flex;
}

.mascot-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mascot-modal-dialog {
  position: relative;
  width: 90%;
  max-width: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: #000;
  z-index: 1;
}

.mascot-modal-dialog video {
  width: 100%;
  height: auto;
  display: block;
}
