*{ box-sizing:border-box; margin:0; padding:0; }

:root{
  --green: #1f7a54;
  --green-dark: #0d2618;
  --green-light: #e6f4ed;
  --text: #112a1e;
  --muted: #5c7365;
  --bg: #f8faf9;
  --card: #ffffff;
  --line: rgba(31, 122, 84, 0.12);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 50px rgba(31, 122, 84, 0.08);
  --glass: rgba(255, 255, 255, 0.7);
}

html, body {
  width: 100%;
}

body{
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  
  /* Forces footer to bottom of screen if content is short */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

section, header, footer {
  flex-shrink: 0;
}

/* PREMIUM BRAND GRADIENT BACKGROUND */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f8faf9 0%, #e6f4ed 60%, #dbe6df 100%);
  z-index: -2;
}

/* Animated Floating Orbs */
.bg-orb {
    position: fixed; 
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.65;
    animation: floatOrb 25s infinite alternate ease-in-out;
}
.orb-1 { width: 600px; height: 600px; background: rgba(31, 122, 84, 0.15); top: -10%; left: -10%; }
.orb-2 { width: 700px; height: 700px; background: rgba(52, 211, 153, 0.1); top: 20%; right: -15%; animation-delay: -5s; }
.orb-3 { width: 500px; height: 500px; background: rgba(20, 83, 57, 0.12); bottom: -10%; left: 20%; animation-delay: -10s; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.1); }
}

