:root {
    --bg: #eaf4f2;
    --paper: #ffffff;
    --ink: #061319;
    --muted: #4e6870;
    --line: #c7dddc;
    --aqua: #00b7d4;
    --aqua-dark: #00718d;
    --sky: #83dfff;
    --deep-blue: #005f85;
    --logo-blue: #66cdf4;
    --coral: #f49aa4;
    --coral-dark: #d84f62;
    --star: #f6cf3f;
    --leaf: #58b95a;
    --violet: #6a57c8;
    --soft: #f7fbf8;
    --shadow: 0 18px 50px rgba(0, 87, 121, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--ink);
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1160px, calc(100% - 40px));
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(237, 246, 244, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.header-inner {
    position: relative;
    min-height: 84px;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 16px;
}

.brand,
.shop-link {
    display: flex;
    align-items: center;
}

.brand {
    justify-self: center;
    font-weight: 800;
}

.brand-logo {
    width: 172px;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
}

.main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 112px min(7vw, 90px) 48px;
    overflow: auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(234, 244, 242, .98)),
        radial-gradient(circle at 82% 18%, rgba(0, 183, 212, .16), transparent 28%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}

.menu-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    color: var(--ink);
    text-align: left;
}

.menu-kicker {
    margin-bottom: 22px;
    color: var(--aqua-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.menu-links {
    display: grid;
    gap: 10px;
}

.menu-signature {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.menu-signature strong {
    font-size: 24px;
}

.menu-signature p {
    margin: 8px 0 0;
    color: var(--muted);
}

.main-nav a:hover,
.shop-link:hover {
    color: var(--aqua-dark);
}

.main-nav a[aria-current="page"],
.shop-link[aria-current="page"] {
    color: var(--aqua-dark);
}

.nav-toggle {
    justify-self: start;
    display: grid;
    width: 48px;
    height: 48px;
    align-content: center;
    border: 1px solid var(--aqua);
    border-radius: 999px;
    background: white;
    color: var(--deep-blue);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px auto;
    border-radius: 999px;
    background: currentColor;
    transition: transform .24s ease, opacity .2s ease;
}

.shop-link {
    justify-self: end;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--aqua);
    border-radius: 999px;
    background: var(--aqua);
    color: white;
    font-weight: 800;
}

.site-header.is-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-header.is-open .nav-toggle {
    background: var(--aqua);
    color: white;
}

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

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

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

.main-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.04;
    text-align: left;
    transform: translateY(12px);
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease, color .2s ease;
}

.main-nav a span {
    color: var(--aqua-dark);
    font-size: 14px;
}

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

.site-header.is-open .main-nav a {
    opacity: 1;
    transform: translateY(0);
}

.site-header.is-open .main-nav a:nth-child(1) {
    transition-delay: .12s;
}

.site-header.is-open .main-nav a:nth-child(2) {
    transition-delay: .18s;
}

.site-header.is-open .main-nav a:nth-child(3) {
    transition-delay: .24s;
}

.site-header.is-open .main-nav a:nth-child(4) {
    transition-delay: .30s;
}

.site-header.is-open .main-nav a:nth-child(5) {
    transition-delay: .36s;
}

.site-header.is-open .main-nav a:nth-child(6) {
    transition-delay: .42s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--aqua);
    border-radius: var(--radius);
    background: var(--aqua);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.btn:hover {
    background: var(--aqua-dark);
    border-color: var(--aqua-dark);
}

.btn-outline {
    background: rgba(255, 255, 255, .84);
    color: var(--ink);
    border-color: rgba(255, 255, 255, .84);
}

.btn-outline:hover {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--paper);
}

.btn-small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
}

.eyebrow {
    display: inline-flex;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: end;
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 19, 25, .84) 0%, rgba(0, 95, 133, .58) 42%, rgba(0, 183, 212, .18) 100%),
        url("/assets/img/atelier-reliefs-services.png") center / cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0 84px;
    color: white;
}

.hero-content h1 {
    max-width: 820px;
    margin: 18px 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1;
    letter-spacing: 0;
}

.hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, .86);
    font-size: 19px;
    line-height: 1.7;
}

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

.section,
.page {
    padding: 76px 0;
}

.intro-band {
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 58px;
    align-items: start;
}

