* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --excel-green: #217346;
  --excel-green-soft: #2ca01c;
  --fs-display: 6.3rem;
  --fs-display-mobile: 3.2rem;
  --fs-h2: 2.2rem;
  --fs-h2-mobile: 1.6rem;
  --fs-h3: 1.2rem;
  --fs-h3-lg: 1.3rem;
  --fs-h3-sm: 1.1rem;
  --fs-h3-xl: 1.4rem;
  --fs-h4: 0.95rem;
  --fs-case-challenge: 1.35rem;
  --fs-case-result: 1.55rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.95rem;
  --fs-caption: 0.9rem;
  --fs-caption-strong: 0.95rem;
  --fs-micro: 0.75rem;
  --fs-ui: 1.05rem;
  --fs-ui-sm: 0.85rem;
  --fs-ui-mobile: 0.82rem;
  --fs-metric: 2.5rem;
  --fs-result: 1.8rem;

  --lh-tight: 1.2;
  --lh-body: 1.7;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  --border-subtle: 0.5px solid #e0e0e0;
  --border-subtle-alt: 0.5px solid #d0d0d0;
  --border-divider: 1px solid #e0e0e0;
  --border-nav-sep: 1px solid rgba(242, 242, 242, 0.45);
  --border-transparent: 1px solid transparent;

  --space-1: 0.5rem;
  --space-0-5: 0.25rem;
  --space-1-25: 0.6rem;
  --space-1-5: 0.625rem;
  --space-2: 0.75rem;
  --space-2-5: 0.8rem;
  --space-2-25: 2.25rem;
  --space-2-8125: 2.8125rem;
  --space-3: 1rem;
  --space-3-2: 3.2rem;
  --space-3-5: 1.25rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-5-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-9: 4.5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

.brand-xl { color: #D85A30; }

.hero-brand .brand-xl {
  background-image:
    radial-gradient(circle at 0% 0%, #D85A30 0%, #D85A30 62%, transparent 68%),
    linear-gradient(var(--excel-green), var(--excel-green));
  background-repeat: no-repeat;
  background-size: 0% 0%, 100% 100%;
  background-position: 0 0, 0 0;
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: xl-corner-fill 22s linear 4 forwards;
}

@keyframes xl-corner-fill {
  0%,
  20% {
    background-size: 0% 0%, 100% 100%;
    filter: brightness(1);
  }
  56%,
  74% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(1);
  }
  76% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(1.5);
  }
  78% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(0.68);
  }
  80% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(1.46);
  }
  82% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(0.72);
  }
  86%,
  100% {
    background-size: 240% 240%, 100% 100%;
    filter: brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand .brand-xl {
    animation: none;
    background-image: none;
    color: #D85A30;
  }
}
.container { max-width: 900px; margin: 0 auto; padding: 0 var(--space-5); }

/* Wisselende achtergrond per hoofdblok */
body > div:nth-of-type(odd) { background: #f5f5f5; }
body > div:nth-of-type(even) { background: #ffffff; }

/* Hero */
.hero-brand-block {
  background: #111111;
  padding: var(--space-2-8125) var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
}

#blok-brand {
  background: #111111;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-9) var(--space-5) var(--space-8);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.38) 44%, rgba(255, 255, 255, 0.74) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-visual img {
  width: min(2400px, 185vw);
  max-width: none;
  height: auto;
  transform: translateY(1%);
  opacity: 0.96;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .container::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--space-3));
  right: calc(-1 * var(--space-1));
  bottom: calc(-1 * var(--space-3));
  left: calc(-1 * var(--space-1));
  z-index: -1;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.34) 100%);
}
.hero-brand { font-size: var(--fs-display); letter-spacing: 0.4px; color: #ffffff; font-weight: 600; line-height: 1.05; display: inline-block; }

.brand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1-25) 0;
}

