:root {
  --color-navy: #102a43;
  --color-navy-dark: #0b1f33;
  --color-blue: #1d4f91;
  --color-accent: #f59e0b;
  --color-accent-dark: #b86f00;
  --color-white: #ffffff;
  --color-cloud: #f5f7fa;
  --color-grey: #d7dee8;
  --color-text: #243447;
  --color-muted: #4f6379;
  --shadow: 0 20px 48px rgba(16, 42, 67, 0.16);
  --shadow-strong: 0 24px 58px rgba(0, 0, 0, 0.24);
  --surface-warm: #fbfcfe;
  --surface-border: #c5d0dc;
  --radius: 8px;
  --container: 1120px;
  --space-section: clamp(3.5rem, 7vw, 6rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: #eef3f8;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 42, 67, 0.14);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.site-nav {
  display: none;
  position: absolute;
  inset: 72px 1rem auto 1rem;
  padding: 0.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 0.85rem 0.9rem;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: var(--color-cloud);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.08);
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--color-navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
}

.hero-grid,
.split,
.contact-grid,
.featured-project {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-text,
.page-hero p,
.section-heading p,
.split p,
.featured-project p,
.narrow p {
  font-size: 1.08rem;
  color: var(--color-muted);
}

.hero .hero-text {
  max-width: 650px;
  color: #dbe7f3;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--color-navy-dark);
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.22);
}

.button-primary:hover,
.button-primary:focus {
  background: #ffb32c;
}

.button-secondary {
  color: var(--color-navy);
  background: var(--surface-warm);
  border-color: var(--surface-border);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--color-blue);
}

.button-light {
  color: var(--color-navy-dark);
  background: var(--color-white);
  border-color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.trust-strip span {
  padding: 0.55rem 0.75rem;
  color: #eaf1f8;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-panel {
  min-height: 330px;
  display: grid;
  place-items: center;
}

.mock-browser {
  width: min(100%, 460px);
  overflow: hidden;
  color: var(--color-text);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

/* Demo preview card — replaces abstract mock browser on homepage */
.demo-preview-card {
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.demo-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--color-cloud);
  border-bottom: 1px solid var(--color-grey);
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-preview-label {
  color: var(--color-navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-preview-tag {
  color: var(--color-muted);
}

.demo-preview-hero {
  padding: 1.2rem 1rem 1rem;
  background: linear-gradient(135deg, #0e1b35 0%, #18406a 100%);
  color: #fff;
}

.demo-preview-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffd1a0;
  margin-bottom: 0.4rem;
}

.demo-preview-headline {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.demo-preview-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.demo-preview-btn-primary,
.demo-preview-btn-outline {
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-preview-btn-primary {
  background: #d9322e;
  color: #fff;
}

.demo-preview-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.35);
}

.demo-preview-trust {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--color-grey);
}

.demo-preview-trust span {
  flex: 1;
  padding: 0.55rem 0.5rem;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  border-right: 1px solid var(--color-grey);
}

.demo-preview-trust span:last-child {
  border-right: none;
}

.demo-preview-cta {
  display: block;
  width: 100%;
  border-radius: 0;
  text-align: center;
}

.mock-top {
  display: flex;
  gap: 0.45rem;
  padding: 0.9rem;
  background: var(--color-cloud);
  border-bottom: 1px solid var(--color-grey);
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-grey);
}

.mock-content {
  padding: 1.2rem;
}

.mock-call {
  margin-bottom: 1rem;
  padding: 0.6rem 0.8rem;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 6px;
  font-weight: 800;
}

.mock-heading,
.mock-line,
.mock-form span,
.mock-trust span {
  border-radius: 6px;
}

.mock-heading {
  width: 78%;
  height: 44px;
  background: var(--color-navy);
}

.mock-line {
  width: 62%;
  height: 12px;
  margin-top: 0.8rem;
  background: var(--color-grey);
}

.mock-line.wide {
  width: 90%;
}

.mock-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--color-cloud);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
}

