:root {
  --bg: #fbfaf7;
  --surface: rgba(255, 255, 255, .86);
  --surface-solid: #ffffff;
  --ink: #06143b;
  --ink-2: #192849;
  --muted: #667085;
  --line: rgba(6, 20, 59, .12);
  --line-strong: rgba(6, 20, 59, .2);
  --accent: #0a4bff;
  --navy: #06194b;
  --navy-soft: #102a68;
  --pale: #eef5ff;
  --ok: #2f9e55;
  --bad: #e64b44;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(12, 30, 70, .10);
  --shadow-soft: 0 14px 44px rgba(12, 30, 70, .08);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-2);
  background:
    radial-gradient(circle at 18% 12%, rgba(54, 119, 255, .08), transparent 28rem),
    radial-gradient(circle at 85% 22%, rgba(6, 25, 75, .05), transparent 32rem),
    var(--bg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(6, 20, 59, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 20, 59, .02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 72px), var(--container)); margin: 0 auto; }
.section { padding: 96px 0; scroll-margin-top: 96px; }
.section:first-of-type { padding-top: 96px; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  background: var(--navy);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .86);
  border-bottom: 1px solid rgba(6, 20, 59, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(10, 24, 55, .08); background: rgba(251, 250, 247, .94); }
.header-inner { display: flex; align-items: center; min-height: 82px; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 24px; flex: 0 0 auto; }
.brand-mark {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: .8;
  letter-spacing: -.11em;
  color: var(--navy);
  font-weight: 400;
  width: 74px;
}
.brand-separator { width: 1px; height: 54px; background: var(--line-strong); }
.brand-copy { display: grid; line-height: 1.2; gap: 3px; }
.brand-copy strong { font-family: var(--serif); color: var(--navy); font-size: 1.42rem; font-weight: 600; letter-spacing: -.02em; }
.brand-copy span { color: var(--muted); font-size: .92rem; }

.navigation { margin-left: auto; display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.navigation a { position: relative; color: var(--ink-2); font-weight: 650; font-size: .95rem; padding: 14px 0; transition: color .2s ease; }
.navigation a:hover, .navigation a.is-active { color: var(--navy); }
.navigation a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.navigation a:hover::after, .navigation a.is-active::after { width: 36px; }
.header-cta { margin-left: 28px; flex: 0 0 auto; }
.nav-toggle { display: none; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0, rgba(255,255,255,.18) 35%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--navy), #082467); color: #fff; box-shadow: 0 14px 30px rgba(6, 25, 75, .18); }
.btn-primary:hover { box-shadow: 0 18px 40px rgba(6, 25, 75, .24); }
.btn-secondary, .btn-link { color: var(--navy); background: rgba(255,255,255,.72); border-color: rgba(6, 25, 75, .42); box-shadow: 0 8px 24px rgba(12, 30, 70, .04); }
.btn-secondary:hover, .btn-link:hover { border-color: var(--navy); background: #fff; box-shadow: 0 14px 30px rgba(12, 30, 70, .08); }
.btn-link { min-height: 48px; min-width: 150px; }

.eyebrow {
  margin: 0 0 24px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .23em;
  font-weight: 850;
  font-size: .83rem;
}
h1, h2, h3, h4 { color: var(--navy); margin: 0; line-height: 1.03; letter-spacing: -.045em; }
h1, h2 { font-family: var(--serif); font-weight: 600; }
h1 { font-size: clamp(2.9rem, 4.8vw, 4.7rem); max-width: 620px; }
h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); max-width: 760px; }
h3 { font-size: clamp(1.7rem, 3vw, 3.2rem); }
p { margin: 0; }
.lead, .section-lead { color: var(--muted); font-size: clamp(1rem, 1.15vw, 1.15rem); line-height: 1.72; max-width: 600px; }
.lead { margin-top: 26px; }
.section-lead { margin-top: 24px; }

