:root {
    --ink: #152323;
    --muted: #566461;
    --line: #d8e2dd;
    --paper: #fbfbf7;
    --band: #eaf2ee;
    --brand: #113d3c;
    --brand-2: #d45b35;
    --accent: #2f7c72;
    --gold: #f2bd45;
    --white: #fff;
    --shadow: 0 18px 45px rgba(18, 37, 36, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    z-index: 20;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(251, 251, 247, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 61, 60, .1);
}

.nav {
    width: min(1440px, calc(100% - 64px));
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 0 0 auto;
    width: 126px;
    height: 70px;
    perspective: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.brand::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    animation: autoShimmer 9s infinite ease-in-out;
}

.brand:hover::after {
    animation: shimmerSwipe 0.85s ease-out forwards;
}

.brand img {
    width: auto;
    height: 58px;
    max-width: 126px;
    max-height: 58px;
    object-fit: contain;
    transform-origin: 50% 70%;
    animation: logoBreathe 7s ease-in-out infinite;
    transition: transform .35s cubic-bezier(0.25, 1, 0.5, 1), filter .35s ease;
}

.brand:hover img,
.brand:focus-visible img {
    transform: translateY(-2px) rotateY(8deg) rotateX(-4deg) scale(1.05);
    filter: drop-shadow(0 10px 18px rgba(212, 91, 53, .28));
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 1rem;
    font-weight: 720;
}

.menu a,
.langs a {
    text-decoration: none;
    color: var(--muted);
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 12px;
    border-radius: 999px;
}

.menu a:hover,
.langs a:hover,
.langs .active {
    color: var(--brand);
}

.menu a:hover {
    background: rgba(17, 61, 60, .07);
}

.menu .nav-cta {
    background: var(--brand);
    color: var(--white);
    padding-inline: 16px;
}

.menu .nav-cta:hover {
    background: #0d302f;
    color: var(--white);
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 70px;
    min-height: 42px;
    padding: 8px 11px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--brand);
    cursor: pointer;
    font: inherit;
    font-size: .86rem;
    font-weight: 820;
}

.language-toggle svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-toggle:hover,
.language-toggle[aria-expanded="true"] {
    border-color: var(--brand);
    box-shadow: 0 10px 26px rgba(18, 37, 36, .1);
}

.langs {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    width: 228px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.language-switcher.open .langs {
    display: flex;
}

.langs a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 7px 9px;
    font-size: .9rem;
}

.langs a:hover {
    background: rgba(17, 61, 60, .07);
}

.langs .active {
    background: var(--band);
}

.lang-code {
    font-size: .78rem;
    font-weight: 850;
    color: var(--brand);
}

.lang-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 0;
    width: 42px;
    height: 36px;
    color: var(--ink);
    place-items: center;
    position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--brand);
    content: "";
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before {
    position: absolute;
    left: 0;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    left: 0;
    top: 6px;
}

.hero {
    padding: 68px 0 44px;
    overflow: hidden;
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
    gap: 52px;
    align-items: center;
}

.reverse {
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.hero h1,
.compact h1,
.article h1 {
    font-size: clamp(2.35rem, 6vw, 5rem);
    line-height: .98;
    margin: 0 0 22px;
    max-width: 780px;
}

.lead {
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    color: var(--muted);
    max-width: 710px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brand-2);
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
    font-weight: 800;
}

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

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
    transition: background-color .24s ease, border-color .24s ease, color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18, 37, 36, .14);
    outline: none;
}

.button.primary {
    background: var(--brand);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.button.primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    animation: btnShimmer 6s infinite ease-in-out;
}

.button.primary:hover {
    background: #0d302f;
}

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

.button.secondary:hover {
    border-color: var(--brand);
    background: rgba(17, 61, 60, .02);
}

.proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--muted);
}

.proof-list li::before,
.price-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--gold);
    vertical-align: middle;
}