.mock-form span {
  height: 34px;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
}

.mock-form .mock-button {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.mock-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.mock-trust span {
  padding: 0.35rem 0.55rem;
  background: #eaf1f8;
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: var(--space-section) 0;
  background: var(--color-white);
}

.section-muted {
  background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  color: var(--color-white);
}

.page-hero {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.98), rgba(16, 42, 67, 0.96)),
    linear-gradient(135deg, rgba(245, 158, 11, 0.18), transparent 48%);
}

.section-muted h1,
.section-muted h2,
.section-muted h3,
.page-hero h1 {
  color: var(--color-white);
}

.section-muted .eyebrow,
.page-hero .eyebrow {
  color: #f7b84b;
}

.section-muted p,
.section-muted .section-heading p,
.section-muted .split p,
.page-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.section-muted .card p,
.section-muted .price-card p,
.section-muted .check-list li,
.section-muted .placeholder-card p {
  color: var(--color-text);
}

.section-muted .button-secondary {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.section-muted .button-secondary:hover,
.section-muted .button-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.78);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

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

.section-heading p {
  color: #4b6077;
}

.section-muted .section-heading p,
.demo-examples-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  color: var(--color-navy-dark);
  line-height: 1.12;
}

.hero h1 {
  color: var(--color-white);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.card-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.card,
.placeholder-card,
.price-card,
.contact-form,
.contact-aside {
  padding: 1.35rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.11);
}

.card h3,
.placeholder-card h3,
.price-card h2,
.contact-form h2,
.contact-aside h2 {
  color: var(--color-navy-dark);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--color-navy-dark);
  background: #fff3d8;
  border-radius: var(--radius);
  font-weight: 900;
}

.placeholder-visual {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.32), transparent 26%),
    linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.placeholder-visual.tall {
  min-height: 330px;
}

.featured-project {
  align-items: center;
  padding: 1.2rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.work-browser {
  background: var(--color-white);
}

.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem;
  background: var(--color-cloud);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
}

.work-tab {
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  color: var(--color-navy);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.work-tab:hover,
.work-tab:focus {
  background: var(--color-white);
}

.work-tab:focus {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 2px;
}

.work-tab.is-active {
  color: var(--color-navy-dark);
  background: var(--color-white);
  border-color: var(--color-grey);
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.08);
}

.work-panel {
  padding-top: 0.5rem;
}

.carousel-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.carousel-heading p {
  margin: 0;
  color: var(--color-muted);
}

.project-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  padding: 0.25rem 0;
}

@media (max-width: 639px) {
  .project-carousel {
    grid-auto-flow: column;
    grid-template-columns: unset;
    grid-auto-columns: minmax(280px, 86%);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 0.25rem;
    padding: 0.25rem 0.25rem 1rem;
  }
}

.project-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.project-card p:not(.project-label) {
  color: var(--color-muted);
}

.project-card .button-row {
  margin-top: auto;
  padding-top: 1rem;
}

.project-card.is-placeholder {
  box-shadow: none;
}

.secondary-work {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-grey);
}

.project-label,
.badge {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: var(--color-accent-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.price {
  margin: 0.4rem 0 1rem;
  color: var(--color-navy);
  font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1;
  font-weight: 900;
}

.price-card.highlight {
  border-color: var(--color-accent);
  box-shadow: 0 22px 56px rgba(16, 42, 67, 0.2);
}

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

.check-list li {
  padding: 0.8rem 1rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(16, 42, 67, 0.08);
}

.check-list li::before {
  content: "✓";
  margin-right: 0.65rem;
  color: var(--color-accent-dark);
  font-weight: 900;
}

.scope-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--color-muted);
}

.scope-list li {
  padding-left: 0.1rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.1);
}

.timeline span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--color-navy-dark);
  background: #fff3d8;
  border-radius: var(--radius);
  font-weight: 900;
}

