:root {
    --ink: #132238;
    --ink-soft: #4d5c6f;
    --navy: #142a46;
    --navy-deep: #0d1e34;
    --cream: #fffaf0;
    --paper: #ffffff;
    --sand: #f4eee3;
    --line: #ded8cc;
    --yellow: #ffc94a;
    --yellow-soft: #fff0ba;
    --coral: #ff765f;
    --coral-soft: #ffe0da;
    --mint: #58cdb3;
    --mint-soft: #d9f5ed;
    --blue-soft: #dfeaf8;
    --shadow: 0 24px 70px rgba(23, 36, 54, .12);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 13px;
    --container: 1180px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
summary,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 44px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 82px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 240, .88);
    backdrop-filter: blur(18px);
    transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: rgba(19, 34, 56, .09);
    box-shadow: 0 10px 30px rgba(20, 42, 70, .05);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    position: relative;
    display: grid;
    overflow: hidden;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 12px;
    background: var(--ink);
    color: var(--cream);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .15);
}

.brand-mark::after {
    position: absolute;
    right: -9px;
    bottom: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--yellow);
    content: "";
}

.brand-mark span {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
}

.brand-name {
    letter-spacing: .12em;
    font-size: 18px;
    font-weight: 900;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding-block: 9px;
    color: #304056;
    font-size: 14px;
    font-weight: 720;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px 11px 19px;
    border-radius: 100px;
    background: var(--ink);
    color: white;
    font-size: 14px;
    font-weight: 750;
    transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
    background: #213a5c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: transparent;
    cursor: pointer;
}

.menu-label {
    font-size: 13px;
    font-weight: 750;
}

.menu-icon {
    display: flex;
    width: 21px;
    height: 16px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-icon i {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 22px;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 780;
    line-height: 1.2;
    transition: transform .2s var(--ease), box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--coral);
    color: #1f2530;
    box-shadow: 0 13px 25px rgba(255, 118, 95, .24);
}

.button-primary:hover {
    background: #ff856f;
    box-shadow: 0 17px 33px rgba(255, 118, 95, .32);
}

.button-quiet {
    background: rgba(255, 255, 255, .66);
    box-shadow: inset 0 0 0 1px rgba(19, 34, 56, .14);
}

.button-light {
    background: var(--yellow);
    color: var(--navy-deep);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #a34e3e;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: var(--yellow);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 0;
    background:
        radial-gradient(circle at 12% 25%, rgba(255, 201, 74, .22), transparent 26%),
        radial-gradient(circle at 89% 18%, rgba(88, 205, 179, .16), transparent 24%),
        var(--cream);
}

.hero::before {
    position: absolute;
    top: 12%;
    left: -2%;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(19, 34, 56, .08);
    border-radius: 50%;
    content: "";
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    top: 60px;
    right: 8%;
    width: 22px;
    height: 22px;
    background: var(--coral);
}

.hero-orb-two {
    top: 57%;
    left: 48%;
    width: 13px;
    height: 13px;
    background: var(--mint);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
    gap: clamp(42px, 7vw, 90px);
}

.hero-copy {
    min-width: 0;
    padding-bottom: 75px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--navy-deep);
    font-size: clamp(47px, 5.5vw, 76px);
    font-weight: 860;
    letter-spacing: -.055em;
    line-height: 1.01;
}

.hero h1 span {
    position: relative;
    display: inline-block;
    z-index: 0;
}

.hero h1 span::after {
    position: absolute;
    z-index: -1;
    right: -5px;
    bottom: .04em;
    left: -5px;
    height: .26em;
    border-radius: 8px 2px;
    background: var(--yellow);
    content: "";
    transform: rotate(-1.4deg);
}

.hero-lead {
    max-width: 620px;
    margin: 27px 0 0;
    color: var(--ink-soft);
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.7;
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 27px 0 0;
    padding: 0;
    color: #44536a;
    list-style: none;
    font-size: 13px;
    font-weight: 690;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-points span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint-soft);
    color: #167961;
    font-size: 11px;
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 580px;
    padding: 66px 0 70px;
}

.visual-glow {
    position: absolute;
    top: 8%;
    right: 3%;
    width: 87%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 201, 74, .55), rgba(255, 224, 218, .7) 48%, rgba(217, 245, 237, .85));
    filter: blur(2px);
}

