:root{
  --bg:#f5fbff;
  --bg2:#ffffff;
  --text:#071a3a;
  --muted:rgba(7,26,58,.68);
  --border:rgba(7,26,58,.10);

  --brand:#22c55e;     /* green */
  --brand2:#3b82f6;    /* blue */
  --brand3:#ff4ecd;    /* pink */

  --radius:24px;
  --shadow: 0 18px 45px rgba(2, 8, 23, .10);
  --shadow2: 0 22px 50px rgba(59,130,246,.18);

  --max: 1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 540px at 12% 8%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 540px at 88% 10%, rgba(34,197,94,.16), transparent 60%),
    radial-gradient(800px 520px at 70% 95%, rgba(255,78,205,.13), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(245,251,255,.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  position:relative;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:950}
.logo{
  width:46px; height:46px; border-radius:16px;
  display:grid; place-items:center;
  color:white; font-weight:1000; letter-spacing:.6px;
  background: linear-gradient(135deg, var(--brand3), var(--brand2));
  box-shadow: var(--shadow2);
}
.brand small{display:block; color:var(--muted); font-weight:850; margin-top:2px}

.links{display:flex; gap:6px; align-items:center; flex-wrap:wrap}
.links a{
  padding:10px 12px; border-radius:16px;
  color:var(--muted); font-weight:900;
}
.links a:hover{background: rgba(7,26,58,.05); color:var(--text)}
.links a.active{
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.22);
  color: var(--text);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:16px;
  border:1px solid rgba(7,26,58,.12);
  background: rgba(255,255,255,.92);
  font-weight:950;
  box-shadow: 0 12px 25px rgba(2,8,23,.08);
  cursor:pointer;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 20px 40px rgba(2,8,23,.12)}
.btn.primary{
  border:none; color:white;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 20px 40px rgba(59,130,246,.18);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.pink{
  border:none; color:white;
  background: linear-gradient(135deg, var(--brand3), var(--brand2));
}

.menu-btn{display:none}
@media (max-width: 980px){
  .links{display:none}
  .menu-btn{display:inline-flex}
  .nav.open .links{
    display:flex; flex-direction:column; align-items:flex-start; gap:6px;
    position:absolute; left:0; right:0; top:70px;
    padding:14px 20px 18px;
    background: rgba(245,251,255,.98);
    border-bottom:1px solid var(--border);
  }
}

/* HERO */
.hero{padding:52px 0 22px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.22fr .78fr;
  gap:16px;
  align-items:stretch;
}
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr} }

.panel{
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:28px;
  position:relative;
  overflow:hidden;
}
.panel::before{
  content:"";
  position:absolute; inset:-170px -160px auto auto;
  width:560px; height:560px;
  background: radial-gradient(circle at 35% 35%, rgba(59,130,246,.24), transparent 62%);
  transform: rotate(18deg);
  pointer-events:none;
}
.panel::after{
  content:"";
  position:absolute; inset:auto auto -210px -210px;
  width:560px; height:560px;
  background: radial-gradient(circle at 30% 35%, rgba(34,197,94,.22), transparent 62%);
  pointer-events:none;
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:9px 14px; border-radius:999px;
  font-weight:950;
  background: rgba(255,78,205,.12);
  border:1px solid rgba(255,78,205,.22);
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height:1.02;
}
.lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16.8px;
  line-height:1.78;
  max-width: 64ch;
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
@media (max-width: 560px){ .kpis{grid-template-columns:1fr} }
.kpi{
  border-radius:18px;
  border:1px solid rgba(7,26,58,.10);
  background: rgba(7,26,58,.03);
  padding:14px 12px;
}
.kpi b{display:block; font-weight:1000}
.kpi span{display:block; margin-top:4px; color:var(--muted); font-size:12.6px; font-weight:850}

/* CARDS / SECTIONS */
.card{
  background: rgba(255,255,255,.88);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(2,8,23,.10);
  padding:18px;
  transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover{transform: translateY(-2px); box-shadow: 0 24px 52px rgba(2,8,23,.13)}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.75}

.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(7,26,58,.10);
  background: rgba(7,26,58,.04);
  font-size:12.5px;
  font-weight:950;
  color: rgba(7,26,58,.72);
}

.section{padding:28px 0 40px}
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:14px;
  margin-bottom:14px;
}
.section-head h2{margin:0; font-size: clamp(22px, 3.2vw, 36px)}
.section-head p{margin:0; color:var(--muted); line-height:1.7; max-width:72ch}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
@media (max-width: 980px){ .grid-3,.grid-2{grid-template-columns:1fr} }

.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(7,26,58,.10);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 26px rgba(2,8,23,.07);
  transition: transform .14s ease, box-shadow .14s ease;
}
.feature:hover{transform: translateY(-2px); box-shadow: 0 24px 52px rgba(2,8,23,.13)}
.icon{
  width:48px; height:48px; border-radius:16px;
  display:grid; place-items:center;
  color:white; font-weight:1000;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 18px 35px rgba(34,197,94,.14);
  margin-bottom:10px;
}
.feature h3{margin:0 0 8px}
.feature p{margin:0; color:var(--muted); line-height:1.75}

/* GALLERY placeholders (no photos required) */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media (max-width: 980px){ .gallery-grid{grid-template-columns:1fr} }

.photo{
  border-radius: var(--radius);
  border:1px solid rgba(7,26,58,.10);
  background:
    radial-gradient(220px 160px at 20% 20%, rgba(59,130,246,.22), transparent 60%),
    radial-gradient(240px 160px at 80% 30%, rgba(34,197,94,.20), transparent 60%),
    radial-gradient(220px 160px at 55% 95%, rgba(255,78,205,.16), transparent 60%),
    rgba(255,255,255,.78);
  min-height:190px;
  position:relative;
  overflow:hidden;
  box-shadow: 0 14px 26px rgba(2,8,23,.07);
}
.photo .cap{
  position:absolute; inset:auto 12px 12px 12px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(7,26,58,.10);
  border-radius:16px;
  padding:10px 10px;
  font-weight:950;
  color:rgba(7,26,58,.90);
}
.photo .cap small{display:block; font-weight:900; color:rgba(7,26,58,.62); margin-top:2px}

/* Testimonials */
.quote{font-size:15px; color:rgba(7,26,58,.72); line-height:1.7}
.stars{letter-spacing:1px}
.avatar{
  width:42px; height:42px; border-radius:16px;
  background: linear-gradient(135deg, var(--brand3), var(--brand2));
  display:grid; place-items:center; color:#fff; font-weight:1000;
}

/* Map */
.map{
  border-radius: var(--radius);
  border:1px solid rgba(7,26,58,.10);
  overflow:hidden;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 26px rgba(2,8,23,.07);
}
.map iframe{width:100%; height:340px; border:0}

/* Forms */
form{display:grid; gap:10px}
label{font-weight:950; color:rgba(7,26,58,.75); font-size:13px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(7,26,58,.12);
  background:rgba(255,255,255,.92);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(59,130,246,.55);
  box-shadow:0 0 0 4px rgba(59,130,246,.12);
}
.helper{font-size:13px; color:var(--muted); line-height:1.6; margin:0}

/* Footer */
footer{
  border-top:1px solid rgba(7,26,58,.10);
  padding:26px 0 40px;
  color: rgba(7,26,58,.65);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  flex-wrap:wrap;
}