.timeline h2 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.timeline p,
.card p,
.placeholder-card p,
.price-card p,
.contact-aside p {
  margin: 0;
  color: var(--color-muted);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-intro {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--color-navy-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus,
.button:focus,
.nav-toggle:focus {
  outline: 3px solid rgba(245, 158, 11, 0.45);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.form-note,
.small {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.text-link {
  color: var(--color-blue);
  font-weight: 800;
}

.spark-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 31, 45, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spark-header-inner {
  min-height: 74px;
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.spark-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.7rem;
  color: var(--color-white);
  text-decoration: none;
}

.spark-mark {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #0d1f2d;
  background: #ffd23f;
  border-radius: 4px 14px 4px 14px;
  font-weight: 950;
}

.spark-brand strong,
.spark-brand small {
  display: block;
}

.spark-brand small {
  color: #b9c7d2;
  font-size: 0.85rem;
}

.spark-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}

.spark-nav a {
  color: #e8f0f6;
  font-weight: 800;
  text-decoration: none;
}

.spark-phone {
  justify-self: start;
}

.spark-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    linear-gradient(120deg, rgba(255, 210, 63, 0.14), transparent 35%),
    linear-gradient(135deg, #0d1f2d 0%, #15384f 52%, #f4f7f9 52%, #ffffff 100%);
}

.spark-hero h1 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.spark-demo .spark-hero .eyebrow {
  color: #ffd23f;
}

.spark-demo .hero-text {
  color: #dce8ef;
}

.spark-button {
  color: #0d1f2d;
  background: #ffd23f;
  border-color: #ffd23f;
}

.spark-button:hover,
.spark-button:focus {
  background: #ffe27a;
  border-color: #ffe27a;
}

.spark-button-outline {
  color: #0d1f2d;
  background: var(--color-white);
  border-color: #9eb2c1;
}

.spark-hero .spark-button-outline {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.spark-button-light {
  color: #0d1f2d;
  background: var(--color-white);
  border-color: var(--color-white);
}

.spark-quote-card {
  border: 0;
  border-top: 6px solid #ffd23f;
  box-shadow: 0 24px 55px rgba(13, 31, 45, 0.22);
}

.spark-quote-card h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.spark-urgent {
  padding: 1rem 0;
  color: #0d1f2d;
  background: #ffd23f;
  font-weight: 850;
}

.spark-urgent a {
  color: #0d1f2d;
}

.trust-strip {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  background: #0d1f2d;
  border: 1px solid #22455f;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(13, 31, 45, 0.16);
}

.trust-strip span {
  color: var(--color-white);
  font-weight: 850;
}

.trust-strip span::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.55rem;
  background: #ffd23f;
  border-radius: 50%;
}

.spark-services,
.spark-area-band {
  background: #f2f5f7;
}

.spark-service-card {
  position: relative;
  overflow: hidden;
  border-color: #c7d2dc;
}

.spark-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #ffd23f;
}

.spark-service-card h3 {
  color: #0d1f2d;
}

.review-card {
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
}

.review-card blockquote {
  margin: 0;
  color: var(--color-text);
}

.review-card footer {
  margin-top: 1rem;
  color: var(--color-muted);
  font-weight: 800;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  padding: 0.6rem 0.8rem;
  background: var(--color-white);
  border: 1px solid #c7d2dc;
  border-radius: var(--radius);
  font-weight: 800;
}

.spark-final-cta,
.spark-footer {
  color: var(--color-white);
  background: #0d1f2d;
}

.spark-final-cta h2 {
  color: var(--color-white);
}

.cta-section {
  color: var(--color-white);
  background: var(--color-navy);
}

.cta-box {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-box h2 {
  color: var(--color-white);
}

.site-footer {
  padding: 2rem 0;
  color: #dbe7f3;
  background: var(--color-navy-dark);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.footer-nav a,
.site-footer a {
  color: #f7fbff;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus,
.site-footer a:hover,
.site-footer a:focus {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.5rem 0.7rem;
  }

  .hero-grid,
  .split,
  .featured-project,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

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

  .carousel-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    align-items: start;
  }

  .spark-header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .spark-nav {
    justify-content: center;
  }

  .spark-phone {
    justify-self: end;
  }

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

@media (min-width: 980px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
  }

}

.scope-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.9;
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.fit-tags span {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--color-cloud);
  border: 1px solid var(--color-grey);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
}

/* ── Header phone link ── */
.header-phone {
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-navy-dark);
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.48);
  border-radius: 999px;
  padding: 0.46rem 0.72rem;
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.08);
}

