:root{
  --cream:#FBF8F1;
  --cream-deep:#F3EDE0;
  --blue:#5B9BD5;
  --blue-deep:#3B72A6;
  --blue-ink:#2A4A63;
  --pink:#F2A7BB;
  --pink-deep:#E8859F;
  --mint:#8FCBA8;
  --ink:#33404D;
  --white:#FFFFFF;
  --radius-lg: 28px;
  --radius-md: 18px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Cairo', sans-serif;
  line-height:1.65;
}
h1,h2,h3,.display{
  font-family:'Baloo 2', 'Cairo', sans-serif;
  color:var(--blue-ink);
  font-weight:700;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1120px; margin:0 auto; padding:0 28px;}

header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,248,241,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--cream-deep);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; flex-wrap:wrap; gap:10px;}
.brand{display:flex; align-items:center; gap:10px;}
.brand-mark{
  width:42px;height:42px;border-radius:50%;
  background:var(--blue); display:flex;align-items:center;justify-content:center;
  color:white; font-family:'Baloo 2'; font-weight:800; font-size:20px;
  box-shadow:0 4px 0 var(--blue-deep);
}
.brand-name{font-family:'Baloo 2'; font-weight:800; font-size:22px; color:var(--blue-deep);}
.brand-name span{color:var(--pink-deep);}
.nav-links{display:flex; gap:24px; font-weight:600; color:var(--blue-ink); flex-wrap:wrap;}
.nav-links a{position:relative; padding:4px 0;}
.nav-links a.active{color:var(--pink-deep);}
.nav-right{display:flex; align-items:center; gap:14px;}
.nav-social{display:flex; gap:8px;}
.nav-social a{
  width:36px;height:36px;border-radius:50%;background:var(--white);
  border:2px solid var(--cream-deep); display:flex;align-items:center;justify-content:center;font-size:15px;
}
.nav-cta{
  background:var(--mint); color:var(--blue-ink); font-weight:700;
  padding:10px 20px; border-radius:999px; box-shadow:0 4px 0 #6DAE85;
  font-size:14px; white-space:nowrap;
}
@media (max-width:820px){ .nav-links{display:none;} }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; font-size:16px; padding:15px 28px;
  border-radius:999px; border:none; cursor:pointer;
}
.btn-primary{background:var(--blue); color:white; box-shadow:0 5px 0 var(--blue-deep);}
.btn-ghost{background:var(--white); color:var(--blue-deep); border:2px solid var(--cream-deep);}

section{padding:60px 0;}
.section-head{text-align:center; max-width:640px; margin:0 auto 40px;}
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); border:2px solid var(--pink);
  color:var(--pink-deep); font-weight:700; font-size:14px;
  padding:7px 16px; border-radius:999px; margin-bottom:14px;
}
.section-head h2{font-size:clamp(24px,3.4vw,36px); margin-bottom:10px;}
.section-head p{opacity:.85; font-size:15px;}

footer{padding:50px 0 30px; text-align:center;}
.footer-brand{font-family:'Baloo 2'; font-weight:800; font-size:22px; color:var(--blue-deep); margin-bottom:6px;}
.footer-tag{font-size:14px; opacity:.7; margin-bottom:22px;}
.social-row{display:flex; justify-content:center; gap:14px; margin-bottom:22px;}
.social-row a{
  width:44px; height:44px; border-radius:50%; background:var(--white);
  border:2px solid var(--cream-deep); display:flex; align-items:center; justify-content:center; font-size:18px;
}
.footer-fine{font-size:12px; opacity:.55;}

.wa-float{
  position:fixed; bottom:22px; left:22px; z-index:60;
  background:#25D366; color:white; width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:26px;
  box-shadow:0 8px 20px rgba(37,211,102,.4);
}