/* ============================================
   D&T Billing — Brand Stylesheet
   ============================================ */

:root{
  --cream: #F1E3BE;
  --cream-2: #F8F0DA;
  --alt: #F1F1F1;
  --coral: #F2B2A3;
  --coral-dark: #6B2E1D;
  --mustard: #E9D8A2;
  --mustard-dark: #A98A3A;
  --black: #121212;
  --ink: #211D17;
  --muted: #5B564A;
  --border: #E7E1D2;
  --white: #FFFFFF;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Nunito Sans', -apple-system, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  font-size:16px;
}
h1,h2,h3,h4{
  font-family:'Sansita', Georgia, serif;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-.01em;
  margin:0 0 .5em;
  color:var(--black);
}
p{margin:0 0 1em}
a{color:inherit}
img{max-width:100%;display:block}
ul{margin:0;padding:0}

.wrap{max-width:1140px;margin:0 auto;padding:0 24px}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  border:2px solid var(--black);
  border-radius:999px;
  padding:14px 30px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
  font-family:'Nunito Sans',sans-serif;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--black);color:var(--white)}
.btn-secondary{background:transparent;color:var(--black)}

/* ---------- Nav ---------- */
nav{
  background:var(--cream);
  border-bottom:2px solid var(--black);
  position:sticky;
  top:0;
  z-index:100;
}
nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:84px;
}
nav img{height:56px}
.nav-cta{display:flex;align-items:center;gap:26px}
.nav-link{
  font-weight:700;
  text-decoration:none;
  color:var(--ink);
  font-size:15px;
  padding:6px 2px;
  border-bottom:2px solid transparent;
}
.nav-link:hover, .nav-link.active{border-bottom-color:var(--black)}
.nav-link.active{color:var(--coral-dark);border-bottom-color:var(--coral-dark)}

