
/* Dental Connect Direct — D2 Template */
:root{
  --bg: #ffffff;
  --surface: #f6fbff;
  --card: #ffffff;
  --text: #0b1b2b;
  --muted: #425466;
  --primary: #1ea672; /* fresh green */
  --primary-2: #0ea5e9; /* sky */
  --border: #e6eef7;
  --shadow: 0 18px 50px rgba(11,27,43,.10);
  --shadow2: 0 10px 24px rgba(11,27,43,.08);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(14,165,233,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
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: radial-gradient(1100px 500px at 20% -10%, rgba(14,165,233,.16), transparent 60%),
              radial-gradient(900px 400px at 80% 0%, rgba(30,166,114,.14), transparent 55%),
              var(--bg);
  line-height:1.5;
}

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

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.section.tight{padding:40px 0}
.section.top{padding-top:26px}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 14px; border-radius:12px; background:#fff; box-shadow:var(--shadow2); z-index:9999}

header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(230,238,247,.8);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(30,166,114,.18));
  border:1px solid rgba(230,238,247,.9);
}
.brand span{font-size:16px}
.brand small{display:block; font-weight:600; color:var(--muted); margin-top:-2px}

.navlinks{
  display:flex; align-items:center; gap:18px;
  color: var(--muted);
  font-weight:600;
}
.navlinks a{padding:8px 10px; border-radius:12px}
.navlinks a.active, .navlinks a:hover{background: rgba(14,165,233,.10); color: var(--text)}

.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  font-weight:800;
  border:1px solid var(--border);
  background:#fff;
  box-shadow:none;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover{box-shadow: var(--shadow2)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(30,166,114,1), rgba(14,165,233,1));
  color:#fff;
  border:0;
}
.btn.secondary{
  background: rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.18);
}
.btn:focus{outline:none; box-shadow: var(--shadow2), var(--focus)}
.icon{
  width:18px; height:18px; display:inline-block;
}

.hamburger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
}
.hamburger:focus{outline:none; box-shadow:var(--shadow2), var(--focus)}
.hamburger svg{width:22px; height:22px}

.hero{
  position:relative;
  padding:54px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(30,166,114,.10);
  border:1px solid rgba(30,166,114,.18);
  color: var(--muted);
  font-weight:700;
  margin-bottom:14px;
}
.h1{
  font-size: clamp(34px, 3.5vw, 52px);
  line-height:1.05;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
.lead{
  margin:0 0 20px;
  color: var(--muted);
  font-size: 17px;
  max-width: 56ch;
}
.bullets{
  display:flex; flex-direction:column; gap:10px;
  margin: 18px 0 24px;
}
.bullet{
  display:flex; align-items:flex-start; gap:10px;
  color: var(--muted);
  font-weight:650;
}
.check{
  width:22px; height:22px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(30,166,114,.14);
  border:1px solid rgba(30,166,114,.22);
  flex: 0 0 auto;
}

.heroCard{
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(230,238,247,.95);
  background: #fff;
}
.heroCard img{
  width:100%;
  height:auto;
  display:block;
}
.heroCard .caption{
  padding:14px 16px;
  display:flex; gap:10px; align-items:center; justify-content:space-between;
  background: linear-gradient(180deg, rgba(246,251,255,.65), rgba(255,255,255,1));
}
.caption strong{font-size:14px}
.caption span{font-size:13px; color:var(--muted)}

.formRow{
  display:flex; gap:10px; align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius: 999px;
  padding:8px;
  box-shadow: var(--shadow2);
  max-width: 520px;
}
.input{
  flex:1;
  border:0; outline:none;
  padding:12px 12px;
  font-size: 15px;
  border-radius: 999px;
}
.input::placeholder{color:#8aa0b3}

.trustbar{
  margin-top:18px;
  display:flex; gap:22px; flex-wrap:wrap; align-items:center;
  color: var(--muted);
  font-weight:650;
  font-size: 13px;
}
.trustbar .tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border:1px solid rgba(230,238,247,.9);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding:18px;
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 10px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  border:1px solid rgba(14,165,233,.18);
  font-weight:800;
  color: var(--text);
  font-size:12px;
  margin-bottom:10px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.panel{
  background: rgba(246,251,255,.72);
  border:1px solid rgba(230,238,247,.95);
  border-radius: var(--radius2);
  box-shadow: var(--shadow2);
  padding:22px;
}
.panel h2{margin:0 0 10px; letter-spacing:-.4px}
.panel p{margin:0 0 12px; color:var(--muted)}
.steps{display:flex; flex-direction:column; gap:12px; margin-top:14px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px; border-radius: 16px;
  border:1px solid rgba(230,238,247,.95);
  background:#fff;
}
.badge{
  width:34px; height:34px; border-radius: 12px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(30,166,114,.14);
  border:1px solid rgba(30,166,114,.22);
}
.step b{display:block}
.step span{display:block; color:var(--muted); margin-top:2px}

.faq{
  display:flex; flex-direction:column; gap:12px;
}
details{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow2);
  padding: 14px 16px;
}
summary{
  cursor:pointer;
  font-weight:850;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted)}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
label{font-weight:750}
.input2, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  outline:none;
  font-size: 15px;
  background:#fff;
}
textarea{min-height:110px; resize:vertical}
.input2:focus, textarea:focus{box-shadow:var(--focus); border-color: rgba(14,165,233,.4)}
.note{color:var(--muted); font-size:13px}

.checkbox{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius: 16px;
  border:1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow2);
}
.checkbox input{margin-top:3px; width:18px; height:18px}
.checkbox b{display:block}
.checkbox span{display:block; color:var(--muted); margin-top:4px; font-size:13px}

footer{
  margin-top: 40px;
  border-top:1px solid rgba(230,238,247,.95);
  background: rgba(255,255,255,.75);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding: 26px 0;
}
.footerGrid h4{margin:0 0 10px}
.footerGrid p{margin:0; color:var(--muted)}
.footerLinks{
  display:flex; flex-wrap:wrap; gap:10px;
}
.footerLinks a{
  padding:8px 10px;
  border-radius: 12px;
  border:1px solid rgba(230,238,247,.95);
  background:#fff;
  color: var(--muted);
  font-weight:700;
}
.footerLinks a:hover{color: var(--text); background: rgba(14,165,233,.06)}
.smallprint{
  padding: 14px 0 26px;
  color: var(--muted);
  font-size: 12px;
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between;
}

.pageTitle{
  font-size: clamp(30px, 3vw, 40px);
  margin:0 0 10px;
  letter-spacing:-.5px;
}
.pageLead{margin:0; color:var(--muted); max-width: 72ch}
.divider{height:1px; background: rgba(230,238,247,.95); margin: 18px 0}

.mobileMenu{
  display:none;
  padding: 0 0 14px;
}
.mobileMenu a{
  display:block;
  padding:10px 12px;
  border-radius: 14px;
  color: var(--muted);
  font-weight:750;
}
.mobileMenu a:hover, .mobileMenu a.active{background: rgba(14,165,233,.10); color: var(--text)}
@media (max-width: 940px){
  .heroGrid{grid-template-columns:1fr; }
  .formRow{max-width: 100%}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .navlinks{display:none}
  .hamburger{display:inline-grid; place-items:center}
  .mobileMenu{display:block}
  .footerGrid{grid-template-columns: 1fr}
}