.header-phone:hover,
.header-phone:focus {
  color: var(--color-navy-dark);
  background: var(--color-accent);
  border-color: var(--color-accent-dark);
  text-decoration: none;
}

@media (min-width: 520px) {
  .header-phone {
    display: inline-flex;
  }
}

/* ── Button variants ── */
.button-outline-light {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline-light:hover,
.button-outline-light:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-outline-cta {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline-cta:hover,
.button-outline-cta:focus {
  background: rgba(255, 255, 255, 0.12);
}

/* ── Trust stats bar ── */
.trust-stats-bar {
  background: #0f263d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-stat-number {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.trust-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

/* ── Problem / Solution ── */
.problem-block,
.solution-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
  color: var(--color-muted);
}

.problem-list li {
  font-size: 1.05rem;
}

.solution-block p {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* ── Case study result snippet ── */
.result-snippet {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 760px) {
  .result-snippet {
    grid-template-columns: 1fr 1fr;
  }
}

.result-metrics {
  display: grid;
  gap: 1.25rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.1);
}

.metric-number {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-navy-dark);
  line-height: 1;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--color-muted);
  font-weight: 700;
}

/* ── Pricing: included / not-included lists ── */
.included-list,
.not-included-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

.included-list li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 900;
}

.not-included-list li::before {
  content: "✗ ";
  color: var(--color-muted);
  font-weight: 900;
}

.not-included-list li {
  color: var(--color-muted);
}

.price-card-divider {
  width: 100%;
  height: 1px;
  background: var(--color-grey);
  margin: 1rem 0;
}

.not-included-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

/* ── Urgency banner ── */
.urgency-banner {
  padding: 0.9rem 1.2rem;
  background: var(--color-navy-dark);
  border: 1px solid rgba(245, 158, 11, 0.72);
  border-radius: var(--radius);
  color: var(--color-white);
  font-weight: 800;
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.18);
}

.urgency-banner a {
  color: #f7b84b;
  font-weight: 900;
}

/* ── Calendly placeholder button ── */
.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--surface-warm);
  border: 2px solid var(--surface-border);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-navy);
  text-decoration: none;
  cursor: pointer;
}

.calendly-btn:hover,
.calendly-btn:focus {
  border-color: var(--color-blue);
}

/* ── Contact page big phone ── */
.contact-phone-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-phone-big {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--color-navy-dark);
  text-decoration: none;
  line-height: 1;
}

.contact-phone-big:hover {
  color: var(--color-blue);
}

.contact-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-or::before,
.contact-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-grey);
}

.contact-email-link {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  text-decoration: none;
}

.contact-email-link:hover {
  text-decoration: underline;
}

.contact-response-note {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: #fff3d8;
  border: 1px solid rgba(245, 158, 11, 0.48);
  border-radius: var(--radius);
  color: var(--color-navy-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-quote {
  padding: 1rem 1.2rem;
  background: var(--color-cloud);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}

.contact-quote blockquote {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.contact-quote cite {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 800;
  font-style: normal;
}

/* ── Process: week timeline ── */
.week-timeline {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.week-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.25rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.12);
}

.week-badge {
  width: 52px;
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff3d8;
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-navy-dark);
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem 0.25rem;
}

.week-badge strong {
  font-size: 1.1rem;
  display: block;
}

.week-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.week-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.week-input-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.7rem;
  background: #fff3d8;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-navy-dark);
}

