:root {
  --bg: #f7f6f2;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #66645f;
  --line: #d9d5cc;
  --soft: #ebe7dc;
  --green: #0f6d5d;
  --green-dark: #07483d;
  --green-soft: #dcece6;
  --amber: #c98d2d;
  --coral: #d76545;
  --steel: #31415f;
  --dark: #121718;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(26, 25, 22, 0.12);
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.66;
}

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

a {
  color: inherit;
}

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

.narrow {
  max-width: 820px;
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(247, 246, 242, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(23, 23, 23, 0.1);
}

.brand,
.main-nav,
.footer-inner {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  text-decoration: none;
  font-weight: 860;
  white-space: nowrap;
}

.brand-mark {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, var(--dark), var(--green));
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(15, 109, 93, 0.26);
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-text {
  font-family: "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.main-nav {
  justify-self: center;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 23, 23, 0.09);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(23, 23, 23, 0.08);
}

.main-nav a,
.nav-cta {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 760;
  color: #34332f;
}

.main-nav a[aria-current="page"],
.main-nav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav-cta {
  display: none;
}

.section-band {
  padding: 88px 0;
}

.section-tight {
  padding: 38px 0;
}

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

.muted {
  background: var(--soft);
}

.dark-band {
  background: var(--dark);
  color: var(--paper);
}

.hero {
  min-height: calc(92vh - 76px);
  display: flex;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.96rem;
  font-family: "Avenir Next", ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dark-band .eyebrow {
  color: #9bd5c7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  font-size: clamp(3.55rem, 5.7vw, 5.45rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.18;
}

.hero-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
  line-height: 1.58;
}

.hero-actions,
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  width: 100%;
  margin-top: 26px;
}

.hero-actions .button {
  min-width: 310px;
}

.hero-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
}

.hero-link:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 17px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 760;
  font-size: 1.08rem;
  line-height: 1.1;
}

.button-wide {
  min-width: 330px;
  min-height: 66px;
  padding-inline: 34px;
}

.button-primary {
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.dark-band .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 470px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 590px;
  object-fit: cover;
  object-position: center 14%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.95) contrast(1.02) brightness(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0) 48%, rgba(18,23,24,0.18));
  pointer-events: none;
}

.status-panel {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 12px;
  width: min(315px, calc(100% - 36px));
  padding: 18px;
  background: rgba(18, 23, 24, 0.9);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.status-panel span {
  display: block;
  color: #b7d8d1;
  font-size: 1rem;
  font-weight: 800;
}

.status-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.2;
}

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

.metrics-grid div {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(23, 23, 23, 0.06);
}

.metric-visual {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 40px;
  margin-bottom: 20px;
}

.metric-visual i {
  display: block;
  background: var(--green);
  border-radius: 999px 999px 4px 4px;
}

.metric-growth .metric-visual i:nth-child(1) {
  width: 13px;
  height: 16px;
  background: var(--green-soft);
}

.metric-growth .metric-visual i:nth-child(2) {
  width: 13px;
  height: 27px;
  background: #9bcabd;
}

.metric-growth .metric-visual i:nth-child(3) {
  width: 13px;
  height: 39px;
}

.metric-custom .metric-visual {
  align-items: center;
}

.metric-custom .metric-visual i {
  width: 34px;
  height: 16px;
  border-radius: 999px;
  background: #d8c18f;
}

.metric-custom .metric-visual i:nth-child(2) {
  width: 48px;
  background: var(--green);
}

.metric-custom .metric-visual i:nth-child(3) {
  width: 26px;
  background: var(--coral);
}

.metric-scope .metric-visual {
  position: relative;
  width: 50px;
  height: 50px;
  border: 8px solid var(--green-soft);
  border-top-color: var(--green);
  border-right-color: var(--amber);
  border-radius: 50%;
}

.metric-scope .metric-visual i {
  display: none;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
}

.metrics-grid span {
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 620;
  line-height: 1.42;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

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

.section-heading p:not(.eyebrow),
.text-stack,
.proof-list,
.case-preview {
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.62;
}

.text-stack p,
.proof-list p {
  margin-bottom: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.service-card,
.module-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.service-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--coral));
  border-radius: 999px;
  opacity: 0.7;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -22px;
  width: 94px;
  height: 94px;
  background: var(--green-soft);
  border-radius: 50%;
  opacity: 0.78;
}

