:root{
  --bg: #faf8f4;         /* your beige/cream */
  --text: #35556B;
  --muted: rgba(15,23,42,.7);
  --card: rgba(255,255,255,.7);
  --border: rgba(15,23,42,.12);

  --teal: #4F8A86;       /* adjust to your logo teal */
  --navy: #35556B;       /* adjust to your logo navy */
  --accent: #3D9993;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #1f2933;
  line-height: 1.5;
}

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  background: #efe9e1;
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
  font-weight: 700;
}

.logo{
  width: auto;
  height: 96px;
  object-fit: contain;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover{ color: var(--text); }

.button{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--accent);
  color: white !important;
  text-decoration:none;
  font-weight: 700;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.button:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.button:active{
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,.12);
}

.button-secondary{
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
}

.hero{
  padding: 56px 0 24px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}

h1{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 14px;
}

.lead{
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;     /* NEW: pushes CTAs down from text */
  margin-bottom: 10px;
}

/* NEW: ensures any CTA row after micro text always has breathing room */
.micro + .cta-row{
  margin-top: 24px;
}

.micro{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.card-title{
  margin: 0 0 10px;
  font-size: 18px;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section{
  padding: 44px 0;
}

.section-muted{
  background: rgba(255,255,255,.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2{
  margin: 0 0 12px;
  font-size: 26px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.panel{
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.panel h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.panel p{
  margin: 0;
  color: var(--muted);
}

.footer{
  padding: 26px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.form{
  display:grid;
  gap: 12px;
  max-width: 420px;
  margin-top: 14px;
}

label{
  display:grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

input{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.8);
  font-size: 16px;
}

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
}

/* Force heading colour to match logo navy */
h1, h2, h3 {
  color: #35556B !important;
}
```0