:root {
  --ink: #0b0b0a;
  --ink-soft: #1a1a17;
  --muted: #6b6b64;
  --paper: #ffffff;
  --paper-deep: #f6f7f5;
  --white: #ffffff;
  --line: #ececea;
  --line-strong: #d9d9d4;
  --cta: #12b764;
  --cta-dark: #0e9754;
  --cta-soft: #e6f7ee;
  --mint: #12b764;
  --mint-dark: #0e9754;
  --clay: #d74d36;
  --shadow-sm: 0 1px 2px rgba(11, 11, 10, 0.04), 0 2px 6px rgba(11, 11, 10, 0.04);
  --shadow-md: 0 4px 14px rgba(11, 11, 10, 0.06), 0 1px 3px rgba(11, 11, 10, 0.04);
  --shadow-lg: 0 24px 60px rgba(11, 11, 10, 0.10), 0 4px 12px rgba(11, 11, 10, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --header-height: 100px;
  --max: 1180px;
  --content-width: 90%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  font-feature-settings: "cv11", "ss01", "ss03";
}

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

main img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.brand-logo,
.oec-badge img,
.nav-brand-logo,
.service-panel img {
  border-radius: 0;
}

.nav-brand {
  display: none;
}

.oec-badge img {
  border-radius: 6px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

::selection {
  background: var(--mint);
  color: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: var(--content-width);
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--ink);
}

.brand-logo {
  width: auto;
  height: 84px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav > a,
.nav-group > summary,
.site-footer a {
  position: relative;
}

.site-nav > a::after,
.nav-group > summary::before,
.site-footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-group:hover > summary::before,
.nav-group > summary:focus-visible::before,
.nav-group[open] > summary::before,
.site-footer a:hover::after,
.site-footer a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-group {
  position: relative;
}

.nav-group > summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-group[open] > summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-group[open] .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  padding: 10px 11px;
  color: var(--ink);
  font-weight: 760;
  border-radius: 3px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.nav-menu a::after {
  display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--mint);
  color: var(--ink);
}

.header-call {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  border-color: var(--ink);
  background: var(--paper-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  z-index: 60;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--paper-deep);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms ease;
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .site-header {
  z-index: 60;
  background: var(--paper);
  border-bottom-color: transparent;
}

.nav-backdrop {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  width: var(--content-width);
  margin: 0 auto;
  min-height: auto;
  padding: clamp(28px, 5vw, 72px) 0 clamp(42px, 6vw, 78px);
  overflow: visible;
  background: var(--paper);
  border-bottom: 0;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 0 0 20px;
  padding: 6px 12px;
  background: var(--cta-soft);
  color: var(--cta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 999px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cta);
}

.hero h1,
.hero-claim,
.section h2,
.contact h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 4.75rem;
  font-weight: 900;
  line-height: 0.98;
}

.hero-claim {
  max-width: 560px;
  margin-top: 14px;
  font-size: 3.1rem;
  font-weight: 820;
}

.hero-text {
  max-width: 520px;
  margin: 26px 0 0;
  color: #34332f;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--paper-deep);
  border-color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
  margin: 38px 0 0;
  padding: 0;
}

.hero-facts div {
  border-top: 1px solid var(--line-strong);
  padding-top: 13px;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 780;
}

.oec-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.oec-badge:hover,
.oec-badge:focus-visible {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.oec-badge img {
  height: 34px;
  width: auto;
  display: block;
}

.oec-badge span {
  font-size: 0.85rem;
  font-weight: 780;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(44vw, 620px);
  min-width: 390px;
  isolation: isolate;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
  border-radius: 50%;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 260ms ease-out;
}

.visual-rail {
  display: none;
}

.visual-rail::before,
.visual-rail::after {
  content: "";
  position: absolute;
  left: -80%;
  width: 170%;
  height: 1px;
  background: var(--ink);
}

.visual-rail::before {
  top: 18%;
}

.visual-rail::after {
  bottom: 18%;
}

.hero-signal {
  display: none;
}

.hero-signal strong {
  display: block;
  font-size: 0.98rem;
}

.hero-signal span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: calc(82svh - var(--header-height));
  width: var(--content-width);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}


.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #34332f;
  font-size: 1.14rem;
}

.page-hero .button {
  margin-top: 34px;
}

.page-hero img {
  justify-self: center;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
  border-radius: 50%;
}

.page-section {
  max-width: none;
  width: var(--content-width);
  margin: 0 auto;
  padding: 86px 0;
}

.page-point-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

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

.page-point {
  min-height: 240px;
  padding: 26px;
  border-right: 1px solid var(--line-strong);
}

.page-point:last-child {
  border-right: 0;
}

.page-point span {
  color: var(--mint-dark);
  font-weight: 850;
}

.page-point h2 {
  margin: 24px 0 0;
  font-size: 1.7rem;
  line-height: 0.95;
}

