
:root{
  --navy:#0c2a45;
  --ink:#0b1320;
  --bg:#ffffff;
  --muted:#f4f6f8;
  --accent:#1db6a3;
  --accent-ink:#0d685e;
  --text:#1b2735;
  --shadow: 0 10px 25px rgba(12,42,69,0.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
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(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:var(--navy); text-decoration:none}
.container{width:100%; max-width:1180px; margin:0 auto; padding:0 20px}

/* Header */
.header{ position:sticky; top:0; z-index:50; background:#fff; box-shadow:0 1px 0 rgba(12,42,69,.08) }
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.logo{display:flex; align-items:center; gap:12px}
.logo img{height:36px; width:auto}
.nav a{margin:0 12px; font-weight:600}
.cta{
  background:var(--accent); color:white; padding:10px 16px; border-radius:10px; font-weight:700; display:inline-block;
  box-shadow:var(--shadow);
}
.cta:hover{filter:brightness(.95)}
.btn-outline{border:2px solid var(--navy); color:var(--navy); padding:8px 14px; border-radius:10px; font-weight:700}
.btn-outline:hover{background:var(--navy); color:#fff}

/* Hero */
.hero{
  position: relative;
  overflow: hidden;
  padding:72px 0 48px;
  background:linear-gradient(180deg,#fff, #f8fbfb 70%);
}
.hero::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:600px;
  height:600px;
  transform:translate(-50%, -50%);
  background:url('../img/logo.png') center/contain no-repeat;
  opacity:0.08;
  pointer-events:none;
  z-index:0;
}
.hero > .container{position:relative; z-index:1}
.hero h1{font-size:40px; line-height:1.15; margin:0 0 10px; color:var(--ink)}
.hero p.sub{font-size:18px; max-width:720px}
.actions{display:flex; gap:14px; margin-top:20px; flex-wrap:wrap}
.badges{margin-top:18px; color:#37516b; font-weight:600; opacity:.85}

/* Sections */
.section{padding:56px 0}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:20px}
.card{
  background:#fff; border:1px solid #e6edf3; border-radius:16px; padding:22px; box-shadow:var(--shadow);
}
.card h3{margin-top:0; margin-bottom:8px}
.kicker{display:inline-block; padding:4px 10px; background:#e6f8f5; color:var(--accent-ink); border-radius:999px; font-weight:700; font-size:12px; letter-spacing:.4px; text-transform:uppercase}

.feature-list{list-style:none; padding:0; margin:0}
.feature-list li{padding-left:28px; position:relative; margin:10px 0}
.feature-list li:before{
  content:""; position:absolute; left:0; top:.45em; width:16px; height:16px;
  border-radius:4px; background:var(--accent);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2l-3.5-3.5L4 14.2l5 5 12-12-1.4-1.4z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2l-3.5-3.5L4 14.2l5 5 12-12-1.4-1.4z"/></svg>') center/contain no-repeat;
}

.muted{background:var(--muted)}
.cta-band{
  padding:36px; background:#0f314e; color:#fff; border-radius:18px; text-align:center; box-shadow:var(--shadow);
}
.cta-band h2{margin:0 0 8px}

/* Footer */
.footer{background:#071b2b; color:#cfe0f5; padding:40px 0; margin-top:40px}
.footer a{color:#e8f1fb}
.footer small{opacity:.8}

/* Pricing */
.pricing-hero{padding-top:36px}
.pricing-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:24px}
.plan{
  background:#fff; border:2px solid #e5eef6; border-radius:18px; padding:28px; box-shadow:var(--shadow);
  display:flex; flex-direction:column; justify-content:space-between;
}
.plan h3{margin-top:0}
.plan .price{font-size:20px; font-weight:800; color:var(--ink); margin:12px 0 6px}
.plan .bullets{list-style:none; padding:0; margin:0 0 18px}
.plan .bullets li{margin:8px 0; padding-left:24px; position:relative}
.plan .bullets li:before{ content:"•"; color:var(--accent); position:absolute; left:0; top:0; font-size:22px; line-height:1 }
.plan .choose{margin-top:auto}
.plan.emph{border-color:var(--accent); transform:translateY(-4px)}
.badge{background:#e6f8f5; color:#var(--accent-ink); padding:4px 10px; border-radius:999px; font-weight:700; font-size:12px; display:inline-block}

/* Forms */
.form{background:#fff; border:1px solid #e6edf3; border-radius:16px; padding:20px; box-shadow:var(--shadow)}
label{display:block; font-weight:700; margin:10px 0 6px}
input, select, textarea{
  width:100%; padding:12px 12px; border:1px solid #ccd7e3; border-radius:10px; font:inherit;
}
textarea{min-height:120px}
button{font:inherit}
hr.sep{border:0; border-top:1px solid #e7eef6; margin:28px 0}

/* Problem → Solution cards */
/* Use muted palettes that complement site colors */
.card-rose{background:#e9f0f5; border-color:#cdd9e3}
.card-teal{background:#f0f7f6; border-color:#d0e9e4}
.probsol{display:grid; grid-template-columns:repeat(2,1fr); gap:20px}

/* Mobile */
.mobile-toggle{display:none}
@media (max-width: 900px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .pricing-cards{grid-template-columns:1fr}
  .plan.emph{transform:none}
  .nav a.hide-mobile{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; justify-content:center; background:transparent; border:0}
  .nav-links{display:none}
  .nav.open .nav-links{display:flex; flex-direction:column; gap:12px; margin-top:12px}
  .probsol{grid-template-columns:1fr}
  .hero::after{ width:300px; height:300px; top:50%; left:50%; transform:translate(-50%, -50%); }
}
