﻿@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #151318;
  --graphite: #343238;
  --plum: #27102f;
  --purple: #6f3cc3;
  --fuchsia: #c83ed7;
  --lavender: #e9ddf1;
  --paper: #f7f5f8;
  --white: #ffffff;
  --muted: #6c6572;
  --line: #ded7e2;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --max: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--fuchsia);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--plum);
}

.skip-link:focus { top: 1rem; }

.wrap {
  width: min(calc(100% - 3rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 215, 226, .95);
  background: rgba(247, 245, 248, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.045em;
}

.brand__dot { color: var(--fuchsia); margin-left: .08em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.1vw, 2rem);
  margin-left: auto;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.main-nav a,
.footer-nav a,
.footer-links a { transition: color .22s var(--ease); }

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-nav a:hover,
.footer-links a:hover { color: var(--purple); }

.header-tools {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: 1rem;
}

.client-link {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}

.client-link:hover { color: var(--purple); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-nav.is-open { display: grid; gap: .25rem; }

.mobile-nav a {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 700;
}

.mobile-nav .button { margin-top: .75rem; text-align: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  gap: .7rem;
  padding: .75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
}

.button:hover { transform: translateY(-2px); }

.button--primary { color: var(--white); background: var(--purple); }
.button--primary:hover { background: var(--plum); }

.button--accent { color: var(--white); background: var(--fuchsia); }
.button--accent:hover { background: var(--purple); }

.button--outline { color: var(--purple); border-color: var(--purple); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--purple); }

.header-tools .button { min-height: 40px; padding-inline: .95rem; }

.hero {
  padding: clamp(5.5rem, 9vw, 8rem) 0 clamp(5rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--line);
}

.hero--home { background: var(--paper); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy { max-width: 720px; }

.hero h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.9vw, 3.8rem);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.048em;
}

.hero h1 em,
.page-hero h1 em { color: var(--purple); font-style: italic; }

.hero-description {
  max-width: 630px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-figure {
  position: relative;
  width: min(650px, 50vw);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0 -2rem 0 auto;
  overflow: hidden;
  background: transparent;
}

.hero-figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(247,245,248,.15), transparent 42%);
  pointer-events: none;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.7) 15%, #000 32%, #000 100%);
}

.hero-figure figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: 150px;
  padding-top: .7rem;
  border-top: 1px solid rgba(21, 19, 24, .35);
  color: var(--graphite);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
}

.page-hero h1 { font-size: clamp(2.6rem, 4.8vw, 4.5rem); }

.page-hero__aside {
  max-width: 380px;
  padding-left: 2rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.page-hero__aside::before {
  display: block;
  width: 42px;
  height: 2px;
  margin-bottom: 1.25rem;
  content: "";
  background: var(--fuchsia);
}

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }

.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--lavender { background: transparent; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.section-heading__number {
  color: var(--purple);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.section-heading h2,
.statement h2,
.cta h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.section-heading p { max-width: 630px; margin: 1rem 0 0; color: var(--muted); }

.statement {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 10vw, 9rem);
  align-items: start;
}

.statement h2 { font-size: clamp(2.4rem, 4.5vw, 4.75rem); }

.statement__copy { max-width: 690px; color: var(--muted); }
.statement__copy p { margin: 0 0 1.25rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-item { padding: 2rem 2rem 2.1rem; }
.audience-item + .audience-item { border-left: 1px solid var(--line); }
.audience-item__number { color: var(--purple); font-size: .75rem; font-weight: 700; letter-spacing: .08em; }
.audience-item h3 { margin: 1.4rem 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
.audience-item p { margin: 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.3rem; color: var(--purple); font-size: .75rem; font-weight: 700; }
.text-link::after { content: "â†—"; font-size: 1rem; transition: transform .22s var(--ease); }
.text-link:hover::after { transform: translate(3px, -3px); }

.solution-list { border-top: 1px solid var(--line); }

.solution-row {
  display: grid;
  grid-template-columns: 74px minmax(200px, .65fr) minmax(0, 1.35fr) 34px;
  gap: 1.25rem;
  align-items: center;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .22s var(--ease), background .22s var(--ease);
}

.solution-row:hover { padding-inline: 1rem; background: rgba(233, 221, 241, .35); }
.solution-row__number { color: var(--purple); font-family: var(--serif); font-size: 1.8rem; }
.solution-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 400; line-height: 1.08; }
.solution-row p { margin: 0; color: var(--muted); font-size: .9rem; }
.solution-row__arrow { color: var(--purple); font-size: 1.6rem; text-align: right; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step { position: relative; padding: 1.7rem 1.4rem 1.5rem 0; }
.process-step + .process-step { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.process-step__number { display: block; margin-bottom: 1.4rem; color: var(--purple); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.process-step h3 { margin: 0 0 .5rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: .9rem; }

.experience-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(270px, .9fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.experience-copy p { max-width: 660px; margin: 0 0 1.2rem; color: var(--muted); }
.experience-copy .text-link { margin-top: .3rem; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.stat:nth-child(odd) { padding-right: 1rem; }
.stat:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--purple); font-family: var(--serif); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: .4rem; color: var(--muted); font-size: .72rem; line-height: 1.35; }

.logo-placeholder { padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.7rem); text-align: center; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.testimonial blockquote { margin: 0; color: var(--graphite); font-family: var(--serif); font-size: 1.45rem; line-height: 1.15; }
.testimonial cite { display: block; margin-top: 1.2rem; color: var(--muted); font-size: .75rem; font-style: normal; font-weight: 700; }

.cta { padding: clamp(3.2rem, 6vw, 5rem) 0; color: var(--white); background: var(--ink); }
.cta__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); gap: 3rem; align-items: end; }
.cta h2 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); }
.cta p { max-width: 610px; margin: 1.25rem 0 0; color: rgba(255, 255, 255, .75); }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .8rem; }
.cta .button--outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.cta .button--outline:hover { color: var(--ink); background: var(--white); }