.intro-grid h2,
.section-title h2,
.page-head h1,
.contact-copy h1 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-grid p,
.section-title p,
.page-head p,
.contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.section-title,
.page-head {
    max-width: 780px;
    margin-bottom: 34px;
}

.feature-grid,
.product-grid,
.service-grid,
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card,
.product-card,
.service-card,
.steps article,
.form,
.info-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.feature-card {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.feature-card span {
    font-weight: 900;
    opacity: .78;
}

.feature-card h3,
.product-card h3,
.service-card h3,
.steps h3 {
    margin: 0 0 10px;
    font-size: 23px;
    line-height: 1.18;
}

.feature-card p,
.product-card p,
.service-card p,
.steps p {
    margin: 0;
    color: inherit;
    line-height: 1.6;
}

.tone-terracotta {
    background: var(--coral);
    color: var(--ink);
}

.tone-sage {
    background: var(--aqua);
}

.tone-ink {
    background: var(--deep-blue);
}

.tone-gold {
    background: var(--star);
    color: var(--ink);
}

.process-section {
    background: var(--bg);
}

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

.steps article {
    padding: 26px;
}

.steps strong {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
}

.product-card,
.service-card,
.info-panel {
    padding: 24px;
}

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

.product-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
}

.product-media {
    height: 150px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: var(--radius);
    background: var(--product-tone, var(--aqua));
    display: grid;
    place-items: center;
    color: white;
    font-size: 44px;
    font-weight: 900;
}

.product-card p,
.service-card p,
.steps p {
    color: var(--muted);
}

.product-card strong,
.service-card strong {
    margin: auto 0 18px;
    padding-top: 18px;
    font-size: 18px;
}

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

.service-card {
    min-height: 240px;
}

.service-card .tag {
    display: inline-flex;
    margin-bottom: 36px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 52px;
    align-items: start;
}

.contact-list {
    margin-top: 34px;
    display: grid;
    gap: 12px;
}

.contact-list p {
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.form {
    padding: 30px;
}

label {
    display: block;
    margin: 16px 0 8px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
    padding: 14px 15px;
    font: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(30, 182, 208, .16);
}

.form .btn {
    margin-top: 20px;
}

.form-status {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.5;
}

.content-stack {
    display: grid;
    gap: 18px;
}

.info-panel h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.info-panel p,
.info-panel li {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    background: var(--ink);
    color: white;
}

.footer-main {
    padding: 48px 0;
    display: grid;
    grid-template-columns: 1.1fr .65fr .65fr;
    gap: 46px;
    align-items: start;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 18px;
}

.footer-about p {
    max-width: 420px;
}

.footer-identity {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-weight: 700;
}

.footer-group h4 {
    margin-top: 0;
    color: white;
}

.site-footer p,
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .74);
    line-height: 1.6;
}

.site-footer a {
    margin: 8px 0;
}

.site-footer a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 20px;
    color: rgba(255, 255, 255, .66);
    text-align: center;
    font-size: 14px;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.login-card,
.admin-panel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.login-card {
    width: min(430px, calc(100% - 30px));
    padding: 32px;
}

.login-card small {
    display: block;
    margin-top: 16px;
    color: var(--muted);
}

.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.admin-sidebar {
    background: var(--ink);
    color: white;
    padding: 24px;
}

.admin-brand {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 900;
}

.admin-sidebar a {
    display: block;
    margin-bottom: 8px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .74);
}

.admin-sidebar a:hover {
    background: rgba(255, 255, 255, .08);
    color: white;
}

.admin-main {
    padding: 36px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

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

.big {
    color: var(--ink);
    font-size: 38px;
    font-weight: 900;
}

.admin-panel {
    margin-top: 28px;
    padding: 28px;
}

.home-page .intro-band {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(237, 246, 244, .98)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 182, 208, .10) 18px 19px);
}

.home-intro {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(237, 246, 244, .98)),
        repeating-linear-gradient(45deg, transparent 0 18px, rgba(30, 182, 208, .10) 18px 19px);
    border-bottom: 1px solid var(--line);
}

.home-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

.home-intro h2,
.home-split h2,
.home-method h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.home-intro-copy {
    display: grid;
    gap: 18px;
}

