/*
Theme Name: Verifi Dental Services
Theme URI: https://verifidentalservices.com
Author: Travis
Description: Custom standalone theme for Verifi Dental Services - Expert Dental Billing Outsourcing. White/Black/Teal editorial design.
Version: 1.0.0
Text Domain: verifi-dental
*/

/* ── VARIABLES ── */
:root {
  --ink: #0A0A0A;
  --ink-soft: #1E1E1E;
  --teal: #0ABAB5;
  --teal-deep: #078E8A;
  --teal-glow: rgba(10,186,181,.12);
  --teal-wash: #EDFAFA;
  --canvas: #FFFFFF;
  --ash: #FAFAFA;
  --smoke: #94A3B8;
  --slate: #64748B;
  --wire: #E8EAED;
  --serif: 'Instrument Serif', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--body); color: var(--ink); background: var(--canvas); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── LAYOUT ── */
.w { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 120px 0; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: box-shadow .4s;
}
.nav.pinned { box-shadow: 0 1px 40px rgba(0,0,0,.06); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.nav-logo img { height: 80px; width: auto; }
.nav-mid { display: flex; gap: 32px; }
.nav-mid a { font-size: 13.5px; font-weight: 500; color: var(--slate); letter-spacing: .01em; transition: color .25s; position: relative; }
.nav-mid a:hover, .nav-mid a.current-menu-item { color: var(--teal); }
.nav-mid a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--teal); transform: scaleX(0); transition: transform .3s; }
.nav-mid a:hover::after { transform: scaleX(1); }
.nav-end { display: flex; align-items: center; gap: 24px; }
.nav-tel { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.nav-divider { width: 1px; height: 24px; background: var(--wire); }

/* ── PILLS / BUTTONS ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; font-size: 13px; font-weight: 600;
  letter-spacing: .02em; border-radius: 100px; transition: all .3s;
}
.pill-teal { background: var(--teal); color: #fff; }
.pill-teal:hover { background: var(--teal-deep); box-shadow: 0 4px 20px rgba(10,186,181,.3); transform: translateY(-1px); }
.pill-outline { background: transparent; border: 1.5px solid var(--wire); color: var(--ink); }
.pill-outline:hover { border-color: var(--teal); color: var(--teal); }
.pill-white { background: #fff; color: var(--ink); }
.pill-white:hover { background: var(--ink); color: #fff; }
.pill-ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: #fff; }
.pill-ghost:hover { border-color: var(--teal); color: var(--teal); }
.mob-btn { display: none; background: 0 0; border: 0; padding: 6px; }
.mob-btn span { display: block; width: 20px; height: 1.5px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ── HERO ── */
.hero {
  padding: 172px 0 120px; background: var(--ink);
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://tan-seahorse-555165.hostingersite.com/wp-content/uploads/2026/06/AdobeStock_433817539-scaled.jpeg') center/cover no-repeat;
  opacity: .2;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.7) 50%, rgba(10,10,10,.95) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  background: rgba(10,186,181,.08); border: 1px solid rgba(10,186,181,.15);
  font-size: 11.5px; font-weight: 600; color: var(--teal);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 40px;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5.6vw, 72px);
  color: #fff; line-height: 1.06; letter-spacing: -.035em;
  max-width: 840px; margin: 0 auto 28px;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 16.5px; color: rgba(255,255,255,.5); font-weight: 400;
  max-width: 560px; margin: 0 auto 48px; line-height: 1.75;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── VALUE STRIP ── */
.val-strip { padding: 56px 0; border-bottom: 1px solid var(--wire); }
.val-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.val-cell { display: flex; align-items: center; gap: 16px; padding: 0 32px; border-right: 1px solid var(--wire); }
.val-cell:last-child { border: 0; }
.val-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-wash); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.val-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.val-cell h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.val-cell p { font-size: 13px; color: var(--smoke); line-height: 1.45; }

/* ── SOFTWARE TRUST ── */
.sw-bar { padding: 36px 0; background: var(--ash); border-bottom: 1px solid var(--wire); }
.sw-inner { display: flex; align-items: center; gap: 40px; justify-content: center; flex-wrap: wrap; }
.sw-label { font-size: 10.5px; font-weight: 600; color: var(--smoke); letter-spacing: .12em; text-transform: uppercase; }
.sw-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center; }
.sw-logos img { height: 80px; width: 200px; object-fit: contain; filter: grayscale(1); opacity: .35; transition: all .4s; }
.sw-logos img:hover { filter: none; opacity: 1; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: 16px; }
.about-photo .badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--teal); color: #fff; padding: 20px 28px;
  border-radius: 12px; text-align: center;
  box-shadow: 0 8px 30px rgba(10,186,181,.25);
}
.badge .b-num { font-family: var(--mono); font-size: 36px; font-weight: 700; line-height: 1; }
.badge .b-lbl { font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.label-teal { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.h2 { font-family: var(--serif); font-size: clamp(28px, 3.2vw, 42px); color: var(--ink); line-height: 1.15; margin-bottom: 20px; letter-spacing: -.02em; }
.prose { font-size: 15.5px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--teal); margin-top: 8px; transition: gap .3s; }
.text-link:hover { gap: 12px; }

/* ── BENEFITS ── */
.benefits { background: var(--ash); }
.benefits-head { text-align: center; margin-bottom: 56px; }
.b-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--wire); border: 1px solid var(--wire); border-radius: 16px; overflow: hidden; }
.b-card { background: var(--canvas); padding: 36px 32px; transition: all .45s; }
.b-card:hover { background: var(--ink); }
.b-card:hover h3, .b-card:hover p { color: #fff; }
.b-card:hover .b-ico { background: rgba(10,186,181,.15); }
.b-card:hover .b-ico svg { stroke: var(--teal); }
.b-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-wash); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: background .45s;
}
.b-ico svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .45s; }
.b-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; transition: color .45s; }
.b-card p { font-size: 14px; color: var(--slate); line-height: 1.65; transition: color .45s; }