/* ---------- Hero ---------- */
header.hero{padding:64px 0 88px;background:var(--white)}
header.hero .wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.kicker{
  display:inline-block;
  background:var(--coral);
  color:#6B2E1D;
  font-weight:800;
  font-size:12px;
  letter-spacing:.09em;
  text-transform:uppercase;
  padding:9px 20px;
  border-radius:999px;
  margin-bottom:20px;
}
h1{font-size:50px}
.lede{font-size:18px;color:var(--muted);max-width:520px;margin:22px 0 30px}
.trust{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.trust span{
  background:var(--white);
  border:2px solid var(--black);
  border-radius:999px;
  padding:9px 18px;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.hero-visual{
  background:var(--white);
  border:2px solid var(--black);
  border-radius:var(--radius-lg);
  padding:34px;
  position:relative;
  box-shadow:8px 8px 0 var(--cream);
}
.hero-badge{
  position:absolute;
  top:-42px;
  right:-16px;
  width:104px;
  height:104px;
}
.claim-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:13px 0;
  border-bottom:1px dashed var(--border);
  font-size:14px;
  font-weight:600;
}
.claim-row:last-of-type{border-bottom:none}
.pill{padding:5px 13px;border-radius:999px;font-size:12px;font-weight:800}
.pill.paid{background:var(--cream);color:#6B5A2C}
.pill.pend{background:var(--coral);color:#7A3B2B}

/* ---------- Sections ---------- */
section{padding:84px 0}
section.alt{background:var(--alt)}
.section-label{
  color:var(--coral-dark);
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}
h2{font-size:36px}
.sub{color:var(--muted);font-size:17px;max-width:600px;margin-bottom:48px}

/* ---------- Cards ---------- */
.cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:var(--white);
  border:2px solid var(--black);
  border-top:6px solid var(--coral);
  border-radius:var(--radius-md);
  padding:30px;
}
.card.cream{border-top-color:var(--mustard)}
.card .icon{font-size:32px;display:block;margin-bottom:16px}
.card h3{font-size:20px;margin-bottom:8px}
.card p{color:var(--muted);font-size:15px;margin-bottom:14px}
.card a{color:var(--black);font-weight:800;text-decoration:none;font-size:14px}
.card a:hover{text-decoration:underline}

/* ---------- Steps ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.step{
  background:var(--white);
  border:2px solid var(--black);
  border-radius:var(--radius-md);
  padding:32px 28px;
}
.num{
  font-family:'Sansita',serif;
  font-weight:800;
  font-size:36px;
  color:var(--coral-dark);
  margin-bottom:16px;
  line-height:1;
}
.step h3{font-size:18px;margin-bottom:8px}
.step p{color:var(--muted);font-size:15px;margin:0}

/* ---------- Testimonials ---------- */
.tq{font-size:16px;font-style:italic;color:#3A362E;margin-bottom:24px}
.t-who{display:flex;align-items:center;gap:13px}
.t-ava{
  width:46px;height:46px;border-radius:50%;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-family:'Sansita',serif;font-size:15px;
  flex-shrink:0;
}
.t-who b{font-size:15px}
.t-who span{font-size:13px;color:var(--muted)}

/* ---------- CTA band ---------- */
.cta-band{background:var(--black);color:var(--white);text-align:center;padding:84px 0}
.logo-disc{
  width:112px;height:112px;border-radius:50%;
  background:var(--white);
  margin:0 auto 28px;
  display:flex;align-items:center;justify-content:center;
  padding:14px;
}
.cta-band h2{color:var(--cream);margin-bottom:14px}
.cta-band p{max-width:480px;margin:0 auto 32px;color:#D9D4C6;font-size:16px}

/* ---------- Footer ---------- */
footer{background:var(--cream);padding:64px 0 26px}
.cols{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:44px;
  margin-bottom:44px;
}
footer img{height:58px;margin-bottom:16px}
footer .tag{color:#5A5240;font-size:14px;max-width:280px;margin:0}
footer h4{font-family:'Sansita',serif;margin-bottom:18px;font-size:16px}
footer a{display:block;color:#3A3626;text-decoration:none;font-size:14px;margin-bottom:11px}
footer a:hover{text-decoration:underline}
.foot-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid rgba(0,0,0,.15);
  padding-top:24px;
  font-size:13px;
  color:#5A5240;
  flex-wrap:wrap;
  gap:8px;
}

/* ---------- Inner page hero (services/about/faq/contact) ---------- */
.page-hero{padding:56px 0 64px;background:var(--cream)}
.page-hero .section-label{color:#6B2E1D}
.page-hero h1{font-size:42px;margin-bottom:14px}
.page-hero p{font-size:17px;color:#4A4636;max-width:640px;margin:0}

/* ---------- Service detail blocks ---------- */
.svc-block{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:26px;
  padding:36px 0;
  border-bottom:1px solid var(--border);
  align-items:flex-start;
}
.svc-block:last-child{border-bottom:none}
.svc-icon{
  width:64px;height:64px;border-radius:50%;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;flex-shrink:0;
}
.svc-block h3{font-size:22px;margin-bottom:8px}
.svc-block p{color:var(--muted);font-size:15.5px;max-width:640px}
.svc-block ul{margin:14px 0 0;padding-left:20px}
.svc-block li{color:var(--muted);font-size:15px;margin-bottom:6px}

/* ---------- FAQ ---------- */
.faq-item{
  border:2px solid var(--black);
  border-radius:var(--radius-md);
  margin-bottom:16px;
  overflow:hidden;
  background:var(--white);
}
.faq-item summary{
  padding:22px 26px;
  font-family:'Sansita',serif;
  font-weight:700;
  font-size:17px;
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  font-size:24px;
  font-family:'Nunito Sans',sans-serif;
  font-weight:400;
  color:var(--coral-dark);
  flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item .faq-a{
  padding:0 26px 24px;
  color:var(--muted);
  font-size:15.5px;
}

/* ---------- Contact ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
.contact-info .info-row{
  display:flex;
  gap:16px;
  margin-bottom:26px;
  align-items:flex-start;
}
.contact-info .info-icon{
  width:44px;height:44px;border-radius:50%;
  background:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.contact-info h4{font-size:15px;margin-bottom:4px}
.contact-info p{color:var(--muted);font-size:15px;margin:0}

form.contact-form{
  background:var(--white);
  border:2px solid var(--black);
  border-radius:var(--radius-lg);
  padding:36px;
}
.form-row{margin-bottom:20px}
.form-row label{
  display:block;
  font-weight:700;
  font-size:14px;
  margin-bottom:8px;
}
.form-row input, .form-row textarea, .form-row select{
  width:100%;
  border:2px solid var(--border);
  border-radius:10px;
  padding:12px 14px;
  font-family:'Nunito Sans',sans-serif;
  font-size:15px;
  background:var(--white);
  color:var(--ink);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{
  outline:none;
  border-color:var(--black);
}
.form-row textarea{resize:vertical;min-height:120px}
.checkbox-group{
  display:grid;grid-template-columns:1fr 1fr;gap:10px 20px;
  border:2px solid var(--border);border-radius:10px;padding:16px;
}
.checkbox-group label{
  display:flex;align-items:center;gap:8px;font-weight:400;font-size:14px;
  margin-bottom:0;cursor:pointer;
}
.checkbox-group input[type="checkbox"]{width:auto;accent-color:var(--black)}
.form-row input[type="file"]{
  border:2px dashed var(--border);background:var(--cream-2);
  padding:14px;font-size:14px;cursor:pointer;
}
.form-note{font-size:13px;color:var(--muted);margin-top:6px}
.form-section-heading{
  font-family:'Sansita',serif;font-size:20px;font-weight:700;
  margin:36px 0 18px;padding-bottom:10px;border-bottom:2px solid var(--border);
}
.form-section-heading:first-of-type{margin-top:0}

/* ---------- Newsletter (footer) ---------- */
.newsletter-signup{margin-top:22px;max-width:320px}
.newsletter-signup label{
  display:block;font-family:'Sansita',serif;font-weight:700;
  font-size:15px;margin-bottom:10px;color:#2A2718;
}
.newsletter-row{display:flex;gap:8px}
.newsletter-row input[type="email"]{
  flex:1;min-width:0;border:2px solid var(--border);border-radius:10px;
  padding:10px 12px;font-family:'Nunito Sans',sans-serif;font-size:14px;
  background:var(--white);color:var(--ink);
}
.newsletter-row input[type="email"]:focus{outline:none;border-color:var(--black)}
.newsletter-row button{
  border:none;border-radius:10px;background:var(--black);color:var(--white);
  padding:10px 16px;font-family:'Nunito Sans',sans-serif;font-weight:800;
  font-size:14px;cursor:pointer;white-space:nowrap;
}
.newsletter-row button:hover{opacity:0.85}

/* ---------- Responsive ---------- */
.hide-m{display:inline-block}
@media (max-width:860px){
  header.hero .wrap{grid-template-columns:1fr}
  .hero-visual{margin-top:20px}
  .cards{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .cols{grid-template-columns:1fr;gap:32px}
  .svc-block{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .checkbox-group{grid-template-columns:1fr}
  .hide-m{display:none}
  h1{font-size:34px}
  .page-hero h1{font-size:32px}
  h2{font-size:27px}
  section{padding:60px 0}
  .foot-bottom{flex-direction:column}
  nav .wrap{height:70px}
  nav img{height:46px}
}
