/* Toby's Professional Services - Simple Professional Theme */

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --border: #e8e8e8;
  --soft: #f7f7f7;
  --card: #ffffff;
  --accent: #0b5cff; /* change this if you want */
  --accentSoft: rgba(11, 92, 255, 0.10);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --max: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand .name{
  font-weight:800;
  letter-spacing:0.2px;
}
.brand .tag{
  font-size:12px;
  color:var(--muted);
}

.nav{
  display:flex;
  align-items:center;
  gap:0;
  width:min(720px, 62vw);
  justify-content:space-evenly; /* evenly spaced row */
}

.nav a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
}
.nav a:hover{
  background:var(--soft);
}

.nav a.active{
  background:var(--accentSoft);
  color:var(--accent);
  font-weight:700;
}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform 0.05s ease-in-out, background 0.2s ease;
}
.btn:hover{ background:var(--soft); }
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background:var(--accent);
  border-color: var(--accent);
  color:#fff;
}
.btn-primary:hover{ filter: brightness(0.95); }

.btn-ghost{
  background:transparent;
}

.mobile-toggle{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
}

/* HERO */
.hero{
  padding:56px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:28px;
  align-items:start;
}
.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:var(--soft);
  color:var(--muted);
  font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4vw, 48px);
  line-height:1.15;
}
.lead{
  color:var(--muted);
  font-size:18px;
  margin:0 0 18px;
}

.hero-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card h3{ margin:0 0 8px; }
.hero-card ul{ margin:0; padding-left:18px; color:var(--muted); }
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* SECTIONS */
.section{
  padding:34px 0;
}
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom:16px;
}
.section-title h2{
  margin:0;
  font-size:28px;
}
.section-title p{
  margin:0;
  color:var(--muted);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding:16px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 6px; }
.card p{ margin:0; color:var(--muted); }
.card .meta{
  margin-top:10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.card .link{
  margin-top:12px;
  display:inline-flex;
  gap:8px;
  align-items:center;
  font-weight:800;
  color:var(--accent);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

.callout{
  border:1px solid var(--border);
  background: linear-gradient(0deg, var(--accentSoft), transparent);
  border-radius: var(--radius);
  padding:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.callout h3{ margin:0 0 6px; }
.callout p{ margin:0; color:var(--muted); }

/* SUBNAV for services */
.subnav{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.pill{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background:#fff;
  font-weight:700;
}
.pill:hover{ background:var(--soft); }
.pill.active{
  background:var(--accentSoft);
  border-color: rgba(11,92,255,0.25);
  color: var(--accent);
}

/* FAQ */
.faq{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.faq-item{
  border-top:1px solid var(--border);
}
.faq-item:first-child{ border-top:none; }
.faq-q{
  width:100%;
  text-align:left;
  background:#fff;
  border:none;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:800;
}
.faq-a{
  display:none;
  padding:0 16px 14px;
  color:var(--muted);
}
.faq-item.open .faq-a{ display:block; }
.chev{ opacity:0.7; }

/* FORMS */
.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  font:inherit;
}
textarea{ min-height:140px; resize:vertical; }
.note{
  color:var(--muted);
  font-size:13px;
}

/* FOOTER */
.footer{
  margin-top:40px;
  border-top:1px solid var(--border);
  padding:26px 0;
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:16px;
}
.footer small{ color:var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .nav{ display:none; width:auto; justify-content:flex-start; }
  .mobile-toggle{ display:inline-flex; }
  .nav.mobile-open{
    display:flex;
    position:absolute;
    top:64px;
    right:24px;
    left:24px;
    padding:10px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow: var(--shadow);
    flex-direction:column;
    gap:6px;
  }
  .nav.mobile-open a{ width:100%; }
  .cta{ display:none; }
  .footer-grid{ grid-template-columns: 1fr; }
}