.hero-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    isolation: isolate;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
    mix-blend-mode: multiply;
}

.glow-orb-1 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 5%;
    left: 5%;
    animation: orbFloatOne 16s ease-in-out infinite alternate;
}

.glow-orb-2 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--brand-2) 0%, transparent 70%);
    bottom: 5%;
    right: 5%;
    animation: orbFloatTwo 20s ease-in-out infinite alternate;
}

.hero-phone-wrap {
    --scan-start: 88px;
    --scan-travel: 408px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatPhone 6s ease-in-out infinite;
}

.hero-phone-wrap::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 50%;
    z-index: 0;
    width: min(275px, 88%);
    height: min(520px, 86%);
    transform: translateX(-50%);
    border-radius: 34px;
    background: radial-gradient(circle at 50% 48%, rgba(242, 189, 69, .16), transparent 64%);
    filter: blur(2px);
    pointer-events: none;
}

.hero-phone-wrap::after {
    content: "";
    position: absolute;
    top: var(--scan-start);
    left: 50%;
    z-index: 2;
    width: min(238px, calc(100% - 68px));
    height: 3px;
    transform: translate(-50%, 0);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(242, 189, 69, .95), transparent);
    box-shadow: 0 0 18px rgba(242, 189, 69, .72);
    animation: phoneScan 4.8s ease-in-out infinite;
    pointer-events: none;
}

.media-panel,
.post-card,
.lead-form,
.price-card {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-phone-wrap img {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: min(305px, 100%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 36px rgba(18, 37, 36, .16));
}

.section {
    padding: 76px 0;
}

.section.compact {
    padding-top: 58px;
}

.band {
    background: var(--band);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

h2 {
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 0 0 14px;
}

h3 {
    line-height: 1.18;
}

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

.benefit-card {
    border-top: 3px solid var(--accent);
    background: var(--white);
    padding: 22px;
    min-height: 235px;
    transition: transform .24s ease, box-shadow .24s ease;
}

.benefit-card:hover,
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(18, 37, 36, .14);
}

.benefit-card:nth-child(2) {
    border-color: var(--brand-2);
}

.benefit-card:nth-child(3) {
    border-color: var(--gold);
}

.benefit-card p,
.steps p,
.price-card p,
.post-card p,
.site-footer p,
.article p,
.article li {
    color: var(--muted);
}

.solution-grid .benefit-card {
    min-height: 210px;
}

.solution-grid a {
    text-decoration: none;
}

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

.steps article {
    padding: 18px 0;
    border-top: 1px solid rgba(17, 61, 60, .18);
}

.media-panel {
    margin: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.media-panel img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
}

#text-ukazka,
#textovy-pruvodce,
#foto-ukazka,
#fotogalerie,
#video {
    scroll-margin-top: 108px;
}

.mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.mini-features a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mini-features a:hover,
.mini-features a:focus-visible {
    border-color: var(--brand-2);
    box-shadow: 0 10px 24px rgba(18, 37, 36, .09);
    transform: translateY(-2px);
    outline: none;
}

.mini-features img {
    width: 24px;
    height: 24px;
}

.text-demo {
    background: var(--band);
}

.text-demo-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 66px);
    align-items: start;
}

.guide-demo-grid {
    display: grid;
    gap: 18px;
}

