:root{
  --bg:#ffffff;
  --ink:#0b1630;
  --muted:#5b667a;
  --line:#e7ebf2;
  --card:#f7f9fd;
  --accent:#d61f2a;
  --accent2:#173a7a;
  --shadow: 0 10px 30px rgba(11,22,48,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:linear-gradient(180deg,#ffffff 0%, #fbfcff 40%, #ffffff 100%);
  line-height:1.5;
}
a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
header{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.72);
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid rgba(231,235,242,.8);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:6px 0; gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
  margin-top:-28px;
  margin-bottom:-42px;
}
.brand img{height:230px;width:auto;display:block}
.navlinks{display:flex; gap:18px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.navlinks a{
  text-decoration:none; color:var(--muted); font-weight:600; font-size:14px;
  padding:8px 10px; border-radius:12px;
}
.navlinks a:hover{background:#f1f4fb;color:var(--ink)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; font-weight:700; text-decoration:none;
  border:1px solid var(--line);
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow)}
.btn.primary{background:var(--accent2); color:#fff; border-color:transparent}
.btn.primary:hover{background:#0f2e67}
.btn.ghost{background:#fff}
.btn.red{background:var(--accent); color:#fff; border-color:transparent}
.btn.red:hover{background:#b81822}

/* Header actions */
.navActions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

/* Hero */
.hero{padding:56px 0 26px}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid var(--line);
  background:#fff; border-radius:999px; color:var(--muted);
  font-weight:700; font-size:12px;
}
.dot{width:10px;height:10px;border-radius:50%;background:var(--accent)}
h1{margin:14px 0 10px; font-size:44px; line-height:1.1; letter-spacing:-.02em}
.sub{font-size:18px;color:var(--muted); max-width:62ch}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.trustRow{
  display:flex; gap:14px; flex-wrap:wrap; margin-top:18px; color:var(--muted); font-weight:600; font-size:14px
}
.trustRow span{display:inline-flex; gap:8px; align-items:center}
.check{width:18px;height:18px;border-radius:6px;background:#eaf1ff;border:1px solid #d7e6ff;display:inline-flex;align-items:center;justify-content:center;color:var(--accent2);font-weight:900}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow: 0 1px 0 rgba(11,22,48,.04);
}
.sideCard{padding:18px}
.sideCard h3{margin:4px 0 6px}
.sideCard p{margin:0 0 10px;color:var(--muted)}
.miniList{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.miniList li{
  background:#fff;border:1px solid var(--line); border-radius:14px; padding:12px;
  display:flex; gap:10px; align-items:flex-start;
}
.badge{
  font-size:12px; font-weight:800; color:var(--accent2);
  background:#eaf1ff; border:1px solid #d7e6ff;
  padding:6px 10px; border-radius:999px; display:inline-flex; gap:8px; align-items:center
}

/* Sections */
section{padding:34px 0}
.sectionTitle{font-size:28px;margin:0 0 10px; letter-spacing:-.01em}
.sectionSub{margin:0 0 18px;color:var(--muted); max-width:80ch}
.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.cards2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.feature{padding:18px}
.feature h4{margin:8px 0 6px}
.feature p{margin:0;color:var(--muted)}
.icon{
  width:44px;height:44px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--line); background:#fff;
  font-weight:900; color:var(--accent2)
}

/* Lead magnet */
.lead{
  padding:20px; display:grid; grid-template-columns:1.1fr .9fr; gap:16px; align-items:center
}
.lead h3{margin:0 0 8px;font-size:22px}
.lead p{margin:0;color:var(--muted)}
form{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end
}
input{
  flex:1 1 220px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--line); background:#fff;
  font-size:14px;
}
.fine{font-size:12px;color:var(--muted);margin-top:10px}

/* FAQ */
details{
  background:#fff; border:1px solid var(--line); border-radius:16px;
  padding:14px 16px; margin-bottom:10px;
}
summary{cursor:pointer; font-weight:800}
details p{margin:10px 0 0; color:var(--muted)}

/* Simple page */
.page{padding:28px 0 44px}
.prose{background:#fff;border:1px solid var(--line);border-radius:18px;padding:18px}
.prose h2{margin-top:18px}
.prose p, .prose li{color:var(--muted)}
.prose code{background:#f2f5fb;padding:2px 6px;border-radius:8px}

/* Footer */
footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
  color:var(--muted);
  background:#fff;
}
.footerRow{display:flex; gap:16px; justify-content:space-between; flex-wrap:wrap}
.footerRow a{color:var(--muted); text-decoration:none; font-weight:700}
.footerRow a:hover{color:var(--ink)}

/* Responsive */
@media (max-width: 920px){
  .grid{grid-template-columns:1fr}
  h1{font-size:38px}
  .lead{grid-template-columns:1fr}
  form{justify-content:flex-start}
  .cards3{grid-template-columns:1fr}
  .cards2{grid-template-columns:1fr}
  .navlinks{display:none}

  /* Make header fit on mobile */
  .nav{flex-wrap:wrap; align-items:center; padding:10px 0}
  .brand{min-width:0; margin-top:0; margin-bottom:0}
  .brand img{height:110px; max-width:70vw}
  .navActions{width:100%; justify-content:flex-start}
  .btn{padding:10px 12px; border-radius:12px}
}
/* About */
.about{
  padding:20px;
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:18px;
  align-items:center;
}
.portrait{
  width:100%;
  border-radius:18px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
  background:#fff;
}
.portrait img{width:100%; height:auto; display:block}
.about h3{margin:0 0 8px; font-size:22px}
.about p{margin:0 0 10px; color:var(--muted)}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid var(--line);
  padding:10px 12px; border-radius:999px;
  font-weight:800; font-size:12px; color:var(--ink);
}
@media (max-width: 920px){
  .about{grid-template-columns:1fr}
}


/* Premium Hero Upgrade */
.hero{
  padding:80px 0 40px;
  background:linear-gradient(135deg, #0b1630 0%, #173a7a 100%);
  border-radius:0 0 40px 40px;
  margin-bottom:40px;
}
.hero h1{color:#ffffff}
.hero .sub{color:#e6ecff}
.hero .kicker{background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); color:#ffffff}
.hero .trustRow{color:#d6e0ff}
.hero .check{background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.2); color:#ffffff}
.hero .btn.ghost{background:#ffffff}
.hero .btn.red{background:#d61f2a}
.hero .btn.red:hover{background:#b81822}
.positioning{
  font-size:20px;
  font-weight:700;
  color:#ffffff;
  margin-top:8px;
}


/* Brand First Hero */
.hero{
  padding:120px 0 80px;
  text-align:center;
}

.hero .grid{
  display:block;
}

.hero-brand-logo{
  max-width:420px;
  width:100%;
  margin:0 auto 40px auto;
  display:block;
}

.hero h1{
  font-size:42px;
  margin-top:10px;
}

.positioning{
  font-size:22px;
  margin-top:14px;
  font-weight:600;
}

header {
  line-height: 0;
}

/* Brand Dominance */
.hero{
  padding-top:110px !important;
}
@media (max-width: 920px){
  .brand img{height:230px;}
  .brand{margin-top:-18px;margin-bottom:-28px;}
  .hero{padding-top:90px !important;}
}


/* ===== HIGH-END PERSONAL BRAND REFINEMENT ===== */

/* Make hero more editorial */
.hero{
  padding-top:140px !important;
  padding-bottom:120px !important;
}

/* Larger name */
.hero h1{
  font-size:56px !important;
  letter-spacing:-0.02em;
}

/* Positioning more elegant */
.positioning{
  font-size:24px !important;
  font-weight:500;
  opacity:0.95;
}

/* Trust row bigger & premium spacing */
.trustRow{
  font-size:16px !important;
  gap:28px !important;
  margin-top:40px !important;
}

/* Refined check badges */
.check{
  border-radius:50% !important;
  width:22px !important;
  height:22px !important;
}

/* Logo floating effect */
.brand img{
  filter: drop-shadow(0 18px 35px rgba(0,0,0,0.15));
}

/* Cleaner header look */
header{
  background:rgba(255,255,255,0.6) !important;
  backdrop-filter:blur(14px) saturate(130%) !important;
}

/* Slight hover elegance */
.btn{
  transition:all 0.25s ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile refinement */
@media (max-width:920px){
  .hero h1{font-size:38px !important;}
  .positioning{font-size:18px !important;}
  .trustRow{font-size:14px !important; gap:16px !important;}
}
