:root {
  --bg: #f7f7f9;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --primary: #714b67;
  --primary-dark: #5e3f56;
  --line: #e7e8ee;
  --radius: 14px;
  /* Large panels: subtle corners so blocks read as rectangles, not soft squares */
  --radius-panel: 10px;
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  --hero-navy: #1a1f2e;
  --hero-navy-mid: #2d3548;
  --hero-panel: #1a1f2e;
  --hero-panel-mid: #2d3548;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Ubuntu, "Liberation Sans", Arial, sans-serif;
  --font-headings: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.sticky-scroll-cta {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 0px));
  left: 50%;
  z-index: 900;
  width: min(960px, calc(100% - 32px));
  transform: translate(-50%, -18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.sticky-scroll-cta[hidden] {
  display: block;
}

.sticky-scroll-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-scroll-cta-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 18px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--hero-panel);
  box-shadow: 0 14px 38px rgba(26, 31, 46, 0.12);
  backdrop-filter: blur(14px);
}

.sticky-scroll-cta p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #3d4251;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.sticky-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #2f7d54;
  box-shadow: 0 0 0 5px rgba(47, 125, 84, 0.1);
}

.sticky-scroll-cta.is-visible .sticky-status-dot {
  animation: stickyDotBreath 3.6s ease-in-out infinite;
}

.sticky-scroll-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 9px 17px;
  background: var(--primary);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(113, 75, 103, 0.2);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.sticky-scroll-cta-button:hover,
.sticky-scroll-cta-button:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(113, 75, 103, 0.26);
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  z-index: 890;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 6px solid rgba(47, 125, 84, 0.1);
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 18px 38px rgba(26, 31, 46, 0.16),
    0 18px 46px rgba(47, 125, 84, 0.14);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(226, 220, 215, 0.95);
  border-right: 2px solid rgba(226, 220, 215, 0.95);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  width: max-content;
  max-width: 190px;
  padding: 13px 22px;
  border: 2px solid rgba(226, 220, 215, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #211927;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(26, 31, 46, 0.1);
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 22px 46px rgba(26, 31, 46, 0.18),
    0 22px 54px rgba(37, 211, 102, 0.18);
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  opacity: 1;
  transform: translate(-2px, -50%);
}

@keyframes stickyDotBreath {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(47, 125, 84, 0.1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(47, 125, 84, 0.045);
  }
}

@keyframes whatsappSoftPulse {
  0%,
  62%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }
  78% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-scroll-cta,
  .sticky-status-dot,
  .whatsapp-float,
  .whatsapp-float::before,
  .whatsapp-float::after,
  .modal-overlay,
  .modal-dialog {
    animation: none;
    transition: none;
  }
}

.aurora-bg {
  display: none;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: multiply;
  will-change: transform;
}

.aurora-a {
  width: 52vw;
  height: 52vw;
  min-width: 280px;
  min-height: 280px;
  top: 6%;
  left: 4%;
  background: radial-gradient(circle at 30% 30%, rgba(113, 75, 103, 0.44), rgba(113, 75, 103, 0));
  animation: auroraDriftA 18s linear infinite;
}

.aurora-b {
  width: 44vw;
  height: 44vw;
  min-width: 240px;
  min-height: 240px;
  top: 22%;
  right: 3%;
  background: radial-gradient(circle at 52% 36%, rgba(129, 100, 157, 0.4), rgba(129, 100, 157, 0));
  animation: auroraDriftB 22s linear infinite;
}

.aurora-c {
  width: 60vw;
  height: 60vw;
  min-width: 320px;
  min-height: 320px;
  bottom: -2%;
  left: 26%;
  background: radial-gradient(circle at 50% 50%, rgba(88, 142, 202, 0.26), rgba(88, 142, 202, 0));
  animation: auroraDriftC 26s linear infinite;
}

@keyframes auroraDriftA {
  0% { transform: translate3d(-6%, -4%, 0) scale(1.02) rotate(0deg); }
  25% { transform: translate3d(5%, 3%, 0) scale(1.1) rotate(5deg); }
  50% { transform: translate3d(12%, 8%, 0) scale(1.16) rotate(11deg); }
  75% { transform: translate3d(2%, 11%, 0) scale(1.08) rotate(6deg); }
  100% { transform: translate3d(-6%, -4%, 0) scale(1.02) rotate(0deg); }
}

@keyframes auroraDriftB {
  0% { transform: translate3d(8%, -5%, 0) scale(1.03) rotate(0deg); }
  25% { transform: translate3d(-2%, 3%, 0) scale(1.08) rotate(-6deg); }
  50% { transform: translate3d(-10%, 9%, 0) scale(1.15) rotate(-12deg); }
  75% { transform: translate3d(2%, 13%, 0) scale(1.1) rotate(-7deg); }
  100% { transform: translate3d(8%, -5%, 0) scale(1.03) rotate(0deg); }
}

@keyframes auroraDriftC {
  0% { transform: translate3d(-4%, 4%, 0) scale(1) rotate(0deg); }
  25% { transform: translate3d(5%, -1%, 0) scale(1.06) rotate(4deg); }
  50% { transform: translate3d(10%, -9%, 0) scale(1.12) rotate(8deg); }
  75% { transform: translate3d(0%, -4%, 0) scale(1.07) rotate(5deg); }
  100% { transform: translate3d(-4%, 4%, 0) scale(1) rotate(0deg); }
}

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

picture {
  display: contents;
}

