:root {
  --bg: #0a0f16;
  --bg-soft: #111926;
  --bg-card: rgba(16, 24, 36, 0.84);
  --surface: #f4f6f9;
  --surface-soft: #dae1e9;
  --surface-card: rgba(255, 255, 255, 0.94);
  --text: #edf3fb;
  --text-muted: #9ca8ba;
  --text-dark: #101723;
  --text-soft: #5b6878;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #ff8b2b;
  --accent-deep: #ef6f12;
  --accent-soft: #ffd2ac;
  --accent-alt: #9bd2ff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 20px 42px rgba(12, 20, 31, 0.09);
  --shadow-card: 0 30px 64px rgba(12, 20, 31, 0.12);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 139, 43, 0.18), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(155, 210, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #08111c 0%, #0b1420 24%, #edf2f7 24%, #edf2f7 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
  position: relative;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 860px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 139, 43, 0.2), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(155, 210, 255, 0.14), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(7, 12, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: white;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #111723;
  background: linear-gradient(135deg, #fff1e4 0%, #ffb76f 42%, #ff8b2b 100%);
  box-shadow: 0 22px 44px rgba(255, 139, 43, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-portal {
  color: #f5fbff;
  background: linear-gradient(135deg, #5de2ff 0%, #1d87ff 48%, #0b57d0 100%);
  box-shadow: 0 22px 44px rgba(29, 135, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 28px 54px rgba(255, 139, 43, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.button-portal:hover,
.button-portal:focus-visible {
  box-shadow: 0 28px 54px rgba(29, 135, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.dark-button {
  color: var(--text-dark);
  border-color: rgba(16, 23, 35, 0.12);
  background: rgba(16, 23, 35, 0.04);
}

.dark-button:hover,
.dark-button:focus-visible {
  color: var(--text-dark);
  border-color: rgba(255, 139, 43, 0.34);
  background: rgba(255, 139, 43, 0.1);
}

.nav-cta {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 46px;
  height: 46px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  padding: 88px 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.legal-hero h1 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #fbfdff;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  font-size: 5.6rem;
  text-wrap: balance;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.hero-text,
.section-heading p,
.legal-hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 22px;
  font-size: 1.14rem;
}

.hero-warning {
  max-width: 620px;
  margin: 0 0 32px;
  padding: 14px 16px;
  color: #d9e3ee;
  font-size: 1.01rem;
  line-height: 1.7;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 139, 43, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-warning strong {
  color: white;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-proof div {
  min-width: 176px;
  padding: 18px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-proof strong,
.signal-card strong,
.result-card strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 1.15rem;
}

.hero-proof span,
.signal-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-card,
.offer-card,
.final-cta,
.legal-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(12, 19, 30, 0.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-card {
  padding: 24px;
  max-width: 560px;
  margin-left: auto;
  transform: perspective(1200px) rotateX(2deg);
}

.hero-card::before,
.offer-card::before,
.final-cta::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-card-top,
.hero-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-card-bottom {
  margin-top: 18px;
}

.status-pill,
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
}

.status-pill {
  background: rgba(255, 139, 43, 0.16);
  color: #ffd9ba;
  border: 1px solid rgba(255, 139, 43, 0.22);
}

.meta-chip {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--line);
}

.video-frame {
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 9;
  background: #02060b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 48px rgba(0, 0, 0, 0.24);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-card {
  flex: 1;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar {
  padding: 0 0 56px;
}

.trust-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.trust-row p {
  margin: 0;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.trust-row p strong {
  color: white;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-tags span,
.industry-grid span,
.plan-label {
  padding: 11px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #d7e0eb;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 104px 0;
}

.compact-section {
  padding: 84px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading h2 {
  color: var(--text-dark);
  font-size: 3.55rem;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p {
  color: var(--text-soft);
  margin-top: 18px;
  max-width: 56ch;
}

.service-grid,
.results-grid,
.testimonial-grid,
.why-grid,
.demo-grid {
  display: grid;
  gap: 20px;
}

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

.roofing-solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.result-card,
.testimonial-card,
.why-card,
.demo-card,
.process-step,
.about-panel,
.offer-card,
.final-cta,
.legal-card {
  color: var(--text-dark);
}

.service-card,
.result-card,
.testimonial-card,
.why-card,
.demo-card,
.process-step,
.about-panel {
  padding: 30px;
  border-radius: 8px;
  background: var(--surface-card);
  border: 1px solid rgba(16, 23, 35, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.demo-card:hover,
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 139, 43, 0.18);
}

.service-card h3,
.demo-card h3,
.result-card h3,
.why-card h3,
.process-step h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.service-card p,
.demo-card p,
.result-card p,
.testimonial-card p,
.why-card p,
.process-step p,
.about-point p,
.footer-copy,
.legal-card p,
.legal-card li {
  margin: 0;
  line-height: 1.82;
  color: var(--text-soft);
}

.process-section {
  background: linear-gradient(180deg, #f6f8fb 0%, #eef2f6 100%);
}

.solution-section {
  background: linear-gradient(180deg, #eef3f7 0%, #f8fafc 100%);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 20px;
}

.process-step {
  position: relative;
  padding-left: 88px;
}

.process-step span {
  position: absolute;
  left: 26px;
  top: 24px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent);
}

.demos-section {
  background: linear-gradient(180deg, #f4f7fa 0%, #eef2f6 100%);
}

.demo-grid {
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.roofing-demo-grid {
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  align-items: stretch;
}

.primary-demo-grid {
  grid-template-columns: 1.5fr 0.75fr;
}

.feature-demo {
  grid-column: span 2;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.14), transparent 30%),
    linear-gradient(135deg, #101827 0%, #162235 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 70px rgba(10, 18, 29, 0.24);
}

.demo-preview {
  min-height: 360px;
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.34), transparent 30%),
    radial-gradient(circle at bottom left, rgba(155, 210, 255, 0.4), transparent 28%),
    linear-gradient(135deg, #101826 0%, #1a2737 50%, #0e1521 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: end;
  overflow: hidden;
}

.preview-overlay {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px;
}

.preview-overlay-stack {
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}

.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.light-link {
  color: #ffd7b5;
}

.call-ui {
  padding: 22px;
  border-radius: 8px;
  background: rgba(8, 13, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 36px rgba(0, 0, 0, 0.18);
}

.call-ui-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: #dbe6f1;
  font-size: 0.92rem;
  font-weight: 700;
}

.call-wave {
  height: 78px;
  margin-bottom: 18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg,
      rgba(255, 139, 43, 0.12) 0%,
      rgba(255, 139, 43, 0.48) 10%,
      rgba(155, 210, 255, 0.35) 22%,
      rgba(255, 139, 43, 0.62) 34%,
      rgba(255, 255, 255, 0.18) 46%,
      rgba(255, 139, 43, 0.54) 58%,
      rgba(155, 210, 255, 0.32) 70%,
      rgba(255, 139, 43, 0.42) 82%,
      rgba(255, 139, 43, 0.12) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.call-lines {
  display: grid;
  gap: 12px;
}

.call-lines p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6e0eb;
  line-height: 1.6;
}

.call-lines strong {
  color: white;
}

.featured-media-frame {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(6, 11, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.featured-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #02060b;
}

.chatbot-embed-frame {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #08111c;
  border: 1px solid rgba(16, 23, 35, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.chatbot-embed-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  background: #08111c;
}

.chatbot-demo-card {
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 250, 252, 0.95));
}

.demo-channel-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(255, 139, 43, 0.1);
  border: 1px solid rgba(255, 139, 43, 0.16);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-play-trigger {
  padding: 0;
  min-height: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.chatbot-play-trigger:hover,
.chatbot-play-trigger:focus-visible {
  color: var(--accent-deep);
}

.glow-panel {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 50px rgba(16, 23, 35, 0.18);
}

.demo-copy {
  padding: 22px 8px 4px;
}

.feature-demo .demo-copy h3,
.feature-demo .demo-copy p {
  color: white;
}

.feature-demo .demo-copy p {
  color: #c8d3df;
}

.text-link {
  font-weight: 700;
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.inline-cta {
  margin-top: 20px;
  align-self: flex-start;
}

.demo-stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.94));
}

.missed-call-section {
  background: linear-gradient(180deg, #edf2f7 0%, #f7fafc 100%);
  padding-top: 86px;
}

.missed-call-layout {
  align-items: center;
}

.recovery-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.95));
  border: 1px solid rgba(16, 23, 35, 0.07);
  box-shadow: var(--shadow-card);
}

.sms-thread {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 22px;
  border-radius: 8px;
  background: #101826;
  border: 1px solid rgba(16, 23, 35, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sms-system {
  justify-self: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #b8c5d4;
  font-size: 0.82rem;
  font-weight: 700;
}

.sms-bubble {
  max-width: 82%;
  padding: 13px 15px;
  border-radius: 8px;
  line-height: 1.55;
  font-size: 0.95rem;
}

.sms-bubble.incoming {
  justify-self: start;
  color: #dce6f1;
  background: rgba(255, 255, 255, 0.08);
}

.sms-bubble.outgoing {
  justify-self: end;
  color: #111723;
  background: linear-gradient(135deg, #fff1e4 0%, #ffb76f 48%, #ff8b2b 100%);
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 139, 43, 0.14);
}

.chatbot-showcase-section {
  background: linear-gradient(180deg, #eef3f7 0%, #f6f8fb 100%);
}

.chatbot-showcase-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.chatbot-showcase-copy {
  margin-bottom: 0;
}

.chatbot-demo-standalone {
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.bullet-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.14), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid rgba(16, 23, 35, 0.06);
  box-shadow: 0 26px 58px rgba(16, 23, 35, 0.08);
}

.impact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.impact-list li {
  padding: 22px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 139, 43, 0.12), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(255, 139, 43, 0.18);
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.impact-list strong {
  color: var(--text-dark);
}

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

.result-card strong {
  font-size: 2.4rem;
  color: var(--text-dark);
}

.testimonials-section {
  background: linear-gradient(180deg, rgba(238, 242, 246, 0.5), rgba(255, 255, 255, 0.96));
}

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

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text-dark);
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: #7d8998;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industries-section,
.about-section,
.faq-section {
  background: #eef2f6;
}

.split-panel,
.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

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

.offer-card,
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  color: white;
  overflow: hidden;
}

.offer-card h2,
.final-cta h2 {
  margin: 0 0 10px;
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.offer-card p,
.final-cta p {
  margin: 0;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.82;
}

.offer-section,
.final-cta-section,
.pricing-section {
  background: #edf2f7;
}

.offer-points {
  margin-top: 16px !important;
}

.offer-points strong {
  color: white;
}

.pricing-section {
  padding-top: 58px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--text-dark);
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.95));
  border: 1px solid rgba(16, 23, 35, 0.08);
  box-shadow: var(--shadow-soft);
}

.featured-plan {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.28), transparent 32%),
    linear-gradient(135deg, #101827 0%, #182638 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 0;
  font-size: 2.05rem;
  letter-spacing: 0;
}

.plan-label {
  align-self: flex-start;
  color: var(--accent-deep);
  background: rgba(255, 139, 43, 0.1);
  border-color: rgba(255, 139, 43, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-plan .plan-label {
  color: #ffd9ba;
  background: rgba(255, 139, 43, 0.16);
  border-color: rgba(255, 139, 43, 0.24);
}

.plan-summary {
  margin: -10px 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.featured-plan .plan-summary,
.featured-plan .check-list li {
  color: #c7d2df;
}

.price-block {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 139, 43, 0.1);
  border: 1px solid rgba(255, 139, 43, 0.16);
}

.featured-plan .price-block {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.price-block strong {
  font-size: 2.15rem;
  letter-spacing: 0;
}

.price-block span {
  color: var(--text-soft);
  font-weight: 800;
}

.featured-plan .price-block span {
  color: #ffd9ba;
}

.pricing-card .button {
  margin-top: auto;
}

.risk-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.18), transparent 30%),
    linear-gradient(135deg, #101827 0%, #162235 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(12, 20, 31, 0.18);
}

.risk-row .eyebrow {
  margin-bottom: 12px;
}

.risk-row p {
  margin: 0;
  color: #c8d3df;
  line-height: 1.75;
}

.risk-row strong {
  color: white;
}

.scarcity-note {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-panel {
  display: grid;
  gap: 18px;
}

.about-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 23, 35, 0.08);
  box-shadow: 0 14px 32px rgba(16, 23, 35, 0.06);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 14px;
  color: #556273;
  line-height: 1.8;
}

.final-cta-section {
  padding-top: 28px;
}

.final-cta {
  flex-direction: column;
  align-items: flex-start;
  padding: 46px;
}

.site-footer {
  padding: 44px 0 52px;
  background:
    radial-gradient(circle at top right, rgba(255, 139, 43, 0.08), transparent 24%),
    #07111b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.floating-cta {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 8px;
  color: #111723;
  font-weight: 800;
  background: linear-gradient(135deg, #fff0e1 0%, #ffb36d 45%, #ff8b2b 100%);
  box-shadow: 0 20px 38px rgba(255, 139, 43, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(255, 139, 43, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid h3 {
  margin: 6px 0 14px;
  color: white;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-grid li,
.footer-copy,
.footer-grid a {
  color: var(--text-muted);
}

.footer-grid a {
  transition: color 180ms ease, transform 180ms ease;
}

.demos-section .container,
.compact-section .container,
.process-section .container {
  position: relative;
}

.roofing-solution-grid .service-card {
  min-height: 180px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.96)),
    white;
}

.roofing-solution-grid .service-card h3 {
  max-width: 14ch;
  font-size: 1.22rem;
  line-height: 1.28;
}

.legal-body {
  background:
    radial-gradient(circle at top left, rgba(255, 139, 43, 0.16), transparent 25%),
    linear-gradient(180deg, #08111c 0%, #101826 24%, #eef2f6 24%, #eef2f6 100%);
}

.legal-header {
  position: relative;
}

.legal-main {
  padding-bottom: 54px;
}

.legal-hero {
  padding: 72px 0 28px;
}

.legal-hero h1 {
  font-size: 4rem;
}

.legal-content {
  padding: 24px 0 20px;
}

.legal-card {
  padding: 34px;
}

.legal-card h2 {
  margin: 26px 0 10px;
  color: white;
  font-size: 1.2rem;
}

.legal-card p {
  color: #d5deea;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .service-grid,
  .demo-grid,
  .footer-grid,
  .testimonial-grid,
  .results-grid,
  .split-panel,
  .process-layout,
  .about-layout,
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .primary-demo-grid,
  .chatbot-showcase-layout,
  .pricing-grid,
  .risk-row {
    grid-template-columns: 1fr;
  }

  .feature-demo {
    grid-column: auto;
  }

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

  .hero-card {
    margin-left: 0;
    max-width: none;
    transform: none;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 94px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    background: rgba(9, 15, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 78px;
  }

  .hero-proof,
  .trust-row,
  .offer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .why-grid,
  .footer-grid,
  .testimonial-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .roofing-solution-grid,
  .roofing-demo-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-bottom,
  .preview-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-topline {
    width: 100%;
  }

  .section {
    padding: 86px 0;
  }

  .compact-section {
    padding: 72px 0;
  }

  .floating-cta {
    min-height: 58px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand span {
    font-size: 0.96rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-card,
  .offer-card,
  .final-cta,
  .legal-card,
  .pricing-card,
  .recovery-card,
  .service-card,
  .result-card,
  .testimonial-card,
  .why-card,
  .demo-card,
  .process-step,
  .about-panel {
    padding: 22px;
  }

  .section {
    padding: 74px 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1.02rem;
  }

  .hero-warning {
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .trust-row {
    padding: 20px 20px;
  }

  .demo-preview {
    min-height: 300px;
  }

  .call-ui {
    padding: 16px;
  }

  .call-lines p {
    padding: 12px 14px;
    font-size: 0.94rem;
  }

  .chatbot-embed-frame iframe,
  .featured-demo-video {
    aspect-ratio: 16 / 11;
  }

  .sms-thread {
    padding: 16px;
  }

  .sms-bubble {
    max-width: 92%;
    font-size: 0.9rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 0 18px;
  }
}