.home-intro-copy p,
.home-split p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.home-offers {
    background: white;
}

.home-offer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 18px;
}

.home-offer-card {
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 87, 121, .10);
}

.home-offer-card.primary {
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 198, 74, .36), transparent 34%),
        linear-gradient(135deg, var(--deep-blue), var(--aqua));
    color: white;
}

.home-offer-card span {
    color: var(--aqua-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-offer-card.primary span {
    color: rgba(255, 255, 255, .78);
}

.home-offer-card h3 {
    margin: auto 0 12px;
    font-size: 30px;
    line-height: 1.08;
}

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

.home-offer-card.primary p {
    color: rgba(255, 255, 255, .78);
}

.home-split {
    background: #edf6f4;
}

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

.home-split-panel {
    min-height: 360px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

.home-split-panel.dark {
    background: var(--ink);
    color: white;
}

.home-split-panel.dark p {
    color: rgba(255, 255, 255, .72);
}

.home-split-panel .btn {
    margin-top: 28px;
}

.home-method {
    background: white;
}

.home-method-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.home-method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-method-steps article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 87, 121, .08);
}

.home-method-steps strong {
    display: block;
    margin-bottom: 48px;
    color: var(--coral-dark);
    font-size: 24px;
}

.home-method-steps h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.home-method-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-final {
    background: #f5fbfa;
}

.shop-page {
    background: var(--ink);
    color: white;
}

.shop-page .site-header {
    background: rgba(16, 24, 32, .94);
    border-color: rgba(255, 255, 255, .12);
}

.shop-page .nav-toggle {
    border-color: rgba(255, 255, 255, .18);
}

.shop-hero {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding: 76px 0;
    background:
        radial-gradient(circle at 78% 18%, rgba(30, 182, 208, .34), transparent 32%),
        linear-gradient(135deg, var(--ink) 0%, var(--deep-blue) 52%, var(--aqua-dark) 100%);
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center;
}

.shop-copy h1 {
    margin: 16px 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
}

.shop-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, .78);
    font-size: 19px;
    line-height: 1.7;
}

.redirect-note {
    margin-top: 20px;
    font-weight: 800;
}

.sumup-panel {
    min-height: 470px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    backdrop-filter: blur(20px);
}

.panel-topline {
    display: inline-flex;
    margin-bottom: 30px;
    color: var(--sky);
    font-weight: 900;
    text-transform: uppercase;
}

.sumup-window {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.sumup-window div {
    min-height: 128px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(181, 205, 235, .82));
}

.sumup-window div:first-child {
    grid-column: 1 / -1;
    min-height: 170px;
    background: linear-gradient(135deg, var(--star), #fff8d6);
}

.sumup-panel strong {
    display: block;
    font-size: 32px;
}

.sumup-panel p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.shop-categories {
    color: var(--ink);
}

.compact-products .product-card {
    min-height: 280px;
}

.prestations-page {
    background: linear-gradient(180deg, #f4fbfa 0%, #edf6f4 48%, #ffffff 100%);
}

.prestations-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 84px;
    background:
        radial-gradient(circle at 18% 22%, rgba(145, 221, 255, .62), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(243, 154, 162, .34), transparent 24%),
        linear-gradient(135deg, #ffffff 0%, #edf6f4 48%, #d9f2f7 100%);
}

.prestations-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -42% auto;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(30, 182, 208, .16);
    border-radius: 50%;
}

.prestations-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 56px;
    align-items: center;
}

.prestations-hero-copy h1 {
    max-width: 780px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.prestations-hero-copy p {
    max-width: 660px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.prestations-visual {
    position: relative;
    min-height: 430px;
}

.visual-card {
    position: absolute;
    width: 220px;
    min-height: 150px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 28px 80px rgba(0, 87, 121, .16);
    backdrop-filter: blur(18px);
}

.visual-card.main {
    top: 22px;
    left: 32px;
    width: 270px;
    min-height: 190px;
    background: linear-gradient(135deg, var(--deep-blue), var(--aqua));
    color: white;
}

.visual-card:nth-child(2) {
    right: 6px;
    top: 180px;
}

.visual-card:nth-child(3) {
    left: 0;
    bottom: 18px;
    background: #fff8d6;
}

.visual-card span {
    display: block;
    margin-bottom: 42px;
    color: var(--coral-dark);
    font-weight: 900;
}

.visual-card.main span {
    color: rgba(255, 255, 255, .76);
}

.visual-card strong {
    display: block;
    font-size: 30px;
}

.centered-title {
    margin-inline: auto;
    text-align: center;
}

.centered-title p {
    margin-inline: auto;
}

.premium-services {
    grid-template-columns: repeat(4, 1fr);
}

.prestations-page .service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 87, 121, .12);
    border-radius: 22px;
    background: white;
    box-shadow: 0 24px 70px rgba(0, 87, 121, .10);
}