/* ── Work page case study cards ── */
.case-study-card {
  padding: 1.5rem;
  background: var(--surface-warm);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 42, 67, 0.16);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cs-badge {
  padding: 0.3rem 0.75rem;
  background: var(--color-navy);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-white);
}

.cs-section-label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent-dark);
  margin: 0 0 0.35rem;
}

.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.cs-metric {
  padding: 0.75rem 1rem;
  background: #eef4fb;
  border: 1px solid #cbd8e6;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}

.cs-metric-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-navy-dark);
  line-height: 1;
}

.cs-metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 700;
  margin-top: 0.2rem;
}

.cs-testimonial {
  padding: 1rem 1.2rem;
  background: #eef4fb;
  border: 1px solid #cbd8e6;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
}

.cs-testimonial blockquote {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
}

.cs-testimonial cite {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 800;
  font-style: normal;
}

.cs-how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.cs-how-list li {
  font-size: 0.92rem;
  color: var(--color-text);
}

.cs-how-list li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 900;
}

.case-study-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 760px) {
  .case-study-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── HERO PHONE NOTE ─────────────────────────────────────────── */
.hero-phone-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* ── DEMO EXAMPLES SECTION ───────────────────────────────────── */
.demo-examples-section {
  background: linear-gradient(180deg, #0b1f33 0%, #102a43 100%);
  color: var(--color-white);
}

.demo-examples-section .section-heading {
  text-align: center;
  margin-inline: auto;
}

.demo-examples-section .eyebrow {
  color: #f7b84b;
}

.demo-examples-section h2 {
  color: var(--color-white);
}

.demo-examples-section .demo-examples-intro {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
}

.demo-examples-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .demo-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 900px) {
  .demo-examples-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.demo-example-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0.9rem;
  background: #fbfcfe;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  padding: 1rem;
  text-decoration: none;
  color: var(--color-navy-dark);
  box-shadow: 0 20px 46px rgba(0,0,0,0.28);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.demo-example-card *,
.demo-example-card:hover *,
.demo-example-card:focus * {
  text-decoration: none;
}

.demo-example-card:focus-visible {
  outline: 3px solid rgba(245,158,11,0.42);
  outline-offset: 4px;
}

.demo-example-card:hover {
  border-color: rgba(245,158,11,0.62);
  box-shadow: 0 24px 56px rgba(0,0,0,0.34);
  transform: translateY(-2px);
}

.demo-example-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.demo-example-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--color-navy);
  color: #fff;
  padding: 0.25em 0.65em;
  border-radius: 4px;
}

.demo-example-location {
  font-size: 0.78rem;
  font-weight: 800;
  color: #3d5168;
}

.demo-thumbnail {
  --thumb-accent: var(--color-accent);
  --thumb-panel: #f8fbff;
  --thumb-ink: #0b1f33;
  --thumb-soft: #dbe7f3;
  position: relative;
  min-height: 205px;
  overflow: hidden;
  isolation: isolate;
  color: var(--thumb-ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(245, 158, 11, 0.28), transparent 21%),
    linear-gradient(145deg, #071827 0%, #102a43 58%, #173b5f 100%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 6px;
  padding: 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.demo-thumbnail::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% 38%;
  height: 72%;
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(245,158,11,0.12));
  transform: rotate(-9deg);
  z-index: -1;
}

.thumb-browser {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--thumb-panel);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 6px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

.thumb-bar {
  display: flex;
  align-items: center;
  gap: 0.24rem;
  height: 22px;
  padding-inline: 0.55rem;
  background: #e8eef5;
  border-bottom: 1px solid #d3dde8;
}

.thumb-bar span {
  width: 6px;
  height: 6px;
  background: #b7c4d1;
  border-radius: 999px;
}

.thumb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(76px, 0.8fr);
  align-items: stretch;
  min-height: 168px;
}

.thumb-copy {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.82rem 0.75rem 0.8rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(239,245,251,0.88)),
    linear-gradient(135deg, rgba(245,158,11,0.16), transparent 42%);
}

