:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#0f172a;      /* slate-900 */
  --muted:#475569;     /* slate-600 */
  --line:rgba(15,23,42,.12);
  --btn:#2563eb;       /* blue-600 */
  --btnHover:#1d4ed8;  /* blue-700 */
  --ghost:#ffffff;
  --shadow: 0 14px 32px rgba(15,23,42,.10);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg); color:var(--text);}
a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto;}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px;}
.logo{width:44px; height:44px; object-fit:contain;}
.brand-name{font-weight:800; letter-spacing:.4px;}
.brand-sub{font-size:12px; color:var(--muted); margin-top:2px;}

.menu{display:flex; align-items:center; gap:14px;}
.menu a{font-size:14px; color:var(--muted);}
.menu a:hover{color:var(--text);}

.hero{padding:58px 0 34px;}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:start;}

h1{font-size:44px; line-height:1.08; margin:0 0 12px;}
.lead{font-size:17px; color:var(--muted); line-height:1.65; margin:0 0 18px;}

.checks{list-style:none; padding:0; margin:0 0 20px;}
.checks li{padding:10px 0; border-bottom:1px solid var(--line); color:var(--muted);}
.checks li strong{color:var(--text);}

.cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px;}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  background:var(--btn); color:white; font-weight:700;
  border:1px solid rgba(37,99,235,.20);
  box-shadow: var(--shadow);
}
.btn:hover{background:var(--btnHover); transform: translateY(-1px); transition:.15s;}
.btn-ghost{
  background:var(--ghost); color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-small{padding:10px 12px; border-radius:12px; font-size:14px;}
.btn-large{padding:14px 18px; border-radius:16px;}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}

.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:12px;}
.mini{background:#f8fafc; border:1px solid var(--line); border-radius:16px; padding:14px;}
.mini h4{margin:0 0 6px;}
.mini p{margin:0; color:var(--muted); line-height:1.55;}

.strip{padding:26px 0 56px;}
.strip-grid{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  background:#f8fafc;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.strip-actions{display:flex; gap:10px; flex-wrap:wrap;}

.page{padding:34px 0 56px;}
.page-head{margin-bottom:16px;}
h2{margin:0 0 12px;}
h3{margin:0 0 10px;}
.divider{height:1px; background:var(--line); margin:16px 0;}

.steps{margin:0; padding-left:18px; color:var(--muted); line-height:1.7;}
.steps li{margin:10px 0;}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.7;}

.form{margin-top:6px;}
.field{display:flex; flex-direction:column; gap:8px; margin:10px 0;}
label{font-size:13px; color:var(--muted);}

input, select, textarea{
  background:#ffffff;
  border:1px solid var(--line);
  color:var(--text);
  padding:12px 12px;
  border-radius:14px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color:rgba(37,99,235,.55);
  box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px;}
.status{margin:12px 0 0; color:var(--muted);}
.tiny{font-size:12px; color:var(--muted); line-height:1.5;}
.muted{color:var(--muted);}

/* NEW: hero image layout */
.hero-media{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.hero-img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-media-card{
  background:#ffffff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow: var(--shadow);
}
.hero-media-card p{margin:0 0 12px; color:var(--muted); line-height:1.6;}

.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background:#ffffff;
}
.footer-row{display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap;}

.gap{gap:16px;}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;}
  h1{font-size:36px;}
  .hero-img{height:260px;}
}
