:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --accent:#1e73be;
  --accent2:#0f766e;
  --max:1100px;
  --radius:16px;
  --shadow:0 10px 26px rgba(15, 23, 42, .08);
}

/* Reset */
*{box-sizing:border-box}
html,body{margin:0;padding:0}

/* Base */
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.95}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 18px 70px;
}

/* Navigation */
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0 18px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
}

.brand img{
  height:52px;
  width:auto;
}

.menu{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.menu a{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
  color:var(--muted);
}

.menu a.active,
.menu a:hover{
  color:var(--text);
  border-color:var(--line);
  background:var(--soft);
}

/* Hero */
.hero{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--soft), #ffffff);
  box-shadow:var(--shadow);
  padding:30px 22px;
}

.h1{
  margin:0 0 12px;
  font-size:clamp(2rem,3.6vw,2.85rem);
  letter-spacing:-.02em;
}

.lead{
  margin:0 0 14px;
  color:var(--muted);
  max-width:78ch;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(30,115,190,.06);
  border:1px solid rgba(30,115,190,.14);
  padding:6px 10px;
  border-radius:999px;
}

/* Buttons */
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#ffffff;
  font-weight:700;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:var(--soft);
  border-color:#cbd5e1;
}

.btn.primary{
  border-color:rgba(30,115,190,.25);
  background:linear-gradient(180deg, rgba(30,115,190,.10), rgba(30,115,190,.05));
  color:var(--accent);
}

/* Grid + Cards */
.grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  margin-top:18px;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#ffffff;
  box-shadow:0 8px 18px rgba(15, 23, 42, .06);
  padding:18px 18px;
}

.card h2{
  margin:0 0 8px;
  font-size:1.12rem;
}

.card p{
  margin:0;
  color:var(--muted);
}

.card .meta{
  margin-top:10px;
  color:var(--muted);
  font-size:.95rem;
}

/* Sections */
.section{
  margin-top:18px;
}

.section h2{
  margin:0 0 10px;
  font-size:1.35rem;
}

.section h3{
  margin:16px 0 8px;
  font-size:1.05rem;
}

/* Lists */
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.list li{
  margin:6px 0;
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:16px;
  margin-top:16px;
}

/* Notices */
.notice{
  border-left:4px solid rgba(30,115,190,.55);
  background:rgba(30,115,190,.05);
}

/* Badges */
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(15,118,110,.07);
  border:1px solid rgba(15,118,110,.18);
  color:var(--accent2);
  font-weight:700;
  font-size:.9rem;
}

/* Forms */
.form{
  display:grid;
  gap:12px;
}

input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background:#ffffff;
  color:var(--text);
  padding:12px 12px;
  font:inherit;
}

textarea{
  min-height:140px;
  resize:vertical;
}

/* Footer */
.footer{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:.95rem;
}

/* Mobile */
@media (max-width: 900px){
  .grid{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}

/* GMC Credibility Strip */
.cred-strip {
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 16px;
  font-size: 0.95rem;
  background: #fff;
}
/* Partner Enquiry Form */
.form-card{
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 14px;
  background: #fff;
}

label{ display:block; font-weight:600; margin-bottom:6px; }
input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
textarea{ resize: vertical; }

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:500;
}
.check input{ width:auto; margin-top:4px; }

.hidden{ display:none; }

.btn{
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.btn:hover{ filter: brightness(0.98); }