.visual-glow::before,
.visual-glow::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.visual-glow::before {
    top: -12px;
    right: 18%;
    width: 32px;
    height: 32px;
    border: 7px solid var(--paper);
}

.visual-glow::after {
    right: -18px;
    bottom: 28%;
    width: 58px;
    height: 58px;
    background: repeating-linear-gradient(45deg, rgba(19, 34, 56, .14) 0 2px, transparent 2px 7px);
}

.shop-window {
    position: relative;
    z-index: 2;
    width: min(100%, 480px);
    margin: 0 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(19, 34, 56, .1);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: 0 40px 90px rgba(18, 36, 60, .2);
    transform: rotate(1.6deg);
}

.window-bar {
    display: grid;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #e9edf2;
    color: #39465a;
    font-size: 12px;
    font-weight: 800;
    grid-template-columns: 1fr auto 1fr;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8dfe8;
}

.window-dots i:first-child { background: var(--coral); }
.window-dots i:nth-child(2) { background: var(--yellow); }
.window-dots i:nth-child(3) { background: var(--mint); }

.live-pill {
    justify-self: end;
    padding: 4px 9px;
    border-radius: 100px;
    background: var(--mint-soft);
    color: #17715c;
    font-size: 9px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.live-pill i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 4px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 4px rgba(88, 205, 179, .16);
}

.window-body {
    padding: 23px;
    background: #f7f8fb;
}

.metric-card {
    border: 1px solid #edf0f4;
    border-radius: 16px;
    background: white;
}

.metric-main {
    display: flex;
    min-height: 120px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
}

.metric-card span {
    display: block;
    color: #69768a;
    font-size: 10px;
    font-weight: 700;
}

.metric-card strong {
    display: block;
    margin-top: 7px;
    color: var(--navy-deep);
    font-size: 30px;
    line-height: 1;
}

.mini-chart {
    display: flex;
    width: 150px;
    height: 70px;
    align-items: flex-end;
    gap: 7px;
}

.mini-chart i {
    display: block;
    flex: 1;
    border-radius: 4px 4px 1px 1px;
    background: var(--yellow);
}

.mini-chart i:nth-child(6),
.mini-chart i:nth-child(7) {
    background: var(--coral);
}

.metric-row {
    display: grid;
    margin-top: 12px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric-card.small {
    padding: 15px 17px;
    background: var(--mint-soft);
}

.metric-card.small.peach {
    background: var(--coral-soft);
}

.metric-card.small strong {
    font-size: 22px;
}

.order-card {
    margin-top: 12px;
    padding: 17px 18px 14px;
    border-radius: 16px;
    background: var(--navy);
    color: white;
}

.order-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 750;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 100px;
    background: rgba(88, 205, 179, .16);
    color: #90ead5;
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.flow-line {
    display: flex;
    align-items: center;
    margin: 20px 4px 7px;
}

.flow-line i {
    height: 2px;
    flex: 1;
    background: #43536a;
}

.flow-step {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border: 2px solid #54647a;
    border-radius: 50%;
    color: #8f9aac;
    font-size: 8px;
    font-weight: 800;
}

.flow-step.done {
    border-color: var(--mint);
    background: var(--mint);
    color: var(--navy);
}

.flow-step.active {
    border-color: var(--yellow);
    color: var(--yellow);
    box-shadow: 0 0 0 5px rgba(255, 201, 74, .1);
}

.flow-labels {
    display: flex;
    justify-content: space-between;
    color: #aab5c4;
    font-size: 7px;
}

.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 205px;
    padding: 12px 14px;
    border: 1px solid rgba(19, 34, 56, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 44px rgba(23, 36, 54, .16);
    backdrop-filter: blur(10px);
    animation: float 5s ease-in-out infinite;
}

.float-card-left {
    bottom: 77px;
    left: -28px;
}

.float-card-right {
    top: 105px;
    right: -30px;
    animation-delay: -2.5s;
}

.float-card small,
.float-card strong {
    display: block;
    line-height: 1.35;
}

.float-card small {
    color: #738095;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.float-card strong {
    margin-top: 2px;
    font-size: 10px;
}

.float-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 900;
}

.float-icon.mint { background: var(--mint-soft); color: #17846a; }
.float-icon.yellow { background: var(--yellow-soft); color: #9c6d00; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.expertise-strip {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 28px;
    border: 1px solid rgba(19, 34, 56, .1);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, .72);
    color: #4c5a6d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.expertise-strip i {
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    border-radius: 50%;
    background: var(--coral);
}

