:root {
    --page: #f7faf9;
    --paper: #ffffff;
    --soft: #eef5f2;
    --soft-2: #e5efeb;
    --ink: #14201e;
    --body: #3c4d49;
    --muted: #6d7d79;
    --line: #d7e3df;
    --line-strong: #bdcfca;
    --teal: #0f766e;
    --teal-dark: #0a5b55;
    --teal-deep: #073f3b;
    --teal-pale: #dff1ec;
    --amber: #b7791f;
    --amber-bright: #d89b3c;
    --amber-pale: #fff3d9;
    --shadow-sm: 0 8px 28px rgba(19, 47, 42, 0.07);
    --shadow-md: 0 24px 70px rgba(19, 47, 42, 0.12);
    --shadow-lg: 0 38px 100px rgba(19, 47, 42, 0.16);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shell: 1180px;
    --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
    box-sizing: border-box;
}

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

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

body.menu-open {
    overflow: hidden;
}

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

button,
select {
    cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-family: "Avenir Next", Avenir, Inter, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(3.2rem, 6vw, 5.6rem);
    font-weight: 650;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4.4vw, 4rem);
    font-weight: 650;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: -0.03em;
}

::selection {
    background: var(--teal-pale);
    color: var(--teal-deep);
}

:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.45);
    outline-offset: 4px;
}

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

.section {
    position: relative;
    padding: 128px 0;
}

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

.lang-en [data-lang="fr"],
.lang-fr [data-lang="en"] {
    display: none !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.scroll-progress {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--amber-bright));
    transform: scaleX(0);
    transform-origin: left center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-dot {
    position: relative;
    display: inline-block;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-bright);
    box-shadow: 0 0 0 5px rgba(216, 155, 60, 0.13);
}

.eyebrow.light {
    color: #cfe9e3;
}

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

.section-heading > p:last-child {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

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

.button-solid {
    background: var(--teal);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.22);
    color: white;
}

.button-solid:hover {
    background: var(--teal-dark);
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.28);
}