.footer { padding: 3.5rem 0 1.4rem; background: var(--white); }
.footer-top { display: grid; grid-template-columns: minmax(250px, 1.3fr) repeat(2, minmax(130px, .7fr)) minmax(180px, .8fr); gap: 3rem; padding-bottom: 3rem; }
.footer .brand { margin-bottom: 1rem; }
.footer-intro { max-width: 330px; margin: 0; color: var(--muted); font-size: .85rem; }
.footer h3 { margin: .25rem 0 1rem; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-nav, .footer-links { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .8rem; }
.footer-contact { color: var(--muted); font-size: .8rem; }
.footer-contact p { margin: 0 0 .45rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.rich-copy { max-width: 760px; }
.rich-copy > p { margin: 0 0 1.25rem; color: var(--muted); }
.rich-copy h3 { margin: 2.2rem 0 .65rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.05; }
.rich-copy h4 { margin: 1.7rem 0 .45rem; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.rich-copy ul { margin: .75rem 0 1.5rem; padding-left: 1.2rem; color: var(--muted); }
.rich-copy li { margin: .3rem 0; }

.solution-detail { display: grid; grid-template-columns: minmax(210px, .42fr) minmax(0, 1.58fr); gap: clamp(2rem, 7vw, 7rem); padding: 3.5rem 0; border-top: 1px solid var(--line); }
.solution-detail__index { color: var(--purple); font-family: var(--serif); font-size: 2.2rem; }
.solution-detail__title { margin: .6rem 0 0; font-family: var(--serif); font-size: clamp(1.9rem, 3.2vw, 3.5rem); font-weight: 400; line-height: 1.02; letter-spacing: -.03em; }
.solution-detail .rich-copy { max-width: none; }
.solution-detail .rich-copy > p:first-child { color: var(--graphite); font-size: 1.1rem; }
.solution-detail .button { margin-top: .3rem; }

.about-grid { display: grid; grid-template-columns: minmax(250px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 9vw, 9rem); align-items: start; }
.about-image { position: relative; background: transparent; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; mix-blend-mode: multiply; }
.about-copy h2 { margin: 0 0 .6rem; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.about-copy .role { margin: 0 0 1.5rem; color: var(--purple); font-size: 1.1rem; }
.about-copy p { color: var(--muted); }
.about-copy .lead { color: var(--graphite); font-size: 1.15rem; }

.principles { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.principle { padding: 1.6rem 1.5rem 1.6rem 0; border-bottom: 1px solid var(--line); }
.principle:nth-child(even) { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.principle h3 { margin: 0 0 .5rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.principle p { margin: 0; color: var(--muted); }

.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.number-item { padding: 1.6rem 1rem 1.6rem 0; border-bottom: 1px solid var(--line); }
.number-item:nth-child(4n + 2), .number-item:nth-child(4n + 3), .number-item:nth-child(4n + 4) { padding-left: 1rem; border-left: 1px solid var(--line); }
.number-item strong { display: block; color: var(--purple); font-family: var(--serif); font-size: 2.35rem; font-weight: 400; line-height: 1; }
.number-item span { display: block; margin-top: .4rem; color: var(--muted); font-size: .75rem; line-height: 1.35; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--graphite); font-size: .77rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; padding: .85rem .9rem; color: var(--ink); border: 1px solid var(--line); border-radius: 5px; background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9b93a2; }
.form .button { justify-self: start; margin-top: .4rem; }
.form-status { grid-column: 1 / -1; min-height: 1.5rem; margin: 0; color: var(--purple); font-size: .82rem; font-weight: 700; }
.contact-paths { border-top: 1px solid var(--line); }
.contact-path { padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.contact-path h3 { margin: 0 0 .45rem; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.contact-path p { margin: 0; color: var(--muted); font-size: .87rem; }
.contact-path .text-link { margin-top: .7rem; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .main-nav, .header-tools { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero-grid, .page-hero__grid, .experience-grid, .cta__grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { min-height: 420px; max-width: 560px; }
  .hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.7) 15%, #000 32%, #000 100%);
}

@media (max-width: 760px) {
  .home-page .wrap { width: min(calc(100% - 2rem), var(--max)); }
  .home-page .header-inner { min-height: 70px; }
  .home-page .brand__image { width: 98px; }
  .home-page .mobile-nav { background: var(--home-surface); }
  .home-page .hero-grid { display: flex; flex-direction: column; min-height: 0; }
  .home-page .hero-copy { order: 1; padding: 3.2rem 1rem 2.4rem; }
  .home-page .hero-copy h1 { max-width: 360px; font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.02; }
  .home-page .hero-description { margin-top: 1.35rem; font-size: .9rem; }
  .home-page .hero-description--desktop { display: none; }
  .home-page .hero-description--mobile { display: inline; }
  .home-page .hero-actions { flex-wrap: wrap; margin-top: 1.5rem; gap: .7rem; }
  .home-page .hero-actions .button { flex: 1 1 190px; }
  .home-page .hero-figure { order: 2; min-height: 360px; }
  .home-page .hero-figure__inset { right: 4%; bottom: 4%; width: 42%; border-width: 4px; }
  .home-page .hero-signature__inner { justify-content: flex-start; }
  .home-page .hero-signature p { font-size: .68rem; }
  .home-page .home-section, .home-page .home-proof, .home-page .home-final-cta { padding: 4rem 0; }
  .home-page .home-section__head { display: block; margin-bottom: 2.25rem; }
  .home-page .home-section__head h2, .home-page .home-proof h2, .home-page .home-final-cta h2 { max-width: 360px; font-size: 2.2rem; }
  .home-page .home-section__head p { max-width: 340px; margin-top: 1rem; font-size: .86rem; }
  .home-page .home-paths__grid, .home-page .home-showcase__grid, .home-page .home-process-track, .home-page .home-testimonials__grid { grid-template-columns: 1fr; }
  .home-page .home-path { padding: 0 0 1.75rem; border-right: 0; border-bottom: 1px solid var(--home-border); }
  .home-page .home-path + .home-path { padding: 1.75rem 0; }
  .home-page .home-path:last-child { padding-bottom: 0; border-bottom: 0; }
  .home-page .home-image-slot { height: 170px; }
  .home-page .home-showcase__grid { display: flex; flex-direction: column; border-top: 1px solid var(--home-border); }
  .home-page .home-solution--lead { order: 1; padding-inline: 1rem; }
  .home-page .home-solution--lead > .home-image-slot { height: 220px; margin-inline: -1rem; }
  .home-page .home-solution--advisory { order: 2; }
  .home-page .home-solution--one { order: 3; }
  .home-page .home-solution--positioning { order: 4; }
  .home-page .home-solution:not(.home-solution--lead) { padding: 1.5rem 0; border-left: 0; }
  .home-page .home-showcase__links { justify-content: flex-start; gap: .8rem 1.1rem; }
  .home-page .home-process-step, .home-page .home-process-step + .home-process-step { padding: 1.35rem 0; border-right: 0; border-bottom: 1px solid var(--home-border); }
  .home-page .home-process-step:last-child { border-bottom: 0; }
  .home-page .home-proof-grid { gap: 2rem; }
  .home-page .home-proof-photo { height: 340px; order: -1; }
  .home-page .home-numbers { grid-template-columns: 1fr; }
  .home-page .home-number, .home-page .home-number:nth-child(n) { padding: 1rem 0 0; border-left: 0; }
  .home-page .home-number span { max-width: none; }
  .home-page .home-testimonial { padding: 1.5rem; }
  .home-page .home-final-cta__actions { flex-direction: column; align-items: stretch; }
  .home-page .home-final-cta__actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *, .home-page *::before, .home-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.home-page .hero-figure { display: block; }
.home-page .hero-title--desktop { display: block; }
.home-page .hero-title--mobile { display: none; }
@media (max-width: 760px) {
  .home-page .hero-title--desktop { display: none; }
  .home-page .hero-title--mobile { display: block; }
}
  .page-hero__aside { max-width: 600px; }
  .cta__actions { justify-content: flex-start; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 2rem), var(--max)); }
  .header-inner { min-height: 68px; }
  .brand { font-size: 1.8rem; }
  .hero { padding-top: 4.5rem; }
  .hero h1 { font-size: 2.5rem; }
  .page-hero h1 { font-size: 3rem; }
  .hero-figure { width: 100%; min-height: 0; aspect-ratio: 16 / 10; }
  .section-heading, .statement, .solution-detail, .about-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .section-heading { margin-bottom: 2.3rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-item { padding: 1.55rem 0; }
  .audience-item + .audience-item { border-top: 1px solid var(--line); border-left: 0; }
  .solution-row { grid-template-columns: 42px minmax(0, 1fr) 26px; gap: .7rem; align-items: start; }
  .solution-row p { grid-column: 2 / -1; }
  .solution-row__number { font-size: 1.5rem; }
  .solution-row:hover { padding-inline: .5rem; }
  .process-grid, .testimonial-grid, .principles, .numbers-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step, .principle, .principle:nth-child(even), .number-item, .number-item:nth-child(4n + 2), .number-item:nth-child(4n + 3), .number-item:nth-child(4n + 4) { padding: 1.35rem 0; border-left: 0; }
  .process-step + .process-step, .principle + .principle, .number-item + .number-item { border-top: 1px solid var(--line); }
  .stat strong, .number-item strong { font-size: 2.1rem; }
  .form { grid-template-columns: 1fr; }
  .field--full, .form-status { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}



.brand__image {
  display: block;
  width: 116px;
  height: auto;
  filter: brightness(0);
}



/* Home hero: compact first-fold composition, scoped to the landing page only. */
.hero--home {
  padding: clamp(4rem, 5vw, 5rem) 0 clamp(2.25rem, 3.5vw, 3rem);
  background-color: var(--paper);
  background-image: url("assets/hero-imflue.png");
  background-position: center right;
  background-size: cover;
}

.hero--home .hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  min-height: 0;
  align-items: center;
}

.hero--home .hero-copy {
  width: 100%;
  max-width: 780px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero--home h1 {
  width: 100%;
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.25rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.hero-title--desktop,
.hero-title--mobile,
.hero-title--desktop span,
.hero-title--mobile span { display: block; }

.hero-title--mobile { display: none; }
.hero-title-accent { color: var(--purple); }

.hero--home .hero-description {
  width: 100%;
  max-width: 700px;
  margin-top: 1.6rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.58;
}

.hero--home .hero-actions {
  margin-top: 1.6rem;
}

.hero--home .hero-figure { display: none; }

.hero-signature {
  padding: clamp(2.6rem, 5vw, 4.8rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-signature__inner {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.hero-signature__inner::before {
  display: block;
  width: 38px;
  height: 2px;
  margin-top: .75rem;
  content: "";
  background: var(--fuchsia);
}

.hero-signature p {
  width: 100%;
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

@media (max-width: 980px) {
  .hero--home {
    background-image: none;
  }

  .hero--home .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-title--desktop { display: none; }
  .hero-title--mobile { display: block; }

  .hero--home .hero-figure {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 1.4rem auto 0;
    overflow: hidden;
  }

  .hero--home .hero-figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 760px) {
  .hero--home {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .hero--home h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    line-height: 1.02;
  }

  .hero--home .hero-description {
    max-width: 100%;
    margin-top: 1.25rem;
    font-size: .9rem;
    line-height: 1.58;
  }

  .hero--home .hero-actions { margin-top: 1.35rem; }

  .hero--home .hero-figure {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
  }

  .hero-signature__inner {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: .9rem;
  }

  .hero-signature__inner > * { min-width: 0; }

  .hero-signature p {
    max-width: 100%;
    font-size: 1.45rem;
    line-height: 1.08;
  }
}

.hero-copy-break { display: block; }

@media (max-width: 760px) {
  .hero--home h1 { font-size: clamp(1.75rem, 7vw, 2.35rem); }
  .hero-copy-break { display: none; }
  .hero--home .hero-description {
    width: 100%;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }
}

.hero-description--mobile { display: none; }

@media (max-width: 760px) {
  .hero-description--desktop { display: none; }
  .hero-description--mobile { display: block; }
}
/* New home sections: scoped components below the approved hero. */
.home-section {
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.home-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-section__head h2,
.home-proof h2,
.home-final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}

.home-section__head p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

.home-paths { background: var(--white); }

.home-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.home-path {
  padding: 1.25rem 0 0;
  border-top: 2px solid var(--line);
}

.home-path--organizations { border-color: var(--purple); }
.home-path--business { border-color: var(--fuchsia); }
.home-path--professionals { border-color: var(--plum); }

.home-path h3,
.home-solution h3,
.home-process-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.025em;
}

.home-path p,
.home-solution p,
.home-process-step p {
  max-width: 390px;
  margin: 1rem 0 1.25rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.58;
}

.home-link {
  display: inline-flex;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  color: var(--purple);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-link:hover { color: var(--fuchsia); }
.home-link--light { color: var(--white); }

.home-showcase { background: var(--lavender); }

.home-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  grid-template-areas:
    "lead advisory"
    "lead one"
    "position position";
  gap: 1rem;
}

.home-solution {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.75rem);
}

.home-solution h3 { max-width: 520px; }
.home-solution p { max-width: 560px; margin-bottom: 1.5rem; }
.home-solution .home-link { align-self: flex-start; }

.home-solution--lead {
  grid-area: lead;
  min-height: 440px;
  color: var(--white);
  background: var(--plum);
}

.home-solution--lead h3,
.home-solution--lead p { color: var(--white); }

.home-solution--lead p { color: rgba(255,255,255,.78); }
.home-solution--lead .home-link { color: var(--white); }

.home-solution--advisory {
  grid-area: advisory;
  background: var(--white);
  border-top: 3px solid var(--purple);
}

.home-solution--one {
  grid-area: one;
  background: rgba(255,255,255,.48);
  border-top: 3px solid var(--plum);
}

.home-solution--positioning {
  grid-area: position;
  min-height: 210px;
  background: var(--paper);
  border-top: 3px solid var(--fuchsia);
}

.home-showcase__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 2rem;
}

.home-showcase__links .home-link { color: var(--plum); }

.home-process { background: var(--paper); }

.home-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-process-track::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.home-process-step {
  position: relative;
  padding: 2rem 1.5rem 0 0;
}

.home-process-step::before {
  position: absolute;
  top: -.3rem;
  left: 0;
  width: .65rem;
  height: .65rem;
  content: "";
  border-radius: 50%;
  background: var(--fuchsia);
  box-shadow: 0 0 0 5px var(--paper);
}

.home-process-step + .home-process-step { padding-left: 1rem; }
.home-process-step p { margin-bottom: 0; }

.home-proof {
  padding: clamp(5rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--graphite);
}

.home-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.home-proof h2 { color: var(--white); }
.home-proof-copy p { max-width: 600px; color: rgba(255,255,255,.78); font-size: .94rem; line-height: 1.7; }
.home-proof-copy .home-link { margin-top: .75rem; }

.home-proof-photo {
  height: 440px;
  margin: 0;
  overflow: hidden;
  background: var(--plum);
}

.home-proof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.86);
}

.home-numbers {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.3);
}

.home-number {
  padding: 1.5rem 1rem 0 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.home-number:nth-child(3n + 2),
.home-number:nth-child(3n + 3) { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.2); }

.home-number strong {
  display: block;
  color: var(--lavender);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.home-number span {
  display: block;
  margin-top: .45rem;
  color: rgba(255,255,255,.72);
  font-size: .72rem;
}

.home-testimonials { background: var(--white); }

.home-testimonials__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 1rem;
}

.home-testimonial {
  padding: 2rem;
  border-top: 2px solid var(--line);
  background: var(--paper);
}

.home-testimonial--primary {
  grid-row: span 2;
  padding: clamp(2rem, 4vw, 4rem);
  border-top-color: var(--purple);
  background: var(--lavender);
}

.home-testimonial blockquote {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.home-testimonial:not(.home-testimonial--primary) blockquote {
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.home-testimonial cite {
  display: block;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .76rem;
  font-style: normal;
  font-weight: 700;
}

.home-final-cta {
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  color: var(--white);
  background: var(--plum);
}

.home-final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 3rem;
  align-items: end;
}

.home-final-cta h2 { color: var(--white); font-size: clamp(2.3rem, 4vw, 3.5rem); }
.home-final-cta p { max-width: 650px; margin: 1.25rem 0 0; color: rgba(255,255,255,.76); font-size: .9rem; }
.home-final-cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.72); background: transparent; }
.button--outline-light:hover { color: var(--plum); background: var(--white); }

@media (max-width: 980px) {
  .home-section__head,
  .home-proof-grid,
  .home-final-cta__inner { grid-template-columns: 1fr; }
  .home-final-cta__actions { justify-content: flex-start; }
  .home-proof-photo { height: 380px; }
}

@media (max-width: 760px) {
  .home-section,
  .home-proof { padding: 4rem 0; }
  .home-section__head { gap: 1.25rem; margin-bottom: 2.5rem; }
  .home-section__head h2,
  .home-proof h2 { font-size: clamp(2.35rem, 10vw, 3.1rem); }
  .home-paths__grid,
  .home-showcase__grid,
  .home-process-track,
  .home-testimonials__grid { grid-template-columns: 1fr; }
  .home-showcase__grid { grid-template-areas: none; }
  .home-solution,
  .home-solution--lead,
  .home-solution--positioning { grid-area: auto; min-height: 0; }
  .home-process-track { gap: 0; padding-left: 1.25rem; }
  .home-process-track::before { top: 0; bottom: 0; left: .3rem; width: 1px; height: auto; }
  .home-process-step,
  .home-process-step + .home-process-step { padding: 1.5rem 0 1.5rem 1.25rem; }
  .home-process-step::before { top: 1.9rem; left: 0; }
  .home-proof-photo { height: 340px; }
  .home-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-number:nth-child(3n + 2),
  .home-number:nth-child(3n + 3) { padding-left: 0; border-left: 0; }
  .home-number:nth-child(even) { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.2); }
  .home-testimonial,
  .home-testimonial--primary { grid-row: auto; padding: 1.65rem; }
  .home-final-cta__actions { flex-direction: column; align-items: stretch; }
  .home-final-cta__actions .button { width: 100%; }
}

@media (max-width: 760px) {
  .home-section .wrap,
  .home-section__head,
  .home-section__head > *,
  .home-path,
  .home-solution,
  .home-process-step,
  .home-proof-grid > *,
  .home-testimonial,
  .home-final-cta__inner > * {
    min-width: 0;
    max-width: 100%;
  }

  .home-section__head h2,
  .home-proof h2,
  .home-final-cta h2,
  .home-path h3,
  .home-solution h3,
  .home-process-step h3,
  .home-testimonial blockquote {
    max-width: 100%;
    overflow-wrap: normal;
  }

  .home-path p,
  .home-solution p,
  .home-process-step p,
  .home-proof-copy p,
  .home-section__head p,
  .home-final-cta p {
    max-width: 100%;
  }

  .home-showcase__links .home-link {
    max-width: 100%;
  }
}
/* home mobile containment applied */
@media (max-width: 760px) {
  .home-section__head,
  .home-section__head > *,
  .home-section__head h2,
  .home-section__head p,
  .home-path,
  .home-path h3,
  .home-path p,
  .home-solution,
  .home-solution h3,
  .home-solution p,
  .home-process-track,
  .home-process-step,
  .home-process-step h3,
  .home-process-step p,
  .home-proof-grid,
  .home-proof-grid > *,
  .home-proof h2,
  .home-proof-copy p,
  .home-testimonials__grid,
  .home-testimonial,
  .home-testimonial blockquote,
  .home-final-cta__inner,
  .home-final-cta__inner > *,
  .home-final-cta h2,
  .home-final-cta p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .home-section__head h2,
  .home-proof h2,
  .home-final-cta h2,
  .home-path h3,
  .home-solution h3,
  .home-process-step h3,
  .home-testimonial blockquote,
  .home-path p,
  .home-solution p,
  .home-process-step p,
  .home-proof-copy p,
  .home-section__head p,
  .home-final-cta p {
    overflow-wrap: anywhere;
  }
}
/* home mobile viewport width lock */
@media (max-width: 980px) {
  .home-section__head,
  .home-section__head > *,
  .home-paths__grid,
  .home-path,
  .home-solution,
  .home-process-track,
  .home-process-step,
  .home-proof-grid,
  .home-proof-grid > *,
  .home-numbers,
  .home-number,
  .home-testimonials__grid,
  .home-testimonial,
  .home-final-cta__inner,
  .home-final-cta__inner > * {
    width: min(calc(100vw - 2rem), var(--max));
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .home-section__head h2,
  .home-section__head p,
  .home-path h3,
  .home-path p,
  .home-solution h3,
  .home-solution p,
  .home-process-step h3,
  .home-process-step p,
  .home-proof h2,
  .home-proof-copy p,
  .home-testimonial blockquote,
  .home-final-cta h2,
  .home-final-cta p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}
/* home mobile type scale */
@media (max-width: 760px) {
  .home-section__head h2,
  .home-proof h2,
  .home-final-cta h2 { font-size: 2rem; line-height: 1.02; }

  .home-path h3,
  .home-solution h3,
  .home-process-step h3 { font-size: 1.5rem; }

  .home-testimonial blockquote,
  .home-testimonial:not(.home-testimonial--primary) blockquote { font-size: 1.15rem; }

  .home-section__head p,
  .home-path p,
  .home-solution p,
  .home-process-step p,
  .home-proof-copy p,
  .home-final-cta p { font-size: .78rem; line-height: 1.58; }
}
/* home mobile readable measure */
@media (max-width: 760px) {
  .home-section__head h2,
  .home-proof h2,
  .home-final-cta h2,
  .home-path h3,
  .home-solution h3,
  .home-process-step h3,
  .home-testimonial blockquote {
    width: 100% !important;
    max-width: 330px !important;
  }

  .home-section__head p,
  .home-path p,
  .home-solution p,
  .home-process-step p,
  .home-proof-copy p,
  .home-final-cta p {
    width: 100% !important;
    max-width: 320px !important;
  }
}
/* home numbers mobile grid fix */
@media (max-width: 760px) {
  .home-numbers {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .home-number {
    width: auto;
    max-width: none;
    padding: 1rem 0 0;
    border-left: 0;
  }

  .home-number:nth-child(n) {
    padding-left: 0;
    border-left: 0;
  }

  .home-number span {
    width: 100%;
    max-width: none;
    white-space: normal;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
}

/* IMFLUE HOME REDESIGN V2: reference-led corporate composition. */
.home-page {
  --home-bg: #f7f4f5;
  --home-surface: #ffffff;
  --home-graphite: #25232a;
  --home-ink: #121116;
  --home-purple: #59205f;
  --home-purple-dark: #36133b;
  --home-fuchsia: #d51b73;
  --home-lavender: #d8c7dd;
  --home-muted: #6e6971;
  --home-border: #ded8dd;
  color: var(--home-ink);
  background: var(--home-bg);
}

.home-page .site-header { background: rgba(255, 255, 255, .98); border-bottom-color: var(--home-border); backdrop-filter: none; }
.home-page .header-inner { min-height: 78px; gap: 1.75rem; }
.home-page .brand__image { width: 112px; height: auto; }
.home-page .main-nav { gap: 1.5rem; }
.home-page .main-nav a { color: var(--home-ink); font-size: .78rem; font-weight: 700; }
.home-page .main-nav a[aria-current=page] { color: var(--home-purple); }
.home-page .main-nav a[aria-current=page]::after { background: var(--home-fuchsia); }
.home-page .client-link { color: var(--home-purple); font-size: .76rem; }
.home-page .button--primary { background: var(--home-fuchsia); border-color: var(--home-fuchsia); }
.home-page .button--primary:hover { background: var(--home-purple); border-color: var(--home-purple); }

.home-page .hero { padding: 0; background: var(--home-bg); }
.home-page .hero-grid { width: 100%; max-width: none; margin: 0; display: grid; grid-template-columns: minmax(0, 54%) minmax(0, 46%); min-height: 620px; }
.home-page .hero-copy { align-self: center; max-width: 780px; padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 5vw, 4.5rem) max(1.5rem, calc((100vw - var(--max)) / 2)); }
.home-page .hero-copy h1 { max-width: 740px; margin: 0; color: var(--home-purple-dark); font-family: var(--sans); font-size: clamp(2.8rem, 4.2vw, 4rem); font-weight: 700; line-height: 1.02; letter-spacing: -.065em; }
.home-page .hero-title--desktop, .home-page .hero-title--mobile { display: block; }
.home-page .hero-title--desktop > span, .home-page .hero-title--mobile > span { display: block; }
.home-page .hero-title-accent { color: var(--home-purple); }
.home-page .hero-description { max-width: 620px; margin: 1.8rem 0 0; color: var(--home-muted); font-size: 1rem; line-height: 1.55; }
.home-page .hero-description--desktop { display: inline; }
.home-page .hero-description--mobile { display: none; }
.home-page .hero-actions { margin-top: 1.9rem; gap: 1.75rem; }
.home-page .hero-actions .button { min-height: 48px; padding-inline: 1.25rem; border-radius: 2px; font-size: .82rem; }
.home-page .hero-actions .button--primary { background: var(--home-fuchsia); border-color: var(--home-fuchsia); }
.home-page .hero-actions .button--outline { color: var(--home-purple-dark); border-color: var(--home-purple); background: transparent; }
.home-page .hero-figure { position: relative; min-height: 620px; margin: 0; overflow: hidden; background: url(fundo-imflue.png) center / cover no-repeat; }
.home-page .hero-figure::before { display: none; }
.home-page .hero-figure::after { display: none; }
.home-page .hero-figure > img { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.home-page .hero-signature { padding: 1rem 0; background: var(--home-surface); border-top: 1px solid var(--home-border); border-bottom: 1px solid var(--home-border); }
.home-page .hero-signature__inner { display: flex; justify-content: flex-end; }
.home-page .hero-signature p { margin: 0; color: var(--home-purple); font-size: .78rem; font-weight: 800; letter-spacing: .12em; line-height: 1.55; text-transform: uppercase; }

.home-page .home-section, .home-page .home-proof, .home-page .home-final-cta { padding: clamp(4.5rem, 7vw, 6.5rem) 0; }
.home-page .home-section__head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .7fr); gap: 3rem; align-items: end; margin-bottom: 3.25rem; }
.home-page .home-section__head h2, .home-page .home-proof h2, .home-page .home-final-cta h2 { max-width: 780px; margin: 0; color: var(--home-purple-dark); font-family: var(--sans); font-size: clamp(2.3rem, 4vw, 3.35rem); font-weight: 700; line-height: 1.04; letter-spacing: -.06em; }
.home-page .home-section__head p { max-width: 390px; margin: 0; color: var(--home-muted); font-size: .95rem; line-height: 1.55; }
.home-page .home-paths { background: var(--home-surface); }
.home-page .home-paths__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--home-border); }
.home-page .home-path { min-width: 0; padding: 0 1.5rem 0 0; border-right: 1px solid var(--home-border); }
.home-page .home-path + .home-path { padding-left: 1.5rem; }
.home-page .home-path:last-child { border-right: 0; }
.home-page .home-path::before { display: none; }
.home-page .home-path:nth-child(1)::before { background-image: url(assets/placeholders/placeholder-strategy-workshop.png); }
.home-page .home-path:nth-child(2)::before { background-image: url(assets/placeholders/placeholder-advisory-meeting.png); }
.home-page .home-path:nth-child(3)::before { background-image: url(assets/placeholders/placeholder-executive-conversation.png); }
.home-page .home-path h3, .home-page .home-solution h3, .home-page .home-process-step h3 { margin: 0; color: var(--home-purple-dark); font-family: var(--sans); font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.12; letter-spacing: -.045em; }
.home-page .home-path p, .home-page .home-solution p, .home-page .home-process-step p { color: var(--home-muted); font-size: .86rem; line-height: 1.55; }
.home-page .home-path p { max-width: 330px; min-height: 4.2em; }
.home-page .home-link { display: inline-flex; align-items: center; gap: .55rem; padding-bottom: .2rem; color: var(--home-fuchsia); border-bottom: 1px solid var(--home-fuchsia); font-size: .76rem; font-weight: 800; line-height: 1.3; }
.home-page .home-link::after { display: none; }
.home-page .home-link:hover::after { transform: translateX(3px); }
.home-page .home-showcase { background: var(--home-bg); }
.home-page .home-showcase__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(310px, .92fr); gap: 0 2.75rem; border-top: 1px solid var(--home-border); }
.home-page .home-solution { min-width: 0; padding: 1.6rem 0; border-bottom: 1px solid var(--home-border); background: transparent; }
.home-page .home-solution--lead { grid-row: span 3; padding: 0 2rem 2rem; color: var(--home-surface); background: var(--home-purple-dark); }
.home-page .home-solution--lead h3 { color: var(--home-surface); font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.home-page .home-solution--lead p { color: rgba(255, 255, 255, .8); max-width: 560px; }
.home-page .home-solution--lead .home-link { color: var(--home-surface); border-color: var(--home-fuchsia); }
.home-page .home-solution:not(.home-solution--lead) { padding-left: 1.25rem; border-left: 1px solid var(--home-border); }
.home-page .home-solution:not(.home-solution--lead) h3 { font-size: 1.3rem; }
.home-page .home-solution:not(.home-solution--lead) p { max-width: 520px; margin: .55rem 0 .7rem; }
.home-page .home-showcase__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; margin-top: 1.5rem; }
.home-page .home-process { background: var(--home-surface); }
.home-page .home-process-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--home-border); }
.home-page .home-process-step { position: relative; min-width: 0; padding: 1.5rem 1.5rem 0 0; border-right: 1px solid var(--home-border); }
.home-page .home-process-step + .home-process-step { padding-left: 1.5rem; }
.home-page .home-process-step:last-child { border-right: 0; }
.home-page .home-process-step::before { content: normal; display: block; width: 10px; height: 10px; margin-bottom: 1.4rem; background: var(--home-fuchsia); border-radius: 50%; }

.home-page .home-proof { color: var(--home-surface); background: var(--home-graphite); }
.home-page .home-proof-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); gap: 3.5rem; align-items: start; }
.home-page .home-proof h2 { color: var(--home-surface); }
.home-page .home-proof-copy p { max-width: 590px; color: rgba(255, 255, 255, .78); font-size: .94rem; line-height: 1.65; }
.home-page .home-proof-copy .home-link { margin-top: .6rem; color: var(--home-surface); border-color: var(--home-fuchsia); }
.home-page .home-proof-photo { height: 430px; margin: 0; overflow: hidden; background: var(--home-purple-dark); }
.home-page .home-proof-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: none; }
.home-page .home-numbers { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .3); }
.home-page .home-number { min-width: 0; padding: 1.2rem 1rem 0 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
.home-page .home-number:nth-child(3n + 2), .home-page .home-number:nth-child(3n + 3) { padding-left: 1rem; border-left: 1px solid rgba(255, 255, 255, .2); }
.home-page .home-number strong { display: block; color: var(--home-lavender); font-family: var(--sans); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; line-height: 1; letter-spacing: -.06em; }
.home-page .home-number span { display: block; margin-top: .45rem; color: rgba(255, 255, 255, .7); font-size: .72rem; line-height: 1.3; }
.home-page .home-testimonials { background: var(--home-surface); }
.home-page .home-testimonials__grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 1rem; align-items: stretch; }
.home-page .home-testimonial { min-width: 0; padding: 2rem; border-top: 2px solid var(--home-lavender); background: var(--home-bg); }
.home-page .home-testimonial--primary { border-top-color: var(--home-fuchsia); background: var(--home-lavender); }
.home-page .home-testimonial blockquote { margin: 0; color: var(--home-purple-dark); font-family: var(--sans); font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 700; line-height: 1.35; letter-spacing: -.025em; }
.home-page .home-testimonial cite { display: block; margin-top: 2rem; color: var(--home-muted); font-size: .74rem; font-style: normal; font-weight: 800; }