.intro-qr-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    max-width: 460px;
    margin-top: 28px;
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(7, 49, 47, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.intro-qr-card:hover,
.intro-qr-card:focus-visible {
    border-color: var(--brand-2);
    box-shadow: 0 20px 42px rgba(7, 49, 47, .13);
    transform: translateY(-2px);
    outline: none;
}

.intro-qr-card img {
    display: block;
    width: 112px;
    height: 112px;
}

.intro-qr-card span {
    color: var(--ink);
    font-weight: 750;
    line-height: 1.45;
}

.guide-demo-card {
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
}

.guide-demo-card h3 {
    margin: 4px 0 12px;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.guide-demo-step {
    margin: 0;
    color: var(--brand-2);
    font-size: .84rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guide-demo-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.guide-demo-card li {
    margin: 8px 0;
    color: var(--muted);
}

.guide-demo-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    background: var(--gold);
    vertical-align: middle;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--brand);
    font-weight: 850;
    text-decoration-color: rgba(17, 61, 60, .35);
    text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
    color: var(--brand-2);
    outline: none;
}

.video-band {
    background: var(--brand);
    color: var(--white);
    overflow: hidden;
}

.video-band p,
.video-band li {
    color: rgba(255, 255, 255, .78);
}

.video-band .eyebrow {
    color: var(--gold);
}

.clean-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    margin: 8px 0;
}

.clean-list li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    background: var(--gold);
    vertical-align: middle;
}

.video-showcase {
    position: relative;
}

.video-frame {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.video-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #071f1e;
}

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

.gallery-grid {
    column-count: 3;
    column-gap: 18px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .24s ease, box-shadow .24s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(7, 49, 47, .13);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
}

.gallery-item figcaption {
    margin: 0;
    padding: 12px 14px 14px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

.trial-offer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid rgba(243, 153, 37, .38);
    background: linear-gradient(135deg, rgba(243, 153, 37, .13), rgba(255, 255, 255, .92));
    box-shadow: var(--shadow);
}

.trial-offer h3 {
    margin: 4px 0 8px;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.trial-offer p {
    margin: 0;
}

.trial-offer .eyebrow {
    color: var(--brand);
}

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

.price-card {
    position: relative;
    overflow: hidden;
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 590px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.price-card.featured {
    border-color: var(--brand);
    transform: translateY(-8px);
}

.price-card:hover,
.price-card:focus-within {
    border-color: rgba(212, 91, 53, .55);
    box-shadow: 0 26px 56px rgba(18, 37, 36, .18);
    transform: translateY(-6px);
}

.price-card.featured:hover,
.price-card.featured:focus-within {
    transform: translateY(-14px);
}

.price-heading {
    min-height: 118px;
    padding: 24px 24px 18px;
    background: linear-gradient(135deg, #0a4743 0%, #123d37 100%);
    color: var(--white);
}

.price-card .plan-name {
    font-weight: 850;
    margin: 0;
    color: var(--white);
    font-size: 1.2rem;
}

.price-card .price-heading p:last-child {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .76);
}

.price-card .plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    margin: 0;
    padding: 6px 10px;
    background: var(--gold);
    color: #1f2d2b;
    font-size: .78rem;
    font-weight: 850;
}

.price-line {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 0;
    padding: 24px 24px 18px;
    border-bottom: 1px solid var(--line);
    transition: background .28s ease;
}

.price-line strong {
    font-size: clamp(2.7rem, 4vw, 4.6rem);
    line-height: .85;
    transition: color .28s ease, transform .28s ease;
}

.price-currency {
    align-self: flex-start;
    padding-top: 7px;
    font-weight: 850;
    color: var(--brand);
}

.price-frequency {
    padding-bottom: 6px;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 700;
}

.price-card:hover .price-line,
.price-card:focus-within .price-line {
    background: rgba(242, 189, 69, .1);
}

.price-card:hover .price-line strong,
.price-card:focus-within .price-line strong {
    color: var(--brand-2);
    transform: translateY(-2px);
}

.price-card h3 {
    font-size: 2rem;
    margin: 8px 0 0;
}

.price-card h3 span {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 600;
}

.price-card ul {
    padding: 0;
    list-style: none;
    margin: 20px 24px 24px;
}

.price-card .button {
    margin-top: auto;
    margin-inline: 24px;
}

.fineprint {
    color: var(--muted);
    font-size: .92rem;
}

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

.post-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    transition: transform .24s ease, box-shadow .24s ease;
}

.post-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: contain;
    background: var(--band);
}

