
:root{
  --bg:#0b1220;
  --surface:#0f1a2e;
  --paper:#ffffff;
  --muted:#6b7280;
  --text:#0b1220;
  --text-invert:#ffffff;
  --line:rgba(255,255,255,.12);
  --line2:rgba(11,18,32,.10);
  --accent:#ff0a6c;
  --radius:18px;
  --shadow: 0 12px 30px rgba(11,18,32,.10);
  --max: 1140px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; color:var(--text); background:#f6f7fb;}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{line-height:1.6}
.container{max-width:var(--max); margin:0 auto; padding:0 20px;}
.section{padding:84px 0;}
.section.compact{padding:56px 0;}
.section.muted{background:#eef0f6;}
.grid{display:grid; gap:26px;}
.grid.two{grid-template-columns:repeat(2, minmax(0,1fr));}
.grid.three{grid-template-columns:repeat(3, minmax(0,1fr));}
@media (max-width: 900px){
  .grid.two,.grid.three{grid-template-columns:1fr;}
  .section{padding:64px 0;}
}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(246,247,251,.80);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line2);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px;}
.brand-mark{
  width:42px; height:42px; border-radius:12px;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow);
}
.brand-mark img{width:28px; height:auto;}
.brand-name{font-weight:650; letter-spacing:.2px;}
.menu{display:flex; align-items:center; gap:18px;}
.menu a{color:#111827; font-weight:550; font-size:14px; opacity:.9}
.menu a:hover{opacity:1}
.actions{display:flex; align-items:center; gap:10px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px; font-weight:650;
  border:1px solid transparent; font-size:14px; gap:8px;
  cursor:pointer; transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px);}
.btn.primary{background:var(--accent); color:white;}
.btn.secondary{background:transparent; border-color:rgba(11,18,32,.18); color:#111827;}
.btn.dark{background:#111827; color:white;}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px;
  background:rgba(255,10,108,.10);
  color:#7a0d3b; font-weight:650; font-size:13px;
}
.h1{font-size:48px; line-height:1.05; letter-spacing:-.02em; margin:14px 0 10px;}
.h2{font-size:34px; line-height:1.15; letter-spacing:-.02em; margin:0 0 10px;}
.h3{font-size:18px; margin:0 0 8px;}
.lead{font-size:18px; color:#111827; opacity:.86; margin:0 0 18px;}
.small{font-size:13px; color:var(--muted);}
.kicker{font-size:13px; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; font-weight:700;}
.hero{
  background: radial-gradient(900px 500px at 20% 10%, rgba(255,10,108,.16), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,10,108,.10), transparent 55%),
              linear-gradient(135deg, #0b1220, #0f1a2e);
  color:var(--text-invert);
  padding:88px 0 72px;
  border-bottom:1px solid var(--line);
}
.hero .lead{color:rgba(255,255,255,.78)}
.hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.hero-media{
  aspect-ratio: 16/10;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
}
.hero-media .placeholder{
  width:88%; height:70%;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.22);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.65);
  font-weight:650;
}
.card{
  background:var(--paper);
  border:1px solid rgba(11,18,32,.08);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.card.dark{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text-invert);
  box-shadow:none;
}
.list-check{margin:14px 0 0; padding:0; list-style:none; display:grid; gap:10px;}
.list-check li{display:flex; gap:10px; align-items:flex-start; color:rgba(17,24,39,.86);}
.hero .list-check li{color:rgba(255,255,255,.82)}
.check{
  width:18px; height:18px; border-radius:6px;
  background:rgba(255,10,108,.14);
  border:1px solid rgba(255,10,108,.35);
  margin-top:2px;
  position:relative; flex:0 0 auto;
}
.check:after{
  content:""; position:absolute; left:5px; top:3px;
  width:6px; height:10px; border-right:2px solid var(--accent);
  border-bottom:2px solid var(--accent); transform: rotate(35deg);
}
.trust{
  padding:18px 0;
  background:#101a30;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.trust-row{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.trust-row .small{color:rgba(255,255,255,.70)}
.logo-strip{display:flex; gap:14px; flex-wrap:wrap;}
.logo-pill{
  padding:10px 12px; border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.72);
  font-size:13px; font-weight:650;
}
.cta-band{
  background: linear-gradient(135deg, #0b1220, #0f1a2e);
  color:var(--text-invert);
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.cta-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;}
.cta-inner p{margin:0;color:rgba(255,255,255,.78)}
.footer{
  background:#0b1220; color:white;
  padding:56px 0 26px;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer-grid{display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap:24px;}
@media (max-width: 900px){ .footer-grid{grid-template-columns:1fr;}}
.footer a{color:rgba(255,255,255,.78)}
.footer a:hover{color:white}
.footer .small{color:rgba(255,255,255,.62)}
.footer-bottom{margin-top:28px; padding-top:18px; border-top:1px solid rgba(255,255,255,.10); display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;}
.form{
  display:grid; gap:14px;
}
.field label{font-size:13px; color:var(--muted); font-weight:650; display:block; margin-bottom:6px;}
.field input,.field textarea, .field select{
  width:100%; padding:12px 12px; border-radius:14px;
  border:1px solid rgba(11,18,32,.14);
  background:white; font-size:14px; outline:none;
}
.field textarea{min-height:130px; resize:vertical;}
.note{
  padding:12px 14px; border-radius:14px;
  background:#fff; border:1px solid rgba(11,18,32,.10);
}
.faq{display:grid; gap:10px;}
.faq-item{
  border-radius:16px; overflow:hidden;
  border:1px solid rgba(11,18,32,.10);
  background:white;
}
.faq-q{
  width:100%; text-align:left; padding:16px 16px;
  background:transparent; border:0; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between;
  font-weight:700;
}
.faq-a{padding:0 16px 16px; color:rgba(17,24,39,.82); display:none;}
.faq-item.open .faq-a{display:block;}
.mobile-toggle{display:none;}
@media (max-width: 860px){
  .menu{display:none;}
  .actions{display:none;}
  .mobile-toggle{display:inline-flex;}
  .mobile-panel{display:none; padding:0 0 14px;}
  .mobile-panel.open{display:block;}
  .mobile-links{display:grid; gap:10px; padding-top:10px;}
  .mobile-links a{padding:10px 12px; border-radius:14px; border:1px solid rgba(11,18,32,.10); background:white;}
  .mobile-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px;}
}
/* Make the inside of each pricing card a vertical flex layout */
.grid.three .card {
  display: flex;
  flex-direction: column;
}

/* Push the button container to the bottom */
.grid.three .card > div:last-child {
  margin-top: auto;
}
.logo-pill {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;      /* gives contrast so the logo is visible */
  border-radius: 8px;
  padding: 8px;
}

.logo-pill img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

}


/* Push