.home-page .home-final-cta { color: var(--home-surface); background: var(--home-purple-dark); }
.home-page .home-final-cta__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 3rem; align-items: end; }
.home-page .home-final-cta h2 { color: var(--home-surface); }
.home-page .home-final-cta p { max-width: 650px; color: rgba(255, 255, 255, .78); font-size: .94rem; line-height: 1.6; }
.home-page .home-final-cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
.home-page .home-final-cta .button { min-height: 48px; border-radius: 2px; font-size: .78rem; }
.home-page .home-final-cta .button--accent { color: var(--home-surface); background: var(--home-fuchsia); border-color: var(--home-fuchsia); }
.home-page .button--outline-light { color: var(--home-surface); background: transparent; border: 1px solid rgba(255, 255, 255, .65); }
.home-page .button--outline-light:hover { background: rgba(255, 255, 255, .1); }
.home-page .footer { color: var(--home-ink); background: var(--home-surface); }
.home-page .footer h3 { color: var(--home-purple-dark); font-size: .72rem; letter-spacing: .1em; }
.home-page .footer a:hover { color: var(--home-fuchsia); }
.home-page .hero-figure::before, .home-page .hero-figure::after, .home-page .home-path::before, .home-page .home-solution--lead::before { display: none; }
.home-page .home-link::after { display: none; }
.home-page .hero-figure { background-image: url(fundo-imflue.png); }
.home-page .hero-figure__inset { position: absolute; right: 5%; bottom: 5%; z-index: 2; width: min(38%, 250px); aspect-ratio: 1.35; margin: 0; overflow: hidden; border: 6px solid var(--home-bg); box-shadow: 0 16px 32px rgba(18, 17, 22, .16); }
.home-page .hero-figure__inset img { width: 100%; height: 100%; object-fit: cover; }
.home-page .home-image-slot { height: 178px; margin: 0 0 1.4rem; overflow: hidden; }
.home-page .home-image-slot img { width: 100%; height: 100%; object-fit: cover; }
.home-page .home-solution--lead > .home-image-slot { height: 255px; margin: 0 -2rem 1.75rem; }

@media (max-width: 760px) {
  .home-page .wrap { width: min(calc(100% - 2rem), var(--max)); }
  .home-page .header-inner { min-height: 70px; }
  .home-page .brand__image { width: 98px; }
  .home-page .mobile-nav { background: var(--home-surface); }
  .home-page .hero-grid { display: flex; flex-direction: column; min-height: 0; }
  .home-page .hero-copy { order: 1; padding: 3.2rem 1rem 2.4rem; }
  .home-page .hero-copy h1 { max-width: 360px; font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.02; }
  .home-page .hero-description { margin-top: 1.35rem; font-size: .9rem; }
  .home-page .hero-description--desktop { display: none; }
  .home-page .hero-description--mobile { display: inline; }
  .home-page .hero-actions { flex-wrap: wrap; margin-top: 1.5rem; gap: .7rem; }
  .home-page .hero-actions .button { flex: 1 1 190px; }
  .home-page .hero-figure { order: 2; min-height: 360px; }
  .home-page .hero-figure__inset { right: 4%; bottom: 4%; width: 42%; border-width: 4px; }
  .home-page .hero-signature__inner { justify-content: flex-start; }
  .home-page .hero-signature p { font-size: .68rem; }
  .home-page .home-section, .home-page .home-proof, .home-page .home-final-cta { padding: 4rem 0; }
  .home-page .home-section__head { display: block; margin-bottom: 2.25rem; }
  .home-page .home-section__head h2, .home-page .home-proof h2, .home-page .home-final-cta h2 { max-width: 360px; font-size: 2.2rem; }
  .home-page .home-section__head p { max-width: 340px; margin-top: 1rem; font-size: .86rem; }
  .home-page .home-paths__grid, .home-page .home-showcase__grid, .home-page .home-process-track, .home-page .home-testimonials__grid { grid-template-columns: 1fr; }
  .home-page .home-path { padding: 0 0 1.75rem; border-right: 0; border-bottom: 1px solid var(--home-border); }
  .home-page .home-path + .home-path { padding: 1.75rem 0; }
  .home-page .home-path:last-child { padding-bottom: 0; border-bottom: 0; }
  .home-page .home-image-slot { height: 170px; }
  .home-page .home-showcase__grid { display: flex; flex-direction: column; border-top: 1px solid var(--home-border); }
  .home-page .home-solution--lead { order: 1; padding-inline: 1rem; }
  .home-page .home-solution--lead > .home-image-slot { height: 220px; margin-inline: -1rem; }
  .home-page .home-solution--advisory { order: 2; }
  .home-page .home-solution--one { order: 3; }
  .home-page .home-solution--positioning { order: 4; }
  .home-page .home-solution:not(.home-solution--lead) { padding: 1.5rem 0; border-left: 0; }
  .home-page .home-showcase__links { justify-content: flex-start; gap: .8rem 1.1rem; }
  .home-page .home-process-step, .home-page .home-process-step + .home-process-step { padding: 1.35rem 0; border-right: 0; border-bottom: 1px solid var(--home-border); }
  .home-page .home-process-step:last-child { border-bottom: 0; }
  .home-page .home-proof-grid { gap: 2rem; }
  .home-page .home-proof-photo { height: 340px; order: -1; }
  .home-page .home-numbers { grid-template-columns: 1fr; }
  .home-page .home-number, .home-page .home-number:nth-child(n) { padding: 1rem 0 0; border-left: 0; }
  .home-page .home-number span { max-width: none; }
  .home-page .home-testimonial { padding: 1.5rem; }
  .home-page .home-final-cta__actions { flex-direction: column; align-items: stretch; }
  .home-page .home-final-cta__actions .button { width: 100%; }
}