.prestations-page .service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--aqua), var(--coral), var(--star));
}

.prestations-page .service-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.prestations-page .service-card .tag {
    margin-bottom: 34px;
}

.service-card-bottom {
    display: grid;
    gap: 16px;
}

.prestations-flow {
    background: var(--ink);
    color: white;
}

.flow-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.flow-grid h2 {
    margin: 14px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.flow-steps {
    display: grid;
    gap: 16px;
}

.flow-steps article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.flow-steps span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--aqua);
    color: white;
    font-weight: 900;
}

.flow-steps h3 {
    margin: 0 0 6px;
}

.flow-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

.prestations-cta {
    background: white;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 198, 74, .24), transparent 30%),
        linear-gradient(135deg, #ffffff, #edf6f4);
    box-shadow: var(--shadow);
}

.cta-panel h2 {
    margin: 12px 0;
    font-size: clamp(30px, 4vw, 48px);
}

.cta-panel p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact-page {
    background: #f5fbfa;
}

.contact-hero {
    padding: 90px 0 72px;
    background:
        radial-gradient(circle at 18% 18%, rgba(30, 182, 208, .30), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(243, 154, 162, .30), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #edf6f4 54%, #d9f2f7 100%);
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: end;
}

.contact-copy h1 {
    max-width: 820px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.contact-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.contact-info-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .74);
    border-radius: 24px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 28px 80px rgba(0, 87, 121, .14);
    backdrop-filter: blur(16px);
}

.contact-info-panel h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.contact-info-panel p {
    margin: 10px 0;
    color: var(--muted);
    line-height: 1.55;
}

.contact-main {
    background: white;
}

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

.contact-sidebar {
    display: grid;
    gap: 16px;
}

.contact-sidebar article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 18px 55px rgba(0, 87, 121, .08);
}

.contact-sidebar span {
    display: inline-flex;
    margin-bottom: 38px;
    color: var(--aqua-dark);
    font-weight: 900;
}

.contact-sidebar h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

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

.contact-page .form {
    border: 1px solid rgba(0, 87, 121, .12);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 87, 121, .14);
}

.form-head {
    margin-bottom: 12px;
}

.form-head h2 {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 46px);
}

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

.contact-checklist {
    background: #edf6f4;
}

.checklist-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 36px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
}

.checklist-panel h2 {
    margin: 12px 0 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.checklist-panel ul {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.professionnels-page {
    background: #f5fbfa;
}

.pro-hero {
    padding: 92px 0 82px;
    background:
        radial-gradient(circle at 12% 18%, rgba(30, 182, 208, .30), transparent 28%),
        radial-gradient(circle at 86% 24%, rgba(245, 198, 74, .34), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #eef8f7 50%, #d9f2f7 100%);
}

.pro-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
    align-items: center;
}

.pro-hero h1 {
    max-width: 820px;
    margin: 16px 0;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
}

.pro-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
}

.pro-hero-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .54)),
        radial-gradient(circle at 100% 0%, rgba(243, 154, 162, .30), transparent 38%);
    box-shadow: 0 30px 80px rgba(0, 87, 121, .16);
    backdrop-filter: blur(16px);
}

.pro-hero-panel span {
    display: inline-flex;
    margin-bottom: 70px;
    color: var(--aqua-dark);
    font-weight: 900;
    text-transform: uppercase;
}

.pro-hero-panel strong {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.05;
}

.pro-hero-panel p {
    margin: 0;
    font-size: 16px;
}

.pro-usecases {
    background: white;
}

.pro-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pro-card {
    min-height: 300px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 87, 121, .10);
}

.pro-card:nth-child(2) {
    background: #e8faff;
}