.button-quiet {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.button-quiet:hover {
    border-color: var(--teal);
    background: white;
    color: var(--teal-dark);
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.83rem;
}

.button-amber {
    width: 100%;
    border: 0;
    background: var(--amber-bright);
    box-shadow: 0 14px 30px rgba(216, 155, 60, 0.22);
    color: #2a210f;
}

.button-amber:hover {
    background: #e7ab4c;
    box-shadow: 0 18px 38px rgba(216, 155, 60, 0.28);
}

.button-arrow {
    font-size: 1.15rem;
    transition: transform 220ms var(--ease);
}

.button:hover .button-arrow {
    transform: translate(2px, 2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-dark);
    font-weight: 750;
}

.text-link span:last-child {
    transition: transform 200ms var(--ease);
}

.text-link:hover span:last-child {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
    border-color: rgba(188, 207, 202, 0.72);
    background: rgba(247, 250, 249, 0.88);
    box-shadow: 0 8px 28px rgba(19, 47, 42, 0.05);
    backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 153px;
    height: auto;
}

.brand-badge {
    display: inline-flex;
    min-width: 28px;
    height: 24px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    border: 1px solid #bf8a3a;
    border-radius: 7px;
    background: var(--amber-pale);
    color: #805412;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

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

.primary-nav a {
    position: relative;
    color: #53625f;
    font-size: 0.88rem;
    font-weight: 650;
    transition: color 180ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--teal);
    content: "";
    transform: scaleX(0);
    transition: transform 200ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-toggle {
    display: inline-flex;
    min-width: 72px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    color: #889591;
    font-size: 0.76rem;
    font-weight: 750;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.lang-toggle:hover {
    border-color: var(--line-strong);
    background: white;
}

.lang-option.is-active {
    color: var(--teal-dark);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 108px;
    background:
        linear-gradient(115deg, rgba(244, 250, 248, 0.94) 0%, rgba(247, 250, 249, 0.88) 50%, rgba(239, 247, 244, 0.96) 100%),
        radial-gradient(circle at 18% 20%, rgba(15, 118, 110, 0.08), transparent 34%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 118, 110, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 118, 110, 0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent 72%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-orb-one {
    top: -180px;
    right: -120px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(15, 118, 110, 0.11);
    box-shadow: inset 0 0 90px rgba(15, 118, 110, 0.06);
}

.hero-orb-two {
    right: 34%;
    bottom: -230px;
    width: 380px;
    height: 380px;
    background: rgba(255, 243, 217, 0.52);
    filter: blur(60px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
    gap: 72px;
}

.hero h1 em {
    display: block;
    color: var(--teal);
    font-style: normal;
}

.hero-lede {
    max-width: 650px;
    margin-bottom: 34px;
    color: #52635f;
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 38px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-row li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #64726f;
    font-size: 0.78rem;
    font-weight: 650;
}

.trust-row li > span:first-child {
    display: inline-flex;
    width: 17px;
    height: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.65rem;
}

.hero-visual {
    position: relative;
    padding: 22px 8px 30px 26px;
}

.operations-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(189, 207, 202, 0.85);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.operations-card::after {
    position: absolute;
    top: 0;
    left: 16%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    content: "";
}

.ops-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 23px;
}

.ops-topbar h2 {
    margin: 6px 0 0;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-indicator i {
    position: relative;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
}

.live-indicator i::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(15, 118, 110, 0.25);
    border-radius: 50%;
    animation: livePulse 2.4s infinite;
    content: "";
}

.ops-menu {
    color: #91a09c;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}

.intake-card {
    display: grid;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f9fbfa;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
}

.intake-avatar {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--amber-pale);
    color: #825610;
    font-size: 0.72rem;
    font-weight: 800;
}

.intake-card strong,
.intake-card small {
    display: block;
}

.intake-card strong {
    color: var(--ink);
    font-size: 0.78rem;
}

.intake-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.67rem;
}

.intake-time {
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 750;
}

.flow-rail {
    position: relative;
    width: 2px;
    height: 28px;
    margin-left: 32px;
}

.flow-line {
    position: absolute;
    inset: 0;
    background: var(--line-strong);
}

.flow-token {
    position: absolute;
    top: -1px;
    left: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-bright);
    box-shadow: 0 0 12px rgba(216, 155, 60, 0.8);
    animation: flowDown 2.9s var(--ease) infinite;
}

.ops-steps {
    display: grid;
    gap: 8px;
}

.ops-step {
    display: grid;
    min-height: 68px;
    align-items: center;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 11px;
    transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease;
}

.ops-step.is-active {
    border-color: #dfba7e;
    background: linear-gradient(100deg, #fffdf8, #fffaf0);
    box-shadow: 0 8px 22px rgba(183, 121, 31, 0.09);
    transform: translateX(5px);
}

.step-mark {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--soft);
    color: var(--teal-dark);
    font-size: 0.63rem;
    font-weight: 800;
}

.ops-step.is-active .step-mark {
    background: var(--amber-pale);
    color: #81530d;
}

.ops-step strong,
.ops-step small {
    display: block;
}

.ops-step strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 0.74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ops-step small {
    overflow: hidden;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.62rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.state-pill {
    padding: 5px 8px;
    border-radius: 999px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.58rem;
    font-weight: 800;
}

.state-pill.amber {
    background: var(--amber-pale);
    color: #805412;
}

.state-pill.muted {
    background: #eff3f2;
    color: #788783;
}

.ops-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    margin-top: 17px;
    border-top: 1px solid var(--line);
}

.ops-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.67rem;
    line-height: 1.5;
}

.ops-footer p strong {
    color: var(--ink);
}

.ops-avatars {
    display: flex;
    padding-left: 8px;
}

.ops-avatars span {
    display: flex;
    width: 29px;
    height: 29px;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--teal);
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
}

.ops-avatars span:last-child {
    background: var(--amber);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    border: 1px solid rgba(189, 207, 202, 0.8);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.floating-note-top {
    top: 0;
    right: -42px;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 750;
    animation: softFloat 5s ease-in-out infinite;
}

.floating-note-top i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
}

.floating-note-bottom {
    right: -28px;
    bottom: 6px;
    min-width: 126px;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 15px;
    animation: softFloat 5.5s 0.7s ease-in-out infinite;
}

.floating-note-bottom strong {
    color: var(--teal);
    font-size: 1.25rem;
    line-height: 1;
}

.floating-note-bottom span {
    max-width: 58px;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1.2;
}

.recognition-bar {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: white;
}

.recognition-inner {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.recognition-inner > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.recognition-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 32px;
}

.recognition-list > span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #566762;
    font-size: 0.85rem;
    font-weight: 650;
}