.post-card div {
    padding: 22px;
}

.post-card time {
    color: var(--brand-2);
    font-size: .9rem;
    font-weight: 700;
}

.post-card h2,
.post-card h3 {
    font-size: 1.28rem;
    margin: 8px 0;
}

.post-card a {
    text-decoration: none;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 860px;
}

details {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px 20px;
}

summary {
    cursor: pointer;
    font-weight: 800;
}

.order-section {
    scroll-margin-top: 90px;
}

.lead-form {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 6px;
    font-weight: 750;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    padding: 11px 12px;
}

textarea {
    resize: vertical;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.article {
    padding: 58px 0 86px;
    max-width: 900px;
}

.landing-page {
    max-width: 1180px;
}

.landing-hero-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
    align-items: start;
    gap: clamp(28px, 5vw, 62px);
    margin-bottom: 42px;
}

.landing-hero-copy {
    min-width: 0;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 28px;
}

.breadcrumbs a {
    color: var(--brand);
    text-decoration: none;
}

.breadcrumbs a::after {
    content: "/";
    color: var(--muted);
    margin-left: 8px;
}

.article h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.article h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    margin-top: 42px;
}

.article-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 34px 0;
    border: 1px solid var(--line);
}

.landing-page .article-image {
    display: block;
    width: auto;
    max-width: min(100%, 680px);
    max-height: none;
    margin: 34px auto;
    padding: 12px;
    background: var(--white);
}

.landing-hero-wrap .article-image {
    margin: 6px 0 0;
    justify-self: center;
    align-self: start;
}

.article .article-image-phone,
.landing-page .article-image-phone {
    max-width: min(100%, 305px);
    padding: 0;
    border: 0;
    background: transparent;
}

.article .article-image-portrait,
.landing-page .article-image-portrait {
    max-width: min(100%, 430px);
}

.article-cta {
    margin-top: 46px;
    padding: 28px;
    background: var(--band);
    border-left: 5px solid var(--brand-2);
}

.internal-links {
    margin-top: 42px;
}

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

.related-grid a {
    display: block;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--brand);
    text-decoration: none;
    font-weight: 750;
    transition: transform .2s ease, border-color .2s ease;
}

.related-grid a:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.site-footer {
    background: var(--brand);
    color: var(--white);
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 34px;
    align-items: start;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .82);
}

.site-footer h2 {
    font-size: 1rem;
    margin: 0 0 10px;
}

.footer-credit {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .64);
    font-size: .92rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, .86);
    font-weight: 750;
    text-decoration-color: rgba(255, 255, 255, .32);
    text-underline-offset: 3px;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: var(--white);
    text-decoration-color: var(--accent);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

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

.price-card.reveal.is-visible:hover,
.price-card.reveal.is-visible:focus-within {
    transform: translateY(-6px);
}

.price-card.featured.reveal.is-visible:hover,
.price-card.featured.reveal.is-visible:focus-within {
    transform: translateY(-14px);
}

/* Staggered delay for grid elements */
.benefit-card.reveal.is-visible:nth-child(2),
.price-card.reveal.is-visible:nth-child(2),
.post-card.reveal.is-visible:nth-child(2),
.gallery-item.reveal.is-visible:nth-child(2),
.guide-demo-card.reveal.is-visible:nth-child(2) {
    transition-delay: 0.12s;
}

.benefit-card.reveal.is-visible:nth-child(3),
.price-card.reveal.is-visible:nth-child(3),
.post-card.reveal.is-visible:nth-child(3),
.gallery-item.reveal.is-visible:nth-child(3),
.guide-demo-card.reveal.is-visible:nth-child(3) {
    transition-delay: 0.24s;
}

.benefit-card.reveal.is-visible:nth-child(4),
.price-card.reveal.is-visible:nth-child(4),
.post-card.reveal.is-visible:nth-child(4),
.gallery-item.reveal.is-visible:nth-child(4),
.guide-demo-card.reveal.is-visible:nth-child(4) {
    transition-delay: 0.36s;
}