.service-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 242, 0.92)),
    var(--paper);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 109, 93, 0.26);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.1);
}

.service-card p,
.module-card p,
.case-body p,
.clean-list {
  color: var(--muted);
}

.card-index,
.module-tag,
.case-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  margin-bottom: 12px;
  background: transparent;
  color: var(--green);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 1.06rem;
  line-height: 1.48;
}

.module-tag,
.case-label {
  padding: 7px 10px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 6px;
}

.product-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: start;
}

.builder-board {
  padding: 14px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.builder-mini-schema {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 18px;
  color: #f1f5f3;
  font-size: 0.9rem;
  font-weight: 760;
}

.builder-mini-schema i {
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 213, 199, 0.2), #9bd5c7);
}

.board-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row span {
  color: #aeb8b6;
  font-size: 1.14rem;
  font-weight: 760;
}

.board-row strong {
  font-size: 1.28rem;
  line-height: 1.28;
}

.flow-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: center;
}

.board-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 18px 6px;
}

.board-tags span {
  padding: 8px 10px;
  color: #dce6e2;
  background: rgba(155, 213, 199, 0.12);
  border: 1px solid rgba(155, 213, 199, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 720;
}

.teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: start;
}

.mini-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mini-module-list span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 16px 16px 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 720;
}

.mini-module-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 4px;
  box-shadow: 0 0 0 5px var(--green-soft);
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--green);
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.case-preview {
  display: grid;
  gap: 18px;
}

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

.case-preview article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.case-mini-card {
  min-height: 210px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.case-preview span {
  display: block;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 780;
  text-transform: uppercase;
}

.case-preview h3 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 1.26rem;
}

.case-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.shop-highlight {
  background: #e4eee9;
}