.recognition-list i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--amber-bright);
}

.workflow-section {
    background: var(--paper);
}

.workflow-section::before {
    position: absolute;
    top: 120px;
    right: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(15, 118, 110, 0.08);
    border-radius: 50%;
    content: "";
}

.workflow-tabs {
    position: relative;
    z-index: 1;
    display: grid;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 22px;
    background: var(--page);
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

.workflow-tab {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: #5e6e6a;
    font-size: 0.86rem;
    font-weight: 720;
    transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.workflow-tab:hover {
    color: var(--ink);
}

.workflow-tab.is-active {
    border-color: rgba(189, 207, 202, 0.85);
    background: white;
    box-shadow: var(--shadow-sm);
    color: var(--teal-dark);
    transform: translateY(-1px);
}

.tab-icon {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e9f1ee;
    color: #647b75;
    font-size: 0.58rem;
    font-weight: 850;
}

.workflow-tab.is-active .tab-icon {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

.workflow-panels {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 394px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f8fbfa 0%, #edf5f2 100%);
    box-shadow: var(--shadow-md);
}

.workflow-panel {
    padding: 42px;
}

.workflow-panel.is-animating {
    animation: panelIn 400ms var(--ease) both;
}

.panel-intro {
    display: grid;
    align-items: start;
    margin-bottom: 38px;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 28px;
}

.panel-number {
    color: rgba(15, 118, 110, 0.2);
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.95;
}

.panel-kicker {
    margin-bottom: 8px;
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 780;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.panel-intro h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.panel-intro p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.workflow-path {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
}

.workflow-path > i {
    position: relative;
    height: 1px;
    overflow: visible;
    background: var(--line-strong);
}

.workflow-path > i::after {
    position: absolute;
    top: -2px;
    right: 0;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--teal);
    border-right: 1px solid var(--teal);
    content: "";
    transform: rotate(45deg);
}

.path-step {
    position: relative;
    min-height: 130px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.path-step:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.path-step.accent {
    border-color: #e5c187;
    background: #fffaf0;
}

.path-step > span:first-child {
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 7px;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.63rem;
    font-weight: 850;
}

.path-step.accent > span:first-child {
    background: var(--amber-pale);
    color: #805412;
}

.path-step strong,
.path-step small {
    display: block;
}

.path-step strong {
    color: var(--ink);
    font-size: 0.78rem;
    line-height: 1.35;
}

.path-step small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.45;
}

.illustration-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.principles-section {
    overflow: hidden;
    background: var(--page);
}

.principles-section::after {
    position: absolute;
    bottom: -270px;
    left: -220px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(223, 241, 236, 0.55);
    content: "";
    filter: blur(50px);
}

.principles-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 104px;
}

.principles-heading {
    position: sticky;
    top: 132px;
}

.principles-heading p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 26px;
    color: var(--muted);
}

.principles-list {
    position: relative;
    display: grid;
    gap: 14px;
}

.principles-list::before {
    position: absolute;
    top: 42px;
    bottom: 42px;
    left: 34px;
    width: 1px;
    background: linear-gradient(var(--teal), var(--line), var(--amber-bright));
    content: "";
}

.principle {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 132px;
    align-items: center;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 24px;
    transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease, background-color 250ms ease;
}

.principle:hover {
    border-color: var(--line-strong);
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.principle-index {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: var(--page);
    color: var(--teal-dark);
    font-size: 0.68rem;
    font-weight: 850;
}

.principle h3 {
    margin-bottom: 7px;
    font-size: 1.25rem;
}

.principle p {
    margin: 0;
    color: var(--muted);
    font-size: 0.89rem;
}

.cost-section {
    background: var(--teal-deep);
    color: #d7e7e3;
}

.cost-section::before,
.cost-section::after {
    position: absolute;
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.cost-section::before {
    top: -160px;
    right: 8%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cost-section::after {
    right: -80px;
    bottom: -200px;
    width: 420px;
    height: 420px;
    background: rgba(15, 118, 110, 0.35);
    filter: blur(50px);
}

.cost-grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 88px;
}

.cost-copy h2 {
    color: white;
}

.cost-copy > p:not(.eyebrow) {
    max-width: 500px;
    color: #b7cbc6;
}

.cost-copy .eyebrow {
    color: #bfe3db;
}

.formula {
    display: inline-flex;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    color: #bcd0cb;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.72rem;
}

.calculator {
    display: grid;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
    grid-template-columns: 1.15fr 0.85fr;
    backdrop-filter: blur(10px);
}

.calculator-controls {
    padding: 36px;
}

.calculator-controls label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    color: #e6f1ee;
    font-size: 0.78rem;
    font-weight: 680;
}

.calculator-controls output {
    color: #f1c97d;
    font-size: 0.78rem;
    font-weight: 800;
}

.calculator-controls input[type="range"] {
    width: 100%;
    height: 28px;
    padding: 0;
    margin: 0 0 23px;
    border: 0;
    background: transparent;
    accent-color: var(--amber-bright);
}

.calculator-controls input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber-bright) var(--range-progress, 20%), rgba(255, 255, 255, 0.16) var(--range-progress, 20%));
}