.home-page .hero-figure { display: block; }
.home-page .hero-title--desktop { display: block; }
.home-page .hero-title--mobile { display: none; }
@media (max-width: 760px) {
  .home-page .hero-title--desktop { display: none; }
  .home-page .hero-title--mobile { display: block; }
}
.home-page .hero-grid { grid-template-columns: minmax(0, 56%) minmax(0, 44%); }
.home-page .hero-copy h1 { font-size: clamp(2.6rem, 3.7vw, 3.35rem); }
.home-page .hero-title--desktop > span { white-space: nowrap; }
.home-page .hero-signature p { font-family: var(--sans); letter-spacing: .08em; text-transform: none; }
@media (max-width: 760px) {
  .home-page .hero-title--desktop > span { white-space: normal; }
  .home-page .hero-grid { grid-template-columns: 1fr; }
  .home-page .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
}
.home-page .home-showcase__grid { grid-template-areas: none; grid-auto-flow: row; }
.home-page .home-solution--lead { grid-area: auto; grid-column: 1; grid-row: span 3; }
.home-page .home-solution--advisory, .home-page .home-solution--one, .home-page .home-solution--positioning { grid-area: auto; grid-column: 2; }
@media (max-width: 760px) {
  .home-page .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .home-page .hero-actions .button { width: 100%; min-width: 0; flex: none; }
  .home-page .home-showcase__grid { display: flex; }
  .home-page .home-solution--lead, .home-page .home-solution--advisory, .home-page .home-solution--one, .home-page .home-solution--positioning { grid-column: auto; grid-row: auto; }
}
@media (max-width: 980px) {
  .home-page .home-section__head { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .home-page .home-section__head p { max-width: 520px; }
}

@media (max-width: 980px) {
  .home-page .header-inner { gap: 1rem; }
  .home-page .main-nav, .home-page .header-tools { display: none; }
  .home-page .menu-toggle { display: grid; margin-left: auto; }
  .home-page .hero-grid { grid-template-columns: minmax(0, 52%) minmax(0, 48%); }
  .home-page .hero-copy { padding-left: 1.5rem; }
  .home-page .hero-copy h1 { font-size: clamp(2.55rem, 5vw, 3.4rem); }
  .home-page .home-proof-grid, .home-page .home-final-cta__inner { grid-template-columns: 1fr; }
  .home-page .home-final-cta__actions { justify-content: flex-start; }
}

/* HERO REFINEMENT â€” compact first viewport, soft image blend, restrained word accent */
.home-page .hero-grid { min-height: 510px; }
.home-page .hero-copy {
  padding-top: clamp(1.5rem, 2.6vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 2.6vw, 2.25rem);
}
.home-page .hero-figure {
  min-height: 510px;
  background-position: center right;
}
.home-page .hero-figure::before {
  display: block;
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, var(--home-bg) 0%, rgba(247, 244, 245, .94) 28%, rgba(247, 244, 245, .58) 62%, rgba(247, 244, 245, 0) 100%);
  pointer-events: none;
}
.home-page .hero-figure::after { display: none; }
.home-page .hero-title-word-accent { color: var(--home-fuchsia); }

@media (max-width: 760px) {
  .home-page .hero-grid { min-height: 0; }
  .home-page .hero-figure { min-height: 360px; }
  .home-page .hero-figure::before { display: none; }
}
.home-page .hero-title-word-accent { display: inline; }

/* MOBILE HERO SAFETY OVERRIDE */
@media (max-width: 760px) {
  .home-page .menu-toggle { display: grid; margin-left: auto; color: var(--home-ink); }
  .home-page .hero-copy { padding-left: 1rem; padding-right: 1rem; }
  .home-page .hero-actions { width: 100%; }
}
/* DARK BRAND HEADER */
.home-page .site-header {
  background: var(--home-purple-dark);
  border-bottom-color: rgba(255, 255, 255, .16);
  color: var(--home-surface);
}
.home-page .brand__image { width: 112px; }
.home-page .main-nav a { color: rgba(255, 255, 255, .88); }
.home-page .main-nav a:hover,
.home-page .main-nav a[aria-current=page] { color: var(--home-surface); }
.home-page .main-nav a[aria-current=page]::after { background: var(--home-fuchsia); }
.home-page .client-link { color: var(--home-lavender); }
.home-page .client-link:hover { color: var(--home-surface); }
.home-page .menu-toggle {
  color: var(--home-surface);
  border-color: rgba(255, 255, 255, .34);
}
.home-page .mobile-nav {
  color: var(--home-surface);
  background: var(--home-purple-dark);
  border-top-color: rgba(255, 255, 255, .16);
}
.home-page .mobile-nav a { border-bottom-color: rgba(255, 255, 255, .16); }