.section {
    padding: clamp(88px, 10vw, 142px) 0;
}

.services {
    background: var(--paper);
}

.section-heading {
    margin-bottom: 58px;
}

.section-heading h2,
.automation h2,
.about h2,
.contact h2,
.legal-hero h1 {
    margin: 0;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 850;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.section-heading h2 span {
    color: #758398;
}

.split-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 70px;
}

.split-heading > p,
.centered > p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.centered {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

.centered > p {
    margin-top: 20px;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 610px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.service-card:hover {
    box-shadow: 0 24px 50px rgba(23, 36, 54, .12);
    transform: translateY(-7px);
}

.service-shop { background: var(--yellow-soft); }
.service-auto { background: var(--mint-soft); }
.service-web { background: var(--coral-soft); }

.service-number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(19, 34, 56, .26);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

.service-icon {
    display: grid;
    width: 69px;
    height: 69px;
    margin-bottom: 38px;
    place-items: center;
    border-radius: 19px;
    background: rgba(255, 255, 255, .75);
    box-shadow: 0 8px 24px rgba(23, 36, 54, .07);
}

.service-icon svg {
    width: 37px;
    fill: none;
    stroke: var(--ink);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.card-kicker {
    margin: 0 0 12px;
    color: rgba(19, 34, 56, .62);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0;
    font-size: clamp(25px, 2.4vw, 32px);
    letter-spacing: -.035em;
    line-height: 1.15;
}

.service-card > p:not(.card-kicker) {
    margin: 19px 0 0;
    color: #46566b;
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 27px 0 25px;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 670;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.check-list li::before {
    content: "✓";
    font-weight: 900;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 820;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.automation {
    position: relative;
    overflow: hidden;
    background: var(--navy-deep);
    color: white;
}

.automation::before {
    position: absolute;
    top: -340px;
    left: -310px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 75px rgba(255, 255, 255, .018), 0 0 0 150px rgba(255, 255, 255, .012);
}

.automation-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .86fr) minmax(450px, 1.14fr);
    gap: clamp(55px, 8vw, 105px);
}

.automation-copy > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: #b9c3d0;
    font-size: 17px;
}

.outcome-list {
    display: grid;
    gap: 0;
    margin: 35px 0 38px;
}

.outcome-list > div {
    display: grid;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    grid-template-columns: 42px 1fr;
    gap: 12px;
}

.outcome-list > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.outcome-list > div > span {
    color: var(--mint);
    font-size: 11px;
    font-weight: 850;
}

.outcome-list p {
    margin: 0;
    color: #aeb9c7;
    font-size: 13px;
}

.outcome-list strong {
    display: block;
    margin-bottom: 2px;
    color: white;
    font-size: 15px;
}

.workflow-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: #f6f8fb;
    box-shadow: 0 45px 90px rgba(0, 0, 0, .28);
    color: var(--ink);
}

.workflow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid #e2e7ee;
    background: white;
    font-size: 12px;
}

.workflow-head > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.workflow-head > span {
    padding: 4px 9px;
    border-radius: 100px;
    background: var(--mint-soft);
    color: #15735c;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px var(--mint-soft);
}

.workflow-body {
    padding: 27px;
}

.workflow-item {
    display: grid;
    align-items: center;
    padding: 17px;
    border: 1px solid #e2e7ee;
    border-radius: 17px;
    background: white;
    box-shadow: 0 9px 24px rgba(23, 36, 54, .06);
    grid-template-columns: 48px 1fr 32px;
    gap: 14px;
}

.workflow-symbol {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border-radius: 13px;
    font-size: 10px;
    font-weight: 900;
}

.shop-symbol { background: var(--yellow-soft); }
.data-symbol { background: var(--mint-soft); }

.workflow-item small,
.workflow-item strong,
.workflow-item p {
    display: block;
}

.workflow-item small {
    color: #8a96a6;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.workflow-item strong {
    margin-top: 2px;
    font-size: 13px;
}

.workflow-item p {
    margin: 2px 0 0;
    color: #738095;
    font-size: 10px;
}

.workflow-ok {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint-soft);
    color: #14765e;
    font-size: 12px;
    font-weight: 900;
}

.workflow-connector {
    position: relative;
    display: flex;
    width: 2px;
    height: 46px;
    align-items: center;
    margin-left: 39px;
    background: #cbd4df;
}

