/* Brand palette pulled to match the logo */
:root{
  --bee-blue: #1767B7;     /* deep cap / shirt blue */
  --bee-yellow: #F2C316;   /* bee body yellow */
  --ink: #0B1220;          /* near-black text */
  --card: #ffffff;         /* white card */
  --card-ink: #111111;     /* dark text */
  --muted: #555555;
  --ring: rgba(23,103,183,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--card-ink);
  background: #ffffff; /* solid white background */
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding: clamp(16px, 3vw, 32px);
}

.card{
  width:min(880px, 95vw);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  padding: clamp(20px, 3.5vw, 48px);
  text-align:center;
  color: var(--card-ink);
}

.logo{
  width:min(580px, 90%);
  height:auto;
  margin: 0 auto 8px;
  display:block;
}

h1{
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 3rem);
  margin: 10px 0 8px;
  letter-spacing: .3px;
}

.lead{
  color: #333333;
  font-size: clamp(1rem, .95rem + .4vw, 1.1rem);
  margin: 0 auto 18px;
  max-width: 54ch;
}

.services{
  list-style:none;
  padding:0;
  margin:0 auto 24px;
  display:flex;
  gap: 12px 18px;
  flex-wrap:wrap;
  justify-content:center;
}
.services li{
  background: #f3f4f6;
  border:1px solid #e5e7eb;
  padding:10px 14px;
  border-radius:999px;
  font-weight:600;
  color:#111111;
}

.cta{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom: 16px;
}

.btn{
  --ring-shadow: 0 0 0 4px var(--ring);
  display:inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .08s ease, box-shadow .15s ease, opacity .15s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  border: 2px solid transparent;
  will-change: transform;
}
.btn:focus-visible{outline:none; box-shadow: var(--ring-shadow); transform: translateY(-1px);}
.btn:hover{transform:translateY(-1px)}

.btn.primary{
  background: linear-gradient(180deg, var(--bee-blue), #0f5ca7);
  color:white;
}
.btn.ghost{
  border-color: #cccccc;
  color:#111111;
  background: transparent;
}
.btn.ghost:hover{border-color: #999999}

.contact{
  color: var(--muted);
  display:flex; gap:10px; justify-content:center; align-items:center;
  flex-wrap:wrap;
}
.contact .link{ color: var(--bee-blue); text-decoration:none; border-bottom:1px dotted rgba(23,103,183,.5) }
.contact .link:hover{ opacity:.85 }
.dot{ opacity:.4 }
.text{ opacity:.85 }

.footer{
  margin-top: 18px;
  text-align:center;
  color: var(--muted);
}
