/* Minimal fallback rules for every class in the shared contract.
 *
 * Always prepended to the model-generated stylesheet, which overrides it via the normal
 * later-wins cascade. This exists because the stylesheet and the pages are generated by
 * separate model calls, so the stylesheet can omit a contract class -- which used to fail
 * the whole build (a real business, find-dog, died on a missing `btn-primary`). With this
 * in place a missed rule degrades to plain-but-styled instead of destroying the build.
 *
 * Keep these deliberately neutral and low-specificity: they are a safety net, not a design.
 */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; line-height: 1.6; }
img { max-width: 100%; height: auto; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }

.site-header { padding: 1rem 0; }
.header-inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; }
.logo-text { font-weight: 700; }
.main-nav { display: block; }
.nav-list { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.nav-link { text-decoration: none; }
.nav-link:hover, .nav-link:focus { text-decoration: underline; }
.is-current { font-weight: 700; }

.hero, .page-hero { padding: 3rem 0; }
.hero-inner { display: flex; flex-direction: column; gap: 1rem; }
.hero-title { margin: 0; font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.15; }
.hero-subtitle { margin: 0; font-size: 1.125rem; }

.section { padding: 3rem 0; }
.section-alt { padding: 3rem 0; }
.section-title { margin: 0 0 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.section-intro { margin: 0 0 1.5rem; max-width: 60ch; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card { padding: 1.25rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.card-title { margin: 0 0 .5rem; font-size: 1.125rem; }
.card-text { margin: 0; }

.steps { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-number { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid currentColor; font-weight: 700; }
.step-title { margin: 0 0 .25rem; font-size: 1.05rem; }
.step-text { margin: 0; }

.faq-list { display: grid; gap: 1rem; margin: 0; padding: 0; }
.faq-item { padding: 1rem; border: 1px solid rgba(0, 0, 0, .12); border-radius: .5rem; }
.faq-question { margin: 0 0 .5rem; font-size: 1.05rem; font-weight: 700; }
.faq-answer { margin: 0; }

.cta-band { padding: 3rem 0; text-align: center; }
.cta-title { margin: 0 0 .5rem; font-size: clamp(1.3rem, 3vw, 1.9rem); }
.cta-text { margin: 0 0 1.25rem; }

.btn { display: inline-block; padding: .7rem 1.4rem; border-radius: .4rem; text-decoration: none;
  border: 1px solid currentColor; cursor: pointer; }
.btn:hover, .btn:focus { opacity: .85; }
.btn-primary { font-weight: 600; }
.btn-secondary { font-weight: 500; background: transparent; }

.contact-list { display: grid; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.contact-item { display: flex; flex-wrap: wrap; gap: .5rem; }
.contact-label { font-weight: 600; }
.contact-value { }

.site-footer { padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.footer-col { }
.footer-title { margin: 0 0 .5rem; font-size: 1rem; }
.footer-note { margin: 0; font-size: .9rem; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .step { flex-direction: column; }
}

/* ---- generated ---- */
:root{
  --bg-dark:#0d0d0d;
  --bg-light:#151515;
  --accent:#00bfff;
  --text-light:#f0f0f0;
  --text-muted:#aaaaaa;
  --space-0:0;
  --space-1:0.25rem;
  --space-2:0.5rem;
  --space-3:0.75rem;
  --space-4:1rem;
  --space-5:1.5rem;
  --space-6:2rem;
  --space-8:3rem;
  --radius-sm:0.25rem;
  --radius-md:0.5rem;
  --radius-lg:1rem;
  --shadow-sm:0 1px 3px rgba(0,0,0,0.3);
  --shadow:0 4px 12px rgba(0,0,0,0.4);
}

/* ---- Global reset & typography ---- */
*, *::before, *::after{box-sizing:border-box;margin:0;padding:0;}
html{font-size:100%;}
body{
  background:var(--bg-dark);
  color:var(--text-light);
  font-family:system-ui, sans-serif;
  line-height:1.6;
}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

/* ---- Layout container ---- */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 var(--space-4);
  width:100%;
}

/* ---- Header ---- */
.site-header{
  background:var(--bg-dark);
  position:sticky;
  top:0;
  z-index:10;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo{
  display:flex;
  align-items:center;
  gap:var(--space-2);
}
.logo-text{
  font-size:1.5rem;
  font-weight:bold;
  color:var(--accent);
}
.main-nav{}
.nav-list{
  list-style:none;
  display:flex;
  gap:var(--space-4);
  margin:0;
  padding:0;
}
.nav-link{
  color:var(--text-light);
  font-weight:500;
  padding:var(--space-1) var(--space-2);
  border-radius:var(--radius-sm);
  transition:background .2s, color .2s;
}
.nav-link:hover,
.nav-link:focus{
  background:var(--bg-light);
  color:var(--text-light);
}
.nav-link.is-current{
  background:var(--accent);
  color:var(--bg-dark);
}

/* ---- Hero ---- */
.hero{
  background:var(--accent);
  color:var(--bg-dark);
  text-align:center;
  padding:var(--space-8) 0;
}
.page-hero{
  background:var(--bg-dark);
  color:var(--text-light);
  border-top:4px solid var(--accent);
  padding:var(--space-8) 0;
}
.hero-inner,
.page-hero-inner{
  max-width:800px;
  margin:0 auto;
  padding:0 var(--space-4);
}
.hero-title{
  font-size:clamp(2.5rem, 8vw, 4rem);
  margin:0 0 var(--space-2);
  line-height:1.2;
}
.hero-subtitle{
  font-size:1.25rem;
  margin-bottom:var(--space-4);
}

/* ---- Sections ---- */
.section{
  padding:var(--space-8) 0;
}
.section-alt{
  background:var(--bg-light);
}
.section-title{
  font-size:2rem;
  margin-bottom:var(--space-3);
  text-align:center;
}
.section-intro{
  font-size:1.125rem;
  max-width:600px;
  margin:0 auto var(--space-6);
  text-align:center;
  color:var(--text-muted);
}

/* ---- Cards ---- */
.card-grid{
  display:grid;
  gap:var(--space-4);
}
.card{
  background:var(--bg-light);
  border-radius:var(--radius-md);
  padding:var(--space-4);
  box-shadow:var(--shadow-sm);
  transition:transform .2s, box-shadow .2s;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.card-title{
  font-size:1.5rem;
  margin-bottom:var(--space-2);
  color:var(--accent);
}
.card-text{
  font-size:1rem;
  line-height:1.5;
}

/* ---- Process steps ---- */
.steps{
  display:grid;
  gap:var(--space-6);
}
.step{
  display:flex;
  align-items:flex-start;
  gap:var(--space-3);
}
.step-number{
  background:var(--accent);
  color:var(--bg-dark);
  width:2.5rem;
  height:2.5rem;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:1.25rem;
  flex-shrink:0;
}
.step-title{
  font-size:1.25rem;
  margin-bottom:var(--space-1);
}
.step-text{
  font-size:1rem;
  line-height:1.5;
}

/* ---- FAQ ---- */
.faq-list{
  max-width:800px;
  margin:0 auto;
}
.faq-item{
  border-top:1px solid var(--bg-light);
  padding:var(--space-4) 0;
}
.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:600;
  font-size:1.125rem;
}
.faq-answer{
  margin-top:var(--space-2);
  line-height:1.6;
}

/* ---- CTA band ---- */
.cta-band{
  background:var(--accent);
  color:var(--bg-dark);
  text-align:center;
  padding:var(--space-8) 0;
}
.cta-title{
  font-size:2rem;
  margin-bottom:var(--space-2);
}
.cta-text{
  font-size:1.25rem;
  max-width:600px;
  margin:0 auto var(--space-4);
}

/* ---- Buttons ---- */
.btn{
  display:inline-block;
  padding:var(--space-2) var(--space-4);
  border-radius:var(--radius-md);
  font-weight:600;
  text-align:center;
  cursor:pointer;
  border:none;
  transition:background .2s, color .2s;
}
.btn-primary{
  background:var(--accent);
  color:var(--bg-dark);
}
.btn-secondary{
  background:var(--bg-light);
  color:var(--text-light);
  border:2px solid var(--accent);
}
.btn-primary:hover,
.btn-secondary:hover{
  opacity:0.9;
}
.btn-primary:focus,
.btn-secondary:focus{
  outline:2px solid var(--accent);
  outline-offset:2px;
}

/* ---- Contact details ---- */
.contact-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:var(--space-2);
}
.contact-item{
  display:flex;
  align-items:center;
  gap:var(--space-2);
}
.contact-label{
  font-weight:600;
  min-width:80px;
}
.contact-value{}

/* ---- Footer ---- */
.site-footer{
  background:var(--bg-light);
  color:var(--text-muted);
  padding:var(--space-6) 0;
}
.footer-inner{
  display:grid;
  gap:var(--space-4);
}
.footer-col{}
.footer-title{
  font-size:1.25rem;
  margin-bottom:var(--space-2);
  color:var(--text-light);
}
.footer-note{
  font-size:0.875rem;
}

/* ---- Responsive breakpoints ---- */
@media (min-width:768px){
  .card-grid{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:repeat(2,1fr);}
  .footer-inner{grid-template-columns:repeat(2,1fr);}
}
@media (min-width:1024px){
  .card-grid{grid-template-columns:repeat(3,1fr);}
  .steps{grid-template-columns:repeat(3,1fr);}
  .footer-inner{grid-template-columns:repeat(4,1fr);}
  .hero-inner,
  .page-hero-inner{padding:0 var(--space-6);}
}