/*version 1.2 - 16/12/2025 - logo bug fixed */
:root{
  --c1:#00786c;
  --c2:#2c863e;
  --c3:#227976;
  --c4:#00ab9a;
  --c5:#00453e;
  --bg:#0b0f0e;
  --text:#eaf6f3;
  --muted:#b7d8d1;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(0,171,154,0.22), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(44,134,62,0.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}

/* ===== NAV (unchanged) ===== */
.nav{
  position:sticky; top:0; min-height: 64px;
  backdrop-filter: blur(10px);
  background: rgba(11,15,14,0.65);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
}
@media (max-width:640px){
  .nav{
    min-height:56px;
    padding:10px 14px;
  }
}

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

.brand__logo{
  height:auto;
  max-height:40px;
  width:auto;
  object-fit:contain;
  }

@media (max-width:640px){
  .brand__logo{
    max-height:24px;
  }
}
.brand__name{font-weight:800;letter-spacing:0.3px}
.menu{display:flex;gap:16px;font-weight:600;color:var(--muted)}
.menu a{padding:8px 10px;border-radius:10px}
.menu a:hover{background:rgba(255,255,255,0.06);color:var(--text)}

/* ===== WHITE HERO (NEW) ===== */
.hero--white{
  background:#ffffff;
  color:#0b1a17;
 border-bottom:1px solid rgba(0,0,0,0.08);
}

.hero__inner{
  max-width:1100px;
  margin:0 auto;
  padding:36px 18px 20px;
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:26px;
}

.hero{
  padding:0;
}

h1{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-0.2px;
  font-weight:800;
  font-style: italic;
}

.kicker{color:#355a53;margin:0 0 10px;font-weight:700}
.hero--white h1{color:#0b1a17}
.hero--white .lead{color:#355a53}
.hero--white .btn--ghost{
  color:#0b1a17;
  border:1px solid rgba(0,0,0,0.16);
}
.hero--white .btn--ghost:hover{
  background: rgba(0,0,0,0.04);
}


.container{max-width:1100px;margin:0 auto;padding:28px 18px 60px}

/* ===== HERO CONTENT (same as v1) ===== */
.hero__right{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-end;
}

.avatar{
  width:100%;
  max-width:330px;
  border-radius:18px;
  border:none ;/*1px solid rgba(0,0,0,0.15);*/
  background:transparent;
}

.note{
  width:100%;
  max-width:330px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(0,120,108,0.25);
  background: rgba(0,120,108,0.12);
  color:#355a53;
  text-align: center;
}

/* ===== REST IS YOUR ORIGINAL v1 ===== */
.cta{display:flex;gap:12px;margin:10px 0 20px}
.btn{
  background: linear-gradient(90deg, var(--c5), var(--bg));
  color:var(--muted);/*#03110f;*/
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,0.08);
transition: transform 0.2s ease-in-out;
}
.btn:hover{transform: scale(1.1);} 

.btn--ghost{
  background: transparent;
  color: var(--bg);
  border:1px solid var(--border);
  transition: transform 0.2s ease-in-out, background 0.2s ease;
}
.btn--ghost:hover{background:rgba(255,255,255,0.06); transform:scale(1.2);}

.principles{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:10px}
.card{
  padding:14px;
  border:1px solid var(--border);
  background: var(--card);
  border-radius:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0;color:var(--c5);line-height:1.65}

.section{padding:34px 0 10px;border-top:1px solid rgba(255,255,255,0.08)}
.section h2{margin:0 0 10px;font-size:24px}
.section p{margin:0 0 10px;color:var(--muted);line-height:1.75}

.list{margin:10px 0 0;padding-left:18px;color:var(--muted)}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:10px}

.tool{
  display:block;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: var(--card);
}
.tool:hover{background:rgba(255, 255, 255, 0.14)}

.footer{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:var(--muted);
}

.muted{color:var(--muted)}

@media (max-width:860px){
  .hero__inner{grid-template-columns:1fr}
  .principles{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  h1{font-size:34px}
}