.calculator-controls input[type="range"]::-webkit-slider-thumb {
    width: 19px;
    height: 19px;
    margin-top: -7px;
    border: 3px solid var(--teal-deep);
    border-radius: 50%;
    appearance: none;
    background: #f4c66f;
    box-shadow: 0 0 0 1px #f4c66f;
}

.calculator-controls input[type="range"]::-moz-range-track {
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.calculator-controls input[type="range"]::-moz-range-progress {
    height: 5px;
    border-radius: 999px;
    background: var(--amber-bright);
}

.calculator-controls input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 3px solid var(--teal-deep);
    border-radius: 50%;
    background: #f4c66f;
}

.calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 34px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.calculator-result p {
    margin-bottom: 10px;
    color: #bad0ca;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.calculator-result > output {
    color: white;
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.calculator-result > span {
    margin-top: 8px;
    color: #9db7b1;
    font-size: 0.7rem;
}

.result-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding-top: 17px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #afc6c0;
    font-size: 0.68rem;
}

.result-hours strong {
    color: #f3c46d;
    font-size: 0.9rem;
}

.offers-section {
    background: white;
}

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

.offer-card {
    position: relative;
    display: flex;
    min-height: 420px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fbfcfc;
    flex-direction: column;
    transition: transform 250ms var(--ease), border-color 250ms ease, box-shadow 250ms ease;
}

.offer-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.offer-card.featured {
    border-color: rgba(15, 118, 110, 0.38);
    background: linear-gradient(150deg, #f5fbf9 0%, #e7f3ef 100%);
}

.offer-card.featured::before {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--teal), #55a89e);
    content: "";
}

.offer-tag {
    align-self: flex-start;
    padding: 6px 9px;
    border-radius: 7px;
    background: var(--soft);
    color: var(--teal-dark);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.offer-card.featured .offer-tag {
    background: var(--teal-pale);
}

.offer-card h3 {
    min-height: 58px;
    margin: 28px 0 18px;
    font-size: 1.35rem;
}

.offer-price {
    display: flex;
    min-height: 48px;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 22px;
}

.offer-price strong {
    color: var(--ink);
    font-family: "Avenir Next", Avenir, sans-serif;
    font-size: 2.2rem;
    font-weight: 680;
    letter-spacing: -0.05em;
}

.offer-price small {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.offer-card > p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 0.86rem;
}

.offer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: auto;
    border-top: 1px solid var(--line);
    color: var(--teal-dark);
    font-size: 0.8rem;
    font-weight: 750;
}

.offer-link span:last-child {
    font-size: 1rem;
    transition: transform 220ms var(--ease);
}

.offer-link:hover span:last-child {
    transform: translate(3px, -3px);
}

.optimization-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-top: 18px;
    background: var(--page);
}

.optimization-note > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.optimization-icon {
    display: flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--amber-pale);
    color: var(--amber);
    font-size: 1.2rem;
}