.benefit-card:hover,
.price-card:hover,
.post-card:hover,
.gallery-item:hover,
.guide-demo-card:hover {
    transition-delay: 0s !important;
}

@keyframes logoBreathe {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    45% {
        transform: translateY(-1px) rotate(.5deg) scale(1.015);
    }
}

@keyframes phoneScan {
    0%, 100% {
        transform: translate(-50%, 0);
        opacity: .24;
    }
    14%, 78% {
        opacity: .9;
    }
    50% {
        transform: translate(-50%, var(--scan-travel));
        opacity: .96;
    }
}

@keyframes shimmerSwipe {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes autoShimmer {
    0%, 90% {
        left: -150%;
    }
    95%, 100% {
        left: 150%;
    }
}

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

@keyframes orbFloatOne {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 40px) scale(1.15);
    }
    100% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes orbFloatTwo {
    0% {
        transform: translate(0, 0) scale(0.95);
    }
    50% {
        transform: translate(-40px, -20px) scale(1.1);
    }
    100% {
        transform: translate(10px, 30px) scale(1);
    }
}

@keyframes btnShimmer {
    0%, 85% {
        left: -150%;
    }
    95%, 100% {
        left: 150%;
    }
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    width: 118px;
    height: 78px;
    margin: 0 0 14px;
    color: var(--white) !important;
    text-decoration: none;
}

.footer-brand img {
    width: auto;
    max-width: 118px;
    height: auto;
    max-height: 78px;
    object-fit: contain;
}

@media (max-width: 960px) {
    .nav {
        width: min(100% - 32px, 1160px);
    }

    .menu-toggle {
        display: inline-grid;
        order: 3;
        margin-left: 0;
    }

    .menu {
        position: absolute;
        inset: 82px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 18px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
        font-size: 1.05rem;
    }

    .menu a {
        justify-content: center;
        border-radius: 6px;
    }

    .menu.open {
        display: flex;
    }

    .language-switcher {
        order: 2;
        margin-left: auto;
    }

    .langs {
        width: min(260px, calc(100vw - 32px));
    }

    .hero-grid,
    .landing-hero-wrap,
    .text-demo-layout,
    .split,
    .reverse,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero-wrap {
        gap: 24px;
    }

    .landing-hero-wrap .article-image {
        margin: 4px auto 0;
    }

    .benefit-grid,
    .pricing-grid,
    .post-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 2;
    }

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

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

@media (max-width: 620px) {
    .shell {
        width: min(100% - 22px, 1160px);
    }

    .nav {
        width: min(100% - 22px, 1160px);
        gap: 10px;
        min-height: 72px;
    }

    .brand {
        width: 88px;
        height: 60px;
    }

    .brand img {
        height: 48px;
        max-width: 88px;
        max-height: 48px;
    }

    .menu {
        top: 72px;
    }

    .intro-qr-card {
        grid-template-columns: 92px minmax(0, 1fr);
        padding: 14px;
    }

    .intro-qr-card img {
        width: 92px;
        height: 92px;
    }

    .language-toggle {
        min-width: 58px;
        padding-inline: 9px;
    }

    .langs a {
        padding: 7px 8px;
    }

    .hero {
        padding-top: 42px;
    }

    .gallery-grid {
        column-count: 1;
    }

    .price-heading {
        min-height: 0;
    }

    .hero-phone-wrap {
        --scan-start: 74px;
        --scan-travel: 340px;
    }

    .hero-phone-wrap img {
        max-width: min(290px, 100%);
        max-height: 500px;
    }

    .hero h1,
    .compact h1,
    .article h1 {
        font-size: 2.35rem;
    }

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

    .section {
        padding: 54px 0;
    }

    .post-card {
        grid-template-columns: 1fr;
    }

    .post-card img {
        min-height: 190px;
    }
}