.shop-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.shop-highlight-card {
  padding: 28px;
  background: var(--dark);
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shop-highlight-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.shop-highlight-top span { color: #9bd5c7; font-weight: 760; }
.shop-highlight-top strong { font-size: 1.05rem; }

.shop-highlight-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.shop-highlight-items span {
  padding: 12px 14px;
  color: #e5f1ed;
  background: rgba(155,213,199,.1);
  border: 1px solid rgba(155,213,199,.18);
  border-radius: 6px;
  font-size: .98rem;
  font-weight: 700;
}

.shop-highlight-card p { margin: 0; color: #b8c9c4; font-size: .98rem; }

.boutique-seo-intro, .boutique-editorial { background: #f0eee7; }
.security-visual, .security-product-visual { display: grid; place-items: center; align-content: center; gap: 10px; min-height: 100%; padding: 34px; background: radial-gradient(circle at 50% 35%, rgba(155,213,199,.28), transparent 38%), linear-gradient(145deg, #172522, #0d1213); color: var(--paper); text-align: center; }
.security-product-visual { min-height: 380px; border-radius: var(--radius); box-shadow: var(--shadow); }
.security-shield { display: grid; place-items: center; width: 86px; height: 98px; margin-bottom: 10px; color: var(--dark); background: #9bd5c7; clip-path: polygon(50% 0, 92% 15%, 86% 68%, 50% 100%, 14% 68%, 8% 15%); font-size: 2.4rem; font-weight: 900; }
.security-visual strong, .security-product-visual strong { font-size: 1.3rem; }
.security-visual small, .security-product-visual small { color: #b8c9c4; }
.card-title-link { text-decoration: none; }
.card-title-link:hover { color: var(--green); }
.module-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; margin-bottom: 14px; color: var(--paper); background: var(--green); border-radius: 50%; font-size: .95rem; font-weight: 900; letter-spacing: .04em; }
.product-title-line { display: flex; align-items: center; gap: 16px; }
.product-title-line .module-number { flex: 0 0 auto; margin: 0; }
.product-title-line h1 { margin-bottom: 24px; }

.prestashop-compatibility-badge { display: inline-flex; align-items: center; gap: 10px; width: fit-content; margin: 0 0 22px; padding: 8px 13px 8px 8px; color: #27245d; background: #f7f7f8; border: 1px solid #dedee5; border-radius: 8px; box-shadow: 0 8px 22px rgba(23,23,23,.08); }
.prestashop-mark { display: grid; place-items: center; width: 34px; height: 34px; color: transparent; background-color: #fff; background-image: url('https://upload.wikimedia.org/wikipedia/commons/c/c5/Prestashop.svg'); background-repeat: no-repeat; background-size: 78px auto; background-position: center 26%; border: 1px solid #e0e0e7; border-radius: 7px; font-size: 0; font-weight: 900; letter-spacing: -.08em; overflow: hidden; }
.prestashop-compatibility-badge span:last-child { display: grid; gap: 0; line-height: 1.2; }
.prestashop-compatibility-badge strong { font-size: .78rem; letter-spacing: .02em; }
.prestashop-compatibility-badge small { color: var(--muted); font-size: .7rem; }
.prestashop-brand-strip { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 20px 0 30px; padding: 14px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); }
.prestashop-brand-strip .prestashop-compatibility-badge { margin: 0; }
.prestashop-brand-strip p { margin: 0; color: #c5d1cc; font-size: .9rem; }
.shop-card-badge { margin: 12px 0 16px; padding: 6px 10px 6px 6px; }
.shop-card-badge .prestashop-mark { width: 28px; height: 28px; background-size: 64px auto; }
.shop-card-badge strong { font-size: .7rem; }
.shop-card-badge small { font-size: .64rem; }
.product-benefit-intro { max-width: 720px; color: var(--green-dark); font-size: 1.16rem; font-weight: 680; line-height: 1.52; }
.boutique-summary-inline { max-width: 650px; padding: 0; box-shadow: none; border: 0; background: transparent; }
.boutique-summary-inline { margin-inline: auto; }
.boutique-summary-inline .summary-note { padding: 14px 18px; border-left: 4px solid var(--amber); }
.shop-resource-strip { padding: 26px 0; background: var(--green-soft); border-top: 1px solid rgba(15,109,93,.12); border-bottom: 1px solid rgba(15,109,93,.12); }
.shop-resource-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.shop-resource-inner > div { display: grid; gap: 3px; }
.shop-resource-inner .eyebrow { margin: 0; font-size: .78rem; }
.shop-resource-inner strong { font-size: 1.15rem; }
.product-diagrams-band { background: #edf3ef; }
.security-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 14px; margin-top: 34px; }
.security-flow-step { display: grid; align-content: start; gap: 9px; min-height: 190px; padding: 22px; background: var(--paper); border: 1px solid rgba(15,109,93,.16); border-radius: var(--radius); box-shadow: 0 14px 34px rgba(15,109,93,.08); }
.security-flow-step strong { font-size: 1.1rem; line-height: 1.2; }
.security-flow-step small, .security-signal-grid small { color: var(--muted); line-height: 1.45; }
.diagram-icon { display: grid; place-items: center; width: 42px; height: 42px; color: var(--paper); background: var(--green); border-radius: 50%; font-size: .9rem; font-weight: 900; }
.diagram-icon-check { background: var(--amber); }
.diagram-arrow { align-self: center; color: var(--green); font-size: 2rem; font-weight: 900; }
.security-signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.security-signal-grid > div { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; align-items: center; padding: 18px; background: rgba(255,255,255,.62); border: 1px solid rgba(23,23,23,.08); border-radius: var(--radius); }
.security-signal-grid span { grid-row: span 2; color: var(--green); font-size: 1.8rem; }
.security-signal-grid strong { font-size: 1rem; }
.conversion-visual { display: grid; grid-template-columns: minmax(0, 1fr) minmax(180px, .8fr) minmax(0, 1fr); align-items: center; gap: 18px; margin-top: 28px; padding: 26px; background: var(--dark); border-radius: var(--radius); overflow: hidden; }
.conversion-lane { display: grid; gap: 5px; padding: 18px; border-radius: var(--radius); color: var(--paper); }
.conversion-lane small, .conversion-shield small { color: #b8c9c4; }
.conversion-spam { background: rgba(215,101,69,.18); border: 1px solid rgba(215,101,69,.45); }
.conversion-client { background: rgba(155,213,199,.14); border: 1px solid rgba(155,213,199,.42); }
.traffic-dot { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: var(--paper); background: var(--coral); font-weight: 900; }
.conversion-client .traffic-dot { background: var(--green); }
.conversion-client b { color: #f5cf74; font-size: 1.15rem; }
.conversion-shield { display: grid; justify-items: center; gap: 5px; padding: 18px 10px; color: var(--paper); text-align: center; }
.conversion-shield > span { font-size: 2.6rem; filter: drop-shadow(0 0 14px rgba(155,213,199,.55)); }
.conversion-shield strong { font-size: 1.08rem; }
.portfolio-shop-link { display: grid; gap: 4px; margin-top: 24px; padding: 18px; color: var(--paper); background: linear-gradient(135deg, #0f6d5d, #083f37); border: 1px solid rgba(155,213,199,.26); border-radius: var(--radius); text-decoration: none; box-shadow: 0 16px 32px rgba(0,0,0,.16); }
.portfolio-shop-link span { color: #9bd5c7; font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.portfolio-shop-link strong { font-size: 1.25rem; }
.portfolio-shop-link small { color: #c7e1d9; font-size: .92rem; }
.portfolio-shop-link:hover { transform: translateY(-2px); }
.product-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: 60px; align-items: center; }
.product-lead { max-width: 760px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.product-meta span { padding: 8px 12px; color: var(--green-dark); background: var(--green-soft); border-radius: 999px; font-size: .9rem; font-weight: 800; }
.product-purchase-note { max-width: 520px; margin: 16px 0 0; color: var(--muted); font-size: .95rem; }
.warning-band { background: #f7f1df; }
.recommendation-box { max-width: 820px; padding: 28px; border-left: 5px solid var(--amber); background: rgba(255,255,255,.7); }
.recommendation-list { margin: 0; padding-left: 22px; }
.recommendation-list li { margin-bottom: 9px; }
.product-content-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: 60px; }
.product-feature-list { margin: 0; font-size: 1.15rem; }
.product-disclaimer { padding: 30px; background: #f2f0e9; border: 1px solid var(--line); border-radius: var(--radius); }
.legal-draft-note { margin-top: 24px; padding: 18px; background: #f7f1df; border-left: 4px solid var(--amber); font-size: 1rem; }
.legal-content h2 { margin-top: 42px; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.legal-content p { color: var(--muted); }
.article-status { display: inline-block; margin-top: 12px; color: var(--green); font-size: .88rem; font-weight: 800; }

.blog-hero .hero-text { max-width: 650px; }
.blog-feature { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); overflow: hidden; margin-top: 30px; background: var(--paper); border: 1px solid rgba(23,23,23,.1); border-radius: var(--radius); box-shadow: 0 20px 55px rgba(23,23,23,.1); }
.blog-feature-image { min-height: 390px; background: var(--dark); }
.blog-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(28px, 5vw, 62px); }
.blog-feature-body h3 { margin: 10px 0 14px; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.06; }
.blog-feature-body p, .blog-card-body p { color: var(--muted); font-size: 1.05rem; line-height: 1.52; }
.article-kicker { color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 22px 0; color: var(--muted); font-size: .9rem; }
.blog-card-meta span + span { padding-left: 18px; border-left: 1px solid var(--line); }
.blog-upcoming-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 30px; }
.blog-card { display: grid; grid-template-columns: minmax(220px, 28%) minmax(0, 1fr); overflow: hidden; background: var(--paper); border: 1px solid rgba(23,23,23,.1); border-radius: var(--radius); box-shadow: 0 14px 34px rgba(23,23,23,.06); }
.blog-card-media { min-height: 220px; background: var(--dark); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder { display: flex; min-height: 220px; flex-direction: column; justify-content: space-between; padding: 28px; color: var(--paper); background: linear-gradient(135deg, var(--dark), var(--green)); }
.blog-card-placeholder span { font-size: 3rem; font-weight: 900; line-height: .9; opacity: .65; }
.blog-card-placeholder strong { max-width: 220px; font-size: 1.35rem; line-height: 1.1; }
.blog-card-placeholder-security { background: linear-gradient(135deg, #113d35, #0f6d5d 62%, #d09b47); }
.blog-card-placeholder-custom { background: linear-gradient(135deg, #282523, #75543d 58%, #d5aa61); }
.blog-card-body { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 30px 36px; }
.blog-card-body h3 { max-width: 700px; margin: 10px 0 12px; font-size: clamp(1.45rem, 2.5vw, 2rem); line-height: 1.08; }
.blog-card-upcoming .article-status { color: var(--amber-dark, #8c651d); }
.blog-cta-band { padding-top: 54px; padding-bottom: 54px; }

.article-content { max-width: 860px; }
.article-content > p,
.article-content > ul,
.article-content > ol { color: var(--muted); }
.article-content h2 { margin: 54px 0 14px; font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.12; }
.article-content h3 { margin: 30px 0 8px; font-size: 1.2rem; line-height: 1.25; }
.article-content a { color: var(--green); font-weight: 700; text-underline-offset: 3px; }
.article-intro { font-size: 1.2rem; color: var(--ink) !important; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 18px 0 34px; color: var(--muted); font-size: .92rem; }
.article-meta strong { color: var(--ink); }
.blog-article-cover { width: 100%; max-height: 480px; margin: 0 0 28px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 18px 46px rgba(23,23,23,.12); }
.article-callout { margin: 34px 0; padding: 24px 26px; background: var(--green-soft); border-left: 5px solid var(--green); border-radius: 4px; }
.article-callout p { margin: 0; color: var(--ink); }
.article-table-wrap { margin: 30px 0; overflow-x: auto; border: 1px solid var(--line); background: var(--paper); }
.article-table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: .95rem; }
.article-table th, .article-table td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.article-table th { background: var(--dark); color: var(--paper); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; }
.article-table tr:last-child td { border-bottom: 0; }
.article-sources { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); font-size: .95rem; }
.article-sources ul { padding-left: 20px; color: var(--muted); }
.article-update-note { margin-top: 30px; padding: 16px 18px; background: #fff8e9; border: 1px solid #ead6a6; color: #594516; font-size: .92rem; }

.contact-band {
  padding: 54px 0;
  background: var(--dark);
  color: var(--paper);
}

.contact-panel {
  justify-content: space-between;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.contact-panel div {
  max-width: 720px;
}

.contact-panel p:not(.eyebrow) {
  color: #bfc7c3;
  font-size: 1.12rem;
}

.site-footer {
  padding: 28px 0;
  background: var(--dark);
  color: #bfc7c3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-inner a {
  text-decoration: none;
}

.page-hero {
  padding-top: 104px;
  padding-bottom: 72px;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.page-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
}

.modules-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.module-side {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.module-side h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.module-side p {
  color: var(--muted);
}

.stacked-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

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

.module-card {
  overflow: hidden;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.module-card-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 10, 11, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.module-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-card .module-tag,
.module-card h3,
.module-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.module-card .module-tag {
  margin-top: 22px;
}

.module-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-list {
  display: grid;
  gap: 10px;
}

.case-grid {
  display: grid;
  gap: 18px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  min-height: 430px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.case-body {
  align-self: center;
}

.clean-list {
  padding-left: 18px;
}

.clean-list li {
  margin-bottom: 8px;
}

.case-visual {
  min-height: 320px;
  align-self: stretch;
  overflow: hidden;
  background: #e1ded5;
  border-radius: var(--radius);
}

.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commerce-visual,
.module-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background: #172124;
}

.commerce-dashboard,
.video-board {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: calc(var(--radius) + 4px);
}

.dashboard-top,
.video-board-top {
  display: flex;
  gap: 7px;
  align-items: center;
}

.dashboard-top span,
.video-board-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9bd5c7;
}

.dashboard-top span:nth-child(2),
.video-board-top span:nth-child(2) {
  background: var(--amber);
}

.dashboard-top span:nth-child(3),
.video-board-top span:nth-child(3) {
  background: var(--coral);
}

.dashboard-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
}

.dashboard-hero-copy strong {
  display: block;
  color: var(--paper);
  font-size: 3rem;
  line-height: 0.9;
}

.dashboard-hero-copy span {
  display: block;
  margin-top: 8px;
  color: #a8c5bf;
  font-size: 0.96rem;
  font-weight: 720;
}

.dashboard-bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 86px;
}

.dashboard-bars i {
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #9bd5c7, rgba(155, 213, 199, 0.18));
}

.dashboard-bars i:nth-child(1) { height: 34px; }
.dashboard-bars i:nth-child(2) { height: 56px; }
.dashboard-bars i:nth-child(3) { height: 76px; }
.dashboard-bars i:nth-child(4) { height: 50px; }

.dashboard-chips,
.preview-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dashboard-chips span,
.preview-tags span,
.module-visual span {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.08);
  color: #dce6e2;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.88rem;
}

.module-visual {
  align-items: stretch;
  background: #111718;
}

.module-screen {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.module-screen-head {
  display: flex;
  gap: 7px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.module-screen-head span {
  width: 10px;
  height: 10px;
  background: #9bd5c7;
  border-radius: 50%;
}

.module-screen-head span:nth-child(2) {
  background: var(--amber);
}

.module-screen-head span:nth-child(3) {
  background: var(--coral);
}

.module-flow-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  color: #dce6e2;
}

.module-flow-line strong {
  font-size: 0.98rem;
}

.module-flow-line i {
  height: 2px;
  background: linear-gradient(90deg, rgba(155, 213, 199, 0.2), #9bd5c7);
}

.module-flow-line span {
  justify-self: end;
  padding: 7px 9px;
  background: rgba(155, 213, 199, 0.12);
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.module-result {
  margin-top: 6px;
  padding: 14px;
  color: var(--paper);
  background: var(--green);
  border-radius: var(--radius);
  font-weight: 820;
  text-align: center;
}

.module-kpi-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.module-kpi-row div {
  padding: 16px;
  background: rgba(155, 213, 199, 0.08);
  border: 1px solid rgba(155, 213, 199, 0.14);
  border-radius: var(--radius);
}

.module-kpi-row strong,
.module-kpi-row span {
  display: block;
}

.module-kpi-row strong {
  color: var(--paper);
  font-size: 1rem;
}

.module-kpi-row span {
  margin-top: 6px;
  color: #b9c8c5;
  font-size: 0.92rem;
}

.video-board {
  padding-bottom: 20px;
}

.video-wave {
  height: 64px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(155, 213, 199, 0.85) 0 8px, transparent 9px),
    radial-gradient(circle at 40% 50%, rgba(201, 141, 45, 0.85) 0 8px, transparent 9px),
    radial-gradient(circle at 62% 50%, rgba(215, 101, 69, 0.85) 0 8px, transparent 9px),
    linear-gradient(90deg, rgba(155, 213, 199, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.video-side {
  position: sticky;
  top: 100px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.video-side h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.video-side p {
  color: var(--muted);
  font-size: 1.08rem;
}

.video-side-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.video-side-grid div {
  padding: 14px;
  background: var(--bg);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
}

.video-side-grid strong {
  display: block;
  font-size: 1.04rem;
}

.video-side-grid span {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.video-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(23, 23, 23, 0.06);
}

.video-thumb {
  position: relative;
  display: block;
  text-decoration: none;
}

.video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f1214;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.22));
}

.video-play {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  background: rgba(18, 23, 24, 0.88);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
}

.video-card-body {
  padding: 18px;
}

.video-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.video-card-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.video-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #111718;
}

.video-stack {
  display: grid;
  gap: 10px;
  width: 100%;
}

.video-stack span {
  display: block;
  padding: 12px 14px;
  background: rgba(155, 213, 199, 0.12);
  border: 1px solid rgba(155, 213, 199, 0.18);
  border-radius: 8px;
  color: #dce6e2;
  font-size: 1rem;
  font-weight: 760;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-reveal.has-observer .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.button-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--green), #158773);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 18px 36px rgba(15, 109, 93, 0.24);
  backdrop-filter: blur(14px);
}

.floating-contact-label {
  display: none;
}

.floating-contact strong {
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.boutique-hero {
  min-height: auto;
  padding-top: 72px;
}

.boutique-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.boutique-intro {
  max-width: 760px;
}

.boutique-actions {
  justify-content: center;
}

.boutique-summary-card,
.shop-card {
  background: var(--paper);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(23, 23, 23, 0.06);
}

.boutique-summary-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.summary-line {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.summary-line:last-of-type {
  padding-bottom: 0;
}

.summary-line span,
.summary-note {
  color: var(--muted);
}

.summary-line strong {
  font-size: 1.08rem;
}

.summary-note {
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 0.98rem;
}

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

.shop-card {
  overflow: hidden;
  color: var(--ink);
}

.shop-card h3 { color: var(--ink); }
.shop-card p { color: var(--muted); }

.shop-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f1214;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card-body {
  padding: 24px;
}

.shop-card-top,
.shop-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-card-top {
  margin-bottom: 14px;
}

.price-tag {
  color: var(--green);
  font-size: 1.16rem;
  font-weight: 860;
}

.feature-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li {
  margin-bottom: 8px;
}

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 170ms;
}

.delay-3 {
  transition-delay: 250ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
  }

  .brand,
  .main-nav {
    justify-self: center;
  }

  .brand {
    font-size: 1.18rem;
  }

  .brand-text {
    font-size: 1.28rem;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .blog-feature,
  .blog-card,
  .product-builder,
  .teaser-grid,
  .video-layout,
  .modules-layout,
  .case-card,
  .boutique-hero-grid,
  .shop-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-grid, .product-content-grid { grid-template-columns: 1fr; }
  .prestashop-brand-strip { align-items: flex-start; flex-direction: column; }
  .product-title-line { align-items: flex-start; }
  .product-title-line h1 { margin-left: 0; margin-right: 0; }
  .shop-resource-inner { align-items: flex-start; flex-direction: column; }
  .security-flow { grid-template-columns: 1fr; }
  .diagram-arrow { justify-self: center; transform: rotate(90deg); }
  .security-signal-grid { grid-template-columns: 1fr; }
  .conversion-visual { grid-template-columns: 1fr; }
  .conversion-shield { order: -1; }

  .hero-media {
    min-height: 470px;
  }

  .service-grid,
  .blog-upcoming-grid,
  .module-grid,
  .case-preview-grid,
  .video-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-side {
    position: static;
  }

  .modules-merged {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  .site-header {
    min-height: auto;
    padding: 12px 14px;
  }

  .brand {
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    padding: 4px 2px 2px;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 6px;
    font-size: 0.84rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 23, 23, 0.08);
  }

  .section-band {
    padding: 62px 0;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(2.45rem, 10.5vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-media {
    min-height: 390px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: none;
  }

  .hero-link {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .hero-text {
    font-size: 1.18rem;
    line-height: 1.55;
  }

  .metrics-grid,
  .service-grid,
  .blog-upcoming-grid,
  .module-grid,
  .mini-module-list,
  .case-preview-grid,
  .video-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid div {
    border-right: 1px solid rgba(23, 23, 23, 0.08);
    border-bottom: 0;
  }

  .service-card,
  .module-card {
    min-height: auto;
  }

  .blog-feature-image { min-height: 250px; }
  .blog-feature-body { padding: 26px 22px; }
  .blog-card-placeholder { min-height: 170px; }
  .blog-card-media { min-height: 190px; }
  .blog-card-body { padding: 24px 22px; }

  .service-card h3 {
    font-size: 1.68rem;
  }

  .service-card p {
    font-size: 1.16rem;
  }

  .card-index {
    margin-bottom: 10px;
    font-size: 2.8rem;
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-panel {
    padding: 24px;
    justify-content: center;
    text-align: center;
  }

  .video-side {
    position: static;
  }

  .contact-panel .button {
    width: 100%;
    max-width: none;
  }

  .shop-actions .button,
  .stacked-actions .button {
    width: 100%;
  }

  .shop-highlight-items { grid-template-columns: 1fr; }

  .shop-highlight-card { padding: 22px; }

  .boutique-actions {
    justify-content: center;
  }

  .floating-contact {
    right: 14px;
    left: auto;
    bottom: 14px;
    padding: 11px 15px;
  }

  .case-button {
    justify-self: stretch;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