.container {
  width: min(
    1120px,
    calc(100% - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  margin: 0 auto;
}

.section {
  padding: 48px 0;
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

.section:nth-of-type(odd) .container > h2 {
  position: relative;
}

.section:nth-of-type(odd) .container > h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 99px;
  margin-top: 10px;
  background: linear-gradient(90deg, #714b67, #9f85c3);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

h1,
h2,
h3 {
  font-family: var(--font-headings);
  margin: 0 0 12px;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(1.6rem, 5.2vw + 0.75rem, 2.1rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.35rem, 3.5vw + 0.85rem, 1.7rem);
  font-weight: 600;
}

h3 {
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.hero.section {
  min-height: auto;
  padding-top: clamp(28px, 3vw, 46px);
  padding-bottom: clamp(36px, 4vw, 64px);
  display: flex;
  align-items: flex-start;
  background:
    radial-gradient(circle at 20% 18%, rgba(113, 75, 103, 0.14), transparent 38%),
    radial-gradient(circle at 78% 16%, rgba(129, 100, 157, 0.1), transparent 34%),
    linear-gradient(180deg, #f6f2fb 0%, #faf9fd 100%);
  color: #f8fafc;
}

.hero.section h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5.2vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-logo-link {
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
}

.hero-logo {
  width: min(220px, 62vw);
  height: auto;
}

.hero-lead {
  display: grid;
  gap: 10px;
}

.hero-tail {
  display: grid;
  gap: 14px;
}

.hero-grid {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3.2vw, 48px);
  border-radius: clamp(22px, 2.4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(145deg, var(--hero-panel) 0%, var(--hero-panel-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(31, 22, 46, 0.28);
}

.hero.section .hero-sub {
  color: rgba(248, 250, 252, 0.82);
}

.grid {
  display: grid;
  gap: 20px;
}

.highlights {
  padding-left: 18px;
  margin: 14px 0 0;
  color: var(--text);
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.mini-kpis article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
}

.hero .mini-kpis article {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-kpis strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.hero .mini-kpis strong {
  color: #fff;
}

.mini-kpis span {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero .mini-kpis span {
  color: rgba(248, 250, 252, 0.72);
}

.hero-visual {
  padding: 12px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.84), rgba(248, 242, 248, 0.92));
  backdrop-filter: blur(6px);
}

.hero-visual-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.hero-visual-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6d9e2;
}

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

.hero-metric-grid div {
  border: 1px solid #e8deea;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 10px;
}

.hero-metric-grid strong {
  display: block;
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-metric-grid span {
  font-size: 0.78rem;
  color: var(--muted);
}

.lead-form {
  padding: 18px;
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  color: #f8fafc;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(135, 90, 123, 0.15), rgba(135, 90, 123, 0));
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.lead-form.has-field-value::before {
  opacity: 0;
}

.lead-form-intro {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    margin 0.35s ease;
  margin: 0 0 8px;
  color: rgba(248, 250, 252, 0.74);
}

.lead-form.has-field-value .lead-form-intro {
  opacity: 0;
  transform: translateY(-4px);
  height: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.lead-form .lead-field {
  margin-top: 12px;
}

.lead-form .lead-field:first-of-type {
  margin-top: 4px;
}

.lead-form .lead-field input:not(.iti__tel-input),
.lead-form .lead-field textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.lead-form .lead-field textarea {
  min-height: 88px;
  resize: vertical;
}

.lead-form .lead-field input::placeholder,
.lead-form .lead-field textarea::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.lead-form .lead-field input:not(.iti__tel-input):focus,
.lead-form .lead-field textarea:focus {
  outline: 2px solid #ccb8c6;
  outline-offset: 1px;
  border-color: var(--primary);
}

.lead-form select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

.lead-form select:focus {
  outline: 2px solid #ccb8c6;
  outline-offset: 1px;
  border-color: var(--primary);
}

.lead-form button:not(.iti__selected-country),
.cta a {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  margin-top: 14px;
}

.lead-form button:not(.iti__selected-country):hover,
.cta a:hover {
  background: var(--primary-dark);
}

.form-msg {
  min-height: 20px;
  margin-top: 8px;
  font-size: 0.88rem;
}

.proof-card {
  text-align: center;
  padding: 28px 16px;
  background: linear-gradient(130deg, #fff, #faf6f9);
}

.proof-number {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
  margin: 0;
}

.proof-text {
  margin: 6px 0 0;
}

.logo-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

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

.logo-strip p {
  margin: 0;
  border: 1px solid #dddfe8;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 7px 12px;
  color: #344054;
  font-size: 0.86rem;
  font-weight: 500;
}

.section-intro {
  margin-bottom: 14px;
}

.screens-grid,
.industry-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}

.screen {
  padding: 12px;
}

.screen-top {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.screen-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d7dae1;
}

.screen-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fc;
  padding: 10px;
}

.screen-kpi-row {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.kpi-chip {
  border: 1px solid #ddd8e0;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.72rem;
  color: #4b5563;
  background: #fff;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #714b67, #96738d);
  margin-bottom: 10px;
}

.w-40 { width: 40%; }
.w-50 { width: 50%; }
.w-60 { width: 60%; }
.w-70 { width: 70%; }
.w-80 { width: 80%; }

.pipeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pipeline-row span {
  display: block;
  height: 58px;
  border-radius: 8px;
}

.pipeline-row .p1 { background: linear-gradient(180deg, #f6f3fb, #ece6f8); }
.pipeline-row .p2 { background: linear-gradient(180deg, #f8f1f6, #f0dfed); }
.pipeline-row .p3 { background: linear-gradient(180deg, #f2f6ff, #dce8ff); }
.pipeline-row .p4 { background: linear-gradient(180deg, #eef9f6, #d8f0e8); }

.order-table {
  display: grid;
  gap: 6px;
}

.order-table p {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #e1e4eb;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #475467;
}

.order-table strong {
  font-size: 0.76rem;
  color: #1f2937;
}

.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.stock-grid p {
  margin: 0;
  padding: 8px 6px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.stock-grid span {
  display: block;
  color: #667085;
  font-size: 0.68rem;
}

.stock-grid strong {
  color: #1f2937;
  font-size: 0.88rem;
}

.finance-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.finance-split div {
  border: 1px solid #dde3ec;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}

.finance-split span {
  display: block;
  font-size: 0.72rem;
  color: #667085;
}

.finance-split strong {
  display: block;
  margin-top: 4px;
  font-size: 0.95rem;
  color: #1f2937;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tiles div,
.split div {
  height: 74px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e6eaf3;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.screen h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.industry-grid .card,
.steps-grid .card {
  padding: 16px;
}

.industry-grid .card {
  background: linear-gradient(180deg, #fff 0%, #fcfcff 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.industry-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1e7ee;
  display: grid;
  place-items: center;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.steps-grid span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #f1e7ee;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-wrap {
  padding: 26px;
  text-align: center;
  background: linear-gradient(140deg, #ffffff 0%, #f7f2f6 100%);
  border: 1px solid #e7dbe4;
}

@media (min-width: 768px) {
  .section {
    padding: 68px 0;
  }

  .hero.section {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 56px;
    align-items: flex-start;
  }

  h1 {
    font-size: 3.3rem;
    line-height: 1.06;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: 2.3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 26px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(400px, 0.8fr);
    grid-template-rows: auto auto 1fr;
    align-items: start;
    gap: 30px 54px;
    min-height: min(720px, calc(100svh - 110px));
  }

  .hero .container {
    width: min(
      1888px,
      calc(100% - 60px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
    );
  }

  .hero-logo-link {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-lead {
    grid-column: 1;
    grid-row: 2;
    max-width: 620px;
  }

  .hero-tail {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    max-width: 900px;
  }

  .hero-grid #leadForm {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: stretch;
  }

  .hero-grid .lead-form-compact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 2.4vw, 44px);
    border: 0;
    border-radius: 28px;
    background: #fff;
    color: var(--text);
    box-shadow: none;
  }

  .hero-grid .lead-form-compact h2 {
    color: #21033f;
    font-size: clamp(1.65rem, 1.7vw, 2rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero-grid .lead-form-compact > p {
    color: #66616f;
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .hero-grid .lead-form .lead-field {
    margin-top: 14px;
  }

  .hero-grid .lead-form .lead-field input:not(.iti__tel-input),
  .hero-grid .lead-form .lead-field textarea,
  .hero-grid .phone-input-wrap input.iti__tel-input {
    min-height: 56px;
    border: 0;
    border-radius: 999px;
    background: #ececec;
    padding: 16px 20px;
  }

  .hero-grid .phone-input-wrap .iti {
    border-radius: 999px;
    background: #ececec;
  }

  .hero-grid .phone-input-wrap input.iti__tel-input {
    background: transparent;
  }

  .hero-grid .lead-form .lead-field textarea {
    min-height: 122px;
    border-radius: 28px;
  }

  .hero-grid .phone-input-wrap .iti__country-container,
  .hero-grid .phone-input-wrap .iti__selected-country,
  .hero-grid .phone-input-wrap .iti__selected-country-primary {
    background-color: transparent;
  }

  .hero-grid .phone-input-wrap .iti__selected-country {
    border-radius: 999px 0 0 999px;
  }

  .hero-grid .phone-input-wrap .iti__selected-dial-code {
    display: none;
  }

  .hero-grid .phone-input-wrap .iti__dropdown-content {
    min-width: 100%;
    margin-top: 8px;
    border: 1px solid #eadcff;
    border-radius: 0;
    box-shadow: 0 10px 24px rgba(33, 3, 63, 0.12);
    overflow: hidden;
  }

  .hero-grid .phone-input-wrap .iti__search-input {
    min-height: 58px;
    border: 0;
    border-bottom: 1px solid #eee4ff;
    border-radius: 0;
    padding: 16px 22px;
    font-size: 1.05rem;
  }

  .hero-grid .phone-input-wrap .iti__country-list {
    max-height: 330px;
  }

  .hero-grid .phone-input-wrap .iti__country {
    padding: 14px 18px;
    font-size: 1rem;
  }

  .hero-grid .lead-form .btn-hero-discovery {
    width: 100%;
    min-width: 0;
    margin-top: 24px;
    border: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 17px 22px;
    font-size: 1.08rem;
    box-shadow: none;
  }

  .hero-grid .lead-form .btn-hero-discovery:hover {
    background: var(--primary-dark);
  }

  .hero-grid .btn-chevron {
    display: none;
  }

  .hero .mini-kpis {
    gap: 14px;
    margin-top: 26px;
  }

  .hero .mini-kpis article {
    min-height: 100px;
    padding: 18px 20px;
    display: grid;
    align-content: center;
    gap: 8px;
  }

  .hero .mini-kpis strong {
    font-size: 1.45rem;
    line-height: 1;
  }

  .hero .mini-kpis span {
    font-size: 0.95rem;
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  .aurora {
    animation: none;
  }
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.mini-kpis-centered article {
  text-align: center;
}

.mini-kpis-centered strong,
.mini-kpis-centered span {
  text-align: center;
}

.lead-form-compact {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.lead-form-compact h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: #fff;
}

.lead-form-compact > p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(248, 250, 252, 0.74);
}

.phone-field {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.phone-cc {
  flex: 0 0 auto;
  min-width: 108px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 10px 8px;
  font: inherit;
  background: #fff;
  cursor: pointer;
}

.phone-field input[type="tel"] {
  flex: 1;
  min-width: 0;
}

/* intl-tel-input: match lead inputs; border must stay on .iti__tel-input so .iti__country-container padding aligns (see --iti-border-width in library CSS). */
.phone-input-wrap {
  width: 100%;
  position: relative;
  z-index: 0;
}

.phone-input-wrap .iti {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.phone-input-wrap .iti__selected-country,
.phone-input-wrap .iti__selected-country-primary {
  background-color: #fff;
}

.phone-input-wrap .iti__selected-dial-code,
.phone-input-wrap .iti__arrow {
  color: var(--text);
}

.phone-input-wrap input.iti__tel-input {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  background-color: #fff;
  color: var(--text);
}

.phone-input-wrap input.iti__tel-input::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.phone-input-wrap input.iti__tel-input:focus {
  outline: 2px solid #ccb8c6;
  outline-offset: 1px;
  border-color: var(--primary);
}

.iti--container {
  z-index: 1200;
}

.iti__dropdown-content,
.iti__country-list,
.iti__search-input {
  background: #fff;
  color: var(--text) !important;
}

.iti__search-input {
  border-color: #d0d5dd;
}

.iti__country,
.iti__country *,
.iti__country-name,
.iti__dial-code {
  color: var(--text) !important;
}

.iti__country.iti__highlight {
  background-color: #f3f4f6;
}

.lead-form .btn-hero-discovery {
  width: 100%;
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: #fff;
  color: var(--hero-panel);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lead-form .btn-hero-discovery:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.14);
  background: #f8fafc;
}

.btn-chevron {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.lead-form-compact.lead-form .btn-hero-discovery {
  margin-top: 14px;
}

.btn-connect {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.2s ease;
}

.btn-connect:hover {
  background: var(--primary-dark);
}

.trust-platform {
  padding-top: 32px;
}

.trust-platform-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.trust-platform-title {
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.trust-platform-title em {
  font-style: italic;
  font-weight: 600;
}

.trust-platform-sub {
  font-size: 1.05rem;
  margin: 0;
  color: var(--muted);
}

.trust-banner {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
  padding: clamp(16px, 2.5vw, 26px) clamp(20px, 4vw, 48px);
  border-radius: var(--radius-panel);
  background: linear-gradient(145deg, var(--hero-navy) 0%, var(--hero-navy-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  box-shadow: 0 20px 50px rgba(26, 31, 46, 0.35);
}

.trust-banner-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 18px;
}

.trust-banner-kicker {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
}

.trust-banner-lead {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: rgba(248, 250, 252, 0.95);
}

.erp-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.trust-banner-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
  font-weight: 500;
  color: #f1f5f9;
}

.testimonial-card {
  position: relative;
  padding: clamp(20px, 3vw, 26px) clamp(22px, 4vw, 40px) clamp(22px, 3vw, 28px);
  overflow: hidden;
  border-radius: var(--radius-panel);
  background: linear-gradient(165deg, #f4f2f8 0%, #fff 45%);
  border: 1px solid #e8e0ed;
}

.testimonial-quote-mark {
  display: block;
  font-size: 4rem;
  line-height: 0.85;
  color: #e85d04;
  font-family: var(--font-sans);
  margin-bottom: 4px;
}

.testimonial-avatar {
  position: absolute;
  top: 12px;
  right: 24px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.testimonial-quote {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  padding-right: 96px;
}

.testimonial-person {
  max-width: 100%;
}

.testimonial-stars {
  color: #f5b400;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.testimonial-name {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.testimonial-role {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(113, 75, 103, 0.12);
}

.testimonial-logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.odoo-cta-section {
  padding: 24px 0 8px;
}

.odoo-cta-section .container {
  display: flex;
  justify-content: center;
}

.btn-odoo-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-dark);
  background: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(16, 24, 40, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-odoo-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(113, 75, 103, 0.2);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.45);
  display: grid;
  place-items: center;
  padding: 24px 16px;
  backdrop-filter: blur(4px);
  animation: modalOverlayIn 0.2s ease both;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  width: min(440px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  padding: 24px 22px 22px;
  border: 1px solid var(--line);
  animation: modalDialogIn 0.24s ease both;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.modal-close:hover {
  background: #f3f4f6;
  color: var(--text);
}

.modal-title {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 0 32px 16px 0;
}

.modal-form .lead-field {
  margin-top: 12px;
}

.modal-form .modal-name-row .lead-field {
  margin-top: 0;
}

.modal-form .lead-field input:not(.iti__tel-input),
.modal-form .lead-field textarea,
.modal-form .lead-field select {
  width: 100%;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--text);
}

.modal-form .lead-field input::placeholder,
.modal-form .lead-field textarea::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.modal-form .lead-field input:not(.iti__tel-input):focus,
.modal-form .lead-field textarea:focus,
.modal-form .lead-field select:focus {
  outline: 2px solid #ccb8c6;
  outline-offset: 1px;
  border-color: var(--primary);
}

.modal-form .modal-services-select.is-placeholder {
  color: #98a2b3;
}

.modal-form .modal-services-select option {
  color: var(--text);
  background: #fff;
}

@media (min-width: 768px) {
  .trust-banner {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, auto);
    align-items: center;
    gap: clamp(14px, 2.5vw, 24px);
  }

  .trust-banner-badges {
    justify-content: flex-end;
  }

  .trust-banner .trust-badge {
    justify-content: flex-end;
  }
}

.pain-journey-section {
  background: linear-gradient(180deg, #faf8f5 0%, #f8f5f2 100%);
}

.card-soft {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e8dfec;
  border-radius: var(--radius-panel);
  padding: 24px 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(113, 75, 103, 0.06);
}

.empathy-section-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 18px;
  color: var(--text);
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
}

.empathy-section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 99px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #714b67, #9f85c3);
}

.empathy-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.empathy-tags::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.empathy-tags span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e0d4e4;
  font-size: clamp(0.78rem, 2.1vw, 0.88rem);
  font-weight: 500;
  color: #4b5563;
  white-space: nowrap;
}

.problem-serif-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--text);
  text-align: center;
  margin: 0 0 20px;
  font-weight: 600;
}

.solution-heading {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  text-align: center;
  margin: 40px 0 20px;
  color: var(--text);
}

.ppc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.ppc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 100%;
}

.ppc-card-title {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--text);
}

.ppc-card-text {
  flex: 1;
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.68;
}

.ppc-tag {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-top: auto;
}

.ppc-tag--warn {
  background: #fff4ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.ppc-tag--warn::before {
  content: "⚠ ";
}

.ppc-tag--ok {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.ppc-tag--ok::before {
  content: "✓ ";
}

.section-inline-cta {
  display: flex;
  justify-content: center;
  margin: 28px 0 8px;
}

.section-inline-cta--after-solution {
  margin-top: 36px;
  margin-bottom: 12px;
}

.services-trio-section {
  background: linear-gradient(180deg, #f5f4f7 0%, #f3f2f5 100%);
}

.services-trio-h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 10px;
}

.services-trio-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  color: var(--muted);
}

.services-trio-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.services-trio-card {
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--line);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-trio-card:nth-child(2) {
  border-color: rgba(113, 75, 103, 0.35);
}

.services-trio-card-title {
  font-size: 1.08rem;
  color: var(--primary);
  margin: 0 0 10px;
}

.services-trio-card-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.68;
  text-align: center;
}

.why-dls-section {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(113, 75, 103, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #f3f2f8 0%, #f1f0f6 100%);
}

.why-dls-h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.25;
}

.why-dls-tagline {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 24px;
}

.why-dls-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.why-dls-card {
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.why-dls-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1e7ee;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.why-dls-icon-num {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.why-dls-card-title {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 0 0 8px;
}

.why-dls-sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.why-dls-card-text {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.68;
}

.why-dls-section .section-inline-cta {
  margin-top: 40px;
}

.faq-section {
  background: linear-gradient(180deg, #f0eff5 0%, #edeced 100%);
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px;
  text-transform: none;
}

.faq-title {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
  color: #1e1b4b;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 18px 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-panel {
  padding: 0 32px 18px 0;
}

.faq-panel p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-panel p:last-child {
  margin-bottom: 0;
}

.faq-cta-block {
  text-align: center;
  margin-top: 32px;
}

.faq-footnote {
  margin: 12px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.final-cta-section {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  margin-top: 8px;
  background: linear-gradient(180deg, #edeced 0%, #f0eff4 100%);
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
}

.final-cta-card {
  border-radius: var(--radius-panel);
  padding: clamp(22px, 4vw, 36px) clamp(24px, 6vw, 64px);
  text-align: center;
  background: linear-gradient(145deg, var(--hero-navy) 0%, var(--hero-navy-mid) 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(26, 31, 46, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-heading {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}

.final-cta-body {
  max-width: min(640px, 100%);
  margin: 0 auto 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.btn-final-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: #2d1b3d;
  background: #fff;
  padding: 13px 32px;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.contact-icon-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  margin: clamp(24px, 4vw, 36px) 0 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(113, 75, 103, 0.12);
  border-bottom: 1px solid rgba(113, 75, 103, 0.12);
}

.contact-icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-icon-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.clutch-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #374151;
}

.clutch-stars {
  color: #ea580c;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.clutch-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.site-footer {
  text-align: center;
  padding: 8px 0 0;
}

.site-footer p {
  margin: 0;
  font-size: 0.88rem;
  color: #312e81;
  font-weight: 500;
}

.modal-dialog {
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-dialog::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.modal-header-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #f5eef3 0%, #efe6ee 100%);
  border-bottom: 1px solid #e5d8e0;
}

.modal-title-copy {
  display: grid;
  gap: 7px;
}

.modal-title-bar {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.modal-intro-bar {
  max-width: 38ch;
  margin: 0;
  color: #5d6472;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.modal-intro-bar[hidden] {
  display: none;
}

.modal-close-bar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.modal-close-bar:hover {
  background: #fff;
  color: var(--text);
}

.modal-form {
  padding: 18px 20px 22px;
}

.modal-name-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.modal-submit-btn {
  margin-top: 16px;
}

@keyframes modalOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalDialogIn {
  from {
    opacity: 0;
    transform: scale(0.985) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (min-width: 480px) {
  .modal-name-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

@media (min-width: 768px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 48px;
  }

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

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

@media (max-width: 767px) {
  .section {
    padding: 36px 0;
  }

  .hero.section {
    min-height: 100svh;
    padding-top: max(26px, env(safe-area-inset-top, 0px));
    padding-bottom: max(34px, env(safe-area-inset-bottom, 0px));
    align-items: flex-start;
    background: var(--bg);
  }

  .hero .container {
    width: min(100% - 34px, 430px);
  }

  .hero-grid {
    gap: 22px;
    padding: 28px 22px 30px;
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 40%),
      linear-gradient(160deg, var(--hero-panel) 0%, var(--hero-panel-mid) 100%);
  }

  .hero-logo {
    width: min(172px, 68vw);
  }

  .hero.section h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
    line-height: 1.04;
    margin-bottom: 0;
  }

  .lead-form-compact {
    padding: 18px;
  }

  .lead-form-compact h2 {
    font-size: 1.16rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .lead-form-compact > p {
    font-size: 0.86rem;
    line-height: 1.45;
    margin-bottom: 12px;
  }

  .lead-form .lead-field {
    margin-top: 11px;
  }

  .lead-form .lead-field input:not(.iti__tel-input),
  .lead-form .lead-field textarea,
  .phone-input-wrap input.iti__tel-input {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.94rem;
  }

  .lead-form .lead-field textarea {
    min-height: 76px;
  }

  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .mini-kpis {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .mini-kpis article {
    padding: 12px;
  }

  .mini-kpis article:last-child:nth-child(3) {
    grid-column: auto;
  }

  .mini-kpis strong {
    font-size: 1rem;
  }

  .mini-kpis span {
    font-size: 0.78rem;
  }

  .testimonial-card {
    padding: 20px 16px 24px;
  }

  .testimonial-quote {
    padding-right: 0;
    font-size: 1.02rem;
  }

  .testimonial-avatar {
    top: 10px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .btn-odoo-cta {
    padding: 12px 22px;
    font-size: 0.95rem;
    max-width: 100%;
  }

  .faq-panel {
    padding: 0 8px 16px 0;
  }

  .faq-trigger {
    padding: 15px 4px 15px 0;
    font-size: 0.95rem;
    gap: 12px;
  }

  .services-trio-card {
    min-height: 0;
    padding: 18px 16px;
  }

  .why-dls-card {
    min-height: 0;
  }

  .card-soft {
    padding: 20px 16px;
    margin-bottom: 24px;
  }

  .modal-overlay {
    padding: max(12px, env(safe-area-inset-top, 0px)) max(12px, env(safe-area-inset-right, 0px))
      max(16px, env(safe-area-inset-bottom, 0px)) max(12px, env(safe-area-inset-left, 0px));
  }

  .modal-dialog {
    width: min(440px, calc(100vw - 24px));
    max-height: min(88dvh, 720px);
  }

  @supports not (height: 1dvh) {
    .modal-dialog {
      max-height: min(88vh, 720px);
    }
  }
}

@media (max-width: 420px) {
  .mini-kpis {
    grid-template-columns: 1fr;
  }

  .mini-kpis article:last-child:nth-child(3) {
    grid-column: auto;
  }
}

/* Landing Page v3 redesign overrides */
.proof-section {
  min-height: 150svh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f9f8fb 0%, #f6f5f8 100%);
  padding-block: clamp(72px, 8vw, 120px);
  position: relative;
}

/* Soft tonal fade into the next (warmer) section */
.proof-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(250, 246, 240, 0.45) 100%);
  pointer-events: none;
}

.proof-stack {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

.trust-platform-header {
  max-width: 1040px;
  margin: 0 auto;
}

.trust-platform-title {
  white-space: nowrap;
}

.trust-banner {
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
}

.trust-banner-copy {
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
}

.trust-banner-kicker {
  font-size: clamp(5rem, 12vw, 8.25rem);
}

.trust-banner-lead {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

.erp-underline {
  font-family: var(--font-sans);
  font-style: italic;
  text-decoration: none;
}

.trust-banner-badges {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
}

.trust-badge {
  justify-content: center;
  padding: 13px 18px;
  background: linear-gradient(90deg, #875a7b, #714b67);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.testimonial-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  overflow: visible;
  background: linear-gradient(150deg, #fff 0%, #f8f2f7 100%);
  border: 1px solid #e8dce6;
  box-shadow: 0 18px 45px rgba(113, 75, 103, 0.12);
}

.testimonial-copy {
  min-width: 0;
}

.testimonial-quote-mark {
  color: #714b67;
  margin-bottom: 14px;
}

.testimonial-quote {
  max-width: 720px;
  margin: 0 0 22px;
  padding-right: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.42;
}

.testimonial-stars {
  margin-bottom: 8px;
}

.testimonial-client {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.testimonial-client-meta {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.testimonial-avatar {
  position: static;
  width: clamp(132px, 16vw, 188px);
  height: clamp(132px, 16vw, 188px);
  border-radius: 999px;
}

.testimonial-logo {
  margin-top: 6px;
  height: 48px;
  max-width: 190px;
}

.proof-cta {
  margin: 0;
}

.btn-odoo-cta {
  color: #fff;
  background: linear-gradient(90deg, #875a7b, #714b67);
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.25);
}

.btn-odoo-cta:hover {
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.32);
}

.pain-journey-section {
  min-height: 150svh;
  display: flex;
  align-items: center;
  padding-block: clamp(72px, 9vw, 128px);
  background: linear-gradient(180deg, #faf8f5 0%, #f8f5f2 100%);
  position: relative;
}

/* Soft tonal fade into the cooler services section */
.pain-journey-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent 0%, rgba(243, 242, 245, 0.4) 100%);
  pointer-events: none;
}

.pain-journey-shell {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid #e8dfec;
  border-radius: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(113, 75, 103, 0.08);
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.founder-avatar-wrap {
  width: clamp(220px, 24vw, 320px);
  height: clamp(220px, 24vw, 320px);
  justify-self: start;
  align-self: start;
  border-radius: 999px;
  background: transparent;
  display: block;
  object-fit: cover;
  object-position: center top;
  border: 0;
  box-shadow: none;
}

.founder-avatar-placeholder {
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.founder-mobile-meta {
  display: none;
}

.founder-kicker {
  color: #714b67;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.empathy-section-title {
  max-width: 760px;
  margin: 0 0 18px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
}

.empathy-section-title::after {
  display: none;
}

.founder-note-text {
  max-width: 65ch;
  color: #4b5563;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
}

.founder-signature {
  margin-top: 8px;
  color: #714b67;
  font-weight: 700;
}

.pain-relief-header,
.pain-relief-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pain-relief-header {
  margin-bottom: 14px;
}

.pain-relief-header p {
  margin: 0;
  color: #714b67;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pain-relief-header p:last-child {
  grid-column: 3;
}

.pain-relief-list {
  display: grid;
  gap: 18px;
}

.journey-card {
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 18px;
  border: 1px solid;
}

.journey-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.journey-card p {
  margin: 0;
  color: inherit;
  line-height: 1.6;
}

.journey-card--problem {
  background: #f8eeee;
  border-color: #c97c7c;
  color: #a64d4d;
}

.journey-card--solution {
  background: #eef6f1;
  border-color: #6fa58a;
  color: #3f7a5e;
}

.journey-arrow {
  align-self: center;
  justify-self: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #e8dfec;
  color: #714b67;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 8px 22px rgba(113, 75, 103, 0.1);
}

.services-trio-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(96px, 10vw, 150px);
  background: linear-gradient(180deg, #f5f4f7 0%, #f3f2f5 100%);
}

.services-connected {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  overflow: hidden;
  border: 1px solid #e5d8e4;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(43, 0, 79, 0.1);
}

.services-feature-panel {
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(145deg, var(--hero-panel), var(--hero-panel-mid));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(72svh, 680px);
}

.services-feature-panel h2 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.services-feature-panel p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
  max-width: 40ch;
  font-size: 0.98rem;
}

.btn-service-cta {
  align-self: flex-start;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  background: #fff;
  color: var(--hero-panel);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.services-column-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  background: #fff;
}

.service-column {
  padding: clamp(54px, 6vw, 76px) clamp(22px, 3vw, 32px) clamp(34px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-left: 1px solid #ece3eb;
}

.service-icon-placeholder {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, #f3e8f1, #fff);
  border: 1px solid #e3d4e0;
  margin-bottom: 34px;
  padding: 8px;
  color: #714b67;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-number {
  color: #875a7b;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.service-column h3 {
  color: #2b004f;
  font-size: clamp(1.22rem, 1.7vw, 1.48rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.service-column p:last-child {
  color: #665568;
  line-height: 1.72;
  font-size: 0.93rem;
}

.why-dls-section {
  padding-block: clamp(72px, 9vw, 120px);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(113, 75, 103, 0.045) 0%, transparent 55%),
    linear-gradient(180deg, #f3f2f8 0%, #f1f0f6 100%);
}

.why-dls-header {
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}

.why-dls-h1 {
  color: var(--hero-panel);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.why-dls-tagline {
  color: #714b67;
  margin-bottom: 12px;
}

.why-dls-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.why-dls-card {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.why-dls-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #efe2ec, #fff);
  border: 1px solid #e3d4e0;
  padding: 11px;
  color: #714b67;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-dls-card-title {
  margin-top: 18px;
  font-size: 1.28rem;
  color: var(--hero-panel);
}

.why-dls-sub {
  color: #714b67;
}

.why-dls-card-text {
  color: #665568;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .trust-platform-title {
    white-space: normal;
  }

  .trust-banner,
  .testimonial-card,
  .founder-note,
  .services-connected,
  .why-dls-grid {
    grid-template-columns: 1fr;
  }

  .services-feature-panel {
    min-height: auto;
  }

  .services-column-grid {
    grid-template-columns: 1fr;
  }

  .service-column {
    border-left: 0;
    border-top: 1px solid #ece3eb;
  }
}

@media (max-width: 767px) {
  .proof-section,
  .pain-journey-section,
  .services-trio-section {
    min-height: auto;
    padding-block: 56px;
  }

  .proof-stack {
    gap: 28px;
  }

  .trust-platform-header {
    text-align: center;
  }

  .trust-platform-title {
    font-size: clamp(1.65rem, 7vw, 2.45rem);
  }

  .trust-banner {
    min-height: 0;
    padding: 28px 20px;
    text-align: center;
  }

  .trust-banner-copy {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .trust-banner-kicker {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .trust-banner-lead {
    font-size: clamp(1.35rem, 6vw, 2rem);
    text-align: left;
  }

  .trust-banner-badges {
    align-items: center;
    width: 100%;
  }

  .trust-badge {
    width: min(100%, 260px);
  }

  .testimonial-card {
    position: relative;
    padding: 30px 22px;
    gap: 18px;
    border-radius: 0;
  }

  .testimonial-copy {
    position: relative;
    padding: 34px 0 0;
    border-radius: 0;
    background: transparent;
  }

  .testimonial-quote-mark {
    position: absolute;
    top: 6px;
    left: 12px;
    display: block;
    font-size: 2.4rem;
    line-height: 1;
    margin: 0;
    color: #714b67;
  }

  .testimonial-quote {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.62;
    text-align: left;
  }

  .testimonial-client {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 18px;
    text-align: center;
  }

  .testimonial-client-meta {
    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .testimonial-stars,
  .testimonial-person {
    text-align: center;
  }

  .testimonial-stars {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .testimonial-name,
  .testimonial-role {
    text-align: center;
  }

  .testimonial-avatar {
    position: static;
    width: 64px;
    height: 64px;
  }

  .testimonial-logo {
    position: static;
    margin-top: 8px;
    height: 34px;
    max-width: 136px;
  }

  .pain-journey-shell {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .founder-note {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
  }

  .founder-avatar-wrap {
    width: 72px;
    height: 72px;
  }

  .founder-mobile-meta {
    display: block;
  }

  .founder-mobile-meta p {
    margin: 0 0 4px;
    color: #2b004f;
    font-weight: 800;
  }

  .founder-mobile-meta span {
    color: #714b67;
    font-size: 0.84rem;
    font-weight: 700;
  }

  .founder-copy {
    grid-column: 1 / -1;
  }

  .founder-kicker {
    display: none;
  }

  .founder-avatar-placeholder {
    font-size: 1.3rem;
  }

  .founder-kicker {
    font-size: 0.84rem;
  }

  .empathy-section-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-top: 16px;
  }

  .founder-note-text,
  .journey-card p {
    font-size: 1rem;
  }

  .pain-relief-header {
    display: none;
  }

  .pain-relief-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .journey-arrow {
    width: 44px;
    height: 44px;
  }

  .services-connected {
    border-radius: 24px;
  }

  .services-feature-panel {
    padding: 32px 24px;
  }

  .services-feature-panel h2 {
    font-size: clamp(2.3rem, 11vw, 3.35rem);
  }

  .service-column {
    padding: 28px 24px;
  }

  .why-dls-section {
    padding-block: 56px;
  }

  .why-dls-header {
    text-align: left;
  }

  .why-dls-grid {
    gap: 28px;
  }

  .why-dls-icon {
    display: none;
  }

  .why-dls-card-title {
    margin-top: 0;
  }
}

/* Final design pass: FAQ and footer follow the Uncanny-style structure with Odoo colors. */
.faq-section {
  padding-block: clamp(38px, 5.4vw, 68px);
  background: linear-gradient(180deg, #f0eff5 0%, #edeced 100%);
}

.faq-shell {
  position: relative;
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: clamp(34px, 4.2vw, 58px);
  border: 1.5px solid rgba(26, 31, 46, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 58px rgba(43, 0, 79, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.faq-section-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.faq-layout {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-intro {
  padding: 0;
  background: transparent;
  color: var(--hero-panel);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 24px;
}

.faq-kicker {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-title {
  margin: 0;
  color: var(--hero-panel);
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.9vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.faq-summary {
  max-width: 42ch;
  margin: 16px 0 0;
  color: #5d6472;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.66;
}

.faq-accordion {
  padding: 0;
  border-top: 1px solid rgba(113, 75, 103, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(113, 75, 103, 0.2);
}

.faq-trigger {
  width: 100%;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--hero-panel);
  font: inherit;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.32;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.faq-trigger:hover {
  background: rgba(113, 75, 103, 0.045);
}

.faq-trigger:focus,
.faq-trigger:focus-visible {
  outline: none;
}

.faq-trigger:focus-visible {
  background: rgba(113, 75, 103, 0.07);
  box-shadow: 0 0 0 3px rgba(113, 75, 103, 0.16);
}

.faq-number {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.faq-question {
  min-width: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  justify-self: end;
  position: relative;
  border: 1px solid rgba(113, 75, 103, 0.24);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fb 100%);
  box-shadow: 0 8px 18px rgba(43, 0, 79, 0.055);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  transform: translateY(-50%);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
  transition: opacity 0.18s ease;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-chevron {
  display: none;
}

.faq-panel {
  padding: 0 42px 20px 58px;
}

.faq-panel p {
  max-width: 68ch;
  margin: 0;
  color: #665568;
  font-size: 0.98rem;
  line-height: 1.72;
}

.faq-cta-block {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 22px;
}

.faq-cta-block .btn-odoo-cta {
  min-width: min(100%, 250px);
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.22);
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-cta-block .btn-odoo-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.28);
}

.faq-footnote {
  margin: 0;
  color: #8a8490;
  font-size: 0.92rem;
  font-weight: 700;
}

.final-cta-section {
  padding-block: clamp(38px, 5.4vw, 68px) clamp(22px, 3.5vw, 36px);
  background: linear-gradient(180deg, #edeced 0%, #f0eff4 100%);
}

.final-cta-shell {
  position: relative;
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: clamp(18px, 2.4vw, 28px);
  border: 1.5px solid rgba(26, 31, 46, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 58px rgba(43, 0, 79, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.final-cta-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 4vw, 58px);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 52px);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #1a1f2e 0%, #2d3548 100%);
  color: #fff;
  box-shadow:
    0 18px 42px rgba(26, 31, 46, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta-copy {
  max-width: 880px;
}

.final-cta-eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.final-cta-heading {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.final-cta-body {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.66;
}

.final-cta-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: min(100%, 280px);
}

.btn-final-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  border-radius: 999px;
  padding: 14px 24px;
  background: #fff;
  color: var(--hero-panel);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn-final-cta:hover {
  transform: translateY(-2px);
  background: #f8f4f7;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.final-cta-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: right;
}

.contact-icon-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  margin: 16px 0 0;
  padding: 16px 4px 2px;
  border: 0;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-icon-link {
  width: auto;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fb 100%);
  color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(43, 0, 79, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.contact-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(113, 75, 103, 0.34);
  box-shadow: 0 12px 24px rgba(43, 0, 79, 0.08);
}

.contact-icon-link:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(113, 75, 103, 0.16),
    0 12px 24px rgba(43, 0, 79, 0.08);
}

.clutch-badge {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #665568;
  box-shadow: 0 8px 18px rgba(43, 0, 79, 0.045);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

.clutch-stars {
  color: #caa437;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.clutch-count {
  color: #8a8490;
  font-size: 0.74rem;
  font-weight: 700;
}

.site-footer p {
  margin: 10px 0 0;
  color: #665568;
  font-size: 0.82rem;
  font-weight: 600;
}


@media (max-width: 767px) {
  .faq-section {
    padding-block: 38px 48px;
  }

  .faq-shell {
    width: min(100% - 32px, 520px);
    padding: 34px 18px 22px;
    border-radius: 18px;
  }

  .faq-section-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

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

  .faq-intro {
    position: static;
  }

  .faq-title {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .faq-intro,
  .faq-accordion {
    padding: 0;
  }

  .faq-trigger {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 10px;
    padding: 17px 0;
    font-size: 0.96rem;
  }

  .faq-number {
    font-size: 0.8rem;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-panel {
    padding: 0 0 18px 44px;
  }

  .faq-panel p {
    font-size: 0.94rem;
    line-height: 1.64;
  }

  .faq-cta-block {
    width: 100%;
  }

  .faq-cta-block .btn-odoo-cta {
    width: 100%;
  }

  .final-cta-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    border-radius: 16px;
    padding: 26px 18px;
  }

  .final-cta-section {
    padding-block: 38px 30px;
  }

  .final-cta-shell {
    width: min(100% - 32px, 520px);
    padding: 18px;
    border-radius: 18px;
  }

  .final-cta-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

  .final-cta-heading {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.12;
  }

  .final-cta-actions {
    justify-items: stretch;
    width: 100%;
    min-width: 0;
  }

  .final-cta-note {
    text-align: left;
  }

  .contact-icon-bar {
    justify-content: center;
    padding-top: 14px;
  }

  .contact-links {
    justify-content: center;
    width: 100%;
  }

  .contact-icon-link {
    height: 36px;
    padding: 0 10px;
    font-size: 0.8rem;
  }

  .clutch-badge {
    grid-auto-flow: row;
    justify-items: center;
    gap: 2px;
    border-radius: 12px;
    padding: 8px 12px;
  }

  .site-footer p {
    margin-top: 8px;
    font-size: 0.78rem;
  }
}

/* Proof section refresh: lightweight credibility strip and one hero client story. */
.proof-section {
  min-height: auto;
  display: block;
  padding-block: clamp(56px, 7vw, 92px);
  background: linear-gradient(180deg, #f9f8fb 0%, #f6f5f8 100%);
}

.proof-stack {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.proof-section .trust-platform-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.proof-section .trust-platform-title {
  white-space: normal;
  margin-bottom: 12px;
  color: var(--hero-panel);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.proof-section .trust-platform-title em {
  color: var(--primary);
  font-style: normal;
  font-weight: 800;
}

.proof-section .trust-platform-sub {
  max-width: 760px;
  margin: 0 auto;
  color: #665568;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.credibility-strip {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto clamp(10px, 1.4vw, 18px);
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
}

.proof-section .trust-badge {
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(113, 75, 103, 0.28);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(43, 0, 79, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.proof-section .trust-badge:nth-child(3),
.proof-section .trust-badge:nth-child(5) {
  border-color: rgba(46, 125, 82, 0.38);
  color: #2f7d54;
}

.proof-section .testimonial-card {
  width: min(100%, 1500px);
  margin: 10px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.45fr);
  align-items: center;
  gap: clamp(28px, 6vw, 90px);
  padding: clamp(38px, 5vw, 68px);
  overflow: visible;
  border: 1.5px solid rgba(26, 31, 46, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 52px rgba(43, 0, 79, 0.07);
}

.testimonial-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.proof-section .testimonial-copy {
  min-width: 0;
}

.proof-section .testimonial-quote-mark {
  margin: 0 0 10px;
  color: #3f75b3;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.8;
}

.proof-section .testimonial-quote {
  max-width: 900px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--hero-panel);
  font-size: clamp(1.45rem, 2.55vw, 2.55rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.quote-highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  white-space: nowrap;
}

.quote-highlight::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -7px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 9' preserveAspectRatio='none'%3E%3Cpath d='M2 6 C18 4%2C 36 7%2C 56 5.5 C74 4%2C 92 6.5%2C 112 5 C132 3.5%2C 152 6%2C 172 5 C192 4%2C 214 5.5%2C 238 5' stroke='%23b8860b' stroke-width='2.8' stroke-linecap='round' fill='none' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 1;
  pointer-events: none;
}

.proof-section .testimonial-stars {
  margin: 0;
  color: #caa437;
  font-size: 1.35rem;
  letter-spacing: 2px;
}

.proof-section .testimonial-client {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.proof-section .testimonial-avatar {
  position: static;
  width: clamp(132px, 15vw, 190px);
  height: clamp(132px, 15vw, 190px);
  border: 4px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(26, 31, 46, 0.16);
}

.proof-section .testimonial-client-meta {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.proof-section .testimonial-person {
  display: block;
}

.proof-section .testimonial-name {
  margin: 0;
  color: var(--hero-panel);
  font-size: 1.08rem;
  font-weight: 800;
}

.proof-section .testimonial-role {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.proof-section .testimonial-logo {
  height: auto;
  max-height: 54px;
  max-width: 190px;
  object-fit: contain;
}

.proof-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 2px 0 0;
  text-align: center;
}

.proof-cta-note {
  margin: 0;
  color: #8a8490;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
}

.proof-section .btn-odoo-cta {
  min-width: min(100%, 460px);
  padding: 17px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.22);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 800;
}

.proof-section .btn-odoo-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.28);
}

@media (max-width: 900px) {
  .proof-section .testimonial-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .proof-section {
    padding-block: 48px 56px;
  }

  .proof-stack {
    gap: 22px;
  }

  .credibility-strip {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }

  .proof-section .trust-badge {
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .proof-section .testimonial-card {
    margin-top: 12px;
    padding: 42px 20px 28px;
    border-radius: 16px;
  }

  .testimonial-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

  .proof-section .testimonial-quote {
    font-size: clamp(1.32rem, 6.5vw, 1.78rem);
    line-height: 1.34;
  }

  .quote-highlight {
    white-space: normal;
  }

  .proof-section .testimonial-avatar {
    width: 104px;
    height: 104px;
  }

  .proof-section .btn-odoo-cta {
    width: 100%;
    min-width: 0;
  }
}

/* Empathy / problem / solution refresh. */
.pain-journey-section {
  min-height: auto;
  display: block;
  padding-block: clamp(48px, 6.4vw, 82px);
  background: linear-gradient(180deg, #faf8f5 0%, #f8f5f2 100%);
}

.founder-note-editorial {
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  align-items: center;
  gap: clamp(30px, 5.5vw, 86px);
  margin-bottom: clamp(26px, 4vw, 42px);
}

.pain-journey-shell {
  position: relative;
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: clamp(30px, 3.8vw, 50px);
  border: 1.5px solid rgba(26, 31, 46, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 249, 252, 0.86) 100%);
  box-shadow:
    0 18px 46px rgba(43, 0, 79, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pain-section-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.founder-note-editorial .founder-avatar-wrap {
  width: clamp(180px, 20vw, 300px);
  height: clamp(180px, 20vw, 300px);
  justify-self: center;
  transform: translateY(10px);
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 24px 54px rgba(43, 0, 79, 0.12),
    0 0 0 1px rgba(113, 75, 103, 0.12);
}

.founder-note-editorial .founder-copy {
  position: relative;
  max-width: 900px;
  padding-top: 8px;
}

.founder-note-editorial .founder-copy::before {
  content: "\201C";
  position: absolute;
  top: -72px;
  left: -24px;
  color: rgba(113, 75, 103, 0.08);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.founder-note-editorial .founder-kicker {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.founder-note-editorial .empathy-section-title {
  max-width: 780px;
  margin: 0 0 18px;
  color: var(--hero-panel);
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.founder-note-editorial .founder-note-text {
  max-width: 72ch;
  margin-bottom: 14px;
  color: #5d6472;
  font-size: clamp(1rem, 1.22vw, 1.1rem);
  line-height: 1.72;
}

.founder-note-editorial .founder-signature {
  margin: 6px 0 0;
  color: var(--primary);
  font-weight: 800;
}

.pain-relief-header,
.pain-relief-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 18px;
}

.pain-relief-header {
  align-items: end;
  margin-bottom: 14px;
}

.pain-relief-header p {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pain-relief-header p:last-child {
  grid-column: 3;
}

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

.pain-relief-row {
  align-items: stretch;
}

.journey-card {
  min-height: 132px;
  padding: clamp(17px, 2vw, 24px);
  border: 1.2px solid;
  border-radius: 14px;
}

.journey-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.journey-card h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.journey-card p {
  margin: 0;
  color: inherit;
  font-size: 0.98rem;
  line-height: 1.62;
}

.journey-card--problem {
  background: rgba(255, 241, 241, 0.82);
  border-color: rgba(197, 73, 73, 0.46);
  color: #b64242;
}

.journey-card--solution {
  background: rgba(239, 248, 242, 0.86);
  border-color: rgba(47, 125, 84, 0.42);
  color: #2f7d54;
}

.journey-arrow {
  position: relative;
  align-self: center;
  justify-self: center;
  width: 72px;
  height: 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.78rem;
}

.journey-arrow::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
}

.journey-arrow::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

.journey-arrow span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

.pain-journey-shell .section-inline-cta--after-solution {
  margin-top: clamp(22px, 3vw, 34px);
  margin-bottom: 0;
}

.pain-journey-shell .btn-odoo-cta {
  min-width: min(100%, 300px);
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.22);
  font-size: 1.05rem;
  font-weight: 800;
}

.pain-journey-shell .btn-odoo-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.28);
}

@media (max-width: 900px) {
  .pain-relief-header,
  .pain-relief-row {
    grid-template-columns: 1fr;
  }

  .pain-relief-header {
    display: none;
  }

  .pain-relief-row {
    gap: 0;
    overflow: hidden;
    border: 1.2px solid rgba(26, 31, 46, 0.34);
    border-radius: 18px;
    background: #fff;
  }

  .pain-relief-row .journey-card {
    min-height: 0;
    border: 0;
    border-radius: 0;
  }

  .pain-relief-row .journey-card--problem {
    padding-bottom: 30px;
  }

  .pain-relief-row .journey-card--solution {
    padding-top: 32px;
  }

  .journey-arrow {
    width: 100%;
    height: 0;
    z-index: 1;
  }

  .journey-arrow::before {
    left: 0;
    right: 0;
    top: -1px;
    height: 0;
    border-top: 1.5px dashed rgba(26, 31, 46, 0.34);
    background: transparent;
  }

  .journey-arrow::after {
    content: "\2193";
    left: 50%;
    right: auto;
    top: -22px;
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(26, 31, 46, 0.34);
    border-radius: 999px;
    background: #fff;
    color: var(--hero-panel);
    display: grid;
    place-items: center;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }

  .journey-arrow span {
    display: none;
  }
}

@media (max-width: 767px) {
  .pain-journey-section {
    padding-block: 42px 52px;
  }

  .founder-note-editorial {
    width: min(100% - 32px, 520px);
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
  }

  .pain-journey-shell {
    width: min(100% - 32px, 520px);
    padding: 34px 18px 22px;
    border-radius: 18px;
  }

  .pain-section-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

  .founder-note-editorial .founder-avatar-wrap {
    width: 72px;
    height: 72px;
    transform: none;
    border-width: 5px;
  }

  .founder-note-editorial .founder-mobile-meta {
    display: block;
  }

  .founder-note-editorial .founder-mobile-meta p {
    margin: 0 0 4px;
    color: var(--hero-panel);
    font-weight: 800;
  }

  .founder-note-editorial .founder-mobile-meta span {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .founder-note-editorial .founder-copy {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .founder-note-editorial .founder-copy::before {
    top: -20px;
    left: -4px;
    font-size: 5.5rem;
  }

  .founder-note-editorial .founder-kicker {
    display: none;
  }

  .founder-note-editorial .empathy-section-title {
    margin-top: 14px;
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .founder-note-editorial .founder-note-text,
  .journey-card p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .pain-relief-list {
    gap: 14px;
  }

  .journey-card {
    padding: 18px 16px;
  }

  .journey-card h3 {
    font-size: 1.25rem;
  }

  .journey-label {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .pain-journey-shell .btn-odoo-cta {
    width: 100%;
  }
}

/* Delivery model refresh. */
.services-trio-section {
  min-height: auto;
  display: block;
  padding-block: clamp(54px, 7vw, 92px);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(113, 75, 103, 0.045) 0%, transparent 42%),
    linear-gradient(180deg, #f5f4f7 0%, #f3f2f5 100%);
}

.services-connected {
  position: relative;
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  display: grid;
  grid-template-columns: minmax(280px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(30px, 4.2vw, 64px);
  align-items: stretch;
  overflow: visible;
  padding: clamp(42px, 5vw, 72px);
  border: 1.5px solid rgba(26, 31, 46, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 1px 1px, rgba(113, 75, 103, 0.12) 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(252, 249, 246, 0.92));
  background-size: 18px 18px, auto;
  box-shadow: 0 20px 52px rgba(43, 0, 79, 0.07);
}

.services-section-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.services-feature-panel {
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--hero-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-feature-panel h2 {
  margin: 0 0 22px;
  color: var(--hero-panel);
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.services-feature-panel h2 span {
  color: var(--primary);
}

.services-feature-panel p {
  max-width: 44ch;
  margin: 0;
  color: #5d6472;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.btn-service-cta {
  align-self: flex-start;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  background: var(--primary-dark);
  color: #fff;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-service-cta:hover {
  background: #4f3548;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.28);
}

.services-hover-helper {
  display: block;
  margin: 14px 0 0;
  color: rgba(93, 100, 114, 0.82);
  font-size: 0.83rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.4;
}

.delivery-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  background: transparent;
}

.delivery-step-card {
  position: relative;
  min-height: 338px;
  max-height: 338px;
  overflow: hidden;
  padding: clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(43, 0, 79, 0.045);
  outline: 0;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.delivery-step-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(113, 75, 103, 0), rgba(113, 75, 103, 0.72), rgba(113, 75, 103, 0));
  opacity: 0;
  transition: opacity 0.24s ease;
}

.delivery-step-card:hover,
.delivery-step-card:focus,
.delivery-step-card:focus-within,
.delivery-step-card:first-child {
  transform: translateY(-4px);
  border-color: rgba(113, 75, 103, 0.42);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(43, 0, 79, 0.11);
}

.delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover) {
  transform: none;
  border-color: rgba(113, 75, 103, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(43, 0, 79, 0.045);
}

.delivery-steps-grid:focus-within .delivery-step-card:first-child:not(:focus):not(:focus-within) {
  transform: none;
  border-color: rgba(113, 75, 103, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(43, 0, 79, 0.045);
}

.delivery-step-card:hover::after,
.delivery-step-card:focus::after,
.delivery-step-card:focus-within::after,
.delivery-step-card:first-child::after {
  opacity: 1;
}

.delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover)::after {
  opacity: 0;
}

.delivery-steps-grid:focus-within .delivery-step-card:first-child:not(:focus):not(:focus-within)::after {
  opacity: 0;
}

.delivery-step-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.delivery-icon-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: 12px;
  background: #f6eef5;
  color: var(--primary);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.delivery-icon-badge svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delivery-step-card:hover .delivery-icon-badge,
.delivery-step-card:focus .delivery-icon-badge,
.delivery-step-card:focus-within .delivery-icon-badge,
.delivery-step-card:first-child .delivery-icon-badge {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover) .delivery-icon-badge {
  border-color: rgba(113, 75, 103, 0.14);
  background: #f6eef5;
  color: var(--primary);
}

.delivery-steps-grid:focus-within .delivery-step-card:first-child:not(:focus):not(:focus-within) .delivery-icon-badge {
  border-color: rgba(113, 75, 103, 0.14);
  background: #f6eef5;
  color: var(--primary);
}

.delivery-step-count {
  color: rgba(26, 31, 46, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.delivery-week-badge {
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 10px;
  border: 1px solid rgba(46, 125, 82, 0.16);
  border-radius: 999px;
  background: rgba(229, 246, 236, 0.92);
  color: #2f7d54;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.delivery-step-card h3 {
  margin: 0 0 10px;
  color: var(--hero-panel);
  font-size: clamp(1.08rem, 1.25vw, 1.25rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.delivery-step-card > p {
  margin: 0;
  color: #5f6470;
  font-size: 0.91rem;
  line-height: 1.55;
}

.delivery-step-detail {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  border-top: 1px solid rgba(113, 75, 103, 0);
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 0.26s ease,
    margin-top 0.26s ease,
    padding-top 0.26s ease,
    border-color 0.26s ease,
    opacity 0.22s ease,
    transform 0.26s ease;
}

.delivery-step-card:hover .delivery-step-detail,
.delivery-step-card:focus .delivery-step-detail,
.delivery-step-card:focus-within .delivery-step-detail,
.delivery-step-card:first-child .delivery-step-detail {
  max-height: 170px;
  margin-top: 16px;
  padding-top: 14px;
  border-color: rgba(113, 75, 103, 0.16);
  opacity: 1;
  transform: translateY(0);
}

.delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover) .delivery-step-detail {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  border-color: rgba(113, 75, 103, 0);
  opacity: 0;
  transform: translateY(8px);
}

.delivery-steps-grid:focus-within .delivery-step-card:first-child:not(:focus):not(:focus-within) .delivery-step-detail {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  border-color: rgba(113, 75, 103, 0);
  opacity: 0;
  transform: translateY(8px);
}

.delivery-step-detail h4 {
  margin: 0 0 9px;
  color: var(--hero-panel);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.delivery-step-detail ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-step-detail li {
  position: relative;
  padding-left: 16px;
  color: #44394a;
  font-size: 0.78rem;
  line-height: 1.35;
}

.delivery-step-detail li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 1100px) {
  .services-connected {
    grid-template-columns: 1fr;
  }

  .services-feature-panel {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .delivery-steps-grid {
    grid-template-columns: 1fr;
  }

  .delivery-step-card,
  .delivery-step-card:first-child,
  .delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover) {
    min-height: auto;
    max-height: none;
    transform: none;
  }

  .delivery-step-detail,
  .delivery-step-card:first-child .delivery-step-detail,
  .delivery-steps-grid:hover .delivery-step-card:first-child:not(:hover) .delivery-step-detail,
  .delivery-steps-grid:focus-within .delivery-step-card:first-child:not(:focus):not(:focus-within) .delivery-step-detail {
    max-height: none;
    margin-top: 16px;
    padding-top: 14px;
    border-color: rgba(113, 75, 103, 0.16);
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) {
  .sticky-scroll-cta {
    top: max(8px, env(safe-area-inset-top, 0px));
    width: min(100% - 20px, 520px);
  }

  .sticky-scroll-cta-inner {
    min-height: 48px;
    gap: 10px;
    padding: 8px 8px 8px 13px;
  }

  .sticky-scroll-cta p {
    font-size: 0.76rem;
    font-weight: 800;
  }

  .sticky-scroll-cta-button {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none;
  }

  .services-trio-section {
    padding-block: 48px 56px;
  }

  .services-connected {
    width: min(100% - 32px, 520px);
    gap: 28px;
    padding: 38px 18px 24px;
    border-radius: 18px;
  }

  .services-section-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

  .services-feature-panel {
    padding: 0;
  }

  .services-feature-panel h2 {
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .btn-service-cta {
    width: auto;
  }

  .services-hover-helper {
    display: none;
  }

  .delivery-steps-grid {
    gap: 12px;
  }

  .delivery-step-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .delivery-step-card > p {
    font-size: 0.9rem;
  }

  .delivery-step-detail li {
    font-size: 0.8rem;
  }
}

/* Why DataLab refresh. */
.why-dls-section {
  padding-block: clamp(38px, 5.4vw, 68px);
  background:
    radial-gradient(ellipse at 50% 20%, rgba(113, 75, 103, 0.045) 0%, transparent 55%),
    linear-gradient(180deg, #f3f2f8 0%, #f1f0f6 100%);
}

.why-dls-intro {
  width: min(
    1120px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  display: grid;
  justify-items: center;
  gap: 0;
  margin-bottom: clamp(30px, 4.8vw, 54px);
  text-align: center;
}

.why-dls-shell {
  position: relative;
  width: min(
    1500px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: clamp(24px, 3.2vw, 38px);
  border: 1.5px solid rgba(26, 31, 46, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 249, 252, 0.86) 100%);
  box-shadow:
    0 18px 46px rgba(43, 0, 79, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.why-dls-section-label {
  position: absolute;
  top: -18px;
  left: clamp(24px, 4vw, 48px);
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(46, 125, 82, 0.45);
  border-radius: 6px;
  background: #f7fff9;
  color: #2f7d54;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(46, 125, 82, 0.08);
}

.why-dls-header {
  max-width: 980px;
  margin: 0;
  text-align: center;
}

.why-dls-tagline {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
}

.why-dls-h1 {
  margin: 0;
  max-width: 960px;
  color: var(--hero-panel);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.why-dls-brand-accent {
  color: var(--primary);
  background: linear-gradient(100deg, #714b67 0%, #875a7b 52%, #ad7fa1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-dls-lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5d6472;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.68;
}

.why-dls-cta {
  margin-top: 24px;
  min-width: min(100%, 250px);
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 30px rgba(113, 75, 103, 0.22);
  font-size: 1.05rem;
  font-weight: 800;
}

.why-dls-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 16px 36px rgba(113, 75, 103, 0.28);
}

.why-dls-trust-grid {
  width: min(100%, 820px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 30px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-dls-trust-grid span {
  flex: 0 1 auto;
  min-width: 128px;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  box-shadow: 0 8px 18px rgba(43, 0, 79, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}


.why-dls-trust-grid span:nth-child(1),
.why-dls-trust-grid span:nth-child(3) {
  border-color: rgba(46, 125, 82, 0.28);
  color: #2f7d54;
}

.why-dls-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.why-dls-card {
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 24px rgba(43, 0, 79, 0.052),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.why-dls-card:hover {
  transform: translateY(-3px);
  border-color: rgba(113, 75, 103, 0.3);
  box-shadow:
    0 18px 38px rgba(43, 0, 79, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.why-dls-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 0 16px;
  padding: 9px;
  border: 1px solid rgba(113, 75, 103, 0.2);
  border-radius: 12px;
  background: #f6eef5;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-dls-card-title {
  margin: 0 0 6px;
  color: var(--hero-panel);
  font-size: clamp(1.12rem, 1.32vw, 1.28rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.018em;
}

.why-dls-sub {
  display: block;
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.why-dls-card-text {
  margin: 0;
  color: #665568;
  font-size: 0.92rem;
  line-height: 1.58;
}

@media (max-width: 1000px) {
  .why-dls-intro {
    width: min(
      100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px),
      900px
    );
  }

  .why-dls-trust-grid {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .why-dls-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .why-dls-section {
    padding-block: 38px 48px;
  }

  .why-dls-intro {
    width: min(100% - 32px, 520px);
    margin-bottom: 24px;
  }

  .why-dls-shell {
    width: min(100% - 32px, 520px);
    padding: 34px 18px 22px;
    border-radius: 18px;
  }

  .why-dls-section-label {
    left: 18px;
    right: 18px;
    width: fit-content;
    max-width: calc(100% - 36px);
    font-size: 0.82rem;
  }

  .why-dls-h1 {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
  }

  .why-dls-cta {
    width: 100%;
  }

  .why-dls-trust-grid {
    gap: 8px;
    margin-top: 20px;
  }

  .why-dls-trust-grid span {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    padding: 8px 11px;
    font-size: 0.8rem;
  }

  .why-dls-grid {
    gap: 12px;
  }

  .why-dls-card {
    padding: 18px;
  }
}

/* ─── Organic accent elements ─────────────────────────────────────────────── */

/* 3. Services / Live-in-weeks — faint dot-grid on the white card gives a
      blueprint / operational feel without decorating for decoration's sake */
.services-connected {
  background-image:
    radial-gradient(circle, rgba(90, 68, 110, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9));
  background-size: 22px 22px, 100%;
}

/* 4. Why DLS — oversized ghost "WHY" anchors the headline area with editorial depth */
.why-dls-intro {
  position: relative;
  overflow: visible;
}

.why-dls-intro::before {
  content: 'WHY';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-size: clamp(88px, 17vw, 188px);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(113, 75, 103, 0.032);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 0;
}

.why-dls-intro > *:not(.why-dls-framework) {
  position: relative;
  z-index: 1;
}

/* Implementation framework visual anchor */
.why-dls-framework {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(860px, 96%);
  height: auto;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
}

@media (max-width: 600px) {
  .why-dls-framework {
    display: none;
  }
}

/* 5. FAQ — oversized ghost "?" softens the left intro column, makes it conversational.
      Scoped to faq-layout so the label chip above the card is never clipped. */
.faq-layout {
  position: relative;
  overflow: hidden;
}

.faq-layout::before {
  content: '?';
  position: absolute;
  top: 50%;
  left: -3%;
  transform: translateY(-50%);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(113, 75, 103, 0.038);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.faq-intro,
.faq-accordion {
  position: relative;
  z-index: 1;
}

/* 6. Final CTA — cinematic light burst emanating from behind the CTA card */
.final-cta-card {
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 130%);
  height: 360px;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(159, 133, 195, 0.14) 0%,
    rgba(113, 75, 103, 0.06) 40%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.final-cta-copy,
.final-cta-actions {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .why-dls-intro::before {
    font-size: 72px;
  }

  .faq-layout::before {
    left: -8%;
    font-size: 130px;
  }
}

/* Empathy / problem / solution layout repair. Scoped late to override older section experiments. */
.pain-journey-section {
  min-height: auto;
  display: block;
  padding-block: clamp(42px, 5vw, 72px);
  background: linear-gradient(180deg, #faf8f5 0%, #f8f5f2 100%);
}

.pain-journey-section::after {
  display: none;
}

.founder-note-editorial {
  width: min(
    1360px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  margin-bottom: clamp(8px, 1.4vw, 18px);
}

.founder-note-editorial .founder-copy {
  grid-column: 2;
  grid-row: 1;
  max-width: 820px;
  padding: clamp(20px, 3vw, 32px) 0;
  position: relative;
  z-index: 1;
}

.founder-note-editorial .founder-copy::before {
  top: -28px;
  left: -20px;
  color: rgba(113, 75, 103, 0.06);
  font-size: clamp(6rem, 10vw, 10rem);
}

.founder-note-editorial .founder-avatar-wrap {
  grid-column: 1;
  grid-row: 1;
  width: clamp(220px, 22vw, 320px);
  height: clamp(220px, 22vw, 320px);
  justify-self: center;
  align-self: center;
  transform: none;
  border: 10px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  background: #f2eef4;
  box-shadow:
    0 24px 54px rgba(43, 0, 79, 0.12),
    0 0 0 1px rgba(113, 75, 103, 0.12);
}

.founder-note-editorial .founder-mobile-meta {
  display: none;
}

.founder-note-editorial .founder-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.founder-note-editorial .empathy-section-title {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--hero-panel);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.founder-note-editorial .founder-note-text {
  max-width: 68ch;
  margin: 0 0 12px;
  color: #5d6472;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
  line-height: 1.68;
}

.founder-note-editorial .founder-signature {
  margin: 8px 0 0;
  color: var(--primary);
  font-weight: 800;
}

.pain-journey-shell {
  width: min(
    1360px,
    calc(100% - 48px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: clamp(28px, 3vw, 42px);
  border: 1.5px solid rgba(26, 31, 46, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 249, 252, 0.86) 100%);
  box-shadow:
    0 18px 46px rgba(43, 0, 79, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pain-relief-header,
.pain-relief-row {
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 16px;
}

.pain-relief-list {
  gap: 12px;
}

.journey-card {
  min-height: 118px;
  padding: clamp(16px, 1.7vw, 22px);
  border-radius: 14px;
}

.journey-card h3 {
  font-size: clamp(1.08rem, 1.32vw, 1.32rem);
}

.journey-card p {
  font-size: 0.96rem;
}

@media (min-width: 901px) {
  .pain-relief-row {
    align-items: stretch;
  }

  .journey-arrow {
    width: 64px;
  }
}

@media (max-width: 900px) {
  .founder-note-editorial {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: left;
  }

  .founder-note-editorial .founder-avatar-wrap,
  .founder-note-editorial .founder-mobile-meta,
  .founder-note-editorial .founder-copy {
    grid-column: 1;
  }

  .founder-note-editorial .founder-avatar-wrap {
    grid-row: 1;
    width: clamp(132px, 30vw, 190px);
    height: clamp(132px, 30vw, 190px);
    border-width: 7px;
  }

  .founder-note-editorial .founder-mobile-meta {
    grid-row: 2;
    display: block;
    width: min(100%, 680px);
    text-align: center;
  }

  .founder-note-editorial .founder-mobile-meta p {
    margin: 0 0 4px;
    color: var(--hero-panel);
    font-weight: 800;
  }

  .founder-note-editorial .founder-mobile-meta span {
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .founder-note-editorial .founder-copy {
    grid-row: 3;
    width: min(100%, 680px);
    padding: 6px 0 0;
  }

  .founder-note-editorial .founder-kicker {
    display: none;
  }

  .founder-note-editorial .founder-copy::before {
    top: -10px;
    left: -8px;
    font-size: 5.25rem;
  }

  .pain-relief-header,
  .pain-relief-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .sticky-scroll-cta {
    top: max(8px, env(safe-area-inset-top, 0px));
    width: min(100% - 20px, 520px);
  }

  .pain-journey-section {
    padding-block: 34px 44px;
  }

  .founder-note-editorial {
    width: min(100% - 32px, 520px);
    gap: 10px;
    margin-bottom: 12px;
  }

  .founder-note-editorial .founder-avatar-wrap {
    width: 112px;
    height: 112px;
    border-width: 6px;
  }

  .founder-note-editorial .founder-copy {
    padding-top: 4px;
  }

  .founder-note-editorial .founder-copy::before {
    top: -8px;
    left: -4px;
    font-size: 4.6rem;
  }

  .founder-note-editorial .empathy-section-title {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: clamp(1.85rem, 8.4vw, 2.55rem);
    line-height: 1.08;
  }

  .founder-note-editorial .founder-note-text {
    margin-bottom: 10px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .founder-note-editorial .founder-signature {
    margin-top: 4px;
  }

  .pain-journey-shell {
    width: min(100% - 32px, 520px);
    padding: 32px 16px 20px;
    border-radius: 18px;
  }

  .pain-section-label {
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    font-size: 0.8rem;
  }

  .pain-relief-list {
    gap: 12px;
  }

  .pain-relief-row {
    border-radius: 16px;
  }

  .journey-card {
    padding: 16px;
  }

  .journey-card h3 {
    font-size: 1.12rem;
  }

  .journey-card p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .pain-journey-shell .section-inline-cta--after-solution {
    margin-top: 18px;
  }

  .pain-journey-shell .btn-odoo-cta {
    width: 100%;
    min-width: 0;
  }
}