.workflow-connector i {
    position: absolute;
    bottom: -7px;
    left: -5px;
    color: #7f8ca0;
    font-size: 11px;
    font-style: normal;
}

.workflow-connector span {
    position: absolute;
    left: 17px;
    width: max-content;
    padding: 3px 8px;
    border-radius: 100px;
    background: #e9edf3;
    color: #7b8799;
    font-size: 8px;
    font-weight: 750;
}

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

.workflow-split > div {
    display: grid;
    padding: 15px;
    border: 1px solid #e2e7ee;
    border-radius: 15px;
    background: white;
    grid-template-columns: 32px 1fr;
}

.workflow-split > div > span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-soft);
    color: #365f92;
    font-weight: 850;
    grid-row: span 2;
}

.workflow-split small {
    color: #8a96a6;
    font-size: 7px;
    font-weight: 800;
    text-transform: uppercase;
}

.workflow-split strong {
    font-size: 10px;
}

.workflow-complete {
    display: grid;
    align-items: center;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(88, 205, 179, .45);
    border-radius: 15px;
    background: var(--mint-soft);
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
}

.workflow-complete > span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: #0f4538;
    font-weight: 900;
}

.workflow-complete p {
    margin: 0;
    color: #477568;
    font-size: 9px;
}

.workflow-complete strong {
    display: block;
    color: #173d35;
    font-size: 11px;
}

.workflow-complete > small {
    color: #3f7567;
    font-size: 9px;
    font-weight: 800;
}

.packages {
    background: #f4efe5;
}

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

.package-card {
    position: relative;
    min-height: 340px;
    padding: 32px;
    border: 1px solid rgba(19, 34, 56, .1);
    border-radius: 24px;
    background: var(--paper);
    box-shadow: 0 12px 35px rgba(23, 36, 54, .05);
}

.package-card.featured {
    background: var(--yellow);
    transform: rotate(-1deg);
}

.package-card.featured::after {
    position: absolute;
    top: -9px;
    right: 28px;
    width: 60px;
    height: 24px;
    background: rgba(255, 255, 255, .67);
    content: "";
    transform: rotate(5deg);
}

.package-tag {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 100px;
    background: var(--sand);
    color: #657083;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.featured .package-tag {
    background: rgba(255, 255, 255, .6);
    color: #66501b;
}

.package-card h3 {
    margin: 28px 0 12px;
    font-size: 29px;
    letter-spacing: -.035em;
}

.package-card p {
    margin: 0;
    color: var(--ink-soft);
}

.package-result {
    position: absolute;
    right: 32px;
    bottom: 30px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-top: 17px;
    border-top: 1px solid rgba(19, 34, 56, .13);
    font-size: 12px;
    font-weight: 800;
}

.package-result i {
    font-style: normal;
}

.website-note {
    display: grid;
    align-items: center;
    margin-top: 20px;
    padding: 24px 27px;
    border: 1px solid rgba(19, 34, 56, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .7);
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 18px;
}

.website-note-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: var(--coral-soft);
    color: #9a493d;
    font-weight: 900;
}

.website-note strong {
    display: block;
    font-size: 15px;
}

.website-note p {
    margin: 3px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.website-note .text-link {
    margin: 0;
    white-space: nowrap;
}

.process {
    background: var(--paper);
}

.process-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 245px;
    padding: 0 28px;
    border-left: 1px solid var(--line);
}

.process-list li:last-child {
    border-right: 1px solid var(--line);
}

.process-list li > span {
    display: grid;
    width: 47px;
    height: 47px;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: #7b6850;
    font-size: 11px;
    font-weight: 850;
}

