/*
 * Contact Setup main stylesheet
 * ----------------------------
 * C.R.A.P. design rules used across the site:
 *
 * Contrast:
 *   Dark navy sections, warm paper cards, blue CTAs, and clear type hierarchy.
 * Repetition:
 *   Repeated labels, rounded cards, strong borders, pill lists, and CTA shapes.
 * Alignment:
 *   One max-width shell, consistent grids, clean left edges, and predictable gaps.
 * Proximity:
 *   Each promise sits close to its proof, and every CTA lives near the decision point.
 *
 * This file is written as valid CSS-compatible SCSS. You can compile it with your
 * normal SCSS workflow, and the generated main.css can be overwritten as needed.
 */
:root {
  --ink: #132033;
  --ink-strong: #07111f;
  --navy: #0b2239;
  --navy-2: #12385a;
  --blue: #2d6cff;
  --blue-deep: #164bd6;
  --cyan: #4cd7ff;
  --gold: #f2b84b;
  --gold-2: #ffd98a;
  --cream: #f8f1e6;
  --paper: #fffaf0;
  --paper-2: #f3ead9;
  --line: rgba(19, 32, 51, 0.14);
  --line-strong: rgba(19, 32, 51, 0.28);
  --muted: #607089;
  --success: #117456;
  --danger: #9b4328;
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.16);
  --shadow-soft: 0 14px 35px rgba(7, 17, 31, 0.11);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.main-content {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 8% 0%, rgba(76, 215, 255, 0.22), transparent 30rem), radial-gradient(circle at 92% 10%, rgba(242, 184, 75, 0.2), transparent 26rem), linear-gradient(180deg, #fbf6ec 0%, #eef6fb 45%, #fbf1df 100%);
  font-family: var(--sans);
  line-height: 1.6;
}

body.main-content::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.45;
  background-image: linear-gradient(rgba(19, 32, 51, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 32, 51, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: var(--blue-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--navy);
}

.site-shell {
  max-width: 1180px;
}

.site-section {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.site-border-inner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.structure-line {
  height: 1px;
  margin: 1.1rem 0;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.28), transparent);
}

.quiet-label {
  display: inline-block;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.small-text,
.muted-copy,
.section-note {
  color: var(--muted);
}

.lead-copy,
.hero-intro {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}

/* Header and navigation */
.site-header,
.site-footer {
  color: var(--paper);
  background: radial-gradient(circle at top left, rgba(76, 215, 255, 0.14), transparent 22rem), linear-gradient(135deg, var(--ink-strong), var(--navy));
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--paper);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-decoration: none;
}

.brand-mark:hover {
  color: var(--gold-2);
}

.brand-mark::before {
  width: 0.82rem;
  height: 0.82rem;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 0.42rem rgba(242, 184, 75, 0.16);
}

.brand-line {
  color: rgba(255, 250, 240, 0.72);
  max-width: 48rem;
}

.header-label {
  color: var(--cyan);
}

.header-phone {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--paper);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.header-phone:hover {
  color: var(--gold-2);
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.nav-card {
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.65rem 0.92rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-card:hover,
.nav-card.active {
  color: var(--ink-strong);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.external-card {
  background: rgba(76, 215, 255, 0.12);
}

/* CTA buttons. Kept separate from nav so light-panel CTAs never disappear. */
.action-card {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-strong);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.08);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.76rem 1rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.action-card:hover {
  color: var(--ink-strong);
  background: var(--gold-2);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.primary-action {
  color: white !important;
  border-color: var(--blue) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep)) !important;
}

.primary-action:hover {
  color: var(--ink-strong) !important;
  border-color: var(--gold) !important;
  background: var(--gold) !important;
}

.nav-card:focus-visible,
.action-card:focus-visible,
.contractor-primary:focus-visible,
.contractor-secondary:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.97), rgba(234, 246, 255, 0.93)), radial-gradient(circle at top right, rgba(45, 108, 255, 0.16), transparent 22rem);
  box-shadow: var(--shadow);
}

.hero-section::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  content: "";
  border: 1px solid rgba(45, 108, 255, 0.18);
  border-radius: 999px;
  background: rgba(76, 215, 255, 0.1);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: end;
}