.optimization-note strong {
    color: var(--ink);
    font-size: 0.92rem;
}

.optimization-note p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.optimization-price {
    flex: 0 0 auto;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 750;
}

.optimization-price small {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 650;
}

.faq-section {
    background: var(--page);
}

.faq-grid {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 100px;
}

.faq-heading {
    position: sticky;
    top: 132px;
}

.faq-heading > p:last-child {
    color: var(--muted);
}

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

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

.faq-list summary {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 680;
    list-style: none;
}

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

.faq-list summary > span:last-child {
    display: flex;
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--teal-dark);
    font-size: 1.1rem;
    font-weight: 400;
    transition: transform 220ms var(--ease), background-color 220ms ease;
}

.faq-list details[open] summary > span:last-child {
    background: var(--teal-pale);
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 680px;
    padding: 0 46px 28px 0;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    background: #0b3835;
    color: white;
}

.contact-section::before {
    position: absolute;
    top: -220px;
    left: -160px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: inset 0 0 120px rgba(15, 118, 110, 0.2);
    content: "";
}

.contact-section::after {
    position: absolute;
    right: -120px;
    bottom: -200px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(183, 121, 31, 0.12);
    content: "";
    filter: blur(40px);
}

.contact-shell {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 86px;
}

.contact-copy h2 {
    color: white;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 520px;
    color: #b7cfca;
}

.contact-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 32px;
}

.contact-links a {
    color: #dbeae7;
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(219, 234, 231, 0.35);
    text-underline-offset: 4px;
}

.contact-links a:hover {
    color: white;
    text-decoration-color: var(--amber-bright);
}

.contact-form {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
}

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

.contact-form label {
    display: block;
    margin-bottom: 16px;
    color: #d7e8e4;
    font-size: 0.7rem;
    font-weight: 720;
    letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    margin-top: 7px;
    background: rgba(255, 255, 255, 0.075);
    color: white;
    outline: 0;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
    min-height: 92px;
    resize: vertical;
}

.contact-form select option {
    background: var(--teal-deep);
    color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #789590;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #7eb9b1;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(126, 185, 177, 0.13);
}

.form-note {
    margin: 12px 0 0;
    color: #8ba7a1;
    font-size: 0.64rem;
    text-align: center;
}

.site-footer {
    padding: 58px 0 26px;
    border-top: 1px solid var(--line);
    background: white;
}

.footer-main {
    display: grid;
    align-items: center;
    padding-bottom: 40px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 42px;
}

.footer-brand img {
    width: 145px;
}

.footer-main > p {
    max-width: 390px;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 20px;
}

.footer-nav a {
    color: #566763;
    font-size: 0.76rem;
    font-weight: 650;
}

.footer-nav a:hover {
    color: var(--teal-dark);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #82908d;
    font-size: 0.66rem;
}

.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 580ms var(--ease), transform 580ms var(--ease);
}

.reveal-ready .reveal[data-delay="1"] {
    transition-delay: 80ms;
}

.reveal-ready .reveal[data-delay="2"] {
    transition-delay: 150ms;
}

.reveal-ready .reveal[data-delay="3"] {
    transition-delay: 220ms;
}

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

@keyframes livePulse {
    0%, 100% { opacity: 0; transform: scale(0.7); }
    45% { opacity: 1; transform: scale(1.08); }
}

@keyframes flowDown {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    78% { opacity: 1; }
    100% { opacity: 0; transform: translateY(25px); }
}

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