.thumb-kicker {
  color: #496075;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
}

.thumb-copy strong {
  max-width: 10ch;
  color: var(--thumb-ink);
  font-size: 1.16rem;
  line-height: 1.02;
}

.thumb-actions,
.thumb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.thumb-cta,
.thumb-link,
.thumb-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 4px;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
}

.thumb-cta {
  padding: 0.32rem 0.46rem;
  color: var(--color-navy-dark);
  background: var(--thumb-accent);
  box-shadow: 0 8px 16px rgba(245,158,11,0.22);
}

.thumb-link {
  padding: 0.29rem 0.43rem;
  color: var(--thumb-ink);
  background: #fff;
  border: 1px solid #cbd7e2;
}

.thumb-pill {
  padding: 0.24rem 0.36rem;
  color: #41566b;
  background: #ecf2f8;
  border: 1px solid #d4dee8;
}

.thumb-art {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16,42,67,0.04), rgba(16,42,67,0.1)),
    #dce8f2;
}

.thumb-art span {
  position: absolute;
  display: block;
}

.thumb-ground {
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, #bfcfdd, #aebfce);
}

.thumb-house {
  left: 14%;
  bottom: 27%;
  width: 58%;
  height: 38%;
  background: #fff;
  border: 2px solid #cad6e1;
  border-radius: 5px 5px 3px 3px;
  box-shadow: 0 10px 18px rgba(16,42,67,0.12);
}

.thumb-house::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -38%;
  height: 48%;
  background: var(--thumb-ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.thumb-van {
  right: 5%;
  bottom: 15%;
  width: 39%;
  height: 21%;
  background: #fff;
  border: 2px solid #cad6e1;
  border-radius: 12px 5px 5px 5px;
  box-shadow: 0 9px 18px rgba(16,42,67,0.16);
}

.thumb-van::before,
.thumb-van::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: #172f48;
  border: 3px solid #fff;
  border-radius: 50%;
}

.thumb-van::before {
  left: 12%;
}

.thumb-van::after {
  right: 12%;
}

.thumb-line {
  background: var(--thumb-accent);
  border-radius: 999px;
}

.thumb-leak {
  left: 6%;
  bottom: 12%;
  width: 9px;
  height: 31px;
  background: #2e7dbd;
  border-radius: 999px 999px 7px 7px;
  box-shadow: 0 0 0 5px rgba(46,125,189,0.14);
}

.thumb-panelbox {
  left: 11%;
  bottom: 18%;
  width: 39%;
  height: 58%;
  background: #f7fbff;
  border: 2px solid #b9c9d9;
  border-radius: 6px;
  box-shadow: 0 12px 22px rgba(16,42,67,0.14);
}

.thumb-panelbox::before {
  content: "";
  position: absolute;
  inset: 12% 16% auto;
  height: 8px;
  background: var(--thumb-accent);
  border-radius: 999px;
  box-shadow: 0 18px 0 #cbd8e4, 0 36px 0 #cbd8e4;
}

.thumb-bolt {
  right: 12%;
  top: 18%;
  width: 36%;
  height: 46%;
  background: var(--thumb-accent);
  clip-path: polygon(43% 0, 78% 0, 59% 37%, 86% 37%, 31% 100%, 44% 52%, 18% 52%);
  filter: drop-shadow(0 10px 12px rgba(245,158,11,0.24));
}

.thumb-wire {
  right: 6%;
  bottom: 26%;
  width: 43%;
  height: 32%;
  border: 5px solid #173b5f;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 34px 0 0;
}

.thumb-roof {
  left: 7%;
  bottom: 31%;
  width: 76%;
  height: 36%;
  background: #f7fbff;
  border: 2px solid #c6d2de;
  border-radius: 5px;
  transform: skewY(-8deg);
  box-shadow: 0 14px 22px rgba(16,42,67,0.16);
}

.thumb-roof::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: -30%;
  height: 48%;
  background: var(--thumb-ink);
  clip-path: polygon(0 100%, 48% 0, 100% 100%);
}