.hero-copy-block,
.hero-proof-panel {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  max-width: 13ch;
  color: var(--ink-strong);
  font-size: clamp(2.5rem, 7vw, 5.95rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 56rem;
  color: var(--navy-2);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  font-weight: 780;
  line-height: 1.18;
}

.hero-actions,
.panel-actions,
.contractor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-proof-panel {
  display: grid;
  gap: 0.72rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--paper);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(18, 56, 90, 0.92), rgba(7, 17, 31, 0.98)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 10px, transparent 10px 20px);
}

.hero-proof-panel .quiet-label {
  color: var(--cyan);
}

.hero-proof-panel strong {
  color: var(--gold-2);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-proof-panel p {
  color: rgba(255, 250, 240, 0.78);
  margin: 0;
}

.offer-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.offer-mini-list span {
  color: var(--paper);
  background: rgba(255, 250, 240, 0.1);
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
}

/* Confidence strip */
.confidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
}

.confidence-strip article {
  padding: 1.15rem;
  border-right: 1px solid var(--line);
}

.confidence-strip article:last-child {
  border-right: 0;
}

.confidence-strip strong,
.confidence-strip span {
  display: block;
}

.confidence-strip strong {
  color: var(--ink-strong);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.confidence-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Panels and cards */
.intro-panel,
.lead-panel,
.note-card,
.warning-panel,
.structure-preview,
.info-card,
.price-card,
.timeline-card,
.gateway-card,
.service-card,
.photo-placeholder {
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
}

.intro-panel,
.lead-panel,
.note-card,
.warning-panel,
.structure-preview {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.info-card,
.price-card,
.timeline-card,
.gateway-card,
.service-card {
  height: 100%;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}

.info-card h2,
.info-card h3,
.price-card h2,
.timeline-card h2,
.structure-preview h2,
.intro-panel h2,
.warning-panel h2,
.lead-panel h2,
.service-card h3 {
  color: var(--ink-strong);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.featured-card {
  position: relative;
  border-color: rgba(45, 108, 255, 0.42);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(230, 242, 255, 0.95));
}

.featured-card::before {
  display: block;
  width: 3.4rem;
  height: 0.38rem;
  margin-bottom: 1rem;
  content: "";
  border-radius: 999px;
  background: var(--blue);
}

.price-line {
  color: var(--blue-deep);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.gateway-card {
  display: grid;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gateway-card strong {
  color: var(--ink-strong);
  font-size: 1.35rem;
  line-height: 1.1;
}

.gateway-card:hover {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(45, 108, 255, 0.36);
  box-shadow: var(--shadow);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.section-heading-row h2 {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card span {
  display: inline-grid;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  place-items: center;
  color: white;
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--mono);
  font-weight: 800;
}

.service-card::after {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  content: "";
  border: 1px solid rgba(45, 108, 255, 0.16);
  border-radius: 999px;
}

/* Lists */
.check-list,
.focus-list,
.pill-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list {
  padding: 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
}

.check-list li,
.focus-list li {
  position: relative;
  margin-bottom: 0.72rem;
  padding-left: 1.55rem;
}

.check-list li::before,
.focus-list li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--success);
  content: "+";
  font-weight: 900;
}

.two-column-list {
  columns: 2;
  column-gap: 2rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1.1rem;
}

.pill-list li {
  color: var(--ink-strong);
  background: rgba(76, 215, 255, 0.16);
  border: 1px solid rgba(45, 108, 255, 0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 750;
  padding: 0.5rem 0.72rem;
}

.mini-stack {
  display: grid;
  gap: 0.65rem;
}

.mini-stack span {
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 750;
  padding: 0.75rem 1rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: 1rem;
}

.timeline-year {
  display: block;
  color: var(--blue-deep);
  font-family: var(--mono);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

/* Forms */
.lead-form {
  display: grid;
  gap: 0.85rem;
}

.lead-form label {
  color: var(--ink-strong);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  color: var(--ink-strong);
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  padding: 0.92rem 1rem;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(45, 108, 255, 0.15);
}

.form-output {
  min-height: 4rem;
  overflow: auto;
  color: rgba(255, 250, 240, 0.86);
  background: var(--ink-strong);
  border-radius: 15px;
  font-size: 0.78rem;
  margin: 0;
  padding: 1rem;
  white-space: pre-wrap;
}

/* Generic demo placeholders */
.visual-demo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.photo-placeholder {
  display: grid;
  min-height: 12rem;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(135deg, rgba(19, 32, 51, 0.08), rgba(45, 108, 255, 0.11)), repeating-linear-gradient(45deg, rgba(19, 32, 51, 0.05) 0 12px, transparent 12px 24px);
  font-family: var(--mono);
  font-weight: 800;
  text-transform: uppercase;
}

.large-photo {
  min-height: 20rem;
}

.demo-note {
  background: rgba(255, 250, 240, 0.96);
}

/* Contractor demo theme */
.contractor-demo-body {
  background: radial-gradient(circle at 5% 0%, rgba(245, 146, 63, 0.18), transparent 30rem), linear-gradient(180deg, #f4efe5 0%, #ece6dc 55%, #f7f1e8 100%);
}

.contractor-showcase {
  overflow: hidden;
  border: 1px solid rgba(45, 39, 32, 0.16);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(250, 244, 234, 0.98), rgba(230, 222, 210, 0.98)), repeating-linear-gradient(45deg, rgba(45, 39, 32, 0.06) 0 12px, transparent 12px 24px);
  box-shadow: 0 30px 80px rgba(45, 39, 32, 0.18);
}

.contractor-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 24rem);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(135deg, rgba(37, 34, 30, 0.96), rgba(15, 18, 20, 0.98)), repeating-linear-gradient(45deg, rgba(245, 146, 63, 0.12) 0 10px, transparent 10px 20px);
}

.contractor-hero-copy {
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 10px);
}

.contractor-kicker {
  color: #f5923f;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.contractor-hero h1 {
  max-width: 11ch;
  color: #fff7ea;
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.contractor-hero p {
  color: rgba(255, 247, 234, 0.82);
  max-width: 42rem;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
}

.contractor-estimate-card {
  display: grid;
  align-content: end;
  gap: 0.6rem;
  min-height: 18rem;
  padding: 1.3rem;
  color: #fff7ea;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 146, 63, 0.18), rgba(0, 0, 0, 0.4)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 8px, transparent 8px 16px);
}

.contractor-estimate-card span {
  color: #f8c17a;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contractor-estimate-card strong {
  color: #fff7ea;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.contractor-primary,
.contractor-secondary {
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.78rem 1.05rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.contractor-primary {
  color: #1f1b16;
  background: #f5923f;
  border: 1px solid #f5923f;
}

.contractor-primary:hover {
  color: #1f1b16;
  background: #ffc46d;
  border-color: #ffc46d;
  transform: translateY(-1px);
}

.contractor-secondary {
  color: #fff7ea;
  background: rgba(255, 247, 234, 0.08);
  border: 1px solid rgba(255, 247, 234, 0.28);
}

.contractor-secondary:hover {
  color: #1f1b16;
  background: #fff7ea;
  border-color: #fff7ea;
  transform: translateY(-1px);
}

.contractor-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(45, 39, 32, 0.12);
  border-bottom: 1px solid rgba(45, 39, 32, 0.12);
  background: #fff7ea;
}

.contractor-trust-row span {
  padding: 1rem;
  border-right: 1px solid rgba(45, 39, 32, 0.12);
  color: #312c25;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contractor-trust-row span:last-child {
  border-right: 0;
}

.contractor-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contractor-photo {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1rem;
  border-radius: 22px;
  color: #fff7ea;
  background: linear-gradient(180deg, rgba(49, 44, 37, 0.1), rgba(49, 44, 37, 0.86)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 10px), #6f675b;
}

.contractor-photo-main {
  min-height: 19rem;
  background: linear-gradient(180deg, rgba(49, 44, 37, 0.08), rgba(49, 44, 37, 0.88)), repeating-linear-gradient(45deg, rgba(245, 146, 63, 0.15) 0 14px, transparent 14px 28px), #857867;
}

.contractor-photo span {
  color: #ffc46d;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contractor-photo b {
  font-size: 1.1rem;
  line-height: 1.15;
}

.contractor-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
}

.contractor-panel,
.contractor-quote-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(45, 39, 32, 0.14);
  border-radius: 28px;
  background: #fff7ea;
  box-shadow: 0 18px 45px rgba(45, 39, 32, 0.12);
}

.contractor-panel h2,
.contractor-quote-panel h2 {
  color: #211d18;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contractor-panel-dark {
  color: #fff7ea;
  background: #25221e;
}

.contractor-panel-dark h2,
.contractor-panel-dark p {
  color: #fff7ea;
}

.contractor-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.contractor-service-list li {
  padding: 0.75rem 0.85rem;
  color: #211d18;
  background: #f2e5d2;
  border: 1px solid rgba(45, 39, 32, 0.12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contractor-quote-panel {
  background: linear-gradient(135deg, #fff7ea, #f1e4d2);
}

.contractor-form .contractor-primary {
  justify-self: start;
}

/* Footer */
.site-footer a {
  color: var(--paper);
}

.site-footer .small-text {
  color: rgba(255, 250, 240, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-split,
  .service-card-grid,
  .timeline-grid,
  .visual-demo-grid,
  .contractor-hero,
  .contractor-content-grid,
  .contractor-photo-grid {
    grid-template-columns: 1fr;
  }
  .confidence-strip,
  .contractor-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .confidence-strip article:nth-child(2),
  .contractor-trust-row span:nth-child(2) {
    border-right: 0;
  }
  .two-column-list {
    columns: 1;
  }
}
@media (max-width: 575px) {
  .site-shell {
    width: 100%;
  }
  .hero-section {
    padding: 1.4rem;
  }
  .hero-section h1,
  .contractor-hero h1 {
    font-size: clamp(2.3rem, 16vw, 4rem);
  }
  .menu-nav,
  .hero-actions,
  .panel-actions,
  .contractor-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .nav-card,
  .action-card,
  .contractor-primary,
  .contractor-secondary {
    width: 100%;
    text-align: center;
  }
  .confidence-strip,
  .contractor-trust-row,
  .contractor-service-list {
    grid-template-columns: 1fr;
  }
  .confidence-strip article,
  .contractor-trust-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
/* Form feedback states
   --------------------
   main.js writes friendly messages near the form. These states keep success and
   error feedback visibly different while staying inside the same C.R.A.P. card
   language used across the site. */
.form-output.is-success {
  border-color: rgba(56, 189, 128, 0.55);
  color: #bbf7d0;
}

.form-output.is-error {
  border-color: rgba(248, 113, 113, 0.65);
  color: #fecaca;
}

/* Contact Setup production additions
   ----------------------------------
   These styles support the finished managed-service positioning, public legal
   pages, and Twilio-compatible consent controls. All authored styling remains
   in SCSS; main.css is generated from this file. */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--ink-strong);
  background: var(--gold);
  border-radius: 999px;
  font-family: var(--mono);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: var(--ink-strong);
  transform: translateY(0);
}

.ownership-panel {
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  background: radial-gradient(circle at top right, rgba(76, 215, 255, 0.14), transparent 22rem), rgba(255, 250, 240, 0.92);
  border-radius: var(--radius);
}

.ownership-grid,
.billing-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.ownership-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.billing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ownership-card {
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.ownership-card h3 {
  margin-bottom: 1rem;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 250, 240, 0.94);
  border-radius: var(--radius-md);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  color: var(--ink-strong);
  font-weight: 800;
  list-style-position: inside;
}

.faq-item[open] summary {
  color: var(--blue-deep);
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 1rem 1.3rem 1.3rem;
}

.notice-banner,
.demo-disclosure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 1.35rem;
  background: rgba(255, 250, 240, 0.94);
  border-radius: var(--radius-md);
}

.notice-banner > p {
  max-width: 50rem;
}

.demo-disclosure {
  color: var(--ink-strong);
  background: var(--gold-2);
}

.demo-disclosure strong {
  white-space: nowrap;
}

.demo-disclosure a {
  font-weight: 800;
  white-space: nowrap;
}

.intake-list-panel {
  padding: 1.5rem;
  background: rgba(255, 250, 240, 0.9);
  border-radius: var(--radius-md);
}

.numbered-process {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.3rem;
}

.numbered-process li {
  padding-left: 0.35rem;
}

/* Form structure and consent controls */
.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.field-optional {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.consent-choice {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.92);
  border-radius: var(--radius-sm);
}

.consent-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lead-form .consent-check-row input[type=checkbox] {
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.12rem;
  accent-color: var(--blue-deep);
}

.lead-form .consent-check-row label {
  margin: 0;
}

.consent-choice p,
.form-privacy-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.legal-callout {
  padding: clamp(1.3rem, 3vw, 2rem);
  background: rgba(255, 250, 240, 0.9);
  border-radius: var(--radius-md);
}

/* Legal pages */
.legal-hero {
  max-width: 62rem;
}

.legal-document {
  padding: clamp(1.4rem, 4vw, 3.2rem);
  background: rgba(255, 250, 240, 0.96);
  border-radius: var(--radius);
}

.legal-document section + section {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.legal-document h3 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.legal-document p,
.legal-document li {
  max-width: 78ch;
}

.legal-document ul {
  display: grid;
  gap: 0.5rem;
}

@media (max-width: 991px) {
  .ownership-grid,
  .billing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .notice-banner,
  .demo-disclosure {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-disclosure strong,
  .demo-disclosure a {
    white-space: normal;
  }
}
@media (max-width: 575px) {
  .form-grid-two {
    grid-template-columns: 1fr;
  }
  .form-submit {
    width: 100%;
  }
  .legal-document {
    padding: 1.15rem;
  }
}
/* Lead-generation call treatments
   -------------------------------
   The phone call is the primary conversion path. These styles repeat the same
   call action in the header, decision sections, and a compact mobile bar. */
.call-nav {
  color: var(--ink-strong);
  background: var(--gold);
  border-color: var(--gold);
}

.call-nav:hover {
  color: var(--ink-strong);
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.header-call-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  color: var(--paper);
  background: rgba(76, 215, 255, 0.1);
  border: 1px solid rgba(76, 215, 255, 0.24);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.header-call-strip span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
}

.header-call-strip strong {
  flex: 0 0 auto;
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.header-call-strip:hover {
  color: var(--paper);
  background: rgba(76, 215, 255, 0.17);
  border-color: rgba(76, 215, 255, 0.4);
}

.call-hook-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3.5vw, 2.5rem);
  color: var(--paper);
  background: radial-gradient(circle at top right, rgba(242, 184, 75, 0.2), transparent 20rem), linear-gradient(135deg, var(--ink-strong), var(--navy-2));
  border-radius: var(--radius);
}

.call-hook-panel .quiet-label {
  color: var(--cyan);
}

.call-hook-panel h2 {
  color: var(--paper);
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}

.call-hook-panel p {
  color: rgba(255, 250, 240, 0.78);
  max-width: 52rem;
}

.call-hook-button {
  min-width: 15rem;
  text-align: center;
}

.call-microcopy {
  color: var(--muted);
  font-size: 0.88rem;
}

.conditional-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.conditional-list li {
  padding: 0.9rem 1rem;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 991px) {
  .header-call-strip,
  .call-hook-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .header-call-strip {
    flex-direction: column;
  }
  .call-hook-button {
    min-width: 0;
  }
}
@media (max-width: 575px) {
  body.main-content {
    padding-bottom: 4.25rem;
  }
  .header-call-strip strong,
  .call-hook-button {
    width: 100%;
  }
  .mobile-call-bar {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 999;
    display: block;
    padding: 0.9rem 1rem;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(7, 17, 31, 0.28);
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
  }
  .mobile-call-bar:hover {
    color: var(--ink-strong);
    background: var(--gold);
  }
}
/* Restored visual language
   ------------------------
   The original rounded geometry is intentional: the brand marker uses a solid
   gold circle with a softer circular halo, while navigation and call actions
   remain clearly rounded rather than appearing as generic square controls. */

/*# sourceMappingURL=main.css.map */