.hero { padding-bottom: 46px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(480px, .98fr); align-items: center; gap: 72px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
 .profile-card {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 390px;
  padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(6, 20, 59, .08);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.profile-card img { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; }
.profile-card strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.24rem; line-height: 1.1; }
.profile-card span { color: var(--accent); font-size: .95rem; font-weight: 700; }
.profile-card i { display: block; width: 38px; height: 2px; border-radius: 999px; margin: 12px 0; background: var(--accent); }
.profile-card p { color: var(--muted); line-height: 1.55; font-size: .98rem; }

.hero-visual { position: relative; min-height: 470px; max-width: 620px; width: 100%; display: grid; place-items: center; justify-self: end; }
.device { position: relative; background: #0d0f15; border: 1px solid rgba(0,0,0,.16); box-shadow: 0 28px 70px rgba(5, 12, 35, .18); }
.device .screen { overflow: hidden; background: #fff; }
.laptop { width: min(100%, 560px); padding: 12px 12px 22px; border-radius: 18px 18px 14px 14px; }
.laptop::after { content: ""; position: absolute; left: 50%; bottom: 9px; transform: translateX(-50%); width: 190px; height: 6px; background: rgba(255,255,255,.16); border-radius: 999px; }
.hero-laptop { transform: translateX(0); }
.laptop .screen { aspect-ratio: 16 / 10; border-radius: 8px; }
.phone { width: 132px; padding: 10px 8px; border-radius: 28px; }
.phone::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 56px; height: 10px; border-radius: 999px; background: #0a0b10; z-index: 2; }
.phone .screen { aspect-ratio: 9 / 18.8; border-radius: 22px; }
.hero-phone { position: absolute; right: 28px; bottom: 44px; z-index: 4; }
.mock-site { color: #111827; font-family: var(--sans); }
.mock-nav { display: flex; align-items: center; gap: 18px; padding: 20px 24px 12px; font-size: 9px; color: #111827; }
.mock-nav strong { margin-right: auto; font-family: var(--serif); font-size: 15px; color: #111827; }
.mock-nav.mobile { padding: 18px 18px 8px; }
.mock-nav.mobile strong { font-size: 13px; }
.mock-content { display: grid; grid-template-columns: .95fr 1fr; gap: 18px; padding: 22px 24px 24px; align-items: stretch; }
.mock-copy small { display: inline-block; margin-bottom: 18px; font-size: 9px; letter-spacing: .12em; color: #6b7280; text-transform: uppercase; }
.mock-site h2, .mock-site h3, .mock-site h5 { font-family: var(--serif); color: #151515; letter-spacing: -.045em; line-height: 1.06; }
.mock-site h2 { font-size: 27px; }
.mock-site h3 { font-size: 18px; margin: 18px 14px 8px; }
.mock-site h5 { font-size: 22px; margin: 0; }
.mock-site p { font-size: 10px; line-height: 1.6; color: #5b6472; margin: 12px 0 18px; }
.mock-site button { border: 0; border-radius: 4px; padding: 10px 14px; font-size: 10px; font-weight: 800; color: #fff; background: #55635b; }
 .mock-photo {
  min-height: 200px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(222, 187, 135, .72), rgba(222, 187, 135, .25)),
    radial-gradient(circle at 30% 55%, #7c8a62 0 2px, transparent 3px),
    linear-gradient(90deg, transparent 44%, rgba(109,78,44,.25) 44% 46%, transparent 46%),
    linear-gradient(#ead9c5, #c89f71);
  position: relative;
  overflow: hidden;
}
.mock-photo::before { content: ""; position: absolute; left: 18%; bottom: 14%; width: 10px; height: 90px; border-radius: 999px; background: #6d7a4d; box-shadow: 9px -14px 0 -4px #77865a, -11px -25px 0 -5px #77865a, 15px -36px 0 -5px #8a9a68; }
.mock-photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34%; background: linear-gradient(180deg, rgba(132,88,44,.1), rgba(151,101,53,.42)); }
.mock-photo.small { min-height: 90px; margin: 10px; }
.phone-screen { padding-top: 8px; background: #fff; }
.phone-screen p { padding: 0 14px; margin-top: 6px; }
.phone-screen button { margin-left: 14px; }
 .floating-card {
  position: absolute;
  right: -6px;
  width: 132px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(6, 20, 59, .08);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
  font-size: .9rem;
  z-index: 5;
}
.floating-card svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.fc-1 { top: 130px; }
.fc-2 { top: 246px; }
.fc-3 { top: 362px; }
.dotted-ring { position: absolute; right: 10px; top: 96px; width: 280px; height: 360px; border: 2px dashed rgba(10, 75, 255, .18); border-left-color: transparent; border-radius: 50%; z-index: -1; animation: breathe 6s ease-in-out infinite; }

.benefits-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
  padding: 22px 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6, 20, 59, .08);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.benefits-strip div { display: grid; grid-template-columns: 46px 1fr; grid-template-rows: auto auto; column-gap: 16px; padding: 0 20px; align-items: center; border-right: 1px solid rgba(6,20,59,.12); }
.benefits-strip div:last-child { border-right: 0; }
.benefits-strip svg { grid-row: 1 / 3; width: 34px; height: 34px; stroke: var(--navy); stroke-width: 1.7; fill: none; }
.benefits-strip strong { color: var(--navy); line-height: 1.2; }
.benefits-strip small { color: var(--muted); line-height: 1.45; }

.two-columns { display: grid; grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr); gap: 74px; align-items: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 30px; max-width: 640px; }
.feature-grid article {
  min-height: 122px;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
  padding: 18px 12px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(6, 20, 59, .08);
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(12,30,70,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(10,75,255,.22); }
.feature-grid svg { width: 44px; height: 44px; color: var(--navy); stroke: currentColor; stroke-width: 1.6; fill: none; }
.feature-grid strong { color: var(--navy); font-size: 1.05rem; line-height: 1.3; }
.soft-note {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  max-width: 690px;
  padding: 22px 26px;
  border: 1px solid rgba(10,75,255,.08);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(10,75,255,.08), rgba(255,255,255,.62));
  color: var(--navy);
  font-weight: 650;
}
.soft-note svg { width: 40px; height: 40px; flex: 0 0 auto; stroke: currentColor; stroke-width: 1.6; fill: none; }
 .pricing-card {
  padding: clamp(28px, 3vw, 44px);
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(6,20,59,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.price { display: flex; align-items: flex-end; gap: 22px; color: var(--navy); }
.price span { font-family: var(--serif); font-size: clamp(4.2rem, 5vw, 5.6rem); line-height: .84; letter-spacing: -.045em; }
.price em { font-style: normal; font-size: 1.25rem; margin-bottom: 10px; }
.pricing-card > p { color: var(--muted); margin-top: 16px; padding-bottom: 34px; border-bottom: 1px solid rgba(6,20,59,.13); }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 18px 0 18px 48px; border-bottom: 1px solid rgba(6,20,59,.08); color: var(--navy); font-weight: 750; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 26px; height: 26px; border: 1.8px solid var(--navy); border-radius: 50%; background: radial-gradient(circle at 50% 50%, transparent 44%, transparent 45%); }
.check-list li::after { content: ""; position: absolute; left: 8px; top: 26px; width: 10px; height: 6px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: rotate(-45deg); }
.launch-offer { display: flex; align-items: center; gap: 18px; margin-top: 28px; padding: 22px; background: linear-gradient(135deg, rgba(10,75,255,.08), rgba(255,255,255,.85)); border: 1px solid rgba(10,75,255,.18); border-radius: 12px; color: var(--navy); }
.launch-offer svg { width: 40px; height: 40px; stroke: currentColor; stroke-width: 1.6; fill: none; flex: 0 0 auto; }
.launch-offer strong { display: block; }
.launch-offer b { font-size: 1.4rem; margin-right: 4px; }
.pricing-actions { display: grid; gap: 14px; margin-top: 28px; }

.simple-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr); gap: 64px; align-items: center; }
.reason-list { display: grid; gap: 18px; margin-top: 30px; max-width: 520px; }
.reason-list article { display: grid; grid-template-columns: 70px 1fr; gap: 20px; align-items: center; padding: 20px 24px; background: rgba(255,255,255,.72); border: 1px solid rgba(6,20,59,.08); border-radius: 14px; box-shadow: 0 14px 38px rgba(12,30,70,.055); }
.reason-list svg { width: 46px; height: 46px; padding: 10px; border-radius: 999px; background: var(--pale); stroke: var(--navy); stroke-width: 1.7; fill: none; }
.reason-list strong { color: var(--navy); font-size: 1.1rem; }
.reason-list p { color: var(--muted); line-height: 1.5; }
.comparison h3 { font-family: var(--serif); font-weight: 600; margin-bottom: 30px; }
.compare-cards { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.compare-card { position: relative; padding: 24px 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(6,20,59,.08); border-radius: 18px; box-shadow: var(--shadow-soft); }
.compare-card h4 { text-align: center; font-size: 1.2rem; margin-bottom: 24px; letter-spacing: -.02em; }
.mini-site-preview { border: 1px solid rgba(6,20,59,.12); border-radius: 12px; padding: 0 0 18px; overflow: hidden; min-height: 250px; background: #fff; }
.mini-site-preview h5 { font-size: 21px; padding: 14px 18px 10px; max-width: 240px; }
.mini-site-preview .mock-photo { min-height: 116px; margin: 8px 18px 0; }
.compare-card ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; color: var(--ink-2); }
.compare-card li { position: relative; padding-left: 36px; }
.compare-card li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 999px; }
.good li::before { background: var(--ok); }
.bad li::before { background: var(--bad); }
.compare-card li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
.bad li::after { left: 6px; top: 12px; width: 10px; height: 2px; border: 0; background: #fff; transform: rotate(45deg); box-shadow: 0 0 0 0 #fff; }
.bad li:nth-child(n)::after { }
.bad li::before { box-shadow: inset 0 0 0 0 #fff; }
.bad li { }
.bad li span { display:none; }
.bad li::after { content: ""; }
.bad li { }
.bad li::marker { display:none; }
.bad li::before { }
.bad li::after { box-shadow: 0 0 0 0 #fff; }
.bad li { }
.bad li::after { background: linear-gradient(#fff,#fff); }
.bad li::before { }
.vs { position: absolute; left: 50%; top: 46%; z-index: 3; transform: translate(-50%, -50%); width: 62px; height: 62px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: var(--navy); font-family: var(--serif); font-size: 1.45rem; box-shadow: 0 14px 34px rgba(6,25,75,.22); }
.dashboard-preview { display: grid; grid-template-columns: 70px 1fr; min-height: 250px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(6,20,59,.08); background: #f4f6f9; }
.dash-side { background: #172033; padding: 22px 16px; display: grid; gap: 12px; align-content: start; }
.dash-side i { height: 8px; border-radius: 999px; background: rgba(255,255,255,.28); }
.dash-main { padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.dash-main b { grid-column: 1/-1; height: 14px; border-radius: 999px; background: #9aa4b2; opacity: .55; }
.dash-main span, .dash-main em { min-height: 52px; border-radius: 10px; background: #fff; border: 1px solid rgba(6,20,59,.06); }

.process .container > h2 { max-width: 720px; }
.steps { display: grid; grid-template-columns: minmax(230px, .8fr) auto minmax(310px, 1fr) auto minmax(310px, 1fr); gap: 22px; align-items: stretch; margin-top: 30px; }
.step-card { position: relative; min-height: 300px; padding: 30px 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(6,20,59,.08); border-radius: 18px; box-shadow: var(--shadow-soft); text-align: center; }
.step-number { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 850; }
.step-card h3 { font-family: var(--serif); font-size: 1.6rem; margin-top: 48px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.mini-grid span { min-height: 104px; display: grid; place-items: center; gap: 10px; background: rgba(255,255,255,.76); border: 1px solid rgba(6,20,59,.08); border-radius: 12px; color: var(--navy); font-weight: 750; }
.mini-grid svg { width: 32px; height: 32px; stroke: currentColor; stroke-width: 1.6; fill:none; }
.brand-mini, .text-mini, .info-mini { width: 36px; height: 36px; display: grid; place-items: center; border: 1.7px solid var(--navy); border-radius: 8px; font-family: var(--serif); font-style: normal; font-size: 1.1rem; }
.info-mini { border-radius: 50%; font-family: var(--sans); font-weight: 800; }
.step-arrow { align-self: center; font-size: 2.6rem; color: var(--accent); }
.small-laptop { width: 88%; margin: 22px auto 16px; padding: 10px 10px 18px; }
.small-laptop .screen { border-radius: 7px; aspect-ratio: 16 / 9; }
.compact-screen .mock-nav { padding: 14px 16px 8px; gap: 12px; font-size: 7px; }
.compact-screen .mock-nav strong { font-size: 11px; }
.compact-screen .mock-content { padding: 14px 16px; gap: 12px; grid-template-columns: 1fr 1.1fr; }
.compact-screen h5 { font-size: 15px; }
.compact-screen .mock-photo { min-height: 86px; }
.step-tags { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px; color: var(--navy); font-size: .84rem; font-weight: 700; }
.step-tags span { padding-top: 10px; border-top: 1px solid rgba(6,20,59,.1); }
.final-devices { position: relative; min-height: 180px; display: grid; place-items: center; margin-top: 20px; }
.desktop { width: 82%; padding: 10px 10px 34px; border-radius: 12px; }
.desktop::after { content:""; position:absolute; left:50%; bottom:8px; transform:translateX(-50%); width:82px; height:7px; border-radius:999px; background:rgba(255,255,255,.16); }
.desktop .screen { aspect-ratio: 16 / 10; border-radius: 5px; }
.tiny-phone { position: absolute; right: 26px; bottom: 0; width: 76px; padding: 8px 5px; border-radius: 16px; }
.tiny-phone .screen { border-radius: 12px; }
.tiny-phone h3 { font-size: 9px; margin: 12px 6px; }
.badge-72 { position: absolute; right: 26px; top: 26px; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 999px; border: 2px solid rgba(10,75,255,.65); color: var(--navy); background: #fff; font-size: 1.25rem; }
.process-note { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 28px auto 0; max-width: 980px; padding: 18px; background: rgba(255,255,255,.7); border: 1px solid rgba(6,20,59,.08); border-radius: 999px; color: var(--navy); font-weight: 750; }
.process-note svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8; fill:none; }
.center { display: flex; justify-content: center; margin-top: 26px; }

.references h2, .references .section-lead { max-width: 820px; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
.project-card { display: flex; flex-direction: column; padding: 22px 22px 24px; background: rgba(255,255,255,.78); border: 1px solid rgba(6,20,59,.08); border-radius: 18px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-shot { position: relative; height: 250px; display: grid; place-items: center; margin: -2px -2px 22px; border-radius: 14px; overflow: hidden; background: linear-gradient(145deg, #f8f9fb, #fff); }
.ref-laptop { position: relative; width: 84%; border: 8px solid #111827; border-bottom-width: 20px; border-radius: 12px 12px 11px 11px; box-shadow: 0 20px 45px rgba(5,12,35,.16); overflow: hidden; background: #111827; }
.ref-laptop::after { content: ""; position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); width: 82px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.22); }
.ref-laptop img { width: 100%; height: 170px; object-fit: cover; object-position: center top; background: #fff; }
.oeno-shot .ref-laptop img { object-position: center top; }
.dossi-shot .ref-laptop img { object-position: left top; }
.ref-phone { position: absolute; right: 18px; bottom: 16px; width: 70px; border: 6px solid #111827; border-radius: 18px; overflow: hidden; background: #111827; box-shadow: 0 14px 28px rgba(5,12,35,.18); }
.ref-phone::before { content: ""; position: absolute; z-index: 2; top: 5px; left: 50%; transform: translateX(-50%); width: 26px; height: 6px; border-radius: 999px; background: #111827; }
.ref-phone img { width: 100%; aspect-ratio: 9 / 18; object-fit: cover; object-position: center top; background: #fff; }
.oeno-shot .ref-phone img { aspect-ratio: 9 / 18; object-fit: cover; object-position: center top; }



.project-card h3 { font-family: var(--serif); font-size: 1.65rem; letter-spacing: -.03em; }
.project-subtitle { color: var(--accent); font-weight: 780; margin-top: 8px; }
.project-card > p:not(.project-subtitle) { color: var(--muted); margin-top: 14px; min-height: 64px; }
.project-card .btn { margin-top: auto; align-self: flex-start; }

.contact { padding-bottom: 56px; }
.contact-intro { text-align: center; max-width: 820px; margin: 0 auto; }
.contact-intro h2 { max-width: none; }
.contact-intro p { max-width: 760px; margin: 24px auto 0; color: var(--muted); font-size: 1.14rem; line-height: 1.75; }
.mockup-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1.15fr; gap: 22px; align-items: center; max-width: 980px; margin: 40px auto 0; }
.mockup-flow > span { font-size: 2.4rem; color: var(--navy-soft); }
.mockup-flow > div { display: grid; place-items: center; gap: 14px; color: var(--navy); font-weight: 800; font-size: 1.12rem; }
.flow-icon { width: 92px; height: 92px; display: grid; place-items: center; border-radius: 16px; background: rgba(255,255,255,.78); border: 1px solid rgba(6,20,59,.08); box-shadow: var(--shadow-soft); }
.flow-icon svg { width: 42px; height: 42px; stroke: var(--navy); stroke-width: 1.6; fill: none; }
.flow-result { min-width: 220px; }
.flow-device { position: relative; width: 170px; height: 108px; border-radius: 10px; border: 6px solid #111827; background: #fff; box-shadow: 0 18px 38px rgba(5,12,35,.16); }
.flow-device::before { content: ""; position: absolute; left: 18px; top: 22px; width: 48px; height: 8px; background: var(--navy); border-radius: 999px; box-shadow: 0 18px 0 rgba(6,20,59,.16); }
.flow-device::after { content: ""; position: absolute; right: -24px; bottom: -4px; width: 42px; height: 78px; border: 6px solid #111827; border-radius: 15px; background: #fff; }
.contact-cards { display: grid; grid-template-columns: 1fr .92fr; gap: 24px; margin-top: 36px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.about-card, .contact-card { background: rgba(255,255,255,.78); border: 1px solid rgba(6,20,59,.08); border-radius: 18px; box-shadow: var(--shadow-soft); }
.about-card { display: grid; grid-template-columns: 210px 1fr; gap: 24px; align-items: center; padding: 24px; }
.about-card img { width: 210px; height: 210px; object-fit: cover; border-radius: 14px; }
.about-card h3, .contact-card h3 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.1rem); letter-spacing: -.035em; }
.about-card p { color: var(--muted); margin-top: 20px; font-size: 1.04rem; }
.contact-card { padding: 28px 34px; }
.contact-card p { display: flex; align-items: center; gap: 16px; margin-top: 18px; color: var(--ink-2); font-size: 1.12rem; }
.contact-card svg { width: 28px; height: 28px; stroke: var(--navy); stroke-width: 1.6; fill: none; }
.contact-card .btn { width: 100%; margin-top: 28px; }
.contact-card small { display: block; text-align: center; color: var(--muted); margin-top: 14px; }
.site-footer { border-top: 1px solid rgba(6,20,59,.1); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer .brand-mark { width: 64px; font-size: 4rem; }
.site-footer .brand-separator { height: 44px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: clamp(18px, 3vw, 46px); color: var(--navy); font-weight: 700; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .2s; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity:.78; } 50% { transform: scale(1.03); opacity:.42; } }

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

@media (max-width: 1180px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .header-inner { gap: 18px; }
  .navigation { gap: 22px; }
  .header-cta { display: none; }
  .hero-grid, .two-columns, .simple-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; max-width: 820px; margin: 0 auto; width: 100%; }
  .hero-laptop { transform: none; }
  .pricing-card { max-width: 640px; }
  .project-grid { grid-template-columns: 1fr; max-width: 760px; }
  .project-shot { height: 360px; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); justify-self: center; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .section:first-of-type { padding-top: 80px; }
  .header-inner { min-height: 76px; }
  .brand { gap: 14px; }
  .brand-mark { font-size: 3.2rem; width: 52px; }
  .brand-separator { height: 42px; }
  .brand-copy strong { font-size: 1.25rem; }
  .brand-copy span { font-size: .83rem; }
  .nav-toggle { display: grid; gap: 5px; margin-left: auto; border: 1px solid var(--line); background: #fff; width: 44px; height: 44px; border-radius: 11px; place-content: center; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--navy); border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .navigation { position: fixed; top: 76px; left: 20px; right: 20px; display: grid; gap: 0; padding: 10px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .navigation.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .navigation a { padding: 13px 16px; border-radius: 10px; }
  .navigation a::after { display: none; }
  .navigation a.is-active { background: var(--pale); }
  h1, h2 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .hero-grid { gap: 44px; }
  .hero-visual { min-height: 480px; }
  .hero-phone { right: 28px; bottom: 98px; width: 118px; }
  .floating-card { display: none; }
  .dotted-ring { display: none; }
  .benefits-strip { grid-template-columns: 1fr 1fr; gap: 22px 0; }
  .benefits-strip div:nth-child(2) { border-right: 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .compare-cards { grid-template-columns: 1fr; }
  .vs { position: relative; left: auto; top: auto; transform: none; margin: -8px auto; }
  .mockup-flow { grid-template-columns: 1fr; gap: 16px; }
  .mockup-flow > span { transform: rotate(90deg); justify-self: center; font-size: 2rem; }
  .about-card { grid-template-columns: 1fr; text-align: center; }
  .about-card img { margin: 0 auto; }
  .footer-inner { display: grid; justify-items: start; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .cta-row, .pricing-actions { display: grid; }
  .btn { width: 100%; min-height: 54px; padding-inline: 20px; }
  .profile-card { grid-template-columns: 86px 1fr; padding: 10px; gap: 14px; }
  .profile-card img { width: 86px; height: 86px; }
  .profile-card strong { font-size: 1.1rem; }
  .profile-card p { font-size: .88rem; }
  .hero-visual { min-height: 340px; }
  .laptop { width: 100%; padding: 10px 10px 20px; }
  .mock-nav { padding: 16px 18px 8px; gap: 8px; }
  .mock-nav span { display: none; }
  .mock-content { grid-template-columns: 1fr; padding: 20px; }
  .mock-site h2 { font-size: 24px; }
  .mock-photo { min-height: 130px; }
  .hero-phone { width: 92px; right: 10px; bottom: 42px; }
  .benefits-strip { grid-template-columns: 1fr; padding: 18px; }
  .benefits-strip div { border-right: 0; border-bottom: 1px solid rgba(6,20,59,.1); padding: 16px 4px; }
  .benefits-strip div:last-child { border-bottom: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .price { display: block; }
  .price span { font-size: 4.8rem; }
  .project-shot { height: 260px; }
  .ref-laptop { width: 96%; border-width: 7px; border-bottom-width: 18px; }
  .ref-phone { width: 70px; right: 16px; bottom: 20px; }
  .step-card { padding: 30px 18px; }
  .step-tags { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 28px 20px; }
  .contact-card p { font-size: .98rem; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}



/* Visual QA adjustments */
.bad li::after {
  content: "×";
  left: 5px;
  top: -3px;
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  transform: none;
}
.project-card .btn-link{min-width:138px;}
.laptop .screen,.desktop .screen,.small-laptop .screen{background:#fff;}
.ref-laptop img{display:block;}
.loyer-shot .ref-laptop img{object-fit:contain;object-position:center;background:#fff;}
.oeno-shot .ref-phone img{object-position:center top;}
@media (max-width:1180px){
  .hero-visual{justify-self:center;}
  .project-grid{grid-template-columns:1fr;max-width:760px;margin-inline:auto;}
  .project-shot{height:300px;}
  .ref-laptop{width:82%;}
  .ref-laptop img{height:200px;}
}
@media (max-width:860px){
  .container{width:min(calc(100% - 32px),var(--container));}
  h1,h2{font-size:clamp(2.35rem,10vw,3.6rem);}
  .hero-visual{min-height:420px;}
  .hero-phone{right:14px;bottom:54px;width:106px;}
  .hero-copy,.comparison,.offer .pricing-card,.offer .reveal,.simple .reveal,.process .reveal,.references .reveal,.contact .reveal{max-width:100%;}
  .project-card{padding:20px;}
}
@media (max-width:560px){
  .container{width:min(calc(100% - 24px),var(--container));}
  .section{padding:68px 0;}
  .section:first-of-type{padding-top:72px;}
  .hero-grid{gap:32px;}
  .hero-visual{min-height:300px;}
  .laptop{padding:8px 8px 16px;}
  .hero-phone{width:88px;right:8px;bottom:30px;}
  .ref-laptop{width:92%;}
  .ref-laptop img{height:145px;}
  .project-shot{height:220px;padding:14px;}
  .ref-phone{width:58px;right:12px;bottom:12px;}
}

/* Final responsive visual fixes */
.profile-card{grid-template-columns:120px 1fr;}
.floating-card,.dotted-ring{display:none!important;}
.hero-visual{overflow:visible;}
.hero-phone{right:12px;bottom:38px;width:118px;}
.hero-phone .mock-site h3{font-size:12px;line-height:1.1;margin:16px 10px 6px;}
.hero-phone .mock-site p{font-size:8px;line-height:1.35;padding-inline:10px;margin:4px 0 8px;}
.hero-phone .mock-site button{font-size:8px;margin-left:10px;padding:7px 9px;}
.hero-phone .mock-photo.small{min-height:54px;margin:8px;}
.project-shot{isolation:isolate;}
.loyer-shot{padding:18px 14px;background:linear-gradient(145deg,#f8f9fb,#fff);}
.loyer-shot .project-image{width:96%;height:205px;object-fit:contain;object-position:center;filter:drop-shadow(0 18px 28px rgba(5,12,35,.16));}
.project-card{min-width:0;}
.project-grid{align-items:stretch;}
@media (max-width:1180px){
  .hero-copy{text-align:center;max-width:720px;margin-inline:auto;}
  .hero-copy .lead{margin-left:auto;margin-right:auto;}
  .hero-copy .cta-row{justify-content:center;}
  .profile-card{margin-left:auto;margin-right:auto;text-align:left;}
  .hero-visual{min-height:420px;}
  .loyer-shot .project-image{height:220px;}
}
@media (max-width:860px){
  .hero-copy{text-align:left;margin-inline:0;}
  .hero-copy .lead{margin-left:0;margin-right:0;}
  .hero-copy .cta-row{justify-content:flex-start;}
  .hero-phone{display:none;}
  .hero-visual{min-height:auto;margin-top:28px;}
  .hero-laptop{width:100%;max-width:640px;margin-inline:auto;}
  .mock-content{grid-template-columns:1fr 1fr;}
  .project-shot{height:240px;}
  .ref-phone{display:none;}
  .ref-laptop{width:88%;}
  .ref-laptop img{height:165px;}
  .loyer-shot .project-image{height:200px;}
}
@media (max-width:560px){
  .profile-card{grid-template-columns:78px 1fr;gap:12px;}
  .profile-card img{width:78px;height:78px;}
  .hero-visual{margin-top:24px;}
  .mock-content{grid-template-columns:1fr;}
  .hero-laptop .mock-photo{display:none;}
  .laptop .screen{aspect-ratio:16/9;}
  .mock-site h2{font-size:18px;}
  .project-shot{height:205px;}
  .ref-laptop{width:92%;}
  .ref-laptop img{height:135px;}
  .loyer-shot .project-image{height:170px;width:100%;}
  .project-card > p:not(.project-subtitle){min-height:auto;}
}


/* Cleanup pass: coherent mockups and no phone previews */
.hero-visual{min-height:430px;align-items:center;}
.hero-laptop{width:min(100%,580px);}
.mock-content{grid-template-columns:1.02fr .98fr;gap:20px;align-items:center;}
.mock-copy{display:flex;flex-direction:column;justify-content:center;}
.mock-site h2{max-width:300px;font-size:25px;text-wrap:balance;}
.mock-site p{max-width:255px;}
.mock-photo{
  min-height:210px;
  border-radius:10px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.85), transparent 22%),
    linear-gradient(180deg, #f6f3ef 0 60%, #ead8be 60% 100%);
  border:1px solid rgba(100,78,52,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75);
}
.mock-photo::before{
  content:"";
  position:absolute;
  inset:12% 8% 0 auto;
  width:54%;
  border-radius:8px 8px 0 0;
  background:
    linear-gradient(90deg, transparent 0 29%, rgba(128,96,58,.17) 29% 31%, transparent 31% 64%, rgba(128,96,58,.17) 64% 66%, transparent 66% 100%),
    linear-gradient(180deg, #d8b286 0%, #c69767 100%);
  box-shadow:-18px 0 0 0 rgba(233,221,205,.9);
}
.mock-photo::after{
  content:"";
  position:absolute;
  left:12%;
  bottom:14%;
  width:20px;
  height:86px;
  border-radius:999px;
  background:#71815d;
  box-shadow:12px -12px 0 -5px #7f916a,-9px -22px 0 -6px #88a06d,180px 8px 0 -7px rgba(116,84,52,.45),206px 8px 0 -7px rgba(116,84,52,.45);
}
.hero-phone,.tiny-phone,.ref-phone{display:none !important;}
.fc-1{top:150px;}
.fc-2{top:252px;}
.fc-3{top:354px;}
.compact-screen .mock-content{grid-template-columns:1fr 1fr;align-items:center;}
.compact-screen h5{font-size:14px;line-height:1.15;max-width:140px;text-wrap:balance;}
.compact-screen .mock-photo{min-height:92px;border-radius:8px;}
.final-devices{display:flex;justify-content:center;align-items:center;min-height:170px;}
.final-desktop{width:min(100%,280px);margin-inline:auto;}
.project-shot{padding:18px;}
.ref-laptop{width:86%;margin-inline:auto;}
.ref-laptop img{height:168px;object-fit:cover;object-position:center top;}
.dossi-shot .ref-laptop img{object-position:left top;}
.loyer-shot .ref-laptop img{object-fit:contain;object-position:center;background:#fff;}
.oeno-shot .ref-laptop img{object-position:center top;}
.project-shot::after{content:none;}
@media (max-width:1180px){
  .hero-laptop{width:min(100%,640px);}
  .hero-visual{min-height:390px;}
}
@media (max-width:860px){
  .hero-visual{min-height:auto;}
  .mock-site h2{max-width:none;font-size:23px;}
  .mock-site p{max-width:none;}
  .mock-content{grid-template-columns:1fr 1fr;}
  .final-devices{min-height:auto;}
  .project-shot{height:230px;}
}
@media (max-width:560px){
  .mock-content{grid-template-columns:1fr;}
  .mock-site h2{font-size:20px;}
  .hero-laptop .mock-photo{display:block;min-height:110px;}
  .compact-screen .mock-content{grid-template-columns:1fr;}
  .compact-screen h5{max-width:none;}
  .project-shot{height:190px;padding:12px;}
  .ref-laptop{width:92%;}
  .ref-laptop img{height:120px;}
}


/* Hero redesign */
.hero-grid{grid-template-columns:minmax(0, .95fr) minmax(520px, 1.05fr);gap:64px;}
.hero-copy{position:relative;z-index:2;}
.hero-visual{min-height:auto;max-width:720px;justify-self:end;align-self:center;display:block;}
.hero-art{position:relative;border-radius:28px;overflow:visible;}
.hero-art::before{content:"";position:absolute;inset:auto 10% -5% 10%;height:20%;background:radial-gradient(ellipse at center, rgba(6,25,75,.16), transparent 70%);filter:blur(20px);z-index:-1;}
.hero-art img{display:block;width:100%;height:auto;border-radius:28px;filter:drop-shadow(0 30px 55px rgba(12,30,70,.12));}
@media (max-width:1180px){
  .hero-grid{grid-template-columns:1fr;gap:42px;}
  .hero-copy{text-align:center;max-width:760px;margin-inline:auto;}
  .hero-copy .lead{margin-inline:auto;}
  .hero-copy .cta-row{justify-content:center;}
  .profile-card{margin-left:auto;margin-right:auto;}
  .hero-visual{max-width:780px;justify-self:center;}
}
@media (max-width:860px){
  .hero-copy{text-align:left;margin-inline:0;}
  .hero-copy .lead{margin-left:0;margin-right:0;}
  .hero-copy .cta-row{justify-content:flex-start;}
  .profile-card{margin-left:0;margin-right:0;}
  .hero-visual{max-width:100%;}
  .hero-art img{border-radius:22px;}
}
@media (max-width:560px){
  .hero-grid{gap:28px;}
  .hero-art img{border-radius:18px;}
}


/* Final production pass: larger hero, coherent mockups, refined scroll motion */
.hero, .hero .container, .simple, .process { overflow: visible; }
.hero-grid { align-items: center; }
.hero-copy { max-width: 580px; }
.hero-visual { width: min(920px, calc(100% + 220px)); max-width: none; margin-right: -160px; }
.hero-art { transform-origin: center right; }
.hero-art img { width: 100%; border-radius: 30px; }

.browser-mock {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(7, 24, 63, 0.08);
  box-shadow: 0 22px 54px rgba(11, 28, 67, 0.12);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f4f6fa 100%);
  border-bottom: 1px solid rgba(7, 24, 63, 0.08);
}
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #ccd4e4; }
.browser-bar b { margin-left: 8px; font-size: .8rem; color: var(--muted); font-weight: 700; letter-spacing: .01em; }
.browser-mock img { display: block; width: 100%; height: auto; }
.browser-mock--compact img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; }
.browser-mock--process img { aspect-ratio: 16 / 10; object-fit: cover; object-position: center top; }
.browser-mock--live::after {
  content: "En ligne";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(11, 28, 67, 0.12);
}
.clean-site-preview { display: grid; gap: 14px; }
.preview-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.preview-pills span, .step-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 28, 80, 0.05);
  border: 1px solid rgba(8, 28, 80, 0.08);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
}
.flow-mockup { margin-top: 18px; }
.flow-mockup .browser-mock, .final-devices .browser-mock { width: min(100%, 360px); margin-inline: auto; }
.final-devices { margin-top: 18px; }
.compare-card.good .browser-mock { max-width: 100%; }
.compare-card.good ul { margin-top: 20px; }
.compare-card.bad ul { margin-top: 20px; }
.compare-card h4 { margin-bottom: 16px; }
.mini-site-preview { margin-bottom: 6px; }
.step-card { overflow: hidden; }
.step-card h3 { max-width: 240px; margin-inline: auto; }
.step-tags { gap: 10px; margin-top: 18px; }
.project-shot { height: 260px; }
.ref-laptop { width: 85%; }
.ref-laptop img { height: 176px; }
.project-card h3 { margin-top: 4px; }

.reveal { transition: opacity .7s ease, transform .8s cubic-bezier(.22,1,.36,1), filter .8s cubic-bezier(.22,1,.36,1); filter: blur(4px); }
.reveal[data-reveal="left"] { transform: translate3d(-40px, 0, 0); }
.reveal[data-reveal="right"] { transform: translate3d(40px, 0, 0); }
.reveal[data-reveal="up"] { transform: translate3d(0, 26px, 0); }
.reveal.is-visible { filter: blur(0); }

@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: minmax(0, .88fr) minmax(720px, 1.12fr); gap: 48px; }
}
@media (max-width: 1360px) {
  .hero-visual { width: min(820px, calc(100% + 110px)); margin-right: -70px; }
}
@media (max-width: 1180px) {
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(820px, 100%); margin-right: 0; }
  .project-shot { height: 280px; }
}
@media (max-width: 860px) {
  .hero-art img { border-radius: 22px; }
  .comparison .compare-cards { gap: 18px; }
  .step-card h3 { max-width: none; }
  .flow-mockup .browser-mock, .final-devices .browser-mock { width: 100%; }
  .project-shot { height: 230px; }
}
@media (max-width: 560px) {
  .hero-copy { max-width: none; }
  .hero-art img { border-radius: 18px; }
  .browser-bar { padding: 10px 12px; min-height: 38px; }
  .browser-bar b { font-size: .72rem; }
  .preview-pills span, .step-tags span { min-height: 30px; padding: 0 10px; font-size: .74rem; }
  .project-shot { height: 205px; }
  .ref-laptop img { height: 126px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .parallax { transition: none !important; transform: none !important; filter: none !important; }
}

.hero-art, .browser-mock--process { will-change: transform; }

html, body { overflow-x: clip; }
main, .section, .container, .hero-grid, .simple-grid, .steps, .project-grid, .contact-cards { min-width: 0; }
.hero-grid > *, .simple-grid > *, .steps > *, .contact-cards > * { min-width: 0; }
@media (max-width: 860px) {
  .hero-visual { width: 100% !important; margin-right: 0 !important; }
}


/* Final production finish: 100vh hero, scoped imagery, coherent mockups */
.reveal.is-visible[data-reveal] { transform: translate3d(0,0,0); }

@media (min-width: 1024px) and (min-height: 720px) {
  .hero {
    min-height: calc(100svh - 82px);
    padding-top: clamp(30px, 4.8vh, 58px);
    padding-bottom: clamp(22px, 3.6vh, 42px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .benefits-strip { margin-top: clamp(20px, 3vh, 34px); }
}
@media (min-width: 1280px) {
  .hero-grid { grid-template-columns: minmax(0,.9fr) minmax(735px,1.1fr); gap: 44px; }
  .hero-visual { width: min(980px, calc(100% + 260px)); margin-right: -210px; }
}
@media (min-width: 1680px) {
  .hero-visual { width: min(1100px, calc(100% + 360px)); margin-right: -280px; }
}
@media (max-width: 1360px) and (min-width: 1181px) {
  .hero-grid { grid-template-columns: minmax(0,.94fr) minmax(650px,1.06fr); gap: 42px; }
  .hero-visual { width: min(850px, calc(100% + 140px)); margin-right: -80px; }
}

.clean-site-preview .browser-mock img,
.browser-mock--process img { display: none; }
.site-wireframe {
  position: relative;
  background: radial-gradient(circle at 88% 14%, rgba(10,75,255,.08), transparent 120px), #fff;
  padding: 18px;
  min-height: 230px;
  overflow: hidden;
}
.site-wireframe--compact { min-height: 260px; }
.site-wireframe--process { padding: 14px; min-height: 190px; }
.wire-nav { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.wire-nav b { width: 72px; height: 12px; border-radius: 999px; background: var(--navy); opacity: .95; margin-right: auto; }
.wire-nav i { width: 34px; height: 7px; border-radius: 999px; background: rgba(6,25,75,.14); }
.wire-hero, .wire-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items: stretch; }
.wire-hero strong, .wire-split strong {
  display: block;
  width: 86%;
  height: 16px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 25px 0 -4px rgba(6,25,75,.82), 0 50px 0 -6px rgba(6,25,75,.68);
  margin: 14px 0 58px;
}
.wire-hero p, .wire-split p { display: block; height: 8px; border-radius: 999px; background: rgba(6,25,75,.14); margin: 9px 0; }
.wire-hero p:first-of-type, .wire-split p:first-of-type { width: 82%; }
.wire-hero p:last-of-type, .wire-split p:last-of-type { width: 64%; }
.wire-hero em, .wire-split em { display: block; width: 104px; height: 28px; border-radius: 7px; background: #0a4bff; margin-top: 18px; }
.wire-hero figure, .wire-split figure {
  margin: 0;
  min-height: 132px;
  border-radius: 14px;
  background: linear-gradient(135deg,#eef4ff,#ffffff 45%,#dfe8fb);
  border: 1px solid rgba(6,25,75,.08);
  position: relative;
  overflow: hidden;
}
.wire-hero figure::after, .wire-split figure::after {
  content: "";
  position: absolute;
  inset: 24% 18% 18% 22%;
  border-radius: 18px;
  background: linear-gradient(135deg,rgba(10,75,255,.14),rgba(6,25,75,.08));
}
.wire-row, .wire-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.wire-row span, .wire-cards span { min-height: 48px; border-radius: 12px; background: rgba(6,25,75,.045); border: 1px solid rgba(6,25,75,.07); }
.site-wireframe--process .wire-split { gap: 12px; }
.site-wireframe--process .wire-split strong { height: 12px; margin: 8px 0 42px; box-shadow: 0 18px 0 -4px rgba(6,25,75,.78), 0 36px 0 -6px rgba(6,25,75,.58); }
.site-wireframe--process .wire-split p { height: 7px; margin: 7px 0; }
.site-wireframe--process .wire-split em { width: 80px; height: 22px; margin-top: 12px; }
.site-wireframe--process .wire-split figure { min-height: 106px; }
.site-wireframe--process .wire-cards span { min-height: 34px; }

@media (max-width: 860px) {
  .reveal[data-reveal="left"], .reveal[data-reveal="right"] { transform: translate3d(0, 20px, 0); }
  .reveal.is-visible[data-reveal] { transform: translate3d(0,0,0); }
  .site-wireframe--compact { min-height: 230px; }
  .wire-hero, .wire-split { grid-template-columns: 1fr; }
  .wire-hero figure, .wire-split figure { min-height: 96px; }
}
@media (max-width: 560px) {
  .hero { min-height: auto; }
  .site-wireframe { padding: 14px; }
  .site-wireframe--compact { min-height: 210px; }
  .wire-nav i:nth-of-type(n+3) { display: none; }
  .wire-row, .wire-cards { grid-template-columns: 1fr; }
  .wire-row span, .wire-cards span { min-height: 34px; }
}

/* Laptop-height refinement: keep the first screen focused and complete */
@media (min-width: 1024px) and (max-height: 820px) {
  .hero {
    min-height: calc(100svh - 82px);
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(3rem, 4.25vw, 4.1rem);
    max-width: 560px;
  }
  .hero .lead { margin-top: 18px; }
  .hero .cta-row { margin-top: 22px; }
  .hero .profile-card,
  .hero .benefits-strip { display: none; }
  .hero-visual { width: min(790px, calc(100% + 120px)); margin-right: -78px; }
  .hero-art img { border-radius: 24px; }
}


/* Final correction pass — hero section sizing, icon rendering, alignment polish */
:root { --header-height: 82px; }

svg:not(.svg-sprite) {
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-grid svg,
.reason-list svg,
.benefits-strip svg,
.soft-note svg,
.launch-offer svg,
.process-note svg,
.mini-grid svg,
.flow-icon svg,
.contact-card svg,
.mockup-flow svg {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1181px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: clamp(26px, 4vh, 52px);
    padding-bottom: clamp(22px, 3.2vh, 40px);
    display: grid;
    align-content: center;
    gap: clamp(18px, 2.4vh, 30px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    align-items: center;
    gap: clamp(40px, 5vw, 72px);
  }

  .hero-copy { max-width: 600px; }
  .hero-visual {
    width: 100%;
    max-width: min(49vw, 720px);
    margin-right: 0;
    justify-self: end;
  }

  .hero-art img {
    width: 100%;
    height: auto;
    max-height: min(58vh, 565px);
    object-fit: contain;
  }

  .benefits-strip {
    margin-top: clamp(18px, 2.4vh, 28px);
    padding: clamp(16px, 2vh, 22px) 16px;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero .eyebrow { margin-bottom: 14px; }
  .hero h1 {
    font-size: clamp(3rem, 4.15vw, 4.05rem);
    max-width: 560px;
  }
  .hero .lead { margin-top: 18px; line-height: 1.6; }
  .hero .cta-row { margin-top: 20px; }

  .profile-card {
    margin-top: 20px;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    max-width: 360px;
    padding: 8px 14px 8px 8px;
  }
  .profile-card img { width: 92px; height: 92px; }
  .profile-card i { margin: 8px 0; }
  .profile-card p { line-height: 1.42; }

  .hero-art img { max-height: min(52vh, 455px); }
  .benefits-strip div { grid-template-columns: 38px 1fr; column-gap: 12px; padding: 0 14px; }
  .benefits-strip svg { width: 30px; height: 30px; }
  .benefits-strip small { font-size: .84rem; }
}

@media (min-width: 1440px) and (min-height: 860px) {
  .hero-copy { max-width: 640px; }
  .hero-visual { max-width: min(48vw, 780px); }
  .hero-art img { max-height: min(60vh, 620px); }
}

/* Desktop card and process alignment */
@media (min-width: 1024px) {
  .steps {
    grid-template-columns: minmax(230px, .82fr) 34px minmax(300px, 1fr) 34px minmax(300px, 1fr);
    gap: 18px;
    align-items: stretch;
  }
  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 22px;
    min-height: 320px;
  }
  .step-number {
    position: static;
    transform: none;
    margin-bottom: 18px;
  }
  .step-card h3 {
    margin-top: 0;
    min-height: 3.25em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mini-grid,
  .flow-mockup,
  .final-devices {
    width: 100%;
  }
  .flow-mockup,
  .final-devices { margin-top: auto; }
  .step-tags { width: 100%; }
  .badge-72 { top: 22px; right: 22px; }
}

.compare-cards { align-items: stretch; }
.compare-card { display: flex; flex-direction: column; }
.compare-card ul { margin-top: auto; }
.mini-site-preview { min-height: 0; }
.dashboard-preview { min-height: 260px; }
.vs { top: 42%; }

.compare-card li::before { top: .12em; }
.compare-card li::after { top: calc(.12em + 7px); }
.bad li::after {
  top: calc(.12em - 1px);
  left: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 20px;
  line-height: 1;
}

.mockup-flow {
  grid-template-columns: minmax(120px,1fr) auto minmax(120px,1fr) auto minmax(120px,1fr) auto minmax(150px,1.15fr);
  gap: clamp(14px, 2vw, 22px);
}
.mockup-flow > div { min-width: 0; text-align: center; }
.flow-icon { flex: 0 0 auto; }

.project-grid { align-items: stretch; }
.project-card { display: flex; flex-direction: column; }
.project-card .btn-link { margin-top: auto; align-self: flex-start; }
.project-shot { width: calc(100% + 4px); }
.ref-laptop { max-width: 360px; }

@media (max-width: 1180px) {
  .hero { min-height: auto; }
  .hero-visual { max-width: 760px; margin-right: 0; }
  .hero-art img { max-height: none; }
}

@media (max-width: 860px) {
  :root { --header-height: 76px; }
  .steps { gap: 16px; }
  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .step-number { position: static; transform: none; margin-bottom: 16px; }
  .step-card h3 { margin-top: 0; }
  .badge-72 { top: 22px; right: 22px; }
  .mockup-flow > span { transform: rotate(90deg); }
  .project-card .btn-link { align-self: stretch; }
}

@media (max-width: 560px) {
  .profile-card {
    grid-template-columns: 78px 1fr;
    align-items: center;
  }
  .benefits-strip div { grid-template-columns: 38px 1fr; }
  .mockup-flow > div { font-size: 1rem; }
}

/* Hero must occupy 100vh, without vertically pushing the content down */
@media (min-width: 1181px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    display: block;
    align-content: normal;
    padding-top: clamp(36px, 6vh, 68px);
    padding-bottom: clamp(24px, 3.5vh, 42px);
  }
}
@media (min-width: 1181px) and (max-height: 820px) {
  .hero { padding-top: 30px; padding-bottom: 24px; }
}

/* Restore the useful hero content that had been hidden on laptop-height screens */
@media (min-width: 1181px) and (max-height: 820px) {
  .hero .profile-card { display: grid; }
  .hero .benefits-strip { display: grid; }
  .hero-visual { width: 100%; max-width: min(49vw, 700px); margin-right: 0; }
}


/* Production fix pass — icon reliability, references, mobile overflow, legal page */
html { overflow-x: hidden; }
body { overflow-x: clip; }
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
svg[viewBox="0 0 24 24"] {
  display: inline-block;
  vertical-align: middle;
  overflow: visible;
}
svg[viewBox="0 0 24 24"] use {
  pointer-events: none;
}
.feature-grid svg,
.reason-list svg,
.benefits-strip svg,
.soft-note svg,
.launch-offer svg,
.process-note svg,
.mini-grid svg,
.flow-icon svg,
.contact-card svg,
.mockup-flow svg {
  color: var(--navy);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card a[href^="mailto:"],
.contact-card a[href^="tel:"] {
  text-decoration-thickness: .08em;
  text-underline-offset: .2em;
}
.contact-card a[href^="mailto:"]:hover,
.contact-card a[href^="tel:"]:hover {
  text-decoration: underline;
}
.project-card .btn-link {
  white-space: nowrap;
}
.project-card .btn-link::after {
  content: "↗";
  margin-left: .45em;
  font-size: .95em;
}
.browser-bar b {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mockup-flow {
  max-width: 100%;
  overflow: hidden;
}
.mockup-flow > div,
.flow-result {
  min-width: 0;
}
.flow-icon svg {
  width: 42px;
  height: 42px;
}
.legal-page .section { min-height: 100svh; }
.legal-content {
  max-width: 860px;
  padding-block: 36px;
}
.legal-content h1 {
  margin-top: 36px;
  margin-bottom: 34px;
}
.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.legal-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.legal-content p {
  color: var(--muted);
  max-width: 720px;
}
.legal-content a:not(.btn) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .22em;
}
@media (max-width: 860px) {
  .mockup-flow {
    grid-template-columns: 1fr !important;
    justify-items: center;
    gap: 14px;
  }
  .mockup-flow > div,
  .flow-result {
    width: min(100%, 340px);
  }
  .mockup-flow > span {
    transform: none !important;
    line-height: 1;
    font-size: 1.4rem;
  }
  .mockup-flow > span:nth-of-type(3) {
    transform: rotate(90deg) !important;
    margin: 4px 0;
  }
  .flow-device {
    width: min(170px, 100%);
  }
  .contact-card p {
    align-items: flex-start;
  }
  .contact-card p svg {
    margin-top: .18em;
  }
}
@media (max-width: 560px) {
  .project-card .btn-link {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .flow-icon {
    width: 76px;
    height: 76px;
  }
  .flow-icon svg {
    width: 34px;
    height: 34px;
  }
}

/* Refinement pass — cleaner comparison and process visuals */
.comparison-refined h3 {
  margin-bottom: 24px;
}

.comfort-panels {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
  align-items: stretch;
}

.comfort-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(6,20,59,.08);
  box-shadow: var(--shadow-soft);
}

.comfort-card--primary {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(240,246,255,.9));
}

.comfort-card--soft {
  background: rgba(255,255,255,.78);
}

.comfort-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.comfort-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(58,123,255,.12);
  color: var(--navy);
}

.comfort-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comfort-head h4 {
  margin: 0 0 6px;
  font-size: 1.22rem;
  letter-spacing: -.02em;
}

.comfort-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.comfort-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.comfort-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(6,20,59,.07);
  color: var(--ink-2);
}

.comfort-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b8dff, #1f66f2);
  box-shadow: 0 10px 18px rgba(31,102,242,.24);
}

.comfort-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 7px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.comfort-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.comfort-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6,20,59,.04);
  border: 1px solid rgba(6,20,59,.08);
  color: var(--ink-2);
  font-weight: 650;
  line-height: 1.35;
}

.comfort-note {
  margin-top: auto;
  padding-top: 6px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.6;
}

.steps-refined {
  align-items: stretch;
}

.step-card--editorial,
.step-card--delivery {
  overflow: hidden;
}

.step-editorial-preview,
.delivery-preview {
  width: 100%;
  margin-top: 18px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(6,20,59,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.editorial-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6,25,75,.9), rgba(58,123,255,.56));
}

.editorial-line--title {
  width: 68%;
  height: 14px;
  margin-bottom: 12px;
}

.editorial-line--text {
  width: 94%;
  opacity: .22;
  margin-bottom: 8px;
}

.editorial-line--text.short {
  width: 72%;
  margin-bottom: 18px;
}

.editorial-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.editorial-blocks span {
  display: block;
  min-height: 78px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(6,20,59,.06));
  border: 1px solid rgba(58,123,255,.12);
}

.editorial-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}

.editorial-summary div,
.delivery-grid div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(6,20,59,.07);
}

.editorial-summary b,
.delivery-grid strong {
  display: block;
  font-size: .98rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.editorial-summary small,
.delivery-grid small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.delivery-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(58,123,255,.08));
  border: 1px solid rgba(58,123,255,.18);
  color: var(--navy);
  font-weight: 750;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}

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

@media (max-width: 860px) {
  .comfort-card {
    padding: 22px;
  }

  .step-editorial-preview,
  .delivery-preview {
    padding: 16px;
  }

  .editorial-blocks,
  .editorial-summary,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .comfort-head {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .comfort-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
  .comfort-card {
    padding: 18px;
    gap: 16px;
  }

  .comfort-list li {
    padding: 12px 14px 12px 42px;
  }

  .comfort-list li::before {
    left: 14px;
  }

  .comfort-list li::after {
    left: 20px;
  }

  .delivery-top {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Premium conversion pass */
:root {
  --surface: rgba(255,255,255,.9);
  --shadow: 0 26px 80px rgba(10, 27, 64, .12);
  --shadow-soft: 0 18px 52px rgba(10, 27, 64, .08);
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(64, 123, 255, .08), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(6, 25, 75, .06), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,0)),
    var(--bg);
}

body::before {
  opacity: .9;
  background-size: 56px 56px;
}

.section {
  padding: 108px 0;
}

.eyebrow {
  letter-spacing: .22em;
  font-weight: 800;
}

h1, h2, h3, .brand-copy strong {
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 10ch;
  line-height: .93;
}

.hero-copy .lead {
  max-width: 38rem;
  font-size: 1.19rem;
  color: #5c6b86;
}

.hero .cta-row {
  margin-top: 30px;
}

.btn {
  border-radius: 16px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(6,25,75,.08);
}

.btn-primary {
  background: linear-gradient(180deg, #0b2d82 0%, #081f5f 100%);
  color: #fff;
  border: 1px solid rgba(4, 18, 53, .18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6,25,75,.16);
}

.btn-secondary {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(6,20,59,.14);
}

.header-cta {
  box-shadow: 0 14px 34px rgba(6,25,75,.12);
}

.profile-card,
.pricing-card,
.reason-list article,
.project-card,
.about-card,
.contact-card,
.step-card,
.process-note,
.mockup-flow > div,
.flow-result,
.feature-grid article {
  background: rgba(255,255,255,.88);
  border-color: rgba(6,20,59,.08);
  box-shadow: var(--shadow-soft);
}

.profile-card {
  backdrop-filter: blur(10px);
}

.feature-grid article,
.reason-list article {
  border-radius: 18px;
}

.offer .pricing-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,248,255,.92));
  border: 1px solid rgba(58,123,255,.12);
}

.price span {
  letter-spacing: -.04em;
}

.soft-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: rgba(255,255,255,.7);
  border-radius: 16px;
  border: 1px solid rgba(6,20,59,.08);
}

.simple-grid,
.two-columns {
  align-items: start;
}

.comparison-refined h3 {
  margin-bottom: 24px;
}

.comfort-panels {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 22px;
  align-items: stretch;
}

.comfort-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(6,20,59,.08);
  box-shadow: var(--shadow-soft);
}

.comfort-card--primary {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,246,255,.94));
}

.comfort-card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,251,255,.82));
}

.comfort-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.comfort-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(58,123,255,.09));
  border: 1px solid rgba(58,123,255,.1);
  color: var(--navy);
}

.comfort-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comfort-head h4 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--navy);
}

.comfort-head p,
.comfort-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.comfort-list {
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.comfort-list li {
  position: relative;
  padding: 15px 16px 15px 48px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(6,20,59,.07);
  color: var(--ink-2);
  line-height: 1.5;
}

.comfort-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b8dff, #1f66f2);
  box-shadow: 0 10px 18px rgba(31,102,242,.24);
}

.comfort-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 7px;
  height: 4px;
  margin-top: -3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.comfort-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.comfort-tags span {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(6,20,59,.04);
  border: 1px solid rgba(6,20,59,.08);
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.35;
}

.comfort-note {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
}

.steps-refined {
  align-items: stretch;
}

.steps-refined .step-card {
  min-height: 0;
  padding: 30px 22px 26px;
}

.step-card--editorial,
.step-card--delivery {
  overflow: hidden;
}

.step-editorial-preview,
.delivery-preview {
  width: 100%;
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(6,20,59,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.editorial-line {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6,25,75,.92), rgba(58,123,255,.56));
}

.editorial-line--title {
  width: 70%;
  height: 14px;
  margin-bottom: 12px;
}

.editorial-line--text {
  width: 95%;
  opacity: .22;
  margin-bottom: 8px;
}

.editorial-line--text.short {
  width: 72%;
  margin-bottom: 18px;
}

.editorial-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.editorial-blocks span {
  display: block;
  min-height: 84px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(6,20,59,.06));
  border: 1px solid rgba(58,123,255,.12);
}

.editorial-summary,
.delivery-grid {
  display: grid;
  gap: 12px;
  text-align: left;
}

.editorial-summary {
  grid-template-columns: repeat(3, 1fr);
}

.editorial-summary div,
.delivery-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(6,20,59,.07);
}

.editorial-summary b,
.delivery-grid strong {
  display: block;
  font-size: .98rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.editorial-summary small,
.delivery-grid small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.delivery-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.delivery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(58,123,255,.08));
  border: 1px solid rgba(58,123,255,.18);
  color: var(--navy);
  font-weight: 750;
}

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

.project-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(10, 27, 64, .12);
}

.project-card .btn-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 750;
}

.project-card .btn-link::after {
  content: '↗';
}

.mockup-flow {
  gap: clamp(14px, 1.8vw, 20px);
}

.mockup-flow > div,
.flow-result {
  padding: 20px 18px;
  border-radius: 18px;
}

.contact-intro {
  max-width: 880px;
}

.contact-intro p {
  max-width: 760px;
}

.about-card,
.contact-card {
  border-radius: 22px;
}

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

.site-footer {
  background: rgba(255,255,255,.72);
  border-top: 1px solid rgba(6,20,59,.08);
  backdrop-filter: blur(14px);
}

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

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

  .hero-copy h1 {
    max-width: none;
  }

  .comfort-card {
    padding: 22px;
  }

  .step-editorial-preview,
  .delivery-preview {
    padding: 16px;
  }

  .editorial-blocks,
  .editorial-summary,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .delivery-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand { gap: 14px; }
  .brand-mark { width: 60px; font-size: 2.3rem; }
  .brand-copy strong { font-size: 1.12rem; }
  .hero-copy .lead { font-size: 1.05rem; }
  .comfort-card {
    padding: 18px;
    gap: 16px;
  }
  .comfort-head {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }
  .comfort-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .comfort-list li {
    padding: 13px 14px 13px 42px;
  }
  .comfort-list li::before { left: 14px; }
  .comfort-list li::after { left: 20px; }
  .delivery-top {
    grid-template-columns: 1fr;
  }
}

/* Final correction pass — compact hero, standalone no-management section, no À propos nav */
html { overflow-x: hidden; }
body { overflow-x: clip; }

.section:first-of-type,
.hero {
  padding-top: clamp(28px, 4vh, 52px) !important;
}

.hero {
  min-height: calc(100svh - 82px) !important;
  padding-bottom: clamp(24px, 4vh, 44px) !important;
  display: block !important;
}

.hero-grid {
  align-items: center !important;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1fr) !important;
  gap: clamp(40px, 6vw, 86px) !important;
}

.hero-copy {
  max-width: 610px !important;
}

.hero-copy .eyebrow {
  margin-bottom: 22px !important;
}

.hero-copy h1 {
  max-width: 620px !important;
  font-size: clamp(3.55rem, 5.4vw, 5.9rem) !important;
  line-height: .91 !important;
  letter-spacing: -.072em !important;
  margin-bottom: 24px !important;
}

.hero-copy .lead {
  max-width: 560px !important;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem) !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

.hero .cta-row {
  margin-top: 28px !important;
  gap: 14px !important;
}

.hero .profile-card {
  margin-top: 22px !important;
  max-width: 360px !important;
  grid-template-columns: 82px 1fr !important;
  padding: 9px 16px 9px 9px !important;
}

.hero .profile-card img {
  width: 82px !important;
  height: 82px !important;
}

.hero .profile-card p {
  font-size: .95rem !important;
  line-height: 1.42 !important;
}

.hero-visual {
  align-self: center !important;
}

.hero-art img {
  max-height: min(54vh, 560px) !important;
  width: 100% !important;
  object-fit: contain !important;
}

.benefits-strip {
  margin-top: clamp(26px, 4vh, 40px) !important;
}

.simple-stack {
  display: grid !important;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr) !important;
  gap: clamp(40px, 6vw, 88px) !important;
  align-items: start !important;
}

.simple-stack > .reveal {
  display: contents !important;
}

.simple-stack .eyebrow,
.simple-stack h2,
.simple-stack .section-lead {
  grid-column: 1 !important;
}

.simple-stack .reason-list {
  grid-column: 2 !important;
  grid-row: 1 / span 4 !important;
  margin-top: 0 !important;
}

.simple-stack h2 {
  max-width: 650px !important;
}

.simple-stack .section-lead {
  max-width: 610px !important;
}

.no-management {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(58,123,255,.10), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.34), rgba(238,245,255,.45));
  border-block: 1px solid rgba(6,20,59,.07);
}

.center-heading {
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto 42px !important;
}

.center-heading h2 {
  margin-inline: auto !important;
  max-width: 850px !important;
}

.center-heading .section-lead {
  margin: 20px auto 0 !important;
  max-width: 730px !important;
}

.comfort-panels,
.comfort-panels-wide {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(22px, 3vw, 34px) !important;
  align-items: stretch !important;
}

.comfort-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  padding: clamp(28px, 3vw, 42px) !important;
  border-radius: 28px !important;
  border: 1px solid rgba(6,20,59,.08) !important;
  box-shadow: 0 24px 70px rgba(10,27,64,.10) !important;
}

.comfort-card--primary {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,246,255,.94)) !important;
}