.thumb-ladder {
  right: 14%;
  bottom: 14%;
  width: 9px;
  height: 70%;
  background: repeating-linear-gradient(180deg, var(--thumb-accent) 0 5px, transparent 5px 13px);
  border-left: 3px solid var(--thumb-accent);
  border-right: 3px solid var(--thumb-accent);
  transform: rotate(15deg);
}

.thumb-check {
  right: 7%;
  top: 15%;
  width: 28px;
  height: 28px;
  background: var(--thumb-accent);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(245,158,11,0.24);
}

.thumb-check::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 11px;
  height: 7px;
  border-left: 3px solid #0b1f33;
  border-bottom: 3px solid #0b1f33;
  transform: rotate(-45deg);
}

.thumb-cake {
  left: 16%;
  bottom: 20%;
  width: 58%;
  height: 44%;
  background: #fff8f2;
  border: 2px solid #efd7c6;
  border-radius: 10px 10px 6px 6px;
  box-shadow: 0 14px 22px rgba(16,42,67,0.13);
}

.thumb-cake::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: -30%;
  height: 40%;
  background: #fff;
  border: 2px solid #efd7c6;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.thumb-flower {
  right: 12%;
  top: 22%;
  width: 22px;
  height: 22px;
  background: var(--thumb-accent);
  border-radius: 50%;
  box-shadow: -13px 6px 0 #f4c4a7, 10px 13px 0 #f4c4a7;
}

.thumb-box {
  left: 10%;
  bottom: 18%;
  width: 42%;
  height: 42%;
  background: #fff;
  border: 2px solid #cdd9e3;
  border-radius: 6px;
  box-shadow: 0 12px 20px rgba(16,42,67,0.13);
}

.thumb-box::before {
  content: "";
  position: absolute;
  inset: 22% 12%;
  background: repeating-linear-gradient(90deg, #f1b142 0 9px, #e8eef5 9px 15px);
  border-radius: 4px;
}

.thumb-tray {
  right: 7%;
  bottom: 21%;
  width: 47%;
  height: 26%;
  background: #102a43;
  border: 3px solid #fff;
  border-radius: 45% 45% 10px 10px;
  box-shadow: 0 12px 19px rgba(16,42,67,0.16);
}

.thumb-tray::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: -12px;
  height: 16px;
  background: radial-gradient(circle, var(--thumb-accent) 0 45%, transparent 47%) 0 0 / 16px 16px;
}

.thumb-shirt {
  left: 15%;
  bottom: 18%;
  width: 54%;
  height: 56%;
  background: #111;
  border: 2px solid #fff;
  clip-path: polygon(26% 0, 40% 12%, 60% 12%, 74% 0, 100% 23%, 84% 45%, 75% 36%, 75% 100%, 25% 100%, 25% 36%, 16% 45%, 0 23%);
  box-shadow: 0 15px 24px rgba(16,42,67,0.24);
}

.thumb-shirt::before {
  content: "";
  position: absolute;
  left: 37%;
  top: 27%;
  width: 28%;
  height: 34%;
  background: var(--thumb-accent);
  border-radius: 4px;
}

.thumb-countdown {
  right: 8%;
  top: 22%;
  width: 39%;
  height: 20%;
  background: #fff;
  border: 2px solid #d4dee8;
  border-radius: 6px;
  box-shadow: 0 10px 18px rgba(16,42,67,0.13);
}

.thumb-countdown::before {
  content: "07:12";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #0b1f33;
  font-size: 0.62rem;
  font-weight: 900;
}

.demo-thumb-plumbing .thumb-line:nth-of-type(5) {
  left: 15%;
  bottom: 26%;
  width: 52%;
  height: 8px;
}

.demo-thumb-electrical {
  --thumb-accent: #f7b84b;
}

.demo-thumb-roofing {
  --thumb-accent: #f59e0b;
}