.pro-card:nth-child(3) {
    background: #fff8d6;
}

.pro-card:nth-child(4) {
    background: #fff0f2;
}

.pro-card span {
    display: inline-flex;
    margin-bottom: 54px;
    color: var(--deep-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.pro-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.16;
}

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

.pro-process {
    background: var(--ink);
    color: white;
}

.pro-process-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: start;
}

.pro-process h2 {
    margin: 14px 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
}

.pro-process p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.pro-process-list {
    display: grid;
    gap: 16px;
}

.pro-process-list article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
}

.pro-process-list strong {
    color: var(--sky);
    font-size: 22px;
}

.pro-process-list h3 {
    margin: 0 0 8px;
}

.pro-process-list p {
    margin: 0;
}

.pro-benefits {
    background: #edf6f4;
}

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

.benefits-grid article {
    padding: 28px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
}

.benefits-grid h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

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

.pro-cta {
    background: white;
}

.faq-page {
    background: #fff8d6;
}

.faq-page .content-stack {
    max-width: 920px;
    margin: auto;
}

.faq-page .page-head {
    margin-inline: auto;
    text-align: center;
}

.faq-page .info-panel {
    box-shadow: none;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    padding: 28px 0;
}

.faq-page .info-panel h2 {
    position: relative;
    padding-right: 42px;
}

.faq-page .info-panel h2::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--aqua-dark);
}

.legal-page {
    background: var(--soft);
}

.legal-page .page-head,
.legal-page .content-stack {
    max-width: 850px;
    margin-inline: auto;
}

.legal-page .info-panel {
    box-shadow: none;
    border-color: var(--line);
    background: white;
}

@media (max-width: 980px) {
    .hero {
        min-height: 680px;
    }

    .intro-grid,
    .home-intro-grid,
    .home-method-grid,
    .contact-grid,
    .contact-hero-grid,
    .contact-layout,
    .checklist-panel,
    .shop-hero-grid,
    .prestations-hero-grid,
    .flow-grid,
    .pro-hero-grid,
    .pro-process-grid,
    .footer-main,
    .admin-layout,
    .admin-metrics {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .product-grid,
    .service-grid,
    .premium-services,
    .home-offer-grid,
    .home-split-grid,
    .home-method-steps,
    .form-grid,
    .pro-card-grid,
    .benefits-grid,
    .steps,
    .professionnels-page .content-stack {
        grid-template-columns: 1fr 1fr;
    }

    .prestations-visual {
        min-height: 360px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        grid-template-columns: 64px 1fr 92px;
        min-height: 76px;
    }

    .brand-logo {
        width: 140px;
        max-height: 58px;
    }

    .shop-link {
        min-height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .main-nav {
        padding: 96px 14px 36px;
    }

    .menu-kicker,
    .menu-signature {
        text-align: left;
    }

    .main-nav a {
        grid-template-columns: 34px 1fr;
        gap: 12px;
        padding: 14px 0;
        font-size: clamp(28px, 12vw, 48px);
    }

    .hero {
        min-height: 640px;
    }

    .hero-content {
        padding: 72px 0 56px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .feature-grid,
    .product-grid,
    .service-grid,
    .premium-services,
    .home-offer-grid,
    .home-split-grid,
    .home-method-steps,
    .form-grid,
    .pro-card-grid,
    .benefits-grid,
    .steps,
    .professionnels-page .content-stack {
        grid-template-columns: 1fr;
    }

    .section,
    .page {
        padding: 56px 0;
    }

    .shop-copy h1 {
        font-size: 40px;
    }

    .sumup-panel {
        min-height: auto;
    }

    .prestations-hero {
        padding: 64px 0 56px;
    }

    .pro-hero {
        padding: 64px 0 56px;
    }

    .prestations-hero-copy h1,
    .pro-hero h1 {
        font-size: 42px;
    }

    .prestations-visual {
        min-height: auto;
        display: grid;
        gap: 12px;
    }

    .visual-card,
    .visual-card.main,
    .visual-card:nth-child(2),
    .visual-card:nth-child(3) {
        position: static;
        width: 100%;
        min-height: 120px;
    }

    .flow-steps article {
        grid-template-columns: 1fr;
    }

    .pro-process-list article {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 24px;
    }
}