.comfort-card--soft {
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(249,251,255,.86)) !important;
}

.comfort-head {
  display: grid !important;
  grid-template-columns: 58px 1fr !important;
  gap: 18px !important;
  align-items: start !important;
}

.comfort-icon {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(58,123,255,.08)) !important;
  border: 1px solid rgba(58,123,255,.13) !important;
  color: var(--navy) !important;
}

.comfort-icon svg {
  width: 28px !important;
  height: 28px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.comfort-head h3,
.comfort-head h4 {
  margin: 0 0 8px !important;
  font-family: var(--sans) !important;
  font-size: clamp(1.35rem, 2vw, 1.75rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.035em !important;
  color: var(--navy) !important;
}

.comfort-head p {
  margin: 0 !important;
  color: var(--muted) !important;
  line-height: 1.65 !important;
  max-width: 560px !important;
}

.comfort-list {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.comfort-list li {
  position: relative !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  padding: 15px 16px 15px 48px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(6,20,59,.07) !important;
  color: var(--ink-2) !important;
  line-height: 1.45 !important;
}

.comfort-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  top: 50% !important;
  width: 18px !important;
  height: 18px !important;
  margin-top: -9px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #4b8dff, #1f66f2) !important;
  box-shadow: 0 10px 18px rgba(31,102,242,.24) !important;
}

.comfort-list li::after {
  content: "" !important;
  position: absolute !important;
  left: 22px !important;
  top: 50% !important;
  width: 7px !important;
  height: 4px !important;
  margin-top: -3px !important;
  border-left: 2px solid #fff !important;
  border-bottom: 2px solid #fff !important;
  transform: rotate(-45deg) !important;
}

.comfort-tags {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.comfort-tags span {
  display: flex !important;
  align-items: center !important;
  min-height: 58px !important;
  padding: 12px 16px !important;
  border-radius: 16px !important;
  background: rgba(6,20,59,.045) !important;
  border: 1px solid rgba(6,20,59,.08) !important;
  color: var(--ink-2) !important;
  font-weight: 720 !important;
  line-height: 1.35 !important;
}

.comfort-note {
  margin-top: auto !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
  background: rgba(6,25,75,.06) !important;
  color: var(--navy) !important;
  font-weight: 760 !important;
  line-height: 1.55 !important;
}

.steps-refined .device,
.steps-refined .final-devices,
#processus .device,
#processus .final-devices {
  display: none !important;
}

.step-editorial-preview,
.delivery-preview {
  width: 100% !important;
  margin-top: 18px !important;
  padding: 20px !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%) !important;
  border: 1px solid rgba(6,20,59,.08) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important;
}

.editorial-line { height: 10px !important; border-radius: 999px !important; background: linear-gradient(90deg, rgba(6,25,75,.92), rgba(58,123,255,.56)) !important; }
.editorial-line--title { width: 70% !important; height: 14px !important; margin-bottom: 12px !important; }
.editorial-line--text { width: 95% !important; opacity: .22 !important; margin-bottom: 8px !important; }
.editorial-line--text.short { width: 72% !important; margin-bottom: 18px !important; }
.editorial-blocks { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; margin-bottom: 16px !important; }
.editorial-blocks span { display: block !important; min-height: 84px !important; border-radius: 18px !important; background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(6,20,59,.06)) !important; border: 1px solid rgba(58,123,255,.12) !important; }
.editorial-summary, .delivery-grid { display: grid !important; gap: 12px !important; text-align: left !important; }
.editorial-summary { grid-template-columns: repeat(3, 1fr) !important; }
.delivery-grid { grid-template-columns: repeat(2, 1fr) !important; }
.editorial-summary div, .delivery-grid div { padding: 14px !important; border-radius: 16px !important; background: rgba(255,255,255,.88) !important; border: 1px solid rgba(6,20,59,.07) !important; }
.editorial-summary b, .delivery-grid strong { display: block !important; font-size: .98rem !important; color: var(--navy) !important; margin-bottom: 4px !important; }
.editorial-summary small, .delivery-grid small { display: block !important; color: var(--muted) !important; line-height: 1.45 !important; }
.delivery-top { display: flex !important; flex-wrap: wrap !important; gap: 10px !important; margin-bottom: 16px !important; }
.delivery-pill { display: inline-flex !important; align-items: center !important; justify-content: center !important; padding: 10px 15px !important; border-radius: 999px !important; background: linear-gradient(180deg, rgba(58,123,255,.16), rgba(58,123,255,.08)) !important; border: 1px solid rgba(58,123,255,.18) !important; color: var(--navy) !important; font-weight: 750 !important; }

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
  .hero-copy { max-width: 760px !important; }
  .hero-copy h1 { max-width: 760px !important; }
  .hero-visual { max-width: 760px !important; margin-inline: auto !important; }
  .hero-art img { max-height: 440px !important; }
}