.demo-thumb-sweetcrumb {
  --thumb-accent: #f3a75b;
}

.demo-thumb-sweetcrumb .thumb-art {
  background: linear-gradient(180deg, #f3e7dd, #dbe8f2);
}

.demo-thumb-island {
  --thumb-accent: #f3b33d;
}

.demo-thumb-island .thumb-art {
  background: linear-gradient(180deg, #dfeee8, #cfdce8);
}

.demo-thumb-brand {
  --thumb-accent: #f59e0b;
}

.demo-thumb-brand .thumb-art {
  background: linear-gradient(160deg, #ece7dc 0 50%, #0b1f33 51% 100%);
}

.case-study-card .demo-thumbnail,
.project-card .demo-thumbnail {
  margin-bottom: 1rem;
}

.case-hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.case-hero-grid .demo-thumbnail {
  min-height: 260px;
  box-shadow: 0 22px 54px rgba(16,42,67,0.22);
}

@media (min-width: 840px) {
  .case-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  }
}

@media (max-width: 520px) {
  .demo-thumbnail {
    min-height: 188px;
    padding: 0.62rem;
  }

  .thumb-layout {
    grid-template-columns: 1fr 0.82fr;
    min-height: 151px;
  }

  .thumb-copy {
    padding: 0.68rem 0.58rem;
  }

  .thumb-copy strong {
    font-size: 0.98rem;
  }
}

.demo-example-description {
  margin: 0;
  color: #33465c;
  font-size: 0.92rem;
  line-height: 1.55;
}

.demo-example-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.demo-example-trust span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #34485f;
  background: var(--color-cloud);
  border: 1px solid #d2dbe6;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}

.demo-example-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  background: var(--color-accent);
  border: 1px solid var(--color-accent-dark);
  border-radius: 6px;
  padding: 0.72rem 0.95rem;
  margin-top: auto;
  box-shadow: 0 10px 22px rgba(245,158,11,0.22);
}

.demo-example-card:hover .demo-example-link,
.demo-example-card:focus .demo-example-link {
  background: #ffae1a;
}

.demo-notice-section {
  padding: 1.25rem 0 0;
  background: var(--color-white);
}

.demo-notice {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--color-navy-dark);
  background: #fff3d8;
  border: 1px solid rgba(245, 158, 11, 0.42);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.55;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.08);
}

.narrow .demo-notice {
  color: var(--color-navy-dark);
}

/* ── FOUNDER SECTION ─────────────────────────────────────────── */
.founder-section {
  background: linear-gradient(180deg, #0d243a 0%, #102a43 100%);
  color: var(--color-white);
}

.founder-section h2 {
  color: var(--color-white);
}

.founder-section .eyebrow {
  color: #f7b84b;
}

.founder-section p {
  color: rgba(255, 255, 255, 0.78);
}

.founder-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 760px) {
  .founder-layout {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.founder-photo-col {
  display: flex;
  justify-content: center;
}

.founder-photo {
  width: 100%;
  max-width: 245px;
  height: 270px;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 42, 67, 0.12);
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.14);
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.founder-bio-col .eyebrow {
  margin-bottom: 0.45rem;
}

.founder-bio-col h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.6rem, 7vw, 1.85rem);
}

.founder-bio-col p {
  margin: 0 0 0.85rem;
}

.founder-approach {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-approach li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.86);
}

.founder-approach li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 900;
}

@media (min-width: 760px) {
  .founder-photo {
    max-width: 280px;
    height: 340px;
  }

  .founder-bio-col .eyebrow {
    margin-bottom: 0.8rem;
  }

  .founder-bio-col h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
  }
}

/* ── FAQ SECTION ─────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-grey);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-grey);
  background: #fff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-navy-dark);
  cursor: pointer;
  list-style: none;
  line-height: 1.35;
}

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

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-muted);
  flex-shrink: 0;
  transition: transform 0.18s;
}

details[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.faq-answer a {
  color: var(--color-blue);
  font-weight: 700;
}
