:root{
  /* 🇨🇮 Use Orange + White (flag colors) */
  --orange: #F77F00;
  --orange-soft: #FF9F1C;
  --white: #FFFFFF;

  /* neutrals for readability */
  --text: #111111;
  --muted: #4B5563;
  --line: #E5E7EB;
  --panel: #FFFFFF;
  --bg: #FFFFFF;

  --shadow: 0 12px 34px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{ color:inherit; }
.wrap{ max-width:var(--max); margin:0 auto; padding: 0 18px; }

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--orange);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; text-decoration:none;
  min-width: 240px;
}
.badge img {
    width: 45px;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}
.brand h1{ font-size:14px; line-height:1.2; margin:0; }
.brand span{ display:block; font-weight:800; }
.brand small{ display:block; color:var(--muted); font-size:12px; font-weight:500; }

.links{
  display:flex; flex-wrap:wrap; gap:10px;
  align-items:center; justify-content:flex-end;
}
.links a{
  text-decoration:none;
  color: var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.links a:hover{
  border-color: var(--line);
  color: var(--text);
}

.menu-banner{
  border-top: 1px solid var(--line);
}
    .menu-banner .wrap {
        padding: 0 18px;
    }

    .menu-banner img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.btn{
  background: var(--orange);
  color: var(--white);
  font-weight:800;
  border:none;
  border-radius:14px;
  padding:10px 14px;
  cursor:pointer;
  text-decoration:none;
  box-shadow: 0 14px 30px rgba(247,127,0,.22);
  display:inline-flex; align-items:center; justify-content:center;
  white-space:nowrap;
  transition: transform .08s ease, background-color .12s ease;
}
.btn:hover{ background: var(--orange-soft); }
.btn:active{ transform: translateY(1px); }

.btn.secondary{
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow:none;
}
.btn.secondary:hover{
  background: rgba(247,127,0,.06);
}

header.hero{ padding:44px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .links{ display:none; }
}

.card{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-left{ padding:24px; }
.hero-left h2{ margin:0 0 10px; font-size:34px; line-height:1.15; }
.hero-left p{ margin:0 0 16px; color:var(--muted); font-size:16px; line-height:1.55; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:16px;
}
.kpi{
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(247,127,0,.04);
}
.kpi b{ display:block; font-size:16px; }
.kpi small{ color:var(--muted); }

.hero-right{ padding:18px; display:flex; flex-direction:column; gap:12px; }
.portrait{
  border-radius: 16px;
  overflow:hidden;
  border: 2px dashed rgba(247,127,0,.35);
  background: rgba(247,127,0,.04);
  display:flex; align-items:center; justify-content:center;
  min-height: 260px;
  color: var(--muted);
  text-align:center;
  padding: 16px;
}
.portrait strong{ color: var(--text); }
.note{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(247,127,0,.04);
  color: var(--muted);
}
.note b{ color: var(--text); }

section{ padding:18px 0; }
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; margin: 6px 0 12px;
}
.section-title h3{
  margin:0; font-size:22px; color: var(--orange);
  letter-spacing: .2px;
}
.section-title h3::after{
  content:"";
  display:block;
  width:64px;
  height:4px;
  background: var(--orange);
  margin-top: 7px;
  border-radius: 999px;
}
.section-title p{ margin:0; color: var(--muted); }

.grid{ display:grid; gap:14px; }
.grid.two{ grid-template-columns: 1fr 1fr; }
.grid.three{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px){
  .grid.two, .grid.three{ grid-template-columns: 1fr; }
}

.panel{ padding:18px; }
.panel h4{ margin:0 0 10px; font-size:16px; }
.panel p{ margin:0; color: var(--muted); line-height:1.55; }

/* Poll + forms */
.form{ display:grid; gap:10px; margin-top:10px; }
.input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--white);
  color: var(--text);
  outline:none;
}
.input:focus, textarea:focus, select:focus{
  border-color: rgba(247,127,0,.65);
  box-shadow: 0 0 0 4px rgba(247,127,0,.14);
}
textarea{ min-height:90px; resize:vertical; }
.hint{ color: var(--muted); font-size:12px; line-height:1.45; }

.row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.bar{
  height:12px; border-radius:999px; overflow:hidden;
  background: #F3F4F6;
  border:1px solid var(--line);
}
.bar > i{
  display:block; height:100%;
  width:0%;
  background: var(--orange);
  transition: width .25s ease;
}

/* Accordion (Program section) */
.accordion { display:grid; gap:10px; margin-top:12px; }
.acc-btn{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(247,127,0,.04);
  cursor:pointer;
  font-weight:800;
}
.acc-btn:hover{ border-color: rgba(247,127,0,.35); }
.acc-icon{
  width:30px; height:30px; border-radius:10px;
  display:grid; place-items:center;
  background: var(--orange);
  color: var(--white);
  font-weight:900;
}
.acc-panel{
  display:none;
  padding: 10px 14px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background: var(--white);
}
.acc-panel ul{ margin:0; padding-left: 18px; color: var(--muted); line-height:1.8; }
.acc-btn[aria-expanded="true"] .acc-icon{ background: var(--orange-soft); }

.footer{
  padding:26px 0 40px;
  color: var(--muted);
  border-top:1px solid var(--line);
  margin-top: 18px;
}

.toast{
  position: fixed; right: 18px; bottom: 18px; z-index: 999;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: var(--text);
  display:none;
  max-width: 360px;
}