/* Initial Load Animations (Hero Only) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.stagger-1 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
.stagger-2 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.content-wrap{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* TOPBAR - Premium Glassmorphism */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.topbar-inner{
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-area{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  transition: 0.3s ease;
}
.brand-area:hover { transform: scale(1.02); }

.brand-logo{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid rgba(31,122,84,0.2);
  padding: 4px;
  object-fit: contain;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.brand-title{ font-weight: 900; letter-spacing: 0.5px; line-height: 1.1; font-size: 18px;}
.brand-subtitle{ font-size: 11.5px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;}

.menu-area{
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-item{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 12px;
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-item:hover{ background: var(--green-light); color: var(--green); }
.menu-item.active{ background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(31, 122, 84, 0.25); }

/* MOBILE MENU BUTTON */
.menu-button{
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: 0.2s;
}
.menu-button:active { transform: scale(0.95); }
.menu-button span{
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: var(--text);
  border-radius: 2px;
}

/* ACCOUNT */
.account-area{ position: relative; }

.account-button{
  border: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.account-button:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: rgba(31,122,84,0.3); }

.account-icon{
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  flex: 0 0 34px;
}

.account-text{
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-arrow{ color: var(--muted); font-size: 10px; }

.account-dropdown{
  position: absolute;
  right: 0;
  top: 56px;
  width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  padding: 10px;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.account-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.account-dropdown a{
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  transition: 0.2s;
}
.account-dropdown a:hover{ background: var(--green-light); color: var(--green); padding-left: 18px; }

.dropdown-line{ height: 1px; background: var(--line); margin: 8px 0; }

/* WELCOME AREA (HERO) */
.welcome-area{
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.welcome-inner{
  width: min(1120px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.welcome-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(31,122,84,.15);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-soft);
}

.badge-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,122,84,.2);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(31,122,84,0.4); } 70% { box-shadow: 0 0 0 8px rgba(31,122,84,0); } 100% { box-shadow: 0 0 0 0 rgba(31,122,84,0); } }

.welcome-title{
  margin-top: 24px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1.5px;
}

.welcome-highlight{ 
  color: var(--green);
}

.welcome-text{
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16.5px;
  font-weight: 500;
  max-width: 520px;
}

.welcome-actions{
  margin-top: 35px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* UI/UX Fix: Primary Button */
.btn-explore {
  text-decoration: none;
  font-weight: 800;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 15px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 15px 35px rgba(31, 122, 84, 0.25);
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-explore:hover{ 
  background: var(--green-dark); 
  transform: translateY(-3px); 
  box-shadow: 0 20px 40px rgba(31, 122, 84, 0.35); 
}

/* Secondary Button */
.btn-verify {
  text-decoration: none;
  font-weight: 800;
  border-radius: 16px;
  padding: 16px 32px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-verify:hover{ 
  background: #fdfdfd;
  border-color: rgba(31,122,84,0.3); 
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(0,0,0,0.06); 
}

.welcome-stats{
  margin-top: 50px;
  display: flex;
  gap: 30px;
}

.stat-box{
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-icon {
    width: 22px;
    height: 22px;
    color: var(--green);
    flex: 0 0 22px;
}
.stat-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.stat-title{ font-weight: 900; color: var(--text); font-size: 15px; }
.stat-sub{ font-size: 12.5px; color: var(--muted); font-weight: 500; margin-top: 2px;}

/* PREMIUM CSS HERO GRAPHIC */
.hero-graphic {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.graphic-card {
    width: 280px;
    height: 320px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,1);
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(31,122,84,0.12);
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

.graphic-avatar {
    width: 85px; height: 85px;
    border-radius: 50%; background: var(--green-light);
    border: 3px solid #fff; box-shadow: 0 10px 20px rgba(31,122,84,0.1);
    display: flex; align-items: center; justify-content: center; color: var(--green);
    margin-bottom: 25px;
}
.graphic-avatar svg { width: 40px; height: 40px; }
.graphic-lines { width: 100%; display: flex; flex-direction: column; gap: 14px; align-items: center; margin-bottom: 35px; }
.line { height: 6px; border-radius: 4px; background: rgba(31,122,84,0.12); }
.line-long { width: 80%; } .line-medium { width: 50%; }
.graphic-btn {
    padding: 10px 24px; background: var(--green); color: #fff; font-weight: 800; font-size: 11px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 8px 20px rgba(31,122,84,0.25);
}

.floating-bubble {
    position: absolute; width: 55px; height: 55px; background: #fff; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid var(--line);
}
.bubble-1 { top: 30px; right: 10px; animation: floatBubble1 4s ease-in-out infinite; }
.bubble-2 { bottom: 50px; left: 10px; animation: floatBubble2 5s ease-in-out infinite; }
.floating-bubble svg { width: 26px; height: 26px; }

@keyframes floatBubble1 { 0% { transform: translate(0,0) rotate(5deg); } 50% { transform: translate(-10px, -20px) rotate(-5deg); } 100% { transform: translate(0,0) rotate(5deg); } }
@keyframes floatBubble2 { 0% { transform: translate(0,0) rotate(-10deg); } 50% { transform: translate(15px, 15px) rotate(10deg); } 100% { transform: translate(0,0) rotate(-10deg); } }


/* QUICK AREA */
.quick-access-area { margin-top: -10px; position: relative; z-index: 10; }
.quick-area{
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.quick-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.quick-title{ font-weight: 900; font-size: 20px; color: var(--text); }
.quick-tag{ font-size: 11px; font-weight: 900; padding: 6px 14px; border-radius: 999px; background: var(--text); color: #fff; text-transform: uppercase; letter-spacing: 0.5px;}

.quick-links{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.quick-link{
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-link:hover{
  transform: translateY(-5px);
  border-color: rgba(31,122,84,0.3);
  box-shadow: var(--shadow-hover);
}

.quick-icon{
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  font-size: 20px;
}
.quick-name{ font-weight: 800; font-size: 15px; margin-bottom: 2px; }
.quick-desc{ font-size: 12.5px; color: var(--muted); line-height: 1.4; font-weight: 500;}

.quick-note{
  margin-top:20px;
  font-size:12px;
  color: var(--green);
  background: var(--green-light);
  padding:12px 16px;
  border-radius: 8px 16px 16px 8px;
  border-left: 4px solid var(--green);
  font-weight: 500;
}

/* PROGRAM AREA */
.program-area{ padding: 80px 0 60px; }

.area-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}

.area-title{ font-size: 36px; font-weight: 900; letter-spacing: -1px; }
.area-sub{ color: var(--muted); font-size: 16px; margin-top: 6px; font-weight: 500;}

.see-more{
  text-decoration: none;
  font-weight: 800;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.see-more:hover{ background: var(--green-light); color: var(--green); transform: translateX(5px); border-color: transparent;}

/* PROGRAM LIST (UPDATED TO BE FULLY CLICKABLE LINKS) */
.program-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.program-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; 
  flex-direction: column;
  text-decoration: none; /* Crucial: removes underline from making card a link */
  color: var(--text); /* Keeps text color normal */
  cursor: pointer;
}
.program-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(31,122,84,0.2);
}

.program-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.program-tag{
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-date{ display: block; margin-top: 9px; color: var(--muted); font-size: 10.5px; font-weight: 700; text-align: center; }

.program-title{ font-size: 22px; font-weight: 900; line-height: 1.3; margin-bottom: 12px;}
.program-text{
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  flex: 1; /* Pushes button to bottom */
  margin-bottom: 25px;
}

/* Converted to a div since the card itself is the link */
.program-btn{
  display: block;
  margin-top: auto; /* Aligns to bottom perfectly */
  text-align: center;
  font-weight: 800;
  color: var(--green-dark);
  padding: 14px 20px;
  border-radius: 14px;
  background: #f4f7f5;
  transition: .3s ease;
  width: 100%;
}
.program-card:hover .program-btn { background: var(--green-light); color: var(--green); }

/* INFO AREA (UPDATED UI/UX) */
.info-area{
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.info-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
}
.info-card:hover { 
  transform: translateY(-10px); 
  border-color: rgba(31,122,84,0.3); 
  box-shadow: 0 20px 40px rgba(31, 122, 84, 0.12);
}

.info-icon{
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-light);
  color: var(--green);
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(31, 122, 84, 0.08);
  transition: transform 0.3s ease;
}
.info-card:hover .info-icon {
  transform: scale(1.1);
}

.info-title{ font-weight: 900; font-size: 19px; margin-bottom: 12px; color: var(--text);}
.info-text{ color: var(--muted); font-size: 14.5px; line-height: 1.7; font-weight: 500;}

/* FOOTER */
.site-footer{
  background: #0d2618;
  color: var(--green-light);
  padding: 80px 0 30px;
  margin-top: auto; 
  width: 100%;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand{
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-logo{
  width: 65px; height: 65px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-title{ font-weight: 900; font-size: 24px; color: #fff; letter-spacing: -0.5px;}
.footer-sub{ font-size: 12px; opacity: .7; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;}

.footer-col .footer-head{ font-weight: 900; margin-bottom: 20px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;}
.footer-col a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.6);
  margin: 12px 0;
  font-size: 14.5px;
  font-weight: 500;
  transition: .3s ease;
}
.footer-col a:hover{ color: #fff; transform: translateX(5px); }

.footer-text{ font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 8px; font-weight: 500;}

.footer-bottom{
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  font-weight: 500;
}
.footer-mini { text-transform: uppercase; letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 1024px){
  .welcome-inner{ grid-template-columns: 1fr; text-align: center; }
  .welcome-text { margin: 18px auto; }
  .welcome-actions { justify-content: center; }
  .welcome-stats { justify-content: center; flex-wrap: wrap; }
  .hero-graphic { display: none; } /* Hide graphic on smaller screens */
  
  .quick-links{ grid-template-columns: repeat(2, 1fr); }
  .program-list{ grid-template-columns: repeat(2, 1fr); }
  .info-list{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
  .menu-button{ display: block; }
  .menu-area{
    position: absolute;
    right: 4%;
    top: 70px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 92vw);
    transform: translateY(-10px);
    opacity: 0;
    transition: 0.3s ease;
  }
  .menu-area.open{ display: flex; transform: translateY(0); opacity: 1; }
  .menu-item{ width: 100%; text-align: center; }
  
  .account-area{ width: 100%; margin-top: 10px; }
  .account-button{ width: 100%; justify-content: space-between; padding: 8px 12px; }
  .account-dropdown{ position: static; width: 100%; margin-top: 10px; box-shadow: none; border: none; background: var(--bg); display: block !important; opacity: 1; transform: none;}
  
  .welcome-title { font-size: 36px; }
  .program-list{ grid-template-columns: 1fr; }
  .info-list{ grid-template-columns: 1fr; }
  .quick-links{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== HOME POLISH V5 ===== */
:root {
  --home-green: #176b49;
  --home-green-dark: #0b2f20;
  --home-green-soft: #e8f3ed;
  --home-gold: #d5a62e;
  --home-blue: #39738f;
  --home-red: #a84a42;
  --home-canvas: #f5f8f6;
  --home-surface: #ffffff;
  --home-border: #dbe7e0;
  --home-text: #10291d;
  --home-muted: #607568;
  --home-shadow: 0 12px 32px rgba(18, 51, 36, .08);
  --home-shadow-strong: 0 18px 44px rgba(18, 51, 36, .14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--home-canvas);
  color: var(--home-text);
}

body::before,
.bg-orb {
  display: none;
}

.content-wrap,
.topbar-inner,
.welcome-inner {
  width: min(1180px, calc(100% - 40px));
}

.topbar {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--home-border);
  box-shadow: 0 4px 18px rgba(16, 41, 29, .05);
}

.topbar-inner {
  min-height: 72px;
  padding: 8px 0;
}

.brand-area {
  gap: 11px;
}

.brand-area:hover {
  transform: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid var(--home-border);
  box-shadow: 0 6px 16px rgba(16, 41, 29, .08);
}

.brand-title,
.brand-subtitle,
.welcome-badge,
.graphic-btn,
.quick-tag,
.program-tag,
.footer-sub,
.footer-col .footer-head,
.footer-mini {
  letter-spacing: 0;
}

.brand-title {
  font-size: 18px;
}

.brand-subtitle {
  font-size: 11px;
}

.menu-area {
  gap: 6px;
}

.menu-item {
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 8px;
}

.menu-item:hover {
  background: var(--home-green-soft);
  color: var(--home-green);
}

.menu-item.active,
.menu-item.active:hover,
.menu-item.active:focus-visible {
  background: var(--home-green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 107, 73, .18);
}

.menu-button {
  border-color: var(--home-border);
  border-radius: 8px;
}

.account-button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 24px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(23, 107, 73, .7), rgba(210, 164, 56, .58)) border-box;
  box-shadow: 0 7px 20px rgba(23, 107, 73, .08);
}

.account-button:hover {
  border-color: #a8cabb;
  box-shadow: 0 8px 20px rgba(16, 41, 29, .09);
}

.account-icon {
  background: linear-gradient(135deg, var(--home-green), #0f4933);
}

.account-dropdown {
  top: 54px;
  border-color: var(--home-border);
  border-radius: 8px;
  box-shadow: var(--home-shadow-strong);
  transform-origin: top right;
}

.account-dropdown.show {
  animation: homeMenuIn .2s ease-out both;
}

.account-dropdown a {
  border-radius: 6px;
}

.welcome-area {
  min-height: 650px;
  padding: 76px 0 64px;
  isolation: isolate;
  background-color: rgba(239, 247, 243, .88);
  background-image: url("img/pesobgs.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: screen;
  border-bottom: 1px solid var(--home-border);
}

.welcome-area::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(237, 246, 241, .58);
}

.welcome-inner {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr);
  gap: 68px;
}

.welcome-badge {
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border-color: #cfe0d6;
  box-shadow: 0 8px 20px rgba(16, 41, 29, .07);
}

.welcome-title {
  max-width: 760px;
  margin-top: 22px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.welcome-highlight {
  color: var(--home-green);
}

.welcome-text {
  max-width: 600px;
  margin-top: 20px;
  color: #526b5d;
  font-size: 16px;
  line-height: 1.75;
}

.welcome-actions {
  margin-top: 30px;
  gap: 12px;
}

.btn-explore,
.btn-verify {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 8px;
}

.btn-explore {
  background: linear-gradient(135deg, #1c8058, var(--home-green));
  border-color: var(--home-green);
  box-shadow: 0 12px 26px rgba(23, 107, 73, .22);
}

.btn-explore:hover {
  background: var(--home-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(23, 107, 73, .26);
}

.btn-verify {
  border-color: #cadcd2;
  box-shadow: none;
}

.btn-verify:hover {
  background: var(--home-green-soft);
  border-color: #9fc4b2;
  transform: translateY(-2px);
}

.welcome-stats {
  margin-top: 36px;
  gap: 12px;
}

.stat-box {
  min-width: 150px;
  padding: 10px 12px;
  gap: 10px;
  border-left: 0;
}

.stat-box + .stat-box {
  padding-left: 22px;
  border-left: 2px solid rgba(23, 107, 73, .28);
}

.stat-icon {
  color: var(--home-green) !important;
}

.stat-title {
  font-size: 14px;
}

.account-button .account-icon > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px;
  max-width: 34px;
  object-fit: cover !important;
  border-radius: 50% !important;
}

.stat-sub {
  font-size: 11.5px;
}

.hero-graphic {
  height: 390px;
}

.graphic-card {
  width: 270px;
  height: 310px;
  padding: 32px;
  border-color: rgba(255, 255, 255, .9);
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(16, 41, 29, .18);
  animation: homeFloat 5s ease-in-out infinite;
}

.graphic-avatar {
  border-radius: 50%;
}

.graphic-btn {
  border-radius: 18px;
}

.floating-bubble {
  border-radius: 8px;
  border-color: var(--home-border);
}

.bubble-1 {
  animation: homeBubble 4.8s ease-in-out infinite;
}

.bubble-2 {
  animation: homeBubble 5.4s ease-in-out -1s infinite reverse;
}

.quick-access-area {
  margin-top: 0;
  padding: 34px 0;
  background: var(--home-surface);
  border-bottom: 1px solid var(--home-border);
}

.quick-area {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.quick-top {
  padding-bottom: 14px;
  margin-bottom: 16px;
}

.quick-title {
  color: var(--green);
}
.quick-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-tag,
.program-tag {
  border-radius: 16px;
}

.quick-links {
  gap: 12px;
}

.quick-link {
  min-height: 86px;
  padding: 14px;
  border-color: var(--home-border);
  border-radius: 8px;
}

.quick-link:hover {
  transform: translateY(-3px);
  border-color: #a8cabb;
  box-shadow: var(--home-shadow);
}

.quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--home-green-soft);
}

.quick-link:nth-child(2) .quick-icon,
.quick-link:nth-child(3) .quick-icon,
.quick-link:nth-child(4) .quick-icon {
  background: var(--home-green-soft);
}

.quick-note {
  margin-top: 16px;
  border-radius: 4px;
}

.program-area {
  padding: 68px 0 72px;
  background: var(--home-canvas);
}

.area-head {
  margin-bottom: 24px;
}

.area-title {
  font-size: 34px;
  letter-spacing: 0;
}

.area-sub {
  font-size: 15px;
}

.see-more {
  padding: 11px 18px;
  border-color: var(--home-border);
  border-radius: 8px;
  box-shadow: none;
}

.see-more:hover {
  transform: translateX(3px);
  border-color: #a8cabb;
}

.program-list,
.info-list {
  gap: 18px;
}

.program-card {
  min-height: 440px;
  padding: 24px;
  border-color: var(--home-border);
  border-top: 3px solid var(--home-green);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(16, 41, 29, .06);
}

.program-image {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 20px;
  border-bottom: 1px solid var(--home-border);
  border-radius: 5px 5px 0 0;
  background: var(--home-green-soft);
  object-fit: contain;
  object-position: center;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}

.program-card:hover .program-image {
  filter: saturate(1.04) contrast(1.02);
}

.program-card:hover {
  transform: translateY(-5px);
  border-color: #b6d0c3;
  box-shadow: var(--home-shadow-strong);
}

.program-title {
  font-size: 21px;
  letter-spacing: 0;
}

.program-btn {
  border-radius: 6px;
}

.info-area {
  padding: 68px 0 74px;
  background: var(--home-surface);
  border-color: var(--home-border);
  backdrop-filter: none;
}

.info-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-color: var(--home-border);
  border-top: 3px solid var(--home-green);
  border-radius: 8px;
  box-shadow: none;
  align-items: flex-start;
  text-align: left;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #a8cabb;
  box-shadow: var(--home-shadow);
}

.info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--home-green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23, 107, 73, .18);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-card:hover .info-icon {
  transform: translateY(-2px) scale(1.04);
}

.info-title {
  margin-bottom: 8px;
  font-size: 18px;
}

.info-text {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--home-green-dark);
}

.footer-grid {
  gap: 54px;
}

.footer-logo {
  width: 58px;
  height: 58px;
}

.footer-title {
  font-size: 22px;
  letter-spacing: 0;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
}

.reveal {
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

@keyframes homeMenuIn {
  from { opacity: 0; transform: translateY(-6px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes homeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes homeBubble {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@media (max-width: 1024px) {
  .welcome-area {
    min-height: auto;
    padding: 68px 0 58px;
  }

  .welcome-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
    text-align: left;
  }

  .welcome-title {
    font-size: 46px;
  }

  .welcome-text {
    margin: 18px 0 0;
  }

  .welcome-actions,
  .welcome-stats {
    justify-content: flex-start;
  }

  .hero-graphic {
    display: flex;
    height: 340px;
  }

  .graphic-card {
    width: 230px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .content-wrap,
  .topbar-inner,
  .welcome-inner {
    width: min(calc(100% - 32px), 680px);
  }

  .menu-area {
    right: 16px;
    top: 64px;
    width: min(320px, calc(100vw - 32px));
    border-color: var(--home-border);
    border-radius: 8px;
  }

  .welcome-inner {
    grid-template-columns: 1fr;
  }

  .welcome-title {
    font-size: 42px;
  }

  .hero-graphic {
    display: none;
  }

  .quick-links,
  .program-list,
  .info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-link {
    min-width: 0;
  }

  .program-card:last-child:nth-child(odd),
  .info-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .content-wrap,
  .topbar-inner,
  .welcome-inner {
    width: calc(100% - 24px);
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle,
  .account-text {
    font-size: 10px;
  }

  .welcome-area {
    padding: 48px 0 44px;
    background-position: 58% center;
  }

  .welcome-badge {
    max-width: 100%;
    font-size: 9px;
    line-height: 1.4;
  }

  .welcome-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .welcome-text {
    font-size: 14px;
    line-height: 1.65;
  }

  .welcome-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-explore,
  .btn-verify {
    width: 100%;
  }

  .welcome-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    margin-top: 28px;
  }

  .stat-box {
    min-width: 0;
  }

  .stat-box + .stat-box {
    padding-top: 12px;
    padding-left: 12px;
    border-top: 1px solid rgba(23, 107, 73, .22);
    border-left: 0;
  }

  .quick-access-area {
    padding: 28px 0;
  }

  .quick-links,
  .program-list,
  .info-list {
    grid-template-columns: 1fr;
  }

  .program-card:last-child:nth-child(odd),
  .info-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .area-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-area .area-head {
    align-items: center;
    flex-direction: row;
  }

  .program-area .area-head > div {
    min-width: 0;
    flex: 1;
  }

  .program-area .see-more {
    flex: 0 0 auto;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .area-title {
    font-size: 28px;
  }

  .program-area,
  .info-area {
    padding: 52px 0;
  }

  .program-card {
    min-height: 0;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .stagger-1,
  .stagger-2,
  .reveal,
  .graphic-card,
  .floating-bubble,
  .badge-dot,
  .account-dropdown.show {
    animation: none !important;
    transition-duration: .01ms !important;
    transform: none !important;
  }
}

/* Card content alignment V10 */
.quick-link {
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.quick-link > div:last-child {
  min-width: 0;
  text-align: center;
}

.quick-icon {
  margin-inline: auto;
}

.program-card {
  text-align: center;
}

.program-title,
.program-text {
  text-align: center;
}

.program-text {
  margin-inline: auto;
}

.info-card {
  align-items: center;
  text-align: center;
}

.info-icon {
  margin-inline: auto;
}

.info-title,
.info-text {
  text-align: center;
}

.info-text {
  margin-inline: auto;
}
.logout-form {
  margin: 0;
  width: 100%;
}

.logout-form .logout-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #fee2e2;
  border-radius: 12px;
  background: #fff7f7;
  color: #c92a2a;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.logout-form .logout-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
}

.logout-form .logout-link:hover {
  background: #feecec;
  border-color: #fecaca;
  color: #a91d1d;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(185, 28, 28, .10);
}

.logout-form .logout-link:focus-visible {
  outline: 3px solid rgba(220, 38, 38, .18);
  outline-offset: 2px;
}

.logout-form .logout-link:active {
  transform: translateY(0);
  box-shadow: none;
}

/* BENEPESO service-orbit hero illustration. */
.bp-service-orbit {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  isolation: isolate;
  filter: drop-shadow(0 24px 34px rgba(13, 67, 44, .12));
  animation: bpOrbitFloat 6.5s ease-in-out infinite;
}

.bp-service-orbit::before,
.bp-service-orbit::after {
  content: "";
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
}

.bp-service-orbit::before {
  inset: 8%;
  background: radial-gradient(circle, rgba(255,255,255,.94) 0 28%, rgba(225,244,234,.72) 47%, rgba(229,185,70,.09) 66%, transparent 68%);
}

.bp-service-orbit::after {
  inset: 23%;
  background: rgba(255,255,255,.68);
  box-shadow: 0 0 0 18px rgba(255,255,255,.18), 0 0 70px rgba(31,122,84,.16);
}

.bp-orbit-ring {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bp-orbit-ring-outer {
  width: 79%;
  aspect-ratio: 1;
  border: 1px dashed rgba(31,122,84,.4);
  animation: bpOrbitRotate 22s linear infinite;
}

.bp-orbit-ring-outer i {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #d5a62e;
  box-shadow: 0 0 0 5px rgba(213,166,46,.15);
}

.bp-orbit-ring-inner {
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(31,122,84,.15);
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.22);
}

.bp-orbit-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 178px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 17px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 28px;
  background: linear-gradient(155deg, rgba(255,255,255,.97), rgba(244,251,247,.91));
  box-shadow: 0 22px 45px rgba(15,65,44,.16), inset 0 0 0 1px rgba(31,122,84,.06);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.bp-orbit-seal {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(31,122,84,.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,65,44,.12), 0 0 0 7px rgba(223,242,232,.7);
}

.bp-orbit-seal img { width: 54px; height: 54px; object-fit: contain; }
.bp-orbit-eyebrow { color: #6b8076; font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bp-orbit-core > strong { margin-top: 3px; color: #103c2a; font-size: 20px; line-height: 1.1; letter-spacing: -.035em; }
.bp-orbit-core > small { margin-top: 4px; color: #63786e; font-size: 9px; font-weight: 600; }
.bp-orbit-live { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; padding: 6px 9px; border: 1px solid #cae3d5; border-radius: 999px; color: #176b49; background: #edf8f2; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.bp-orbit-live i { width: 7px; height: 7px; border-radius: 50%; background: #21a269; box-shadow: 0 0 0 0 rgba(33,162,105,.32); animation: bpLivePulse 2s ease-out infinite; }

.bp-orbit-node {
  position: absolute;
  z-index: 3;
  min-width: 124px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px 9px 9px;
  border: 1px solid rgba(205,226,215,.95);
  border-radius: 14px;
  color: #143d2e;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 26px rgba(14,61,40,.11);
  backdrop-filter: blur(10px);
  animation: bpNodeFloat 4.8s ease-in-out infinite;
}

.bp-orbit-node > span { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 10px; color: #19734f; background: #e9f6ef; }
.bp-orbit-node svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.bp-orbit-node div { display: grid; gap: 1px; }
.bp-orbit-node small { color: #bd8b18; font-size: 7px; font-weight: 900; letter-spacing: .08em; }
.bp-orbit-node strong { font-size: 10px; line-height: 1.2; }
.bp-orbit-profile { top: 9%; left: 0; }
.bp-orbit-verify { top: 19%; right: -2%; animation-delay: -.9s; }
.bp-orbit-program { right: 5%; bottom: 8%; animation-delay: -1.8s; }

/* Homepage action plan: one current status and one clear next action. */
.bp-service-snapshot.bp-service-snapshot-v2 {
  grid-template-columns: 58px minmax(0, 1fr) minmax(190px, auto);
  gap: 15px;
  overflow: hidden;
  padding: 17px 19px;
  border: 1px solid #cfe2d8;
  border-left: 1px solid #cfe2d8;
  border-radius: 18px 7px 18px 7px;
  background: linear-gradient(112deg, #fff 0 63%, #f0f9f4 100%);
  box-shadow: 0 12px 30px rgba(14,61,40,.08);
}

.bp-service-snapshot.bp-service-snapshot-v2::before {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -76px;
  width: 210px;
  height: 210px;
  border: 36px solid rgba(31,122,84,.035);
  border-radius: 50%;
  pointer-events: none;
}

.bp-service-snapshot.bp-service-snapshot-v2::after { top: 0; right: auto; bottom: 0; left: 0; width: 5px; height: auto; background: linear-gradient(#1f7a54 0 70%, #d5a62e 70%); }
.bp-service-snapshot-v2 .bp-service-snapshot-mark { position: relative; width: 52px; height: 52px; border: 1px solid #c9e2d4; border-radius: 15px; background: linear-gradient(145deg, #e7f5ed, #f7fcf9); box-shadow: inset 0 0 0 1px #fff, 0 7px 16px rgba(20,92,62,.07); }
.bp-service-snapshot-v2 .bp-service-snapshot-mark svg { position: relative; z-index: 2; width: 28px; }
.bp-snapshot-pulse { position: absolute; inset: 8px; border: 1px solid rgba(31,122,84,.2); border-radius: 12px; animation: bpSnapshotPulse 2.8s ease-out infinite; }
.bp-service-snapshot-v2 .bp-service-snapshot-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 4px; color: #587266; }
.bp-service-snapshot-v2 .bp-service-snapshot-kicker i { width: 18px; height: 2px; border-radius: 2px; background: #d5a62e; }
.bp-service-snapshot-v2 .bp-service-snapshot-copy h2 { font-size: clamp(15px, 1.7vw, 19px); letter-spacing: -.02em; }
.bp-service-snapshot-v2 .bp-service-snapshot-copy p { max-width: 720px; margin-top: 5px; font-size: 11px; }
.bp-snapshot-controls { position: relative; z-index: 1; display: grid; justify-items: stretch; align-items: center; gap: 7px; }
.bp-service-snapshot-v2 .bp-service-snapshot-status { justify-content: center; max-width: none; min-height: 30px; background: rgba(255,255,255,.8); }
.bp-service-snapshot-v2 .bp-service-snapshot-action { justify-content: space-between; min-height: 44px; border-radius: 11px; box-shadow: 0 8px 18px rgba(23,107,73,.17); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.bp-service-snapshot-v2 .bp-service-snapshot-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.bp-service-snapshot-v2 .bp-service-snapshot-action:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(23,107,73,.21); }
.bp-service-snapshot-v2 .bp-service-snapshot-action:hover svg { transform: translateX(3px); }

@keyframes bpOrbitFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes bpOrbitRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes bpNodeFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -6px; } }
@keyframes bpLivePulse { 70% { box-shadow: 0 0 0 7px rgba(33,162,105,0); } 100% { box-shadow: 0 0 0 0 rgba(33,162,105,0); } }
@keyframes bpSnapshotPulse { 0% { transform: scale(.82); opacity: .75; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

@media (max-width: 1024px) {
  .bp-service-orbit { width: 315px; }
  .bp-orbit-core { width: 155px; min-height: 172px; border-radius: 24px; }
  .bp-orbit-seal { width: 57px; height: 57px; }
  .bp-orbit-seal img { width: 47px; height: 47px; }
  .bp-orbit-node { min-width: 108px; padding: 7px 9px 7px 7px; }
  .bp-orbit-node > span { width: 30px; height: 30px; flex-basis: 30px; }
}

@media (max-width: 768px) {
  .hero-graphic { display: flex; height: 315px; margin-top: 4px; }
  .bp-service-orbit { width: 305px; }
  .bp-service-snapshot.bp-service-snapshot-v2 { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 15px 16px 14px 18px; }
  .bp-service-snapshot-v2 .bp-snapshot-controls { grid-column: 2; grid-template-columns: minmax(115px, auto) minmax(160px, auto); }
}

@media (max-width: 560px) {
  .hero-graphic { height: 280px; }
  .bp-service-orbit { width: 270px; }
  .bp-orbit-node { min-width: 96px; gap: 6px; }
  .bp-orbit-node > span { width: 27px; height: 27px; flex-basis: 27px; }
  .bp-orbit-node svg { width: 16px; height: 16px; }
  .bp-orbit-node strong { font-size: 8px; }
  .bp-orbit-core { width: 140px; min-height: 156px; padding: 15px 10px; }
  .bp-orbit-core > strong { font-size: 17px; }
  .bp-orbit-seal { width: 50px; height: 50px; }
  .bp-orbit-seal img { width: 41px; height: 41px; }
  .bp-service-snapshot.bp-service-snapshot-v2 { grid-template-columns: 44px minmax(0, 1fr); gap: 10px; padding: 14px 12px 13px 15px; }
  .bp-service-snapshot-v2 .bp-service-snapshot-mark { width: 44px; height: 44px; border-radius: 14px; }
  .bp-service-snapshot-v2 .bp-service-snapshot-mark svg { width: 23px; }
  .bp-service-snapshot-v2 .bp-snapshot-controls { grid-column: 1 / -1; grid-template-columns: minmax(0, .85fr) minmax(148px, 1.15fr); gap: 7px; padding-top: 8px; border-top: 1px solid rgba(31,122,84,.13); }
  .bp-service-snapshot-v2 .bp-service-snapshot-action { width: 100%; }
}

@media (max-width: 380px) {
  .bp-service-snapshot-v2 .bp-snapshot-controls { grid-template-columns: 1fr; }
  .program-area .area-title { font-size: 24px; }
  .program-area .area-sub { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .bp-service-orbit,
  .bp-orbit-ring-outer,
  .bp-orbit-node,
  .bp-orbit-live i,
  .bp-snapshot-pulse { animation: none !important; }
}