@keyframes panelIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

    .nav-actions .button-small {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.88fr);
        gap: 44px;
    }

    .floating-note-top {
        right: -8px;
    }

    .floating-note-bottom {
        right: -4px;
    }

    .principles-grid,
    .faq-grid {
        gap: 62px;
    }

    .cost-grid,
    .contact-shell {
        gap: 54px;
    }

    .workflow-panel {
        padding: 36px 30px;
    }

    .workflow-path {
        grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
    }
}

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

    .menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        order: 3;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.7);
    }

    .menu-icon {
        display: grid;
        gap: 5px;
    }

    .menu-icon i {
        display: block;
        width: 17px;
        height: 1.5px;
        background: var(--ink);
        transition: transform 200ms var(--ease);
    }

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

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

    .primary-nav {
        position: fixed;
        z-index: 99;
        top: 73px;
        right: 20px;
        left: 20px;
        display: flex;
        visibility: hidden;
        align-items: stretch;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        gap: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms;
        backdrop-filter: blur(18px);
    }

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

    .primary-nav a {
        padding: 14px 12px;
        border-bottom: 1px solid var(--line);
        font-size: 0.95rem;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

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

    .nav-shell {
        min-height: 74px;
    }

    .nav-actions {
        margin-left: auto;
    }

    .hero {
        padding: 140px 0 94px;
    }

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

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

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

    .recognition-inner {
        align-items: flex-start;
        padding: 26px 0;
        flex-direction: column;
        gap: 16px;
    }

    .recognition-list {
        justify-content: flex-start;
    }

    .workflow-tabs {
        overflow-x: auto;
        grid-template-columns: repeat(4, minmax(155px, 1fr));
    }

    .workflow-panels {
        min-height: 620px;
    }

    .workflow-path {
        align-items: stretch;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .workflow-path > i {
        display: none;
    }

    .path-step {
        min-height: 132px;
    }

    .principles-grid,
    .cost-grid,
    .faq-grid,
    .contact-shell {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .principles-heading,
    .faq-heading {
        position: static;
        max-width: 680px;
    }

    .calculator {
        max-width: 720px;
    }

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

    .offer-card:last-child {
        grid-column: span 2;
    }

    .offer-card:last-child h3 {
        min-height: auto;
    }

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

    .footer-main > p {
        order: 3;
        grid-column: span 2;
    }
}

@media (max-width: 660px) {
    .shell {
        width: min(100% - 32px, var(--shell));
    }

    .section {
        padding: 78px 0;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.1rem);
    }

    h2 {
        font-size: clamp(2.05rem, 10.5vw, 3rem);
    }

    .site-header.is-scrolled {
        backdrop-filter: blur(14px);
    }

    .brand img {
        width: 132px;
    }

    .brand-badge {
        min-width: 25px;
        height: 22px;
        margin-left: 5px;
        font-size: 0.6rem;
    }

    .lang-toggle {
        min-width: 65px;
        min-height: 38px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 125px 0 76px;
    }

    .hero::before {
        background-size: 42px 42px;
        mask-image: linear-gradient(to bottom, black, transparent 58%);
    }

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

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

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

    .trust-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual {
        padding: 14px 0 24px;
    }

    .operations-card {
        padding: 20px;
        border-radius: 21px;
    }

    .ops-step {
        grid-template-columns: 31px minmax(0, 1fr);
    }

    .ops-step .state-pill {
        display: none;
    }

    .ops-step.is-active {
        transform: translateX(3px);
    }

    .floating-note-top {
        top: -10px;
        right: 3px;
    }

    .floating-note-bottom {
        right: 4px;
        bottom: -4px;
    }

    .recognition-list {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .workflow-tabs {
        grid-template-columns: repeat(4, minmax(138px, 1fr));
    }

    .workflow-tab {
        min-height: 55px;
        justify-content: flex-start;
    }

    .workflow-panels {
        min-height: 820px;
        border-radius: 22px;
    }

    .workflow-panel {
        padding: 30px 20px;
    }

    .panel-intro {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .panel-number {
        font-size: 2.8rem;
    }

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

    .path-step {
        min-height: 0;
    }

    .principles-list::before {
        left: 25px;
    }

    .principle {
        min-height: 0;
        padding: 23px 20px;
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .principle-index {
        width: 36px;
        height: 36px;
    }

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

    .calculator-controls {
        padding: 28px 24px 16px;
    }

    .calculator-result {
        padding: 27px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        border-left: 0;
    }

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

    .offer-card,
    .offer-card:last-child {
        min-height: 0;
        grid-column: auto;
    }

    .offer-card h3 {
        min-height: auto;
    }

    .optimization-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .faq-list summary {
        min-height: 76px;
        font-size: 0.92rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .footer-main {
        align-items: flex-start;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-main > p {
        order: initial;
        grid-column: auto;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

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

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

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