/* =========================
   MEADETECH - Google-like UI
   White + Blue, clean, airy
   ========================= */

:root{
  --bg:#ffffff;
  --bg2:#f6f8fc;
  --text:#1f2937;        /* slate-800 */
  --muted:#6b7280;       /* gray-500 */
  --line:#e5e7eb;        /* gray-200 */

  --blue:#1a73e8;        /* Google-ish blue */
  --blue2:#0b57d0;
  --blue-soft:#e8f0fe;

  --radius:18px;
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --shadow2: 0 4px 14px rgba(17,24,39,.06);

  --container: 1120px;

  --h1: clamp(32px, 4vw, 50px);
  --h2: clamp(22px, 2.3vw, 32px);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(26,115,232,.10), rgba(26,115,232,0) 60%),
    radial-gradient(820px 520px at 82% 4%, rgba(26,115,232,.06), rgba(26,115,232,0) 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.tiny{font-size:13px}
.divider{height:1px;background:var(--line);margin:16px 0}

/* ---------- Topbar ---------- */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(12px);
}
.navwrap{
  display:flex; align-items:center; justify-content:space-between;
  height:72px; gap:14px;
}

.brand{display:flex;align-items:center;gap:10px}
.brand-mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  box-shadow: 0 10px 24px rgba(26,115,232,.18);
}
.brand-text{font-weight:900;letter-spacing:.3px}

.nav{display:flex;gap:8px;align-items:center}
.nav a{
  padding:10px 12px;border-radius:14px;
  color:var(--muted);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav a:hover{
  background: rgba(26,115,232,.08);
  color: var(--text);
  transform: translateY(-1px);
}
.nav a.active{
  background: var(--blue-soft);
  color: var(--blue2);
  font-weight: 700;
}

.nav-toggle{
  display:none;
  background:#fff;
  border:1px solid var(--line);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:16px;
  border:1px solid var(--line);
  gap:10px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2);}
.btn:active{transform: translateY(0px); box-shadow:none;}

.btn-primary{
  border:1px solid rgba(26,115,232,.25);
  background: var(--blue);
  color:#fff;
  font-weight:800;
  box-shadow: 0 14px 30px rgba(26,115,232,.16);
}
.btn-primary:hover{background: var(--blue2);}

.btn-ghost{
  background:#fff;
}
.btn-soft{
  background: var(--blue-soft);
  border-color: rgba(26,115,232,.20);
  color: var(--blue2);
  font-weight: 700;
}

/* ---------- Pills ---------- */
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background: #fff;
  border:1px solid var(--line);
  color: var(--muted);
}

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 20px;
 
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:16px;
  align-items:start;
   //border:3px solid;
}

h1{
  font-size: var(--h1);
  line-height: 1.06;
  letter-spacing:-.6px;
  margin:14px 0 10px;
}
.lead{
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
  margin: 0;
}
.actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}

.actions1{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}

/* ---------- Cards ---------- */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  //border:3px solid;
}
.card-title{font-weight:900;margin-bottom:6px}

.icon{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: var(--blue-soft);
  border:1px solid rgba(26,115,232,.18);
  color: var(--blue2);
  font-size:20px;
}

/* ---------- Sections & grids ---------- */
.section{padding: 52px 0}
.section.alt{
  background: rgba(26,115,232,.04);
  border-top:1px solid rgba(26,115,232,.10);
  border-bottom:1px solid rgba(26,115,232,.10);
}
.section-head h1, .section-head h2{margin:0 0 10px}
.section-head p{margin:0; max-width: 75ch}
h2{font-size: var(--h2); letter-spacing:-.3px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.card h3{margin:10px 0 8px;letter-spacing:-.2px}
.card p{margin:0; line-height:1.6; color:var(--muted)}

/* ---------- Mini stats ---------- */
.mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:20px;
}
.stat{
  padding:12px 12px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
}
.stat .k{font-weight:900}
.stat .v{margin-top:4px;color:var(--muted);font-size:13px;line-height:1.4}

/* ---------- Forms ---------- */
label{color:var(--muted);font-size:14px}
input,textarea{
  width:100%;
  padding:12px 12px;
  margin:8px 0 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(26,115,232,.55);
  box-shadow: 0 0 0 4px rgba(26,115,232,.12);
}
.hp{display:none !important}

.notice{
  padding:12px 14px;border-radius:16px;
  border:1px solid var(--line);
  margin-bottom:14px;
  background:#fff;
}
.notice.success{border-color: rgba(34,197,94,.25);}

/* ---------- CTA band ---------- */
.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  //border:3px solid;
}

/* ---------- Footer ---------- */
.footer{
  padding:36px 0;
  border-top:1px solid var(--line);
  background:#fff;
  margin-top: 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:14px;
}
.footer-title{font-weight:900;margin-bottom:8px}
.footer a{color: var(--blue2)}
.footer a:hover{text-decoration:underline}

/* ---------- Responsive ---------- */
@media (max-width: 950px){
  .hero-grid, .grid3, .grid2, .footer-grid{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav{
    display:none;
    flex-direction:column;
    align-items:stretch;
    position:absolute;
    right:18px;
    top:72px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    min-width:240px;
    box-shadow: var(--shadow);
  }
  .nav.show{display:flex}
  .mini-stats{grid-template-columns:1fr}
  .cta{flex-direction:column;align-items:flex-start}
}