@media (max-width: 980px) {
  .simple-stack {
    grid-template-columns: 1fr !important;
  }
  .simple-stack > .reveal { display: block !important; }
  .simple-stack .reason-list {
    grid-column: auto !important;
    grid-row: auto !important;
    margin-top: 28px !important;
  }
  .comfort-panels,
  .comfort-panels-wide {
    grid-template-columns: 1fr !important;
  }
  .comfort-list,
  .comfort-tags {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px) {
  .section:first-of-type,
  .hero {
    padding-top: 42px !important;
  }
  .hero {
    min-height: auto !important;
  }
  .hero-copy h1 {
    font-size: clamp(2.85rem, 12vw, 4.15rem) !important;
    line-height: .92 !important;
    letter-spacing: -.065em !important;
    margin-bottom: 20px !important;
  }
  .hero-copy .lead {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
  }
  .hero-visual {
    display: none !important;
  }
  .benefits-strip {
    margin-top: 26px !important;
  }
  .center-heading {
    text-align: left !important;
    margin-bottom: 28px !important;
  }
  .comfort-card {
    padding: 22px !important;
    border-radius: 22px !important;
  }
  .comfort-head {
    grid-template-columns: 48px 1fr !important;
    gap: 14px !important;
  }
  .comfort-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 15px !important;
  }
  .editorial-blocks,
  .editorial-summary,
  .delivery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .hero .cta-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .hero .profile-card {
    max-width: 100% !important;
    grid-template-columns: 74px 1fr !important;
  }
  .hero .profile-card img {
    width: 74px !important;
    height: 74px !important;
  }
  .comfort-list li {
    min-height: 0 !important;
    padding: 13px 14px 13px 42px !important;
  }
  .comfort-list li::before { left: 14px !important; }
  .comfort-list li::after { left: 20px !important; }
  .comfort-tags span {
    min-height: 0 !important;
  }
  .delivery-top {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

/* Normal-screen conversion pass — compact hero, dedicated management section, no About nav */
@media (min-width: 1181px) {
  .hero.section {
    min-height: calc(100svh - var(--header-height)) !important;
    padding-top: clamp(28px, 4vh, 46px) !important;
    padding-bottom: clamp(18px, 3vh, 28px) !important;
    display: grid !important;
    align-content: start !important;
    gap: clamp(14px, 2vh, 22px) !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr) !important;
    gap: clamp(36px, 4.4vw, 62px) !important;
    align-items: center !important;
  }

  .hero-copy {
    max-width: 680px !important;
  }

  .hero-copy h1 {
    max-width: 680px !important;
    font-size: clamp(3.05rem, 4.05vw, 4.35rem) !important;
    line-height: .97 !important;
    letter-spacing: -.055em !important;
  }

  .hero-copy .lead {
    max-width: 570px !important;
    margin-top: 18px !important;
    font-size: clamp(1rem, 1.12vw, 1.12rem) !important;
    line-height: 1.62 !important;
  }

  .hero .cta-row {
    margin-top: 22px !important;
  }

  .profile-card {
    margin-top: 20px !important;
    max-width: 390px !important;
    grid-template-columns: 86px 1fr !important;
    gap: 14px !important;
    padding: 8px 14px 8px 8px !important;
  }

  .profile-card img {
    width: 86px !important;
    height: 86px !important;
  }

  .profile-card i {
    margin: 7px 0 !important;
  }

  .profile-card p {
    line-height: 1.42 !important;
  }

  .hero-visual {
    max-width: min(51vw, 720px) !important;
    width: 100% !important;
    margin-right: 0 !important;
  }

  .hero-art img {
    max-height: min(50vh, 500px) !important;
    object-fit: contain !important;
  }

  .hero .benefits-strip {
    margin-top: clamp(14px, 2vh, 22px) !important;
    padding: 12px 14px !important;
  }

  .hero .benefits-strip div {
    grid-template-columns: 34px 1fr !important;
    column-gap: 12px !important;
    padding: 0 12px !important;
  }

  .hero .benefits-strip svg {
    width: 28px !important;
    height: 28px !important;
  }

  .hero .benefits-strip strong {
    font-size: .98rem !important;
  }

  .hero .benefits-strip small {
    font-size: .82rem !important;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .hero.section {
    padding-top: 24px !important;
    padding-bottom: 18px !important;
    gap: 14px !important;
  }

  .hero-copy h1 {
    max-width: 620px !important;
    font-size: clamp(2.72rem, 3.55vw, 3.35rem) !important;
    line-height: .98 !important;
  }

  .hero-copy .lead {
    margin-top: 14px !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    max-width: 540px !important;
  }

  .hero .cta-row {
    margin-top: 18px !important;
  }

  .profile-card {
    display: grid !important;
    margin-top: 16px !important;
    max-width: 360px !important;
    grid-template-columns: 76px 1fr !important;
  }

  .profile-card img {
    width: 76px !important;
    height: 76px !important;
  }

  .profile-card p {
    font-size: .94rem !important;
  }

  .hero-art img {
    max-height: min(47vh, 360px) !important;
  }

  .hero .benefits-strip {
    margin-top: 12px !important;
    padding: 10px 12px !important;
  }
}

.simple.section {
  padding-bottom: 72px;
}

.simple-inner {
  max-width: 840px;
}

.reason-list.reason-list--wide {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.reason-list.reason-list--wide article {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 16px;
  min-height: 190px;
  padding: 24px;
}

.reason-list.reason-list--wide svg {
  width: 50px;
  height: 50px;
}

.management.section {
  padding-top: 86px;
  padding-bottom: 108px;
  background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(240,246,255,.38));
  border-block: 1px solid rgba(6,20,59,.06);
}

.management-inner {
  display: grid;
  gap: 36px;
}

.management-heading {
  max-width: 920px;
}

.management-heading h2 {
  max-width: 900px;
}

.management-heading .section-lead {
  max-width: 760px;
}

.management .comfort-panels {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
}

.management .comfort-card {
  padding: clamp(28px, 3vw, 38px);
}

.management .comfort-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.management .comfort-tags {
  gap: 14px;
}

.management .comfort-tags span {
  flex: 1 1 calc(50% - 14px);
  justify-content: center;
  text-align: center;
  min-height: 54px;
}

.management-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    max-width: 720px !important;
    line-height: .98 !important;
  }

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

  .management .comfort-panels,
  .management .comfort-list {
    grid-template-columns: 1fr;
  }

  .management .comfort-tags span {
    flex-basis: 100%;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  .hero.section {
    padding-top: 72px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem) !important;
    max-width: none !important;
    line-height: .94 !important;
  }

  .simple.section {
    padding-bottom: 62px;
  }

  .reason-list.reason-list--wide {
    grid-template-columns: 1fr;
  }

  .reason-list.reason-list--wide article {
    min-height: 0;
  }

  .management.section {
    padding-top: 74px;
    padding-bottom: 84px;
  }

  .management-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .management-cta .btn {
    justify-content: center;
  }
}