/* ── SERVICE BLOCKS ── */
.svc { padding: 120px 0; background: var(--canvas); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 96px; }
.svc-row:last-child { margin-bottom: 0; }
.svc-row.flip { direction: rtl; }
.svc-row.flip > * { direction: ltr; }
.svc-panel {
  background: var(--ash); border: 1px solid var(--wire);
  border-radius: 16px; padding: 40px; overflow: hidden;
}
.svc-panel-head { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-bottom: 6px; }
.svc-panel-sub { font-size: 13px; color: var(--smoke); margin-bottom: 24px; }
.svc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric {
  background: var(--canvas); border: 1px solid var(--wire);
  border-radius: 12px; padding: 20px; text-align: center;
}
.metric .m-val { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--teal); line-height: 1; }
.metric .m-lbl { font-size: 11px; font-weight: 600; color: var(--smoke); letter-spacing: .04em; text-transform: uppercase; margin-top: 6px; }
.svc-body h3 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 34px); color: var(--ink); margin-bottom: 14px; line-height: 1.15; }
.svc-body p { font-size: 15px; color: var(--slate); line-height: 1.8; margin-bottom: 14px; }
.svc-checks { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.svc-chk { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate); line-height: 1.5; }
.svc-chk svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* ── STATS ── */
.stats-sec { background: var(--ink); padding: 96px 0; text-align: center; }
.stats-sec h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 42px); color: #fff; max-width: 720px; margin: 0 auto 20px; line-height: 1.15; }
.stats-sec .prose { color: rgba(255,255,255,.45); max-width: 580px; margin: 0 auto 60px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 960px; margin: 0 auto; }
.stat-cell { padding: 0 28px; border-right: 1px solid rgba(255,255,255,.06); }
.stat-cell:last-child { border: 0; }
.stat-cell .s-num { font-family: var(--mono); font-size: 44px; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-cell .s-lbl { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.4; }

/* ── TESTIMONIALS ── */
.testi { padding: 120px 0; background: var(--canvas); }
.testi-head { text-align: center; margin-bottom: 56px; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
  padding: 32px; border: 1px solid var(--wire); border-radius: 16px;
  background: var(--canvas); transition: all .35s; position: relative;
}
.t-card:hover { border-color: var(--teal); box-shadow: 0 8px 40px rgba(10,186,181,.06); transform: translateY(-4px); }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.t-stars svg { width: 16px; height: 16px; fill: var(--teal); }
.t-card blockquote { font-size: 14.5px; color: var(--slate); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.t-who { font-size: 14px; font-weight: 600; color: var(--ink); }
.t-title { font-size: 12px; color: var(--smoke); margin-top: 2px; }

/* ── FAQ ── */
.faq-sec { padding: 120px 0; background: var(--ash); }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.faq-side h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.faq-side p { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 28px; }
.fq { border-bottom: 1px solid var(--wire); }
.fq:first-child { border-top: 1px solid var(--wire); }
.fq-btn {
  width: 100%; background: 0 0; border: 0; padding: 22px 0;
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; transition: color .25s;
}
.fq-btn:hover { color: var(--teal); }
.fq-btn .plus { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--wire); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--teal); transition: all .3s; flex-shrink: 0; margin-left: 16px; }
.fq.open .fq-btn .plus { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.fq-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.fq.open .fq-body { max-height: 400px; }
.fq-txt { padding: 0 0 22px; font-size: 14.5px; color: var(--slate); line-height: 1.75; }

/* ── BLOG ── */
.blog { padding: 120px 0; background: var(--canvas); }
.blog-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bl-card { border: 1px solid var(--wire); border-radius: 16px; overflow: hidden; transition: all .35s; }
.bl-card:hover { border-color: var(--teal); box-shadow: 0 8px 30px rgba(0,0,0,.04); transform: translateY(-4px); }
.bl-img { height: 200px; overflow: hidden; }
.bl-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.bl-card:hover .bl-img img { transform: scale(1.04); }
.bl-body { padding: 24px; }
.bl-tag { font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.bl-card h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
.bl-card p { font-size: 13.5px; color: var(--slate); line-height: 1.6; }
.bl-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 14px; transition: gap .3s; }
.bl-link:hover { gap: 10px; }

/* ── CONTACT ── */
.cta-sec { padding: 120px 0; background: var(--ink); }
.cta-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; }
.cta-left { color: #fff; }
.cta-left h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; line-height: 1.15; }
.cta-left .desc { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 36px; }
.cd { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cd-ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(10,186,181,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-ico svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.cd-lbl { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.35); letter-spacing: .1em; text-transform: uppercase; }
.cd-val { font-size: 15px; font-weight: 600; color: #fff; }
.cd-val a { color: #fff; }
.cd-val a:hover { color: var(--teal); }
.expect-box { margin-top: 36px; padding: 24px; border: 1px solid rgba(255,255,255,.06); border-radius: 12px; }
.expect-box strong { display: block; font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.expect-box span { font-size: 13.5px; color: rgba(255,255,255,.4); line-height: 1.8; }
.form-card { background: var(--canvas); padding: 44px; border-radius: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: .02em; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 12px 14px; border: 1px solid var(--wire); border-radius: 10px; font-family: var(--body); font-size: 14px; background: var(--ash); outline: 0; transition: all .3s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-glow); }
.fg textarea { min-height: 80px; resize: vertical; }
.chks { display: flex; flex-wrap: wrap; gap: 8px; }
.chks label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--slate); cursor: pointer; padding: 8px 14px; border: 1px solid var(--wire); border-radius: 8px; transition: all .2s; }
.chks label:hover { border-color: var(--teal); }
.chks input[type=checkbox] { accent-color: var(--teal); }
.f-submit { width: 100%; padding: 14px; background: var(--teal); color: #fff; border: 0; border-radius: 10px; font-weight: 600; font-size: 14px; letter-spacing: .02em; transition: all .3s; margin-top: 4px; }
.f-submit:hover { background: var(--teal-deep); box-shadow: 0 4px 20px rgba(10,186,181,.3); }

/* ── FINAL CTA ── */
.band { padding: 72px 0; background: var(--teal); text-align: center; }
.band h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 40px); color: #fff; margin-bottom: 28px; }
.band .sub { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 20px; }
.band .sub a { color: #fff; font-weight: 600; }

/* ── FOOTER ── */
.ft { background: var(--ink); padding: 56px 0 32px; border-top: 1px solid rgba(10,186,181,.15); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.ft-brand { font-family: var(--serif); font-size: 1.25rem; color: #fff; margin-bottom: 10px; }
.ft-brand span { color: var(--teal); }
.ft-desc { color: rgba(255,255,255,.35); font-size: 13px; line-height: 1.65; }
.ft h4 { font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.ft a { color: rgba(255,255,255,.4); font-size: 13px; display: block; margin-bottom: 10px; transition: color .2s; }
.ft a:hover { color: #fff; }
.ft-soc { display: flex; gap: 6px; margin-top: 14px; }
.ft-soc a { width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,.4); margin: 0; transition: all .25s; }
.ft-soc a:hover { background: var(--teal); color: #fff; }
.ft-bot { border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bot p { color: rgba(255,255,255,.2); font-size: 11px; }

/* ── REVEAL ANIMATION ── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.rv.vis { opacity: 1; transform: none; }

/* ── WP ADMIN BAR FIX ── */
.admin-bar .nav { top: 32px; }
@media(max-width:782px) { .admin-bar .nav { top: 46px; } }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .about-grid,.svc-row,.svc-row.flip,.faq-layout,.cta-grid{grid-template-columns:1fr;direction:ltr}
  .svc-row.flip>*{direction:ltr}
  .b-grid{grid-template-columns:repeat(2,1fr)}
  .stat-row{grid-template-columns:repeat(2,1fr);gap:32px}
  .t-grid,.bl-grid{grid-template-columns:1fr}
  .ft-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-mid,.nav-end .nav-tel{display:none}
  .mob-btn{display:block}
  .nav-mid.open{display:flex;flex-direction:column;position:absolute;top:100px;left:0;right:0;background:#fff;padding:20px 28px;gap:14px;border-bottom:1px solid var(--wire);box-shadow:0 12px 30px rgba(0,0,0,.06)}
  .hero{padding:116px 0 64px}
  .sec{padding:80px 0}
  .val-row{grid-template-columns:1fr}
  .val-cell{border-right:0;border-bottom:1px solid var(--wire);padding:16px 0}
  .val-cell:last-child{border:0}
  .b-grid{grid-template-columns:1fr}
  .stat-row{grid-template-columns:1fr;gap:20px}
  .stat-cell{border-right:0;border-bottom:1px solid rgba(255,255,255,.05);padding-bottom:20px}
  .stat-cell:last-child{border:0;padding-bottom:0}
  .f-row{grid-template-columns:1fr}
  .ft-grid{grid-template-columns:1fr;gap:24px}
  .ft-bot{flex-direction:column;text-align:center}
  .about-photo .badge{right:0;bottom:-12px}
  .blog-top{flex-direction:column;align-items:flex-start}
  .faq-sec,.testi,.blog,.svc,.stats-sec{padding:80px 0}
}