@media (max-width: 760px) {
  .home-page .brand__image { width: 104px; }
}
/* WHITE HEADER LOGO */
.home-page .site-header .brand__image { filter: none; }
.home-page .footer .brand__image { filter: brightness(0); }
/* MOBILE MENU VISIBILITY */
@media (max-width: 760px) {
  .home-page .site-header .menu-toggle {
    display: grid !important;
    flex: 0 0 44px;
    place-content: center;
    grid-template-rows: repeat(3, 1px);
    row-gap: 4px;
    visibility: visible;
    opacity: 1;
  }
  .home-page .site-header .menu-toggle span,
  .home-page .site-header .menu-toggle::before,
  .home-page .site-header .menu-toggle::after {
    margin: 0 auto;
  }
}
/* REMOVE HERO SIGNATURE STRIP */
.home-page .hero-signature { display: none; }
/* PATHS HEADING STACK */
.home-page .home-paths .home-section__head {
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.home-page .home-paths .home-section__head p {
  max-width: 650px;
}
/* SHOWCASE HEADING STACK */
.home-page .home-showcase .home-section__head {
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.home-page .home-showcase .home-section__head p {
  max-width: 650px;
}
/* HERO BALANCE REFINEMENT */
@media (min-width: 981px) {
  .home-page .hero-grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }
  .home-page .hero-copy {
    padding-right: clamp(1.5rem, 2.8vw, 2.75rem);
  }
  .home-page .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.75rem, 3.9vw, 3.5rem);
  }
  .home-page .hero-description {
    max-width: 650px;
    font-size: 1.02rem;
  }
  .home-page .hero-figure {
    background-size: auto 108%;
    background-position: right center;
  }
}
@media (min-width: 761px) {
  .home-page .hero-figure::before { display: none; }
}
/* COMPACT PATHS SECTION */
.home-page .home-paths {
  padding-top: clamp(2.75rem, 4vw, 3.5rem);
  padding-bottom: clamp(3.5rem, 5vw, 4.5rem);
}
.home-page .home-paths .home-section__head {
  margin-bottom: 2rem;
}
/* COMPACT PURPLE FOOTER LOGO */
.footer .brand {
  position: relative;
  display: inline-block;
  width: 92px;
  height: 26px;
}
.footer .brand::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #5d3197;
  -webkit-mask: url("assets/logotipo-imflue.png") center / contain no-repeat;
  mask: url("assets/logotipo-imflue.png") center / contain no-repeat;
}
.footer .brand__image {
  width: 92px;
  height: 26px;
  opacity: 0;
  filter: none;
}
/* PURPLE FOOTER LOGO ASSET */
.footer .brand {
  width: 92px;
  height: 26px;
  overflow: hidden;
}
.footer .brand::before { display: none; }
.footer .brand__image {
  position: absolute;
  top: -69px;
  left: -36px;
  width: 163px;
  max-width: none;
  height: 163px;
  opacity: 1;
  filter: none;
}
/* FOOTER LOGO FILTER RESET */
.footer .brand__image { filter: none !important; }
/* PATHS WITHOUT HEADING */
.home-page .home-paths { padding-top: 2rem; }/* SOLUTIONS 2026 */
.solutions-page{--s-purple:#36133b;--s-pink:#d51b73;--s-lav:#eee6f1;--s-paper:#f7f4f5;background:#fff;color:#211325}.solutions-page .site-header{background:var(--s-purple);color:#fff;border-color:#ffffff25}.solutions-page .site-header .brand__image{width:112px}.solutions-page .main-nav a,.solutions-page .client-link{color:#fff}.solutions-page .mobile-nav{background:var(--s-purple);color:#fff}.solutions-page .menu-toggle{color:#fff;border-color:#ffffff55}.solutions-page .button{border-radius:2px}.solutions-page .button--primary,.solutions-page .button--accent{background:var(--s-pink);border-color:var(--s-pink)}.solutions-hero{padding:clamp(4.5rem,8vw,7rem) 0;background:var(--s-purple);color:#fff}.solutions-hero h1{max-width:1000px;margin:0 0 2rem;font-family:var(--sans);font-size:clamp(3rem,6vw,5.4rem);font-weight:700;line-height:.98;letter-spacing:-.065em}.solutions-hero h1 span{color:#ed5b9c}.solutions-about{padding:clamp(4rem,7vw,6.5rem) 0;background:#fff}.solutions-about__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(3rem,7vw,7rem)}.solutions-about small{color:var(--s-pink);font-weight:800;text-transform:uppercase;letter-spacing:.12em}.solutions-about h2,.solutions-front h2,.solutions-cta h2{margin:.7rem 0 0;font-family:var(--sans);font-size:clamp(2.2rem,4vw,3.65rem);font-weight:700;line-height:1.05;letter-spacing:-.055em}.solutions-about p{margin:0 0 1rem;color:#655b67}.solutions-index{position:sticky;top:78px;z-index:10;background:#fff;border-block:1px solid #ddd5df}.solutions-index .wrap{display:grid;grid-template-columns:repeat(3,1fr)}.solutions-index a{padding:1.15rem;border-right:1px solid #ddd5df;color:var(--s-purple);font-size:.82rem;font-weight:800}.solutions-index a:last-child{border:0}.solutions-front{padding:clamp(4.5rem,7vw,7rem) 0;scroll-margin-top:150px}.solutions-front--light{background:var(--s-paper)}.solutions-front--lavender{background:var(--s-lav)}.solutions-front--dark{background:#242129;color:#fff}.solutions-front__header{display:grid;grid-template-columns:80px 1fr;gap:1rem;margin-bottom:3rem}.solutions-front__header>span{color:var(--s-pink);font-size:1.1rem;font-weight:800}.solutions-front__header h2{max-width:850px;margin:0}.solutions-front__header p{max-width:680px;color:#716776}.solutions-front--dark .solutions-front__header p{color:#ffffffb8}.product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid #cabfcd;border-left:1px solid #cabfcd}.product-card{display:flex;flex-direction:column;align-items:flex-start;min-width:0;padding:clamp(1.5rem,3vw,2.5rem);border-right:1px solid #cabfcd;border-bottom:1px solid #cabfcd;background:#ffffff90}.product-card h3{margin:0 0 1rem;color:var(--s-purple);font-family:var(--sans);font-size:clamp(1.5rem,2.4vw,2.15rem);line-height:1.1;letter-spacing:-.045em}.product-card>p{color:#655b67}.product-card>.button{margin-top:auto}.product-card details{width:100%;margin-top:1.5rem;border-top:1px solid #cabfcd}.product-card summary{padding:1rem 0;color:var(--s-pink);font-size:.8rem;font-weight:800;cursor:pointer}.product-details{padding:.25rem 0 1rem}.product-details h4{margin:1.4rem 0 .6rem}.product-details li{margin:.3rem 0}.solutions-front--dark .product-card{background:#ffffff08;border-color:#ffffff2c}.solutions-front--dark .product-card h3{color:#fff}.solutions-front--dark .product-card p,.solutions-front--dark .product-card li{color:#ffffffbd}.solutions-front--dark .button--primary,.solutions-front--dark .button--outline{color:#fff;border-color:#ffffff88;background:transparent}.solutions-cta{padding:clamp(4rem,7vw,6rem) 0;background:var(--s-purple);color:#fff}.solutions-cta .wrap{display:grid;grid-template-columns:1.2fr .8fr;gap:3rem;align-items:end}.solutions-cta h2{max-width:850px}.solutions-cta p{max-width:700px;color:#ffffffbd}.solutions-cta .button{justify-self:end}.solutions-page .footer{background:#fff}.solutions-page .footer-intro{max-width:300px}
@media(max-width:980px){.solutions-page .main-nav,.solutions-page .header-tools{display:none}.solutions-page .menu-toggle{display:grid;margin-left:auto}.solutions-index{position:static}.solutions-index .wrap{grid-template-columns:1fr}.solutions-index a{border-right:0;border-bottom:1px solid #ddd5df}.solutions-about__grid,.solutions-cta .wrap{grid-template-columns:1fr}.solutions-cta .button{justify-self:start}}
@media(max-width:700px){.solutions-hero{padding:3.5rem 0}.solutions-hero h1{font-size:clamp(2.45rem,12vw,3.5rem)}.solutions-about__grid{gap:1.5rem}.solutions-front__header{grid-template-columns:1fr}.product-grid{grid-template-columns:1fr}.solutions-front{padding:3.8rem 0}.solutions-front__header{margin-bottom:2rem}.product-card{padding:1.5rem}.solutions-page .wrap{width:min(calc(100% - 2rem),var(--max))}}
/* SOLUTIONS ALIGNMENT WITH HOME â€” 2026-09-20 */
.solutions-page{--home-bg:#f7f4f5;--home-surface:#fff;--home-ink:#121116;--home-purple:#59205f;--home-purple-dark:#36133b;--home-fuchsia:#d51b73;--home-lavender:#d8c7dd;--home-muted:#6e6971;--home-border:#ded8dd;color:var(--home-ink);background:var(--home-bg)}
.solutions-page .site-header{background:var(--home-purple-dark);border-bottom-color:rgba(255,255,255,.16);color:var(--home-surface);backdrop-filter:none}
.solutions-page .header-inner{min-height:78px;gap:1.75rem}.solutions-page .site-header .brand__image{width:112px;height:auto;filter:brightness(0) invert(1)}
.solutions-page .main-nav{gap:1.5rem}.solutions-page .main-nav a{color:rgba(255,255,255,.88);font-size:.78rem;font-weight:700}.solutions-page .main-nav a:hover,.solutions-page .main-nav a[aria-current=page]{color:#fff}.solutions-page .client-link{color:var(--home-lavender);font-size:.76rem}.solutions-page .header-tools .button{background:var(--home-fuchsia);border-color:var(--home-fuchsia);border-radius:10px}
.solutions-page .solutions-hero{display:flex;align-items:center;min-height:510px;padding:clamp(3rem,5vw,4.5rem) 0;color:var(--home-purple-dark);background:linear-gradient(90deg,var(--home-bg) 0 70%,#f1eaf2 100%);border-bottom:1px solid var(--home-border)}
.solutions-page .solutions-hero h1{max-width:930px;margin:0 0 2rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(2.75rem,3.9vw,3.5rem);font-weight:700;line-height:1.02;letter-spacing:-.065em}.solutions-page .solutions-hero h1 span{color:var(--home-fuchsia)}
.solutions-page .solutions-hero .button{min-height:48px;padding-inline:1.25rem;background:var(--home-fuchsia);border-color:var(--home-fuchsia);border-radius:2px;font-size:.82rem}
.solutions-page .solutions-about{padding:clamp(4rem,6vw,5.5rem) 0;background:var(--home-surface);border-bottom:1px solid var(--home-border)}
.solutions-page .solutions-about__grid{grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);gap:clamp(2.5rem,6vw,6rem);align-items:start}.solutions-page .solutions-about small{color:var(--home-fuchsia);font-size:.72rem;letter-spacing:.12em}.solutions-page .solutions-about h2{max-width:700px;margin:.8rem 0 0;color:var(--home-purple-dark);font-size:clamp(2.25rem,3.6vw,3.15rem);line-height:1.04;letter-spacing:-.06em}.solutions-page .solutions-about p{color:var(--home-muted);font-size:.95rem;line-height:1.65}
.solutions-page .solutions-index{position:static;top:auto;background:var(--home-surface);border-color:var(--home-border)}.solutions-page .solutions-index a{min-height:88px;padding:1.35rem 1.5rem;color:var(--home-purple-dark);border-color:var(--home-border);font-size:.8rem;line-height:1.35}
.solutions-page .solutions-front{padding:clamp(4rem,6vw,5.5rem) 0}.solutions-page .solutions-front--light{background:var(--home-bg)}.solutions-page .solutions-front--lavender{background:#eee7f0}.solutions-page .solutions-front--dark{background:#25232a}.solutions-page .solutions-front__header{grid-template-columns:56px minmax(0,1fr);margin-bottom:2.5rem}.solutions-page .solutions-front__header h2{color:var(--home-purple-dark);font-size:clamp(2.3rem,4vw,3.35rem);line-height:1.04;letter-spacing:-.06em}.solutions-page .solutions-front__header p{max-width:650px;margin:.85rem 0 0;color:var(--home-muted);font-size:.95rem;line-height:1.55}.solutions-page .solutions-front--dark .solutions-front__header h2{color:#fff}.solutions-page .product-grid{border-color:var(--home-border)}.solutions-page .product-card{padding:clamp(1.5rem,2.5vw,2.25rem);background:rgba(255,255,255,.72);border-color:var(--home-border)}.solutions-page .product-card h3{font-size:clamp(1.4rem,2vw,1.8rem)}.solutions-page .product-card>p{font-size:.88rem;line-height:1.6}.solutions-page .product-card .button{min-height:44px;border-radius:2px;font-size:.76rem}.solutions-page .solutions-cta{background:var(--home-purple-dark)}.solutions-page .solutions-cta h2{font-size:clamp(2.3rem,4vw,3.35rem)}
@media(max-width:980px){.solutions-page .solutions-hero{min-height:440px}.solutions-page .solutions-about__grid{grid-template-columns:1fr}.solutions-page .solutions-about h2{max-width:760px}.solutions-page .solutions-index .wrap{grid-template-columns:1fr}.solutions-page .solutions-index a{min-height:0}}
@media(max-width:700px){.solutions-page .header-inner{min-height:70px}.solutions-page .site-header .brand__image{width:104px}.solutions-page .solutions-hero{min-height:0;padding:3.5rem 0;background:var(--home-bg)}.solutions-page .solutions-hero h1{font-size:clamp(2.2rem,10vw,3rem);max-width:360px}.solutions-page .solutions-about{padding:3.75rem 0}.solutions-page .solutions-about h2{font-size:2.2rem}.solutions-page .solutions-front__header{grid-template-columns:1fr}.solutions-page .product-grid{grid-template-columns:1fr}}/* SOLUTIONS HERO FINAL DENSITY */
@media(min-width:981px){.solutions-page .solutions-hero{min-height:410px;padding-block:3.5rem}.solutions-page .solutions-hero h1{max-width:940px}}
@media(min-width:701px) and (max-width:980px){.solutions-page .solutions-hero{min-height:380px;padding-block:3rem}}@media(max-width:760px){.solutions-page .site-header .menu-toggle{display:grid!important;flex:0 0 44px;margin-left:auto;place-content:center;grid-template-rows:repeat(3,1px);row-gap:4px;visibility:visible;opacity:1}.solutions-page .site-header .menu-toggle span,.solutions-page .site-header .menu-toggle::before,.solutions-page .site-header .menu-toggle::after{margin:0 auto}.solutions-page .solutions-hero h1{font-size:clamp(2.15rem,9.6vw,2.6rem);line-height:1.03}}
/* HOME PATHS â€” EDITORIAL INTEGRATED */
.home-page .home-paths{padding:clamp(2.5rem,4vw,3.5rem) 0 clamp(3.5rem,5vw,4.5rem);background:var(--home-bg)}
.home-page .home-paths__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1.25rem,2.2vw,2rem);align-items:stretch;border:0}
.home-page .home-path,.home-page .home-path+.home-path,.home-page .home-path:last-child{display:flex;min-width:0;height:100%;padding:0;border:0;background:var(--home-surface);box-shadow:0 12px 30px rgba(54,19,59,.07)}
.home-page .home-path{flex-direction:column}.home-page .home-path::before{display:none!important}
.home-page .home-path__media{width:100%;height:190px;margin:0;overflow:hidden;background:#e8e2e8}
.home-page .home-path__media img{width:100%;height:100%;object-fit:cover;object-position:center}
.home-page .home-path__content{display:flex;flex:1;flex-direction:column;align-items:flex-start;padding:1.6rem 1.65rem 1.75rem}
.home-page .home-path__number{display:block;margin-bottom:.65rem;color:var(--home-fuchsia);font-size:.68rem;font-weight:800;line-height:1;letter-spacing:.14em}
.home-page .home-path h3{margin:0;color:var(--home-purple-dark);font-size:clamp(1.3rem,1.8vw,1.65rem);line-height:1.12}
.home-page .home-path p{max-width:none;min-height:0;margin:.9rem 0 1.75rem;color:var(--home-muted);font-size:.86rem;line-height:1.58}
.home-page .home-path__cta{display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin-top:auto;padding:.72rem 1.15rem;color:#fff;background:var(--home-purple-dark);border:1px solid var(--home-purple-dark);border-radius:2px;font-size:.76rem;font-weight:800;line-height:1;text-decoration:none;transition:background .22s var(--ease),border-color .22s var(--ease),transform .22s var(--ease)}
.home-page .home-path__cta:hover{background:var(--home-fuchsia);border-color:var(--home-fuchsia);transform:translateY(-1px)}
.home-page .home-path__cta:focus-visible{outline:3px solid var(--home-fuchsia);outline-offset:4px}
@media(max-width:980px){.home-page .home-paths__grid{grid-template-columns:1fr;gap:1.5rem}.home-page .home-path,.home-page .home-path+.home-path,.home-page .home-path:last-child{padding:0;border:0}.home-page .home-path__media{height:clamp(210px,42vw,330px)}.home-page .home-path__content{padding:1.5rem}.home-page .home-path p{margin-bottom:1.5rem}.home-page .home-path__cta{min-height:46px}}
@media(max-width:520px){.home-page .home-paths{padding-top:2rem}.home-page .home-path__media{height:200px}.home-page .home-path__content{padding:1.35rem 1.25rem 1.5rem}}
/* HOME RESULTS â€” EDITORIAL CREDENTIAL STRIP */
.home-page .home-proof{padding:clamp(3.5rem,5vw,4.5rem) 0;color:var(--home-surface);background:var(--home-graphite)}
.home-page .home-proof .wrap{width:min(calc(100% - 3rem),var(--max))}
.home-page .home-numbers{display:flex;grid-column:auto;flex-wrap:nowrap;align-items:flex-start;justify-content:space-between;gap:clamp(1rem,2.5vw,2.5rem);width:100%;margin:0;padding:0;border:0}
.home-page .home-number,.home-page .home-number:nth-child(n){flex:1 1 0;min-width:0;padding:0;border:0;text-align:center}
.home-page .home-number strong{display:block;color:var(--home-fuchsia);font-family:var(--sans);font-size:clamp(2.35rem,3.7vw,3.5rem);font-weight:700;line-height:1;letter-spacing:-.06em;text-shadow:none;-webkit-text-stroke:0 transparent}
.home-page .home-number span{display:block;width:auto;max-width:none;margin:.65rem 0 0;color:rgba(255,255,255,.8);font-size:.78rem;font-weight:600;line-height:1.35;text-transform:none;white-space:normal}
@media(max-width:980px){.home-page .home-proof{padding:3.75rem 0}.home-page .home-numbers{flex-wrap:wrap;justify-content:center;gap:2.5rem 2rem}.home-page .home-number,.home-page .home-number:nth-child(n){flex:0 1 calc(33.333% - 2rem);padding:0;border:0}.home-page .home-number strong{font-size:clamp(2.4rem,6vw,3.25rem)}}
@media(max-width:600px){.home-page .home-proof{padding:3.25rem 0}.home-page .home-proof .wrap{width:min(calc(100% - 2rem),var(--max))}.home-page .home-numbers{gap:2.25rem 1rem}.home-page .home-number,.home-page .home-number:nth-child(n){flex:0 1 calc(50% - .75rem);padding:0;border:0}.home-page .home-number strong{font-size:clamp(2.15rem,10vw,2.75rem)}.home-page .home-number span{max-width:145px;margin:.55rem auto 0;font-size:.72rem}}/* HOME RESULTS â€” EXPLICIT RESPONSIVE GRID */
.home-page .home-numbers{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:clamp(1rem,2.5vw,2.5rem)}
.home-page .home-number,.home-page .home-number:nth-child(n){width:auto;max-width:none;min-width:0;padding:0;border:0}
@media(max-width:980px){.home-page .home-numbers{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:2.5rem 1.5rem}.home-page .home-number:nth-child(1){grid-column:1/span 2}.home-page .home-number:nth-child(2){grid-column:3/span 2}.home-page .home-number:nth-child(3){grid-column:5/span 2}.home-page .home-number:nth-child(4){grid-column:2/span 2}.home-page .home-number:nth-child(5){grid-column:4/span 2}}
@media(max-width:600px){.home-page .home-numbers{grid-template-columns:repeat(2,minmax(0,1fr));gap:2.25rem 1rem}.home-page .home-number:nth-child(1),.home-page .home-number:nth-child(2),.home-page .home-number:nth-child(3),.home-page .home-number:nth-child(4){grid-column:auto}.home-page .home-number:nth-child(5){grid-column:1/-1}.home-page .home-number strong{white-space:nowrap}}@media(max-width:600px){.home-page .home-proof .wrap{width:100%!important;max-width:100%!important;margin:0!important;padding:0 1rem!important}.home-page .home-numbers{width:calc(100vw - 2rem)!important;max-width:calc(100vw - 2rem)!important;margin:0 auto!important;padding:0!important}.home-page .home-number,.home-page .home-number:nth-child(n){width:100%!important;max-width:100%!important;overflow:visible}.home-page .home-number strong{font-size:clamp(1.9rem,9vw,2.35rem)}.home-page .home-number span{max-width:150px;font-size:.68rem}}
/* HOME FINAL CTA + FOOTER â€” LIGHT/DARK CLOSING SYSTEM */
.home-page .home-final-cta{padding:clamp(5rem,7vw,6.5rem) 0;color:var(--home-ink);background:var(--home-bg)}
.home-page .home-final-cta__inner{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(360px,.78fr);gap:clamp(3rem,5vw,5rem);align-items:center}
.home-page .home-final-cta__title,.home-page .home-final-cta__content{min-width:0}
.home-page .home-final-cta h2{max-width:690px;margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(2.65rem,3.7vw,3.1rem);font-weight:700;line-height:1.08;letter-spacing:-.055em}
.home-page .home-final-cta p{max-width:560px;margin:0;color:var(--home-muted);font-size:clamp(1.06rem,1.35vw,1.16rem);line-height:1.65}
.home-page .home-final-cta__actions{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-start;gap:1rem 1.5rem;margin-top:1.85rem}
.home-page .home-final-cta .button--accent{min-height:48px;padding:.78rem 1.25rem;color:#fff;background:var(--home-fuchsia);border-color:var(--home-fuchsia);border-radius:2px;font-size:.8rem}
.home-page .home-final-cta .button--accent:hover{background:var(--home-purple-dark);border-color:var(--home-purple-dark)}
.home-page .home-final-cta__secondary{display:inline-flex;padding:.45rem 0;color:var(--home-purple-dark);border-bottom:1px solid rgba(54,19,59,.35);font-size:.8rem;font-weight:800;line-height:1.3;transition:color .22s var(--ease),border-color .22s var(--ease)}
.home-page .home-final-cta__secondary:hover{color:var(--home-fuchsia);border-color:var(--home-fuchsia)}
.home-page .home-final-cta__secondary:focus-visible{outline:3px solid var(--home-fuchsia);outline-offset:4px}
.home-page .footer{margin:0;padding:0;color:rgba(255,255,255,.86);background:#201d24}
.home-page .footer-top{display:grid;grid-template-columns:1.25fr .72fr 1fr .8fr;gap:clamp(2rem,4vw,4rem);padding-top:clamp(4rem,5.5vw,5rem);padding-bottom:clamp(2rem,3vw,2.75rem)}
.home-page .footer .brand{position:static;display:inline-flex;width:92px;height:auto;overflow:visible}
.home-page .footer .brand::before{display:none}
.home-page .footer .brand__image{position:static;display:block;width:92px;max-width:92px;height:auto;opacity:1;filter:none!important}
.home-page .footer-intro{max-width:320px;margin:1.35rem 0 0;color:rgba(255,255,255,.68);font-size:.82rem;line-height:1.65}
.home-page .footer h3{margin:0 0 1.15rem;color:rgba(255,255,255,.82);font-size:.68rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.home-page .footer-nav,.home-page .footer-links{display:flex;flex-direction:column;align-items:flex-start;gap:.62rem;margin:0;padding:0;list-style:none}
.home-page .footer-nav a,.home-page .footer-links a,.home-page .footer-contact a{color:rgba(255,255,255,.72);font-size:.78rem;line-height:1.45;text-decoration:none}
.home-page .footer-contact p{margin:0 0 .62rem;color:rgba(255,255,255,.68);font-size:.78rem}
.home-page .footer a:hover{color:var(--home-fuchsia)}
.home-page .footer a:focus-visible{outline:3px solid var(--home-fuchsia);outline-offset:4px}
.home-page .footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:2rem;padding-top:1.65rem;padding-bottom:1.85rem;color:rgba(255,255,255,.5);border-top:1px solid rgba(255,255,255,.12);font-size:.68rem}
@media(max-width:980px){.home-page .home-final-cta__inner{grid-template-columns:1fr;gap:2rem}.home-page .home-final-cta h2{max-width:760px}.home-page .home-final-cta p{max-width:650px}.home-page .footer-top{grid-template-columns:repeat(2,minmax(0,1fr));gap:2.75rem 3rem}}
@media(max-width:600px){.home-page .home-final-cta{padding:4rem 0}.home-page .home-final-cta__inner{width:min(calc(100% - 2rem),var(--max));max-width:calc(100% - 2rem);gap:1.6rem}.home-page .home-final-cta__title,.home-page .home-final-cta__content{width:100%;max-width:100%}.home-page .home-final-cta h2{max-width:350px;font-size:clamp(2rem,9vw,2.45rem);line-height:1.08}.home-page .home-final-cta p{width:100%!important;max-width:350px!important;font-size:.96rem;line-height:1.62}.home-page .home-final-cta__actions{flex-direction:column;align-items:flex-start;gap:1rem;margin-top:1.5rem}.home-page .home-final-cta__actions .button{width:auto}.home-page .footer-top{grid-template-columns:1fr;gap:2.35rem;padding-top:3.75rem;padding-bottom:2.25rem}.home-page .footer-bottom{flex-direction:column;align-items:flex-start;gap:.5rem;padding-top:1.5rem;padding-bottom:1.75rem}}
/* FINAL CTA â€” CONTROLLED TITLE BALANCE */
@media(min-width:981px){.home-page .home-final-cta h2>span{display:block;white-space:nowrap}}
@media(max-width:980px){.home-page .home-final-cta h2>span{display:inline}.home-page .home-final-cta h2>span:not(:last-child)::after{content:" "}}
/* FINAL CTA â€” TOP-ALIGNED TWO-LINE HEADING */
@media(min-width:981px){.home-page .home-final-cta__inner{align-items:start}.home-page .home-final-cta__title,.home-page .home-final-cta__content{padding-top:0}.home-page .home-final-cta h2>span{display:block;white-space:nowrap}}
/* SOLUTIONS DETAIL â€” HOME VISUAL SYSTEM */
.solutions-detail-page{background:var(--home-bg)}
.solutions-detail-page .site-header .brand__image{filter:none}
.solutions-detail-hero{padding:clamp(4.5rem,7vw,6.5rem) 0 clamp(3.75rem,5vw,4.75rem);background:var(--home-bg);border-bottom:1px solid var(--home-border)}
.solutions-detail-hero__eyebrow{display:block;margin-bottom:1rem;color:var(--home-fuchsia);font-size:.7rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.solutions-detail-hero h1{max-width:900px;margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.75rem,3vw,2.75rem);font-weight:700;line-height:.98;letter-spacing:-.065em}
.solutions-detail-list{padding:clamp(2rem,4vw,3.5rem) 0 clamp(4.5rem,7vw,6.5rem);background:var(--home-bg)}
.solutions-detail-list__inner{display:grid;gap:clamp(2.25rem,4vw,3.75rem)}
.solutions-detail-card{overflow:hidden;background:var(--home-surface);box-shadow:0 16px 38px rgba(54,19,59,.07);scroll-margin-top:100px}
.solutions-detail-card__media{height:clamp(260px,28vw,390px);margin:0;overflow:hidden;background:#e8e2e8}
.solutions-detail-card__media img{width:100%;height:100%;object-fit:cover;object-position:center 15%}
.solutions-detail-card__body{padding:clamp(2rem,4vw,4rem)}
.solutions-detail-card__number{display:block;margin-bottom:.75rem;color:var(--home-fuchsia);font-size:.7rem;font-weight:800;letter-spacing:.15em}
.solutions-detail-card__header{display:flex;flex-direction:column;gap:.75rem;align-items:flex-start;padding-bottom:clamp(1.75rem,2.5vw,2.5rem);border-bottom:1px solid var(--home-border)}
.solutions-detail-card__header h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.1rem,2vw,1.725rem);font-weight:700;line-height:1.2;letter-spacing:-.04em;white-space:nowrap}
.solutions-detail-card__header p{max-width:900px;margin:0;color:var(--home-muted);font-size:1rem;line-height:1.65}
.solutions-detail-card__content{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 clamp(2.5rem,5vw,5rem)}
.solutions-detail-card__content--single{display:block}
.solutions-detail-group{padding-top:clamp(2rem,3vw,2.75rem)}.solutions-detail-card__content>.solutions-detail-group:first-child{padding-top:0}
.solutions-detail-group--wide{grid-column:1/-1}
.solutions-detail-group>h3{margin:0 0 1.4rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.45rem,2vw,1.85rem);line-height:1.15;letter-spacing:-.035em}
.solutions-detail-group>p{margin:0;color:var(--home-muted);font-size:.93rem;line-height:1.65}
.solutions-detail-items{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.solutions-detail-items--three{grid-template-columns:repeat(3,minmax(0,1fr))}.solutions-detail-items--single{grid-template-columns:1fr}.solutions-detail-items--single .solutions-detail-item{padding-left:0!important;padding-right:0!important;border-left:0!important}
.solutions-detail-item{min-width:0;padding:clamp(1.5rem,2.5vw,2.25rem) clamp(1.25rem,2.5vw,2.25rem) clamp(1.5rem,2.5vw,2.25rem) 0;border-bottom:1px solid var(--home-border)}
.solutions-detail-item:nth-child(even){padding-left:clamp(1.25rem,2.5vw,2.25rem);padding-right:0;border-left:1px solid var(--home-border)}
.solutions-detail-items--three .solutions-detail-item{padding-left:clamp(1rem,2vw,1.8rem);padding-right:clamp(1rem,2vw,1.8rem);border-left:1px solid var(--home-border)}
.solutions-detail-items--three .solutions-detail-item:first-child{padding-left:0;border-left:0}
.solutions-detail-items--three .solutions-detail-item:last-child{padding-right:0}
.solutions-detail-item h3,.solutions-detail-item h4{margin:0 0 .8rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.15rem,1.55vw,1.42rem);font-weight:700;line-height:1.18;letter-spacing:-.035em}
.solutions-detail-item p{margin:0;color:var(--home-muted);font-size:.88rem;line-height:1.65}
@media(max-width:980px){.solutions-detail-card__header{gap:.75rem}.solutions-detail-card__header p{max-width:100%}.solutions-detail-items--three{grid-template-columns:1fr}.solutions-detail-items--three .solutions-detail-item,.solutions-detail-items--three .solutions-detail-item:first-child,.solutions-detail-items--three .solutions-detail-item:last-child{padding:1.5rem 0;border-left:0}}
@media(max-width:700px){.solutions-detail-hero{padding:3.5rem 0 3rem}.solutions-detail-hero h1{font-size:clamp(1.4rem,7.5vw,2rem)}.solutions-detail-list{padding-top:1.5rem}.solutions-detail-page .solutions-detail-list .wrap{width:min(calc(100% - 2rem),var(--max))}.solutions-detail-card__media{height:210px}.solutions-detail-card__body{padding:1.6rem 1.35rem 2rem}.solutions-detail-card__header h2{font-size:1rem}.solutions-detail-card__content{grid-template-columns:1fr}.solutions-detail-group--wide{grid-column:auto}.solutions-detail-items{grid-template-columns:1fr}.solutions-detail-item,.solutions-detail-item:nth-child(even){padding:1.4rem 0;border-left:0}.solutions-detail-group{padding-top:1.75rem}}
/* FLAVIA GAMONAR â€” HOME VISUAL SYSTEM */
.profile-page{background:var(--home-bg);color:var(--home-ink)}
.profile-page .site-header .brand__image{filter:none}
.profile-hero{background:var(--home-bg);border-bottom:1px solid var(--home-border)}
.profile-hero__grid{display:grid;grid-template-columns:minmax(0,52%) minmax(0,48%);min-height:560px}
.profile-hero__copy{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;padding:clamp(3rem,5vw,5rem) clamp(2rem,4vw,4.5rem) clamp(3rem,5vw,5rem) 0}
.profile-hero h1{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(3.7rem,6vw,5.8rem);font-weight:700;line-height:.96;letter-spacing:-.07em}
.profile-hero__copy>p{max-width:620px;margin:1.7rem 0 0;color:var(--home-muted);font-size:clamp(1.05rem,1.4vw,1.22rem);line-height:1.62}
.profile-hero__actions{display:flex;flex-wrap:wrap;gap:1rem 1.4rem;margin-top:2rem}.profile-hero__actions .button{min-height:48px;border-radius:2px;font-size:.78rem}.profile-hero__actions .button--accent{color:#fff;background:var(--home-fuchsia);border-color:var(--home-fuchsia)}.profile-hero__actions .button--outline{color:var(--home-purple-dark);border-color:var(--home-purple-dark)}
.profile-hero__media{min-width:0;margin:0;overflow:hidden;background:#e5e3e1}.profile-hero__media img{width:100%;height:100%;object-fit:cover;object-position:center 35%}
.profile-story,.profile-authority,.profile-formats{padding:clamp(4.5rem,7vw,6.5rem) 0}.profile-story{background:#fff}.profile-authority{background:#eee7f0}.profile-formats{background:var(--home-bg)}
.profile-split{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(380px,.78fr);gap:clamp(3rem,7vw,7rem);align-items:start}
.profile-number{display:block;margin-bottom:1rem;color:var(--home-fuchsia);font-size:.7rem;font-weight:800;letter-spacing:.15em}
.profile-split h2,.profile-section-head h2,.profile-proof h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(2.4rem,4vw,3.55rem);font-weight:700;line-height:1.04;letter-spacing:-.06em}
.profile-copy p{margin:0 0 1.2rem;color:var(--home-muted);font-size:.98rem;line-height:1.72}.profile-copy p:last-child{margin-bottom:0}
.profile-expertise{padding:clamp(4.5rem,7vw,6.5rem) 0;background:var(--home-bg)}
.profile-section-head{display:grid;grid-template-columns:60px minmax(0,1fr);gap:1rem;margin-bottom:clamp(2.5rem,4vw,3.5rem)}.profile-section-head .profile-number{padding-top:.55rem}.profile-section-head>div{display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,.72fr);gap:clamp(2rem,6vw,6rem);align-items:start}.profile-section-head p{max-width:600px;margin:.25rem 0 0;color:var(--home-muted);font-size:.96rem;line-height:1.65}
.profile-expertise__list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));margin:0;padding:0;border-top:1px solid var(--home-border);list-style:none;counter-reset:expertise}.profile-expertise__list li{position:relative;min-height:92px;padding:1.55rem 1.5rem 1.55rem 4.25rem;color:var(--home-purple-dark);border-bottom:1px solid var(--home-border);counter-increment:expertise;font-family:var(--sans);font-size:clamp(1.05rem,1.45vw,1.3rem);font-weight:700;line-height:1.28}.profile-expertise__list li:nth-child(even){border-left:1px solid var(--home-border)}.profile-expertise__list li::before{position:absolute;top:1.7rem;left:1.25rem;content:counter(expertise,decimal-leading-zero);color:var(--home-fuchsia);font-family:var(--sans);font-size:.7rem;font-weight:800;letter-spacing:.1em}
.profile-proof{padding:clamp(4.5rem,6vw,5.5rem) 0;color:#fff;background:var(--home-graphite)}.profile-proof__head{display:flex;gap:1.25rem;align-items:flex-start;margin-bottom:3rem}.profile-proof__head .profile-number{padding-top:.6rem}.profile-proof h2{color:#fff}.profile-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.2);border-left:1px solid rgba(255,255,255,.2)}.profile-metrics>div{min-height:150px;padding:1.6rem;border-right:1px solid rgba(255,255,255,.2);border-bottom:1px solid rgba(255,255,255,.2)}.profile-metrics strong{display:block;color:var(--home-fuchsia);font-family:var(--sans);font-size:clamp(2rem,3vw,2.8rem);line-height:1;letter-spacing:-.055em}.profile-metrics span{display:block;max-width:190px;margin-top:.75rem;color:rgba(255,255,255,.72);font-size:.75rem;line-height:1.45}
.profile-section-head--compact>div{grid-template-columns:1fr}.profile-formats__grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:1.5rem}.profile-formats__grid article{display:flex;grid-column:span 2;flex-direction:column;min-height:260px;padding:1.7rem;background:#fff;box-shadow:0 12px 30px rgba(54,19,59,.07)}.profile-formats__grid article:nth-child(4){grid-column:2/span 2}.profile-formats__grid article span{color:var(--home-fuchsia);font-size:.7rem;font-weight:800;letter-spacing:.14em}.profile-formats__grid article h3{margin:1rem 0 .8rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.35rem,1.8vw,1.65rem);line-height:1.12}.profile-formats__grid article p{margin:0;color:var(--home-muted);font-size:.86rem;line-height:1.6}
@media(max-width:980px){.profile-hero__grid{grid-template-columns:1fr;min-height:0}.profile-hero__copy{padding:4rem 0 3.5rem}.profile-hero__media{height:600px}.profile-split{grid-template-columns:1fr;gap:2rem}.profile-section-head>div{grid-template-columns:1fr;gap:1rem}.profile-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.profile-formats__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.profile-formats__grid article,.profile-formats__grid article:nth-child(4){grid-column:auto}}
@media(max-width:600px){.profile-hero__copy{padding:3.25rem 0 2.75rem}.profile-hero h1{font-size:clamp(3rem,15vw,4rem)}.profile-hero__copy>p{font-size:1rem}.profile-hero__actions{flex-direction:column;align-items:flex-start}.profile-hero__media{height:430px}.profile-story,.profile-authority,.profile-expertise,.profile-formats{padding:4rem 0}.profile-split h2,.profile-section-head h2,.profile-proof h2{font-size:2.25rem}.profile-section-head{grid-template-columns:1fr;gap:.25rem}.profile-section-head .profile-number{padding-top:0}.profile-expertise__list{grid-template-columns:1fr}.profile-expertise__list li:nth-child(even){border-left:0}.profile-proof__head{display:block}.profile-proof__head .profile-number{padding-top:0}.profile-metrics{grid-template-columns:1fr 1fr}.profile-metrics>div{min-height:135px;padding:1.25rem}.profile-metrics strong{font-size:1.8rem}.profile-formats__grid{grid-template-columns:1fr}.profile-formats__grid article{min-height:0}}
/* HOME CLIENT LOGO MARQUEE */
.home-page .client-marquee{overflow:hidden;padding:clamp(2.75rem,4vw,3.75rem) 0;background:#fff;border-top:1px solid var(--home-border);border-bottom:1px solid var(--home-border)}
.home-page .client-marquee__head{margin-bottom:1.75rem}
.home-page .client-marquee h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:.72rem;font-weight:800;line-height:1.3;letter-spacing:.12em;text-transform:uppercase}
.home-page .client-marquee__viewport{position:relative;width:100%;overflow:hidden;mask-image:linear-gradient(90deg,transparent 0,#000 6%,#000 94%,transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 6%,#000 94%,transparent 100%)}
.home-page .client-marquee__track{display:flex;width:max-content;animation:client-logos-scroll 78s linear infinite;will-change:transform}
.home-page .client-marquee__viewport:hover .client-marquee__track{animation-play-state:paused}
.home-page .client-marquee__group{display:flex;flex:none;align-items:center}
.home-page .client-logo{display:grid;flex:0 0 190px;height:82px;margin:0;padding:1rem 1.5rem;place-items:center;border-right:1px solid var(--home-border)}
.home-page .client-logo img{display:block;width:auto;max-width:145px;height:auto;max-height:48px;object-fit:contain;filter:grayscale(1);opacity:.72;mix-blend-mode:multiply;transition:filter .25s var(--ease),opacity .25s var(--ease),transform .25s var(--ease)}
.home-page .client-logo:hover img{filter:grayscale(0);opacity:1;transform:scale(1.04)}
@keyframes client-logos-scroll{to{transform:translateX(-50%)}}
@media(max-width:700px){.home-page .client-marquee{padding:2.5rem 0}.home-page .client-marquee__head{width:min(calc(100% - 2rem),var(--max));margin-bottom:1.35rem}.home-page .client-marquee__viewport{mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent 100%);-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 10%,#000 90%,transparent 100%)}.home-page .client-marquee__track{animation-duration:68s}.home-page .client-logo{flex-basis:155px;height:72px;padding:.85rem 1.1rem}.home-page .client-logo img{max-width:122px;max-height:42px}}
@media(prefers-reduced-motion:reduce){.home-page .client-marquee__viewport{overflow-x:auto;mask-image:none;-webkit-mask-image:none;scrollbar-width:thin}.home-page .client-marquee__track{animation:none}.home-page .client-marquee__group[aria-hidden=true]{display:none}}
/* HOME PROFESSIONAL MOMENTS â€” NATURAL MASONRY */
.home-page .moments-gallery{padding:clamp(4rem,6vw,5.5rem) 0 clamp(4.5rem,7vw,6.5rem);background:#fff;border-bottom:1px solid var(--home-border)}
.home-page .moments-gallery__head{margin-bottom:clamp(1.75rem,3vw,2.5rem)}
.home-page .moments-gallery h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(2.4rem,4vw,3.55rem);font-weight:700;line-height:1.04;letter-spacing:-.06em}
.home-page .moments-gallery__mosaic{columns:4;column-gap:10px}
.home-page .moments-gallery__item{position:relative;margin:0 0 10px;overflow:hidden;break-inside:avoid;background:#e8e2e8}
.home-page .moments-gallery__item img{display:block;width:100%;height:auto;transition:transform .55s var(--ease),filter .4s var(--ease)}
.home-page .moments-gallery__item::after{position:absolute;inset:0;content:"";pointer-events:none;box-shadow:inset 0 0 0 1px rgba(54,19,59,.06)}
.home-page .moments-gallery__item:hover img{transform:scale(1.025)}
@media(max-width:980px){.home-page .moments-gallery__mosaic{columns:3}}
@media(max-width:620px){.home-page .moments-gallery{padding:3.75rem 0 4rem}.home-page .moments-gallery__head,.home-page .moments-gallery__mosaic{width:min(calc(100% - 2rem),var(--max))}.home-page .moments-gallery h2{font-size:2.35rem}.home-page .moments-gallery__mosaic{columns:2;column-gap:7px}.home-page .moments-gallery__item{margin-bottom:7px}}
@media(prefers-reduced-motion:reduce){.home-page .moments-gallery__item img{transition:none}.home-page .moments-gallery__item:hover img{transform:none}}
/* GLOBAL HORIZONTAL ALIGNMENT SAFEGUARD */
html,body{width:100%;max-width:100%;overflow-x:clip}
.home-page{width:100%;max-width:100%;overflow-x:clip}
.home-page .site-header,.home-page main,.home-page .footer,.home-page section{max-width:100%}
.home-page .client-marquee{width:100%;max-width:100%;contain:inline-size paint}
.home-page .client-marquee__viewport{width:100%;max-width:100%;contain:inline-size paint}
.home-page .client-marquee__track{max-width:none}
/* HOME PROFESSIONAL MOMENTS â€” COMPACT REFINEMENT */
.home-page .moments-gallery{padding:clamp(2.75rem,4vw,3.75rem) 0 clamp(3rem,4.5vw,4rem)}
.home-page .moments-gallery__head{width:min(calc(100% - 3rem),1120px);margin-bottom:1.5rem}
.home-page .moments-gallery h2{font-size:clamp(1.85rem,2.8vw,2.55rem);letter-spacing:-.05em}
.home-page .moments-gallery__mosaic{width:min(calc(100% - 3rem),1120px);columns:6;column-gap:7px}
.home-page .moments-gallery__item{margin-bottom:7px}
@media(max-width:1100px){.home-page .moments-gallery__mosaic{columns:5}}
@media(max-width:820px){.home-page .moments-gallery__mosaic{columns:4}}
@media(max-width:620px){.home-page .moments-gallery{padding:2.75rem 0 3.25rem}.home-page .moments-gallery__head,.home-page .moments-gallery__mosaic{width:min(calc(100% - 2rem),1120px)}.home-page .moments-gallery__head{margin-bottom:1.25rem}.home-page .moments-gallery h2{font-size:1.9rem}.home-page .moments-gallery__mosaic{columns:2;column-gap:6px}.home-page .moments-gallery__item{margin-bottom:6px}}
/* HOME FINAL CTA â€” CENTERED COMPOSITION */
.home-page .home-final-cta{padding:clamp(4.5rem,6.5vw,6rem) 0}
.home-page .home-final-cta__inner{display:grid;grid-template-columns:minmax(0,900px);justify-content:center;justify-items:center;gap:1.4rem;text-align:center}
.home-page .home-final-cta__title,.home-page .home-final-cta__content{width:100%;padding-top:0}
.home-page .home-final-cta h2{max-width:820px;margin:0 auto;font-size:clamp(2.55rem,4vw,3.35rem)}
.home-page .home-final-cta h2>span{display:block}
.home-page .home-final-cta p{max-width:720px;margin:0 auto;font-size:clamp(1rem,1.25vw,1.12rem)}
.home-page .home-final-cta__actions{justify-content:center;margin-top:1.75rem}
@media(min-width:621px){.home-page .home-final-cta h2>span{white-space:nowrap}}
@media(max-width:620px){.home-page .home-final-cta{padding:3.75rem 0}.home-page .home-final-cta__inner{gap:1.25rem;text-align:center}.home-page .home-final-cta h2{max-width:360px;font-size:clamp(2rem,9vw,2.45rem)}.home-page .home-final-cta h2>span{display:block}.home-page .home-final-cta h2>span:not(:last-child)::after{content:none}.home-page .home-final-cta p{max-width:360px!important;margin-inline:auto}.home-page .home-final-cta__actions{align-items:center;justify-content:center}}
/* HOME SECTION LABELS â€” UNIFIED AND CENTERED */
.home-page .client-marquee__head,.home-page .moments-gallery__head{text-align:center}
.home-page .client-marquee h2,.home-page .moments-gallery h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:.72rem;font-weight:800;line-height:1.3;letter-spacing:.12em;text-align:center;text-transform:uppercase}
/* FOOTER INTRO — CONTROLLED TWO-LINE BREAK */
.footer-intro span{display:block}

/* PRIVACY PAGE, COOKIE NOTICE AND WHATSAPP FLOAT */
.privacy-page{background:var(--home-bg);color:var(--home-ink)}
.privacy-hero{padding:clamp(4.5rem,7vw,6.5rem) 0 clamp(3.75rem,5vw,4.75rem);background:var(--home-bg);border-bottom:1px solid var(--home-border)}
.privacy-hero__inner{max-width:920px;margin-inline:auto;text-align:left}
.privacy-label{margin:0 0 1rem;color:var(--home-fuchsia);font-size:.72rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}
.privacy-hero h1{max-width:860px;margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(3.4rem,6vw,5.35rem);font-weight:700;line-height:.98;letter-spacing:-.065em}
.privacy-hero p:not(.privacy-label){max-width:760px;margin:1.5rem 0 0;color:var(--home-muted);font-size:clamp(1rem,1.35vw,1.18rem);line-height:1.65}
.privacy-content{padding:clamp(3.75rem,6vw,5.75rem) 0;background:#fff}
.privacy-content__grid{display:grid;grid-template-columns:minmax(260px,.36fr) minmax(0,.64fr);gap:clamp(2.5rem,5vw,5rem);align-items:start}
.privacy-summary{position:sticky;top:112px;padding:2rem;background:var(--home-bg);border-top:3px solid var(--home-fuchsia)}
.privacy-summary h2{margin:0 0 1rem;color:var(--home-purple-dark);font-size:1.35rem;line-height:1.18;letter-spacing:-.03em}
.privacy-summary ul{display:grid;gap:.9rem;margin:0 0 1.5rem;padding-left:1.1rem;color:var(--home-muted);font-size:.9rem;line-height:1.6}
.privacy-article{display:grid;gap:1.25rem}
.privacy-article section{padding:clamp(1.55rem,2.5vw,2.25rem) 0;border-top:1px solid var(--home-border)}
.privacy-article section:first-child{border-top:0;padding-top:0}
.privacy-article h2{margin:0 0 .9rem;color:var(--home-purple-dark);font-size:clamp(1.45rem,2.1vw,1.95rem);line-height:1.12;letter-spacing:-.04em}
.privacy-article h3{margin:1.45rem 0 .45rem;color:var(--home-purple-dark);font-size:1rem;line-height:1.25}
.privacy-article p,.privacy-article li{color:var(--home-muted);font-size:.96rem;line-height:1.72}
.privacy-article p{margin:.75rem 0 0}.privacy-article ul{margin:.75rem 0 0;padding-left:1.2rem}.privacy-article li+li{margin-top:.45rem}
.privacy-article a{color:var(--home-fuchsia);font-weight:800;text-decoration:underline;text-underline-offset:4px}
.privacy-updated{display:inline-block;margin-top:1.1rem!important;padding:.75rem 1rem;color:var(--home-purple-dark)!important;background:var(--home-bg)}
.footer-bottom a{color:inherit;text-decoration:underline;text-underline-offset:4px;transition:color .2s var(--ease)}
.footer-bottom a:hover{color:var(--home-fuchsia)}
.floating-whatsapp{position:fixed;right:1.35rem;bottom:1.35rem;z-index:80;display:grid;width:58px;height:58px;place-items:center;color:#fff;background:#25d366;border-radius:999px;box-shadow:0 18px 35px rgba(31,25,34,.22);transition:transform .22s var(--ease),box-shadow .22s var(--ease),background .22s var(--ease)}
.floating-whatsapp:hover{transform:translateY(-3px);background:#1fb85a;box-shadow:0 22px 42px rgba(31,25,34,.26)}
.floating-whatsapp svg{width:30px;height:30px;fill:currentColor}.floating-whatsapp span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
.cookie-notice{position:fixed;left:50%;bottom:1.35rem;z-index:90;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:1rem;align-items:center;width:min(calc(100% - 2rem),760px);padding:1rem 1rem 1rem 1.15rem;color:#fff;background:#211d25;box-shadow:0 18px 44px rgba(31,25,34,.26)}
.cookie-notice[hidden]{display:none}.cookie-notice p{margin:0;color:rgba(255,255,255,.78);font-size:.82rem;line-height:1.55}.cookie-notice a{color:#fff;font-weight:800;text-decoration:underline;text-underline-offset:4px}.cookie-notice__actions{display:flex;gap:.65rem;align-items:center}.cookie-notice button{min-height:42px;padding:.7rem 1rem;color:#fff;background:var(--home-fuchsia);border:1px solid var(--home-fuchsia);border-radius:2px;font-size:.76rem;font-weight:800}.cookie-notice button:hover{background:#b92970;border-color:#b92970}
@media(max-width:900px){.privacy-content__grid{grid-template-columns:1fr}.privacy-summary{position:static}.cookie-notice{grid-template-columns:1fr;left:1rem;transform:none;width:calc(100% - 2rem);bottom:1rem}.floating-whatsapp{right:1rem;bottom:8.4rem;width:54px;height:54px}.floating-whatsapp svg{width:28px;height:28px}}
@media(min-width:901px){.cookie-notice{transform:translateX(-50%)}body.has-cookie-notice .floating-whatsapp{bottom:6.8rem}}
@media(max-width:620px){.privacy-hero{padding:3.75rem 0 3rem}.privacy-hero h1{font-size:clamp(2.45rem,11.5vw,3.15rem);letter-spacing:-.055em}.privacy-content{padding:3rem 0}.privacy-summary{padding:1.45rem}.privacy-article p,.privacy-article li{font-size:.9rem}.cookie-notice__actions{justify-content:flex-start}.cookie-notice button{width:100%}}
/* PRIVACY MOBILE OVERFLOW GUARD */
.privacy-page .privacy-hero__inner,.privacy-page .privacy-content__grid,.privacy-page .privacy-summary,.privacy-page .privacy-article{min-width:0}
.privacy-page .privacy-hero,.privacy-page .privacy-content,.privacy-page .privacy-summary,.privacy-page .privacy-article{overflow-wrap:break-word}
@media(max-width:620px){.privacy-page .privacy-hero__inner,.privacy-page .privacy-content__grid{width:min(calc(100% - 2rem),var(--max))}.privacy-summary h2{font-size:1.18rem;line-height:1.22}}

/* SOLUTIONS OPENING - COMPACT TITLE CLOSE TO MENU */
.solutions-detail-page .solutions-detail-hero{padding:clamp(1rem,1.8vw,1.5rem) 0 0;background:var(--home-bg);border-bottom:0}
.solutions-detail-page .solutions-detail-hero__title{padding:0 0 clamp(0.5rem,1vw,0.75rem)}
.solutions-detail-page .solutions-detail-hero__eyebrow{display:none}
.solutions-detail-page .solutions-detail-hero h1{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.5rem,2.5vw,2.35rem);font-weight:700;line-height:1;letter-spacing:-.06em;text-transform:none}
.solutions-detail-page .solutions-detail-list{padding-top:clamp(0.75rem,1.5vw,1.25rem);padding-bottom:clamp(1.25rem,2vw,2rem)}.solutions-detail-page .home-final-cta{padding:clamp(1.75rem,2.5vw,2.75rem) 0}
@media(max-width:700px){.solutions-detail-page .solutions-detail-hero{padding:1rem 0 0}.solutions-detail-page .solutions-detail-hero__title{padding:0 0 0.5rem}.solutions-detail-page .solutions-detail-hero h1{font-size:1.35rem}.solutions-detail-page .solutions-detail-list{padding-top:0.5rem}}
/* CONTACT PAGE - SINGLE UNIFIED BLOCK */
.contact-page{background:var(--home-bg);color:var(--home-ink);min-height:100vh;display:flex;flex-direction:column}
.contact-page main{flex:1}
.contact-page .site-header .brand__image{filter:none}
.contact-hero{padding:clamp(1rem,1.8vw,1.5rem) 0 0;background:var(--home-bg)}
.contact-hero__inner{max-width:var(--max);padding:0 0 clamp(0.5rem,1vw,0.75rem)}
.contact-hero h1{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.5rem,2.5vw,2.35rem);font-weight:700;line-height:1;letter-spacing:-.06em}
.contact-content{padding:clamp(0.75rem,1.5vw,1.25rem) 0 clamp(3.5rem,5vw,5rem);background:var(--home-bg)}
.contact-content__inner{max-width:var(--max)}
.contact-unified-card{display:grid;grid-template-columns:1fr auto 1fr;gap:clamp(2rem,3.5vw,3.5rem);padding:clamp(2.5rem,4.5vw,4rem);background:var(--home-surface);box-shadow:0 16px 38px rgba(54,19,59,.07);border:1px solid var(--home-border);border-radius:2px;align-items:start}
.contact-channel{display:flex;flex-direction:column}
.contact-channel__label{display:block;margin-bottom:0.75rem;color:var(--home-fuchsia);font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase}
.contact-channel h2{margin:0 0 0.85rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.35rem,2vw,1.75rem);font-weight:700;line-height:1.2;letter-spacing:-.035em;word-break:break-word}
.contact-channel p{margin:0 0 1.5rem;color:var(--home-muted);font-size:0.92rem;line-height:1.65;max-width:440px}
.contact-channel__action{margin-top:auto}
.contact-channel-divider{width:1px;background:var(--home-border);align-self:stretch;min-height:180px}

@media(max-width:768px){
  .contact-unified-card{grid-template-columns:1fr;gap:2rem;padding:1.75rem 1.4rem}
  .contact-channel-divider{width:100%;height:1px;min-height:0}
  .contact-hero{padding:1rem 0 0}
}

/* FLAVIA GAMONAR PAGE REDESIGN */
.profile-page{background:var(--home-bg);color:var(--home-ink)}
.profile-page .site-header .brand__image{filter:none}

/* BIO HERO */
.profile-bio-hero{padding:clamp(1.5rem,2.5vw,2.5rem) 0 clamp(2.5rem,4vw,3.75rem);background:var(--home-bg)}
.profile-bio-hero__grid{display:grid;grid-template-columns:minmax(280px,360px) minmax(0,1fr);gap:clamp(2rem,4vw,4rem);align-items:start}
.profile-bio-hero__media{width:100%;border-radius:4px;overflow:hidden;box-shadow:0 18px 45px rgba(54,19,59,.1);background:#e5e3e1}
.profile-bio-hero__media img{display:block;width:100%;height:auto;aspect-ratio:3/4;object-fit:cover;object-position:center 20%}
.profile-bio-hero__content{display:flex;flex-direction:column;gap:1.25rem}
.profile-bio-hero__content h1{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(2.2rem,3.8vw,3.35rem);font-weight:700;line-height:1;letter-spacing:-.06em}
.profile-bio-hero__text p{margin:0 0 1rem;color:var(--home-muted);font-size:clamp(0.96rem,1.15vw,1.05rem);line-height:1.7}
.profile-bio-hero__text p:last-child{margin-bottom:0}
.profile-bio-hero__actions{margin-top:0.75rem}

/* LINKEDIN LEARNING FEATURED */
.profile-learning{padding:clamp(2.5rem,4vw,3.75rem) 0;background:var(--home-surface);border-top:1px solid var(--home-border);border-bottom:1px solid var(--home-border)}
.profile-learning__card{display:flex;flex-direction:column;gap:1.5rem}
.profile-learning__eyebrow{color:var(--home-fuchsia);font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase}
.profile-learning__header h2{margin:0.25rem 0 0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.6rem,2.5vw,2.25rem);font-weight:700;line-height:1.1;letter-spacing:-.04em}
.profile-learning__body{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:clamp(2rem,4vw,3.5rem);align-items:start}
.profile-learning__copy p{margin:0 0 1rem;color:var(--home-muted);font-size:0.96rem;line-height:1.7}
.profile-learning__copy p:last-child{margin-bottom:0}
.profile-learning__action{margin-top:1.5rem}
.profile-learning__stats{display:grid;grid-template-columns:1fr;gap:1rem}
.learning-stat{padding:1.25rem 1.5rem;background:var(--home-bg);border:1px solid var(--home-border);border-left:3px solid var(--home-fuchsia);border-radius:2px}
.learning-stat strong{display:block;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.35rem;font-weight:700;line-height:1.15}
.learning-stat span{display:block;margin-top:0.25rem;color:var(--home-muted);font-size:0.8rem}

/* ACADEMIC */
.profile-academic{padding:clamp(3.5rem,5vw,5rem) 0;background:var(--home-bg)}
.profile-academic__eyebrow{color:var(--home-fuchsia);font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase}
.profile-academic__header h2{margin:0.25rem 0 1rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.6rem,2.5vw,2.25rem);font-weight:700;line-height:1.1;letter-spacing:-.04em}
.profile-academic__lead{max-width:980px;margin:0 0 2.5rem;color:var(--home-muted);font-size:0.96rem;line-height:1.75}
.profile-academic__institutions h3{margin:0 0 1.25rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.1rem;font-weight:700}
.institution-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:0.85rem}
.institution-card{padding:1rem 1.15rem;background:#fff;border:1px solid var(--home-border);border-radius:2px;color:var(--home-purple-dark);font-weight:600;font-size:0.86rem;text-align:center;box-shadow:0 8px 20px rgba(54,19,59,.04);display:flex;align-items:center;justify-content:center;min-height:56px}

/* BADGES & CHANCELAS */
.profile-badges{padding:clamp(3rem,4.5vw,4.5rem) 0 clamp(4rem,6vw,5.5rem);background:#eee7f0;border-top:1px solid var(--home-border)}
.profile-badges__eyebrow{color:var(--home-fuchsia);font-size:0.72rem;font-weight:800;letter-spacing:0.14em;text-transform:uppercase}
.profile-badges__header h2{margin:0.25rem 0 2rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.6rem,2.5vw,2.25rem);font-weight:700;line-height:1.1;letter-spacing:-.04em}
.badges-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem}
.badge-card{padding:1.75rem 1.5rem;background:#fff;border:1px solid rgba(54,19,59,.1);box-shadow:0 12px 30px rgba(54,19,59,.06);border-radius:2px;display:flex;flex-direction:column}
.badge-card__icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;background:rgba(212,56,130,.12);color:var(--home-fuchsia);margin-bottom:0.85rem}
.badge-card h3{margin:0 0 0.5rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.05rem;font-weight:700;line-height:1.25}
.badge-card p{margin:0;color:var(--home-muted);font-size:0.84rem;line-height:1.6}

@media(max-width:980px){
  .profile-bio-hero__grid{grid-template-columns:1fr;gap:2rem}
  .profile-bio-hero__media{max-width:340px;margin-inline:auto}
  .profile-learning__body{grid-template-columns:1fr;gap:2rem}
  .institution-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .badges-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:640px){
  .institution-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .badges-grid{grid-template-columns:1fr}
  .profile-bio-hero__media{max-width:100%}
}


/* ==========================================================================
   SOLUTIONS PAGE EDITORIAL SYSTEM - REFINED HIERARCHY & PRODUCTS
   ========================================================================== */
.solutions-detail-page{background:var(--home-bg);color:var(--home-ink)}
.solutions-detail-page .site-header .brand__image{filter:none}

.solutions-detail-hero{padding:clamp(1rem,1.8vw,1.5rem) 0 0;background:var(--home-bg);border-bottom:0}
.solutions-detail-hero__title{padding:0 0 clamp(0.5rem,1vw,0.75rem)}
.solutions-detail-hero h1{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.5rem,2.5vw,2.35rem);font-weight:700;line-height:1;letter-spacing:-.06em}

.solutions-detail-list{padding:clamp(0.75rem,1.5vw,1.25rem) 0 clamp(1.25rem,2vw,2rem);background:var(--home-bg)}
.solutions-detail-list__inner{display:grid;gap:clamp(2.5rem,4.5vw,4.25rem)}

/* CARDS GERAIS DAS 3 FRENTES */
.solutions-detail-card{overflow:hidden;background:var(--home-surface);box-shadow:0 16px 38px rgba(54,19,59,.06);border:1px solid var(--home-border);border-radius:3px;scroll-margin-top:100px}
.solutions-detail-card__media{height:clamp(260px,28vw,390px);margin:0;overflow:hidden;background:#e8e2e8}
.solutions-detail-card__media img{width:100%;height:100%;object-fit:cover;object-position:center 15%}
.solutions-detail-card__body{padding:clamp(1.85rem,3.5vw,3.25rem)}
.solutions-detail-card__number{display:block;margin-bottom:0.4rem;color:var(--home-fuchsia);font-size:0.72rem;font-weight:800;letter-spacing:0.15em}
.solutions-detail-card__header{padding-bottom:1.15rem;margin-bottom:clamp(1.5rem,2.5vw,2.25rem);border-bottom:1px solid var(--home-border)}
.solutions-detail-card__header h2{margin:0;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.3rem,2.2vw,1.85rem);font-weight:700;line-height:1.2;letter-spacing:-.035em}

/* FRENTE 01 - PROGRAMAS E FAIXA PERSONALIZADA */
.solutions-programs-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem;margin-bottom:1.75rem}
.solutions-program-card{display:flex;flex-direction:column;padding:clamp(1.5rem,2.2vw,2rem);background:var(--home-bg);border:1px solid var(--home-border);border-radius:2px;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.solutions-program-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(54,19,59,.07);border-color:rgba(212,56,130,.35)}
.solutions-program-card h4{margin:0 0 0.75rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.12rem;font-weight:700;line-height:1.25;letter-spacing:-.025em}
.solutions-program-card p{margin:0;color:var(--home-muted);font-size:0.91rem;line-height:1.68}

/* DESTAQUE LIDERANÇAS CONECTADAS */
.solutions-program-card--featured{background:#ffffff;border:1px solid rgba(212,56,130,.35);border-left:4px solid var(--home-fuchsia);box-shadow:0 12px 30px rgba(54,19,59,.07)}
.solutions-program-card--featured h4{color:var(--home-purple-dark);font-size:1.18rem}

/* FAIXA VISUAL PRÓPRIA (PALESTRAS / O QUE PODEMOS CONSTRUIR JUNTOS) */
.solutions-custom-strip{display:grid;grid-template-columns:1fr auto 1fr;gap:clamp(1.75rem,3vw,3rem);background:#eee7f0;padding:clamp(1.75rem,2.5vw,2.5rem);border:1px solid rgba(54,19,59,.08);border-radius:2px;align-items:start}
.solutions-custom-divider{width:1px;background:rgba(54,19,59,.12);align-self:stretch;min-height:100px}
.solutions-custom-col h3{margin:0 0 0.85rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.12rem;font-weight:700;line-height:1.25;letter-spacing:-.025em}
.solutions-custom-col p{margin:0;color:var(--home-muted);font-size:0.9rem;line-height:1.68}

/* FRENTE 02 - CONSULTORIAS */
.solutions-consultancy-lead{margin-bottom:1.25rem}
.solutions-consultancy-lead__card{padding:clamp(1.75rem,2.5vw,2.25rem);background:#ffffff;border:1px solid var(--home-border);border-top:3px solid var(--home-fuchsia);border-radius:2px;box-shadow:0 10px 28px rgba(54,19,59,.05);transition:transform .2s ease,box-shadow .2s ease}
.solutions-consultancy-lead__card:hover{transform:translateY(-2px);box-shadow:0 14px 35px rgba(54,19,59,.08)}
.solutions-consultancy-lead__card h3{margin:0 0 0.75rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:clamp(1.15rem,1.6vw,1.3rem);font-weight:700;line-height:1.25;letter-spacing:-.03em}
.solutions-consultancy-lead__card p{margin:0;color:var(--home-muted);font-size:0.93rem;line-height:1.68;max-width:860px}

.solutions-consultancies-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem}
.solutions-consultancy-card{padding:clamp(1.4rem,1.8vw,1.75rem);background:var(--home-bg);border:1px solid var(--home-border);border-radius:2px;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.solutions-consultancy-card:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(54,19,59,.06);border-color:rgba(212,56,130,.28)}
.solutions-consultancy-card h3{margin:0 0 0.65rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.06rem;font-weight:700;line-height:1.25;letter-spacing:-.025em}
.solutions-consultancy-card p{margin:0;color:var(--home-muted);font-size:0.88rem;line-height:1.65}

/* FRENTE 03 - ADVISORY ASSIMÉTRICO */
.solutions-asymm-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:1.25rem;align-items:stretch}
.solutions-advisory-lead{display:flex}
.solutions-advisory-lead__card{width:100%;display:flex;flex-direction:column;justify-content:center;padding:clamp(2rem,3.2vw,3rem);background:var(--home-graphite);color:#ffffff;border-radius:2px;box-shadow:0 14px 35px rgba(37,35,42,.15);border-left:4px solid var(--home-fuchsia);transition:transform .2s ease,box-shadow .2s ease}
.solutions-advisory-lead__card:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(37,35,42,.22)}
.solutions-advisory-badge{display:inline-block;align-self:flex-start;margin-bottom:0.85rem;color:var(--home-fuchsia);font-size:0.7rem;font-weight:800;letter-spacing:0.15em;text-transform:uppercase}
.solutions-advisory-lead__card h3{margin:0 0 0.85rem;color:#ffffff;font-family:var(--sans);font-size:clamp(1.35rem,2vw,1.75rem);font-weight:700;line-height:1.2;letter-spacing:-.035em}
.solutions-advisory-lead__card p{margin:0;color:rgba(255,255,255,.82);font-size:0.94rem;line-height:1.72;max-width:520px}

.solutions-advisory-stack{display:flex;flex-direction:column;gap:1.25rem}
.solutions-stack-card{flex:1;display:flex;flex-direction:column;justify-content:center;padding:clamp(1.5rem,2vw,2rem);background:#ffffff;border:1px solid var(--home-border);border-radius:2px;box-shadow:0 8px 22px rgba(54,19,59,.04);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.solutions-stack-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(54,19,59,.07);border-color:rgba(212,56,130,.3)}
.solutions-stack-card h3{margin:0 0 0.65rem;color:var(--home-purple-dark);font-family:var(--sans);font-size:1.1rem;font-weight:700;line-height:1.25;letter-spacing:-.025em}
.solutions-stack-card p{margin:0;color:var(--home-muted);font-size:0.88rem;line-height:1.65}

/* RESPONSIVIDADE SOLUTIONS */
@media(max-width:980px){
  .solutions-asymm-grid{grid-template-columns:1fr}
  .solutions-custom-strip{grid-template-columns:1fr;gap:1.5rem}
  .solutions-custom-divider{width:100%;height:1px;min-height:0}
}

@media(max-width:768px){
  .solutions-programs-grid{grid-template-columns:1fr}
  .solutions-consultancies-grid{grid-template-columns:1fr}
  .solutions-detail-card__body{padding:1.6rem 1.25rem}
  .solutions-detail-card__media{height:220px}
  .solutions-detail-card__header h2{font-size:1.25rem;white-space:normal}
  .solutions-detail-hero{padding:1rem 0 0}
  .solutions-detail-list{padding-top:0.5rem}
}


/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp{position:fixed;right:1.5rem;bottom:1.5rem;z-index:9999;display:flex!important;align-items:center;justify-content:center;width:60px;height:60px;color:#fff!important;background:#25d366!important;border-radius:50%!important;box-shadow:0 12px 30px rgba(37,211,102,.35)!important;transition:transform .22s ease,box-shadow .22s ease,background .22s ease;text-decoration:none!important}
.floating-whatsapp:hover{transform:scale(1.08)!important;background:#20ba5a!important;box-shadow:0 16px 36px rgba(37,211,102,.45)!important}
.floating-whatsapp svg{width:32px;height:32px;fill:#ffffff!important}
.floating-whatsapp span{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
@media(max-width:768px){.floating-whatsapp{right:1.15rem;bottom:1.15rem;width:54px;height:54px}.floating-whatsapp svg{width:28px;height:28px}}