.process-list li:nth-child(2) > span { background: var(--yellow-soft); color: #805c00; }
.process-list li:nth-child(3) > span { background: var(--mint-soft); color: #176e59; }
.process-list li:nth-child(4) > span { background: var(--coral-soft); color: #91483c; }

.process-list h3 {
    margin: 60px 0 9px;
    font-size: 22px;
    letter-spacing: -.025em;
}

.process-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(60px, 9vw, 120px);
}

.about-visual {
    position: relative;
    min-height: 550px;
}

.about-shape {
    position: absolute;
    border-radius: 42% 58% 58% 42% / 45% 42% 58% 55%;
}

.shape-one {
    inset: 20px 30px 80px 10px;
    background: var(--yellow);
    transform: rotate(-7deg);
}

.shape-two {
    right: 0;
    bottom: 25px;
    width: 180px;
    height: 180px;
    background: var(--mint);
    transform: rotate(17deg);
}

.about-brand-card {
    position: absolute;
    top: 72px;
    right: 57px;
    bottom: 90px;
    left: 42px;
    display: flex;
    padding: 43px;
    border-radius: 28px;
    background: var(--navy-deep);
    box-shadow: 0 35px 70px rgba(23, 36, 54, .22);
    color: white;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(2.5deg);
}

.brand-mark-large {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: white;
    color: var(--navy-deep);
}

.brand-mark-large span {
    font-size: 26px;
}

.about-brand-card p {
    margin: 0;
    font-size: clamp(35px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.about-brand-card strong {
    color: var(--yellow);
}

.about-note {
    position: absolute;
    right: 8px;
    bottom: 65px;
    padding: 17px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

.about-note span,
.about-note strong {
    display: block;
}

.about-note span {
    color: #a54e3f;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-note strong {
    margin-top: 3px;
    font-size: 12px;
}

.about-copy > p:not(.eyebrow) {
    margin: 23px 0 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.about-values {
    display: grid;
    margin-top: 35px;
    grid-template-columns: 1fr 1fr;
    gap: 13px 22px;
}

.about-values span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 760;
}

.about-values i {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--mint-soft);
    color: #17705b;
    font-size: 11px;
    font-style: normal;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: clamp(55px, 9vw, 120px);
}

.faq-intro h2 {
    margin: 0;
    font-size: clamp(38px, 4.5vw, 56px);
    letter-spacing: -.045em;
}

.faq-intro > p:not(.eyebrow) {
    margin: 20px 0 26px;
    color: var(--ink-soft);
}

.faq-intro .text-link {
    margin-top: 0;
}

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

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

.accordion summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 790;
    list-style: none;
}

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

.accordion summary span {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 50%;
    background: white;
    box-shadow: inset 0 0 0 1px var(--line);
}

.accordion summary span::before,
.accordion summary span::after {
    position: absolute;
    top: 14px;
    left: 9px;
    width: 12px;
    height: 2px;
    background: var(--ink);
    content: "";
    transition: transform .2s ease;
}

.accordion summary span::after {
    transform: rotate(90deg);
}

.accordion details[open] summary span::after {
    transform: rotate(0);
}

.accordion details > div {
    padding: 0 62px 27px 0;
}

.accordion details p {
    margin: 0;
    color: var(--ink-soft);
}

.contact {
    padding-top: 70px;
    background: var(--cream);
}

.contact-shell {
    display: grid;
    overflow: hidden;
    border-radius: 34px;
    background: var(--navy-deep);
    color: white;
    grid-template-columns: .78fr 1.22fr;
}

.contact-copy {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 5vw, 70px);
}

.contact-copy::after {
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border: 50px solid rgba(255, 201, 74, .12);
    border-radius: 50%;
    content: "";
}

.contact-copy > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    margin: 23px 0 0;
    color: #b8c2d0;
}

.contact-direct {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin-top: 55px;
}

.contact-direct a {
    display: grid;
    align-items: center;
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    grid-template-columns: 38px 1fr;
}

.contact-direct a > span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    color: var(--yellow);
    font-weight: 850;
    grid-row: span 2;
}

.contact-direct small {
    color: #8fa0b5;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-direct strong {
    margin-top: 2px;
    font-size: 13px;
}

.contact-form-wrap {
    margin: 9px;
    padding: clamp(32px, 5vw, 60px);
    border-radius: 28px;
    background: white;
    color: var(--ink);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 12px;
    font-weight: 790;
}

.field label span {
    color: #8490a1;
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dbe0e7;
    border-radius: 12px;
    background: #f9fafb;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select {
    height: 49px;
    padding: 0 14px;
}

.field textarea {
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--mint);
    outline: 0;
    background: white;
    box-shadow: 0 0 0 4px rgba(88, 205, 179, .13);
}

.consent {
    display: grid;
    align-items: flex-start;
    color: #687588;
    cursor: pointer;
    font-size: 11px;
    grid-template-columns: 18px 1fr;
    gap: 10px;
}

.consent input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--mint);
}

.consent a {
    color: var(--ink);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 3px;
}

.form-submit p {
    margin: 0;
    color: #8792a2;
    font-size: 10px;
}

.form-notice {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 680;
}