.page-point p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.pricing-table {
  margin-top: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.pricing-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pricing-table--single table {
  min-width: 480px;
}

.pricing-table thead th {
  padding: 22px 18px;
  text-align: center;
  font-weight: 850;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.pricing-table thead th:first-child {
  text-align: left;
  width: 46%;
}

.pricing-table--single thead th:first-child {
  width: 72%;
}

.pricing-table--single tr.pricing-group th:last-child {
  text-align: right;
}

.pricing-table thead th .plan-name {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
}

.pricing-table thead th:nth-child(2) .plan-name { color: #1B7A44; border-color: #1B7A44; }
.pricing-table thead th:nth-child(3) .plan-name { color: #1D4FA3; border-color: #1D4FA3; }
.pricing-table thead th:nth-child(4) .plan-name { color: #B0392A; border-color: #B0392A; }

.pricing-table tbody th[scope="row"] {
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.pricing-table tbody td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  vertical-align: middle;
  color: var(--muted);
}

.pricing-table tbody td[data-included]::before {
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1;
}

.pricing-table tbody td[data-included="yes"]::before {
  content: "✓";
  color: var(--mint-dark);
  font-weight: 850;
}

.pricing-table tbody td[data-included="no"]::before {
  content: "—";
  color: #c9c9c1;
}

.pricing-table tr.pricing-group th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 850;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.pricing-table tr.pricing-price th {
  font-weight: 850;
}

.pricing-table tr.pricing-price td {
  color: var(--ink);
  font-size: 1.05rem;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: none;
  width: var(--content-width);
  margin: 0 auto 72px;
  padding: 36px clamp(22px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
}

.page-cta h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
}

.page-cta p {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-cta .button {
  border-color: transparent;
}

.content-list {
  display: grid;
  gap: 0;
  max-width: 900px;
  border-top: 1px solid var(--line-strong);
}

.content-entry {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.content-entry h2,
.content-entry h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.02;
}

.content-entry h2 a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0 1px;
  background-position: 0 100%;
  transition: background-size 220ms ease;
}

.content-entry h2 a:hover,
.content-entry h2 a:focus-visible {
  background-size: 100% 1px;
}

.content-entry p,
.content-entry li {
  color: var(--muted);
}

.content-entry p {
  margin: 12px 0 0;
}

.content-entry ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.content-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  max-width: none;
  width: var(--content-width);
  margin: 0 auto;
  padding: 96px 0;
}

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

.section-heading h2,
.contact h2 {
  font-size: 4.3rem;
  font-weight: 850;
  line-height: 0.94;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.specific-offers {
  border-top: 1px solid var(--line);
}

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

.offer-grid .service-panel {
  min-height: 340px;
}

.service-panel {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px 24px 28px;
  border-right: 1px solid var(--line-strong);
  transition:
    background 220ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

.service-panel:last-child {
  border-right: 0;
}

.service-panel:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-panel:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: -3px;
}

.service-panel img {
  width: 84px;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background: var(--icon-bg, #eef4f2);
  border-radius: 12px;
  color: var(--icon-color, var(--ink));
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-icon--creation    { --icon-bg: #FFF1CE; --icon-color: #A8720B; }
.service-icon--comptabilite{ --icon-bg: #DCE8FB; --icon-color: #1D4FA3; }
.service-icon--paie        { --icon-bg: #D6F0DE; --icon-color: #1B7A44; }
.service-icon--fiscalite   { --icon-bg: #FBDDD3; --icon-color: #B0392A; }
.service-icon--juridique   { --icon-bg: #E7DFF6; --icon-color: #553497; }
.service-icon--sante       { --icon-bg: #D4EFE9; --icon-color: #0E7A6B; }
.service-icon--lmnp        { --icon-bg: #FBE1CC; --icon-color: #B25411; }
.service-icon--taxi        { --icon-bg: #FFE9A8; --icon-color: #8A6100; }

.service-index {
  display: none;
}

.service-panel h3 {
  max-width: 210px;
  margin: 18px 0 0;
  font-size: 1.72rem;
  line-height: 0.95;
}

.service-panel p {
  margin: 14px 0 0;
  color: #34332f;
}

.service-link {
  margin-top: auto;
  padding-top: 30px;
  color: var(--ink);
  font-weight: 850;
}

.service-link::after {
  content: " ->";
  color: var(--mint-dark);
}

.contact .eyebrow {
  color: var(--mint);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.questions {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 70px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

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

.faq-list summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 48px 23px 0;
  font-size: 1.15rem;
  font-weight: 820;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  font-weight: 760;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--mint);
  color: var(--ink);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 630px;
  margin: 0;
  padding: 0 52px 24px 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.82fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  width: var(--content-width);
  margin: 0 auto 96px;
  padding: clamp(48px, 6vw, 88px) clamp(28px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
  border-radius: 28px;
}

.contact-actions {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.contact-line,
.contact-actions address {
  display: grid;
  gap: 7px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-style: normal;
}

.contact-line span,
.contact-actions address span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-line strong,
.contact-actions address strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.contact-line:hover strong,
.contact-line:focus-visible strong {
  color: var(--mint);
}

.contact img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
  border-radius: 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px 34px;
  width: var(--content-width);
  margin: 0 auto;
  padding: 26px 0;
  background: var(--paper);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  line-height: 1.25;
}

.footer-links {
  justify-content: center;
}

.footer-social {
  justify-content: flex-end;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-social a::after {
  display: none;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--cta-dark);
  border-color: var(--cta);
  background: var(--cta-soft);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero [data-reveal]:first-child {
  transition-delay: 90ms;
}

.hero [data-reveal]:last-child {
  transition-delay: 220ms;
}

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .brand-logo {
    height: 72px;
  }

  .site-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand {
    margin-right: auto;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.9rem;
    align-self: center;
    order: 2;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 16px) 28px 40px;
    background: var(--paper);
    color: var(--ink);
    font-size: 1.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 340ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  body.is-nav-open .site-nav {
    transform: translateX(0);
    box-shadow: -24px 0 60px rgba(17, 17, 15, 0.08);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    padding: 0 0 22px;
    margin: -12px 0 12px;
    border-bottom: 1px solid var(--line-strong);
  }

  .nav-brand-logo {
    height: 68px;
    width: auto;
  }

  .site-nav > a,
  .nav-group > summary {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.35rem;
    font-weight: 780;
    color: var(--ink);
  }

  .site-nav > a::after,
  .nav-group > summary::before {
    display: none;
  }

  .nav-group {
    border-bottom: 1px solid var(--line);
  }

  .nav-group > summary {
    border-bottom: 0;
    justify-content: space-between;
    display: flex;
  }

  .nav-group > summary::after {
    margin-left: auto;
    width: 9px;
    height: 9px;
  }

  .nav-menu {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 4px 0 14px 6px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    gap: 4px;
  }

  .nav-group[open] .nav-menu {
    transform: none;
  }

  .nav-menu a {
    padding: 12px 8px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    color: var(--muted);
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: var(--paper-deep);
    color: var(--ink);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    background: var(--paper);
  }

  .page-hero,
  .page-point-list,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 4.2rem;
  }

  .page-point-list {
    border-bottom: 0;
  }

  .page-point {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .page-cta {
    margin-right: auto;
    margin-left: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-claim,
  .section-heading h2,
  .contact h2 {
    font-size: 3.1rem;
  }

  .hero-visual {
    justify-self: center;
    width: min(680px, 100%);
    min-width: 0;
    margin-top: 34px;
    padding: 24px;
    background: transparent;
    border: 0;
  }

  .visual-rail {
    display: none;
  }

  .questions,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .offer-grid .service-panel {
    min-height: 300px;
  }

  .service-panel {
    min-height: 300px;
    border-bottom: 1px solid var(--line-strong);
  }

  .service-panel:nth-child(2n) {
    border-right: 0;
  }

  .service-panel:last-child {
    grid-column: 1 / -1;
  }

  .offer-grid .service-panel:last-child {
    grid-column: 1 / -1;
  }

  .contact img {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .site-header {
    min-height: var(--header-height);
    gap: 10px;
    padding: 10px 0;
  }

  .brand-logo {
    height: 64px;
  }

  .header-call {
    padding: 9px 11px;
    font-size: 0.85rem;
  }

  .site-nav {
    padding: calc(var(--header-height) + 12px) 22px 40px;
    font-size: 1.4rem;
  }

  .site-nav > a,
  .nav-group > summary {
    padding: 16px 2px;
    font-size: 1.2rem;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 11px 8px;
  }

  .button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 10px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .page-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-cta .button {
    width: 100%;
  }

  .hero,
  .section,
  .contact,
  .page-hero,
  .page-section {
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: 2.75rem;
    line-height: 1.02;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-claim,
  .section-heading h2,
  .contact h2 {
    font-size: 2.38rem;
    line-height: 1;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 12px;
  }

  .hero-signal {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-cta {
    width: var(--content-width);
    margin-right: auto;
    margin-bottom: 48px;
    margin-left: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

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

  .service-panel {
    padding: 24px 0 26px;
    min-height: 0;
    border-right: 0;
  }

  .offer-grid .service-panel {
    min-height: 0;
  }

  .service-panel:last-child,
  .offer-grid .service-panel:last-child {
    grid-column: auto;
  }

  .service-panel:hover {
    background: transparent;
    transform: none;
  }

  .service-panel h3 {
    font-size: 1.8rem;
  }

  .questions {
    gap: 34px;
  }

  summary {
    padding-right: 40px;
    font-size: 1.02rem;
  }

  details p {
    padding-right: 0;
  }

  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-right: calc((100vw - var(--content-width)) / 2);
    padding-left: calc((100vw - var(--content-width)) / 2);
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
}

@media (min-width: 981px) {
  :root {
    --content-width: 75%;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