/* Final cleanup pass — cleaner simple section, iconized comfort cards, shorter page */
.simple.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.simple-heading {
  max-width: 880px;
  margin: 0 auto 36px;
}

.simple-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.simple-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(6,20,59,.08);
  box-shadow: var(--shadow-soft);
}

.simple-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(58,123,255,.14), rgba(58,123,255,.08));
  color: var(--navy);
  margin-bottom: 18px;
}

.simple-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.simple-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.simple-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.no-management.section {
  padding-top: 94px;
  padding-bottom: 96px;
}

.comfort-panels-wide {
  align-items: stretch;
}

.comfort-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px 18px;
}

.comfort-list li::before,
.comfort-list li::after {
  display: none !important;
}

.list-mini-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(58,123,255,.12);
  color: var(--accent);
  margin-top: 1px;
}

.list-mini-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.comfort-tags span {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
}

.comfort-tags span svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy-soft);
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comfort-tags span em {
  font-style: normal;
}

.launch-offer {
  gap: 14px;
  border-radius: 18px;
}

.launch-offer svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10,75,255,.08);
}

@media (max-width: 860px) {
  .simple-highlights,
  .comfort-tags {
    grid-template-columns: 1fr;
  }

  .simple-card {
    padding: 22px;
  }

  .comfort-list li,
  .comfort-tags span {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .list-mini-icon {
    width: 24px;
    height: 24px;
  }

  .list-mini-icon svg,
  .comfort-tags span svg {
    width: 14px;
    height: 14px;
  }
}