.form-notice.success {
    background: var(--mint-soft);
    color: #145c4b;
}

.form-notice.error {
    background: var(--coral-soft);
    color: #8f3d31;
}

.site-footer {
    padding: 80px 0 28px;
    background: var(--cream);
}

.footer-main {
    display: grid;
    padding-bottom: 60px;
    grid-template-columns: 1.5fr .65fr .85fr;
    gap: 70px;
}

.footer-intro p {
    max-width: 480px;
    margin: 23px 0 0;
    color: var(--ink-soft);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h2 {
    margin: 0 0 9px;
    color: #8b7162;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column address {
    color: #526075;
    font-size: 13px;
    font-style: normal;
}

.footer-column a:hover {
    color: var(--coral);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: #7b8798;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 22px;
}

.footer-bottom a:hover {
    color: var(--ink);
}

.cookie-settings-link {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: inherit;
}

.cookie-settings-link:hover {
    color: var(--ink);
}

.consent-layer[hidden],
.consent-details[hidden] {
    display: none !important;
}

.consent-layer {
    position: fixed;
    z-index: 500;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.consent-banner {
    width: min(100%, 1080px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 24px;
    background: var(--navy-deep);
    box-shadow: 0 28px 90px rgba(8, 22, 39, .34);
    color: white;
    pointer-events: auto;
}

.consent-topline {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #aab8c9;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.consent-icon {
    position: relative;
    display: block;
    overflow: hidden;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow);
    color: transparent;
}

.consent-icon::before,
.consent-icon::after {
    position: absolute;
    border-radius: 50%;
    background: var(--navy-deep);
    content: "";
}

.consent-icon::before {
    top: 5px;
    left: 5px;
    width: 3px;
    height: 3px;
    box-shadow: 7px 4px 0 var(--navy-deep), 2px 9px 0 var(--navy-deep);
}

.consent-icon::after {
    top: -2px;
    right: -3px;
    width: 8px;
    height: 8px;
}

.consent-main {
    display: grid;
    align-items: center;
    padding: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
}

.consent-copy h2 {
    margin: 0 0 7px;
    font-size: clamp(20px, 2.5vw, 28px);
    letter-spacing: -.03em;
    line-height: 1.15;
}

.consent-copy p {
    max-width: 650px;
    margin: 0;
    color: #bdc8d5;
    font-size: 12px;
    line-height: 1.55;
}

.consent-copy a {
    color: white;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.consent-button {
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.consent-button:hover {
    transform: translateY(-2px);
}

.consent-button-primary {
    background: var(--yellow);
    color: var(--navy-deep);
}

.consent-button-secondary {
    border-color: rgba(255, 255, 255, .22);
    background: white;
    color: var(--navy-deep);
}

.consent-button-text {
    min-height: 30px;
    padding: 4px 10px;
    background: transparent;
    color: #b9c5d3;
    grid-column: 1 / -1;
}

.consent-details {
    padding: 0 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.consent-category {
    display: grid;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    grid-template-columns: 1fr auto;
    gap: 25px;
}

.consent-category strong {
    display: block;
    font-size: 13px;
}

.consent-category p {
    margin: 3px 0 0;
    color: #aebac9;
    font-size: 10px;
}

.consent-switch {
    display: grid;
    align-items: center;
    cursor: pointer;
    grid-template-columns: 37px auto;
    gap: 8px;
}

.consent-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.consent-switch > span {
    position: relative;
    display: block;
    width: 37px;
    height: 21px;
    border-radius: 100px;
    background: #405067;
    transition: background .2s ease;
}

.consent-switch > span::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    content: "";
    transition: transform .2s ease;
}

.consent-switch input:checked + span {
    background: var(--mint);
}

.consent-switch input:checked + span::after {
    transform: translateX(16px);
}

.consent-switch input:focus-visible + span {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

.consent-switch em {
    color: #aebac9;
    font-size: 9px;
    font-style: normal;
    font-weight: 750;
}

.consent-switch.locked {
    cursor: default;
}

.consent-details-actions {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    padding-top: 17px;
}

/* Legal and content pages */
.legal-page {
    background: #fbfaf7;
}

.legal-hero {
    padding: 90px 0 65px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 10%, rgba(88, 205, 179, .2), transparent 25%),
        radial-gradient(circle at 10% 80%, rgba(255, 201, 74, .2), transparent 26%),
        var(--cream);
}

.legal-hero-inner {
    max-width: 900px;
    margin-inline: auto;
}

.legal-hero h1 {
    font-size: clamp(46px, 6vw, 74px);
}

.legal-intro {
    max-width: 700px;
    margin: 22px 0 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.legal-layout {
    display: grid;
    padding-top: 70px;
    padding-bottom: 120px;
    grid-template-columns: 220px minmax(0, 760px);
    gap: 75px;
}

.legal-aside {
    position: sticky;
    top: 105px;
    align-self: start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}

.legal-aside strong {
    display: block;
    margin-bottom: 10px;
    color: #8a725f;
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.legal-aside a {
    display: block;
    padding: 6px 0;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 690;
}

.legal-aside a:hover {
    color: var(--coral);
}

.legal-content {
    min-width: 0;
}

.legal-content section {
    padding: 0 0 39px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 39px;
    scroll-margin-top: 110px;
}

.legal-content section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.legal-content h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: -.03em;
    line-height: 1.2;
}

.legal-content h3 {
    margin: 27px 0 9px;
    font-size: 17px;
    line-height: 1.35;
}

.legal-content p,
.legal-content li,
.legal-content address {
    color: #4e5c6e;
    font-size: 15px;
}

.legal-content p {
    margin: 0 0 13px;
}

.legal-content address {
    font-style: normal;
}

.legal-content ul,
.legal-content ol {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.legal-content a {
    color: #0a6e81;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-card {
    margin: 23px 0;
    padding: 22px;
    border-left: 4px solid var(--mint);
    border-radius: 0 14px 14px 0;
    background: var(--mint-soft);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-meta {
    display: inline-flex;
    margin-bottom: 25px;
    padding: 5px 10px;
    border-radius: 100px;
    background: var(--sand);
    color: #766b60;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* 404 */
.error-page-main {
    display: grid;
    min-height: calc(100vh - 82px);
    place-items: center;
    padding: 70px 0;
}

.error-content {
    max-width: 720px;
    text-align: center;
}

.error-code {
    display: block;
    color: var(--coral);
    font-size: clamp(90px, 17vw, 190px);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .75;
    text-shadow: 10px 10px 0 var(--yellow-soft);
}

.error-content h1 {
    margin: 45px 0 15px;
    font-size: clamp(34px, 5vw, 55px);
    letter-spacing: -.045em;
}

.error-content p {
    margin: 0 auto 28px;
    color: var(--ink-soft);
    font-size: 17px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

@media (max-width: 1050px) {
    .site-nav {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 35px;
    }

    .float-card-right {
        right: 0;
    }

    .float-card-left {
        left: -6px;
    }

    .service-card {
        min-height: 640px;
        padding: 25px;
    }

    .automation-grid {
        grid-template-columns: .9fr 1.1fr;
        gap: 55px;
    }

    .contact-shell {
        grid-template-columns: .7fr 1.3fr;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        z-index: 110;
        top: 72px;
        right: 16px;
        left: 16px;
        display: flex;
        visibility: hidden;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: white;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        padding: 10px 7px;
        font-size: 16px;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 10px;
        padding-block: 14px;
    }

    .menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .hero {
        padding-top: 70px;
    }

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

    .hero-copy {
        max-width: 760px;
        padding-bottom: 0;
    }

    .hero-visual {
        width: min(100%, 620px);
        margin: 0 auto;
    }

    .expertise-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .text-link {
        margin-top: 20px;
    }

    .automation-grid,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .automation-copy {
        max-width: 700px;
    }

    .workflow-card {
        width: min(100%, 650px);
        margin-inline: auto;
    }

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

    .package-card {
        min-height: 290px;
    }

    .package-card.featured {
        transform: none;
    }

    .website-note {
        grid-template-columns: 48px 1fr;
    }

    .website-note .text-link {
        margin-left: 66px;
        grid-column: 1 / -1;
    }

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

    .process-list li:nth-child(3) {
        border-top: 1px solid var(--line);
    }

    .process-list li:nth-child(4) {
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .process-list li {
        padding: 28px;
    }

    .process-list h3 {
        margin-top: 35px;
    }

    .about-visual {
        width: min(100%, 570px);
        margin-inline: auto;
    }

    .about-copy {
        max-width: 720px;
    }

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

    .contact-copy {
        padding-bottom: 45px;
    }

    .contact-direct {
        max-width: 480px;
        margin-top: 35px;
    }

    .footer-main {
        grid-template-columns: 1.3fr .7fr;
    }

    .consent-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .consent-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .consent-button-text {
        grid-column: auto;
    }

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

    .split-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .split-heading > p {
        max-width: 650px;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .legal-aside {
        position: static;
        display: flex;
        overflow-x: auto;
        align-items: center;
        gap: 20px;
    }

    .legal-aside strong {
        margin: 0;
        white-space: nowrap;
    }

    .legal-aside a {
        white-space: nowrap;
    }
}

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

    .site-header,
    .site-header.is-scrolled {
        height: 68px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .menu-label {
        display: none;
    }

    .site-nav {
        top: 65px;
    }

    .hero {
        padding-top: 49px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(40px, 11.3vw, 50px);
        overflow-wrap: normal;
    }

    .hero h1 span {
        display: inline;
    }

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

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

    .hero-points {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 510px;
        padding: 45px 0 90px;
    }

    .shop-window {
        transform: none;
    }

    .window-body {
        padding: 15px;
    }

    .metric-main {
        min-height: 105px;
        padding: 15px;
    }

    .mini-chart {
        width: 105px;
        height: 55px;
    }

    .float-card {
        min-width: 184px;
    }

    .float-card-left {
        bottom: 47px;
        left: 4px;
    }

    .float-card-right {
        top: 19px;
        right: 2px;
    }

    .expertise-strip {
        display: grid;
        justify-items: center;
        grid-template-columns: 1fr 1fr;
    }

    .expertise-strip i {
        display: none;
    }

    .expertise-strip span:last-child {
        grid-column: 1 / -1;
    }

    .section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .automation h2,
    .about h2,
    .contact h2 {
        font-size: 37px;
    }

    .service-card {
        padding: 25px;
        border-radius: 24px;
    }

    .service-icon {
        margin-bottom: 30px;
    }

    .workflow-body {
        padding: 15px;
    }

    .workflow-item {
        padding: 13px;
        grid-template-columns: 42px 1fr 26px;
        gap: 9px;
    }

    .workflow-symbol {
        width: 39px;
        height: 39px;
    }

    .workflow-item p {
        display: none;
    }

    .workflow-connector {
        margin-left: 34px;
    }

    .workflow-split {
        grid-template-columns: 1fr;
    }

    .workflow-complete {
        grid-template-columns: 32px 1fr;
    }

    .workflow-complete > small {
        display: none;
    }

    .package-card {
        padding: 26px;
    }

    .package-result {
        right: 26px;
        bottom: 25px;
        left: 26px;
    }

    .website-note {
        padding: 22px;
        grid-template-columns: 1fr;
    }

    .website-note .text-link {
        margin: 8px 0 0;
        grid-column: auto;
    }

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

    .process-list li,
    .process-list li:nth-child(3),
    .process-list li:nth-child(4),
    .process-list li:last-child {
        min-height: 0;
        border: 0;
        border-top: 1px solid var(--line);
    }

    .process-list li:last-child {
        border-bottom: 1px solid var(--line);
    }

    .process-list h3 {
        margin-top: 24px;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-brand-card {
        top: 52px;
        right: 36px;
        bottom: 68px;
        left: 26px;
        padding: 30px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .accordion summary {
        min-height: 76px;
        font-size: 15px;
    }

    .contact {
        padding-top: 20px;
    }

    .contact-shell {
        width: 100%;
        border-radius: 0;
    }

    .contact-copy {
        padding: 48px 22px 35px;
    }

    .contact-form-wrap {
        margin: 6px;
        padding: 30px 17px;
        border-radius: 22px;
    }

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

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit .button {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-intro {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

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

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .consent-layer {
        right: 7px;
        bottom: 7px;
        left: 7px;
    }

    .consent-banner {
        max-height: calc(100vh - 14px);
        overflow-y: auto;
        border-radius: 20px;
    }

    .consent-topline {
        padding: 10px 16px;
    }

    .consent-main {
        padding: 17px 16px;
    }

    .consent-copy p {
        font-size: 11px;
    }

    .consent-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .consent-button-text {
        grid-column: 1;
    }

    .consent-details {
        padding: 0 16px 16px;
    }

    .consent-category {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .consent-details-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .legal-hero {
        padding: 65px 0 48px;
    }

    .legal-hero h1 {
        font-size: 45px;
    }

    .legal-layout {
        padding-top: 42px;
        padding-bottom: 85px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

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