.brand-nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: var(--fs-caption);
  letter-spacing: 0.2px;
  padding-right: var(--space-2-5);
  margin-right: var(--space-2-5);
  border-right: var(--border-nav-sep);
  border-bottom: var(--border-transparent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.brand-nav a:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.brand-nav a:hover {
  color: #ffffff;
  border-bottom-color: #D85A30;
}
.hero .hero-title { font-size: var(--fs-h2); font-weight: 500; line-height: var(--lh-tight); margin-bottom: var(--space-3-5); }
.hero-content { max-width: 900px; margin: 0 auto; text-align: left; }
.hero p { font-size: var(--fs-body); color: #666666; margin-bottom: var(--space-4); line-height: var(--lh-body); }
.hero p strong { color: #666666; font-weight: 400; }
.hero p:last-of-type { color: #666666; margin-top: var(--space-5); margin-bottom: 0; padding-top: 0; border-top: none; }

.playful-contact-row {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.playful-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  border: 1px solid rgba(216, 90, 48, 0.4);
  background: rgba(255, 255, 255, 0.96);
  color: #1a1a1a;
  text-decoration: none;
  font-size: var(--fs-caption);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.playful-contact-chip:hover {
  transform: translateY(-1px);
  border-color: #D85A30;
  box-shadow: 0 8px 18px rgba(216, 90, 48, 0.2);
}

/* 10 Advantages */
.advantages { background: #ffffff; padding: var(--space-8) 0; }
.advantages h2 { font-size: var(--fs-h2); font-weight: 500; margin-bottom: var(--space-4); text-align: center; }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-5); margin-top: var(--space-5); }
.advantage-item {
  padding: var(--space-4);
  background: #ffffff;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  display: grid;
  grid-template-columns: 2rem 1fr;
  column-gap: var(--space-2);
  row-gap: var(--space-1);
  align-items: center;
}
.advantage-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #D85A30;
  margin-bottom: 0;
  line-height: 1;
}
.advantage-title {
  font-weight: 500;
  font-size: var(--fs-ui);
  margin-bottom: 0;
  line-height: 1.35;
}
.advantage-desc {
  grid-column: 1 / -1;
  font-size: var(--fs-caption);
  color: #666666;
  line-height: 1.6;
}

/* Consistente hover-interactie op kaartachtige blokken */
.advantage-item,
.pillar,
.process-card,
.workflow-card,
.case-content,
.case-contact-tease,
.case-tab,
.about-photo,
.about-text-card,
.contact-nudge-banner,
.contact-pulse,
.simple-contact-form {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.advantage-item:hover,
.pillar:hover,
.process-card:hover,
.workflow-card:hover,
.case-content:hover,
.case-contact-tease:hover,
.case-tab:hover,
.about-photo:hover,
.about-text-card:hover,
.contact-nudge-banner:hover,
.contact-pulse:hover,
.simple-contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .advantage-item,
  .pillar,
  .process-card,
  .workflow-card,
  .case-content,
  .case-contact-tease,
  .case-tab,
  .about-photo,
  .about-text-card,
  .contact-nudge-banner,
  .contact-pulse,
  .simple-contact-form {
    transition: none;
  }

  .advantage-item:hover,
  .pillar:hover,
  .process-card:hover,
  .workflow-card:hover,
  .case-content:hover,
  .case-contact-tease:hover,
  .case-tab:hover,
  .about-photo:hover,
  .about-text-card:hover,
  .contact-nudge-banner:hover,
  .contact-pulse:hover,
  .simple-contact-form:hover {
    transform: none;
    box-shadow: none;
  }
}

.contact-nudge-banner {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(216, 90, 48, 0.45);
  background: linear-gradient(145deg, #fffaf7 0%, #ffffff 100%);
  text-align: left;
}

.contact-nudge-banner p {
  margin: 0;
  color: #555555;
  line-height: 1.6;
}

.contact-nudge-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.contact-nudge-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  text-decoration: none;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid #e2d8d4;
  font-size: var(--fs-caption);
  font-weight: 500;
}

.contact-nudge-link:hover {
  border-color: #D85A30;
}

/* Sections */
.section { padding: var(--space-8) var(--space-5); }
.section h2 { font-size: var(--fs-h2); font-weight: 500; margin-bottom: var(--space-4); text-align: center; }

.why-intro { text-align: left; margin-bottom: var(--space-6); }
.why-intro p { color: #666666; font-size: var(--fs-body); line-height: var(--lh-body); }
.why-intro .highlight { color: #666666; font-weight: 400; }
.why-intro__text,
.why-intro__note { margin-top: var(--space-3); color: #666666; font-size: var(--fs-body); line-height: var(--lh-body); }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5); margin-top: var(--space-5-5); }
.pillar { text-align: center; padding: var(--space-5); background: #f5f5f5; border-radius: var(--radius-md); border: var(--border-subtle); }
.pillar-icon { font-size: var(--fs-metric); margin-bottom: var(--space-3); }
.pillar h3 { font-weight: 500; margin-bottom: var(--space-3); font-size: var(--fs-h3); line-height: 1.35; }
.pillar p { font-size: var(--fs-caption); color: #666666; line-height: 1.6; }

.section-mini-cta {
  margin-top: var(--space-5);
  font-size: var(--fs-caption-strong);
  color: #555555;
  text-align: center;
}

.section-mini-cta a {
  color: #D85A30;
  font-weight: 600;
  text-underline-offset: 2px;
}

.process-intro {
  text-align: left;
  color: #666666;
  font-size: var(--fs-body);
  margin-bottom: var(--space-5);
  line-height: var(--lh-body);
}

.inline-playful-contact {
  margin-top: calc(-1 * var(--space-2));
  margin-bottom: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.inline-playful-contact a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: #f8f3f1;
  border: 1px solid #ead8d0;
  color: #1a1a1a;
  font-size: var(--fs-caption);
  font-weight: 500;
}

.inline-playful-contact a:hover {
  border-color: #D85A30;
  background: #fff6f2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
}

.process-card {
  display: grid;
  grid-template-columns: var(--space-6) 1fr;
  gap: var(--space-3);
  align-items: start;
  text-align: left;
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  color: #666666;
  line-height: var(--lh-body);
  font-size: var(--fs-body);
}

.process-card:hover {
  border-color: rgba(216, 90, 48, 0.35);
}

.process-icon {
  width: var(--space-6);
  height: var(--space-6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #f4f4f4;
  color: #D85A30;
  font-size: 1.45rem;
  line-height: 1;
}

.process-card strong {
  grid-column: 2;
  display: block;
  margin-bottom: var(--space-1-5);
  line-height: 1.35;
  color: #1a1a1a;
}

.process-card p {
  grid-column: 2;
  margin: 0;
  font-size: var(--fs-caption);
  line-height: 1.7;
}

.workflow-intro {
  text-align: left;
  color: #666666;
  font-size: var(--fs-body);
  margin-bottom: var(--space-6);
  line-height: var(--lh-body);
}

.workflow-steps {
  display: grid;
  gap: var(--space-4);
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: calc(var(--space-6) + var(--space-2)) 1fr;
  gap: var(--space-4);
  align-items: stretch;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc((var(--space-6) + var(--space-2)) / 2);
  top: calc(var(--space-5) + ((var(--space-6) + var(--space-2)) / 2));
  height: calc(100% + var(--space-4));
  border-left: 1px solid rgba(216, 90, 48, 0.35);
  z-index: 1;
}

.workflow-marker {
  width: calc(var(--space-6) + var(--space-2));
  height: calc(var(--space-6) + var(--space-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-top: var(--space-5);
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #D85A30;
  color: #D85A30;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: var(--fs-body-sm);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  z-index: 2;
}

.workflow-card {
  display: grid;
  grid-template-columns: calc(var(--space-6) + var(--space-3)) 1fr;
  gap: var(--space-4);
  align-items: start;
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.workflow-icon {
  width: calc(var(--space-6) + var(--space-3));
  height: calc(var(--space-6) + var(--space-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: #f3f3f3;
  color: #D85A30;
  font-size: 2rem;
}

.workflow-content {
  text-align: left;
}

.workflow-step h3 {
  font-size: var(--fs-h3-xl);
  font-weight: 600;
  margin-top: var(--space-2);
  margin-bottom: var(--space-1-5);
  line-height: 1.35;
  color: #1a1a1a;
}

.workflow-step p {
  font-size: var(--fs-body);
  color: #666666;
  line-height: var(--lh-body);
  margin-bottom: 0;
}

.contact-pulse {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: #fffaf7;
  border: 1px solid #f0ddd6;
}

.contact-pulse strong {
  display: block;
  color: #1a1a1a;
  margin-bottom: var(--space-1);
}

.contact-pulse p {
  margin: 0;
  color: #666666;
  line-height: 1.6;
}

.contact-pulse-links {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.contact-pulse-links a {
  text-decoration: none;
  color: #1a1a1a;
  border-bottom: 1px solid rgba(216, 90, 48, 0.35);
  padding-bottom: 2px;
  font-weight: 500;
}

.contact-pulse-links a:hover {
  color: #D85A30;
}

/* For Organizations */
.for-orgs { background: #f5f5f5; }
.for-orgs-content { max-width: 800px; margin: 0 auto; }
.for-orgs-content h2 { text-align: center; margin-bottom: var(--space-5-5); }
.org-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-4); margin-bottom: var(--space-6); }
.org-type { background: #ffffff; padding: var(--space-4); border-radius: var(--radius-md); border: var(--border-subtle); font-size: var(--fs-caption); line-height: 1.6; }
.org-type strong { color: #D85A30; display: block; margin-bottom: var(--space-1); }

.results-section { margin-top: var(--space-5-5); padding-top: var(--space-5-5); border-top: var(--border-divider); }
.results-section h3 { font-size: var(--fs-h3); font-weight: 500; margin-bottom: var(--space-4); text-align: center; color: #D85A30; line-height: 1.35; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-4); }
.result-item { background: #ffffff; padding: var(--space-4); border-radius: var(--radius-md); border: var(--border-subtle); text-align: center; }
.result-item strong { display: block; color: #D85A30; font-weight: 500; margin-bottom: var(--space-1); }
.result-item p { font-size: var(--fs-caption); color: #666666; }

.curious-section { margin-top: var(--space-5-5); padding: var(--space-5); background: #ffffff; border-radius: var(--radius-md); border: var(--border-subtle); text-align: center; }
.curious-section h4 { font-weight: 500; margin-bottom: var(--space-1); font-size: var(--fs-h4); line-height: var(--lh-tight); text-transform: uppercase; letter-spacing: 0.3px; color: #999999; }
.curious-section p { font-size: var(--fs-caption); color: #666666; }

/* Case Studies */
.case-tabs { display: flex; gap: var(--space-3); margin-bottom: var(--space-5); border-bottom: var(--border-divider); overflow-x: auto; }
.case-tab { padding: var(--space-3) var(--space-4); background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; font-size: var(--fs-caption-strong); font-weight: 500; color: #999999; transition: all 0.2s; white-space: nowrap; }
.case-tab.active { color: #D85A30; border-bottom-color: #D85A30; }
.case-tab:hover { color: #1a1a1a; }

.case-contact-tease {
  margin: var(--space-3) 0 var(--space-4);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  background: #fffaf7;
  border: 1px solid #efddd5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.case-contact-tease p {
  margin: 0;
  color: #555555;
  font-size: var(--fs-caption);
}

.case-contact-tease a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: var(--fs-caption);
}

.case-contact-tease a:hover {
  color: #D85A30;
}

.case-content {
  background: #ffffff;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}
.case-content--hidden { display: none; }
.case-label { display: inline-block; font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: 0.5px; color: #D85A30; font-weight: 600; margin-bottom: var(--space-3); }
.case-challenge { font-size: var(--fs-case-challenge); font-weight: 500; margin-bottom: var(--space-4); line-height: 1.35; }
.case-section { margin-bottom: var(--space-5); }
.case-section h4 { font-weight: 500; font-size: var(--fs-h4); color: #999999; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: var(--space-1-5); line-height: var(--lh-tight); }
.case-section p { font-size: var(--fs-caption); line-height: 1.6; margin-bottom: 0; }
.case-section ul { margin-left: var(--space-4); margin-top: 0; margin-bottom: 0; }
.case-section li { margin-bottom: var(--space-1-5); line-height: 1.6; font-size: var(--fs-caption); }
.case-section li:last-child { margin-bottom: 0; }
.case-result { font-size: var(--fs-case-result); font-weight: 500; color: #D85A30; margin-top: var(--space-5); padding-top: var(--space-4); border-top: var(--border-divider); line-height: 1.35; }

/* About */
.about { background: #ffffff; }
.about-content { max-width: 1080px; }
.about-layout {
  margin-top: var(--space-5);
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: stretch;
}

.about-photo-wrap {
  margin: 0;
  position: static;
  height: 100%;
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.about-text-card {
  background: #ffffff;
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-quote {
  font-size: var(--fs-h3);
  line-height: 1.45;
  color: #1a1a1a;
  margin-bottom: var(--space-4);
}

.about h3 { font-size: var(--fs-h3-lg); font-weight: 500; margin-bottom: var(--space-4); line-height: 1.35; }
.about p { margin-bottom: var(--space-3); line-height: var(--lh-body); font-size: var(--fs-body); color: #666666; }
.about p strong { color: #D85A30; }

.about-quick-contact {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.about-quick-contact a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  border: 1px solid #e7d5cd;
  background: #fff9f6;
  color: #1a1a1a;
  font-size: var(--fs-caption);
  font-weight: 500;
}

.about-quick-contact a:hover {
  border-color: #D85A30;
}

/* CTA Final */
.cta-final { background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%); padding: var(--space-8) var(--space-5); text-align: center; }
.cta-final h2 { font-size: var(--fs-h2); font-weight: 500; margin-bottom: var(--space-3); }
.cta-final p { font-size: var(--fs-body); color: #666666; margin-bottom: var(--space-5); }
.cta-buttons { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }
.cta-primary { display: inline-block; padding: var(--space-3) var(--space-5); background: #D85A30; color: white; text-decoration: none; border-radius: var(--radius-sm); font-weight: 500; cursor: pointer; border: none; font-size: var(--fs-body); transition: all 0.2s; }
.cta-primary:hover { background: #c74a23; transform: translateY(-1px); }
.cta-secondary { padding: var(--space-2) var(--space-4); background: #ffffff; color: #1a1a1a; text-decoration: none; border: var(--border-subtle-alt); border-radius: var(--radius-sm); font-weight: 500; cursor: pointer; transition: all 0.2s; }
.cta-secondary:hover { background: #f5f5f5; }
.cta-note { margin-top: var(--space-3-5); font-size: var(--fs-body); color: #666666; line-height: var(--lh-body); }
.cta-inline-link {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-inline-link:hover { color: #D85A30; }
#blok-cta { border: none; box-shadow: none; }
#blok-cta .container { border: none; box-shadow: none; }

/* Footer */
.footer {
  padding: var(--space-6) var(--space-5);
  background: #111111;
  color: #f2f2f2;
  border-top: none;
  font-size: var(--fs-ui-sm);
}

#blok-footer {
  background: #111111;
}

#blok-footer p,
#blok-footer strong {
  color: #f2f2f2;
}

.footer .container {
  max-width: none;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-left {
  text-align: center;
}

.footer-contact { margin-top: var(--space-1); color: #f2f2f2; }
.footer-meta { margin-top: var(--space-4); font-size: var(--fs-micro); color: #f2f2f2; }

.simple-contact-form {
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(242, 242, 242, 0.16);
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  width: min(560px, 100%);
}

.simple-contact-form h3 {
  margin: 0;
  font-size: var(--fs-h3);
  color: #ffffff;
  font-weight: 500;
}

.simple-contact-form__intro {
  margin-top: var(--space-2);
  margin-bottom: var(--space-3);
  color: #d6d6d6;
  font-size: var(--fs-caption);
}

.simple-contact-form label {
  display: block;
  margin-top: var(--space-3);
  margin-bottom: var(--space-1);
  color: #f2f2f2;
  font-size: var(--fs-caption);
}

.simple-contact-form input,
.simple-contact-form textarea {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 242, 242, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: var(--fs-body-sm);
  font-family: inherit;
}

.simple-contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.simple-contact-form input::placeholder,
.simple-contact-form textarea::placeholder {
  color: #cfcfcf;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
  outline: none;
  border-color: #D85A30;
  box-shadow: 0 0 0 3px rgba(216, 90, 48, 0.2);
}

.simple-contact-form button {
  margin-top: var(--space-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  border: none;
  border-radius: var(--radius-sm);
  background: #D85A30;
  color: #ffffff;
  font-size: var(--fs-caption-strong);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.simple-contact-form button:hover {
  background: #c74a23;
  transform: translateY(-1px);
}

.simple-contact-form__meta {
  margin-top: var(--space-3);
  margin-bottom: 0;
  color: #cfcfcf;
  font-size: var(--fs-micro);
  line-height: 1.6;
}

.visually-hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.thanks-container {
  text-align: center;
  max-width: 860px;
}

.thanks-container h1 {
  font-size: var(--fs-h2);
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.thanks-intro {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thanks-actions {
  margin-bottom: var(--space-5);
}

.thanks-grid {
  margin-top: 0;
}

.footer-credit {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  font-size: var(--fs-micro);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #f2f2f2;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-brand-block { padding: var(--space-2-25) var(--space-2); }
  .hero-brand { font-size: var(--fs-display-mobile); }
  .brand-nav a { font-size: var(--fs-ui-mobile); }
  .hero { padding: var(--space-3-2) var(--space-3) var(--space-6); }
  .hero-visual img {
    width: 260vw;
    min-width: 1200px;
    opacity: 0.92;
    transform: translateY(5%);
  }
  .hero .container::before {
    top: calc(-1 * var(--space-2));
    right: calc(-1 * var(--space-0-5));
    bottom: calc(-1 * var(--space-2));
    left: calc(-1 * var(--space-0-5));
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  }
  .hero p { font-size: var(--fs-body-sm); }
  .playful-contact-row {
    justify-content: center;
  }
  .playful-contact-chip {
    width: 100%;
    justify-content: center;
  }
  .section h2 { font-size: var(--fs-h2-mobile); }
  .advantage-number { font-size: 2rem; }
  .workflow-steps {
    gap: var(--space-3);
  }

  .workflow-step {
    grid-template-columns: calc(var(--space-6) + var(--space-1)) 1fr;
    gap: var(--space-3);
  }

  .workflow-step:not(:last-child)::after {
    left: calc((var(--space-6) + var(--space-1)) / 2);
    top: calc(var(--space-4) + ((var(--space-6) + var(--space-1)) / 2));
    height: calc(100% + var(--space-3));
  }

  .workflow-marker {
    width: calc(var(--space-6) + var(--space-1));
    height: calc(var(--space-6) + var(--space-1));
    margin-top: var(--space-4);
    font-size: var(--fs-caption);
  }

  .workflow-card {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .workflow-icon {
    width: var(--space-6);
    height: var(--space-6);
    font-size: 1.5rem;
  }

  .workflow-step h3 {
    margin-top: var(--space-1);
    font-size: var(--fs-h3-lg);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .inline-playful-contact a {
    width: 100%;
    justify-content: center;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .process-icon,
  .process-card strong,
  .process-card p {
    grid-column: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-photo-wrap {
    position: static;
    width: min(460px, 100%);
    margin: 0 auto;
  }

  .about-photo {
    aspect-ratio: 1 / 1;
    object-position: center 18%;
  }

  .about-text-card {
    padding: var(--space-4);
  }

  .case-challenge { font-size: var(--fs-h3-sm); }
  .case-result { font-size: 1.3rem; }
  .case-contact-tease {
    justify-content: center;
    text-align: center;
  }
  .cta-final h2 { font-size: 1.5rem; }
  .advantages { padding: var(--space-6) 0; }

  .footer .container {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-3);
  }

  .footer-left {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .simple-contact-form {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-credit {
    position: static;
    grid-column: 1;
    justify-self: end;
  }
}
