/* ═══════════════════════════════════════════════════════════
   powerdevelo.cz — onepage microsite styles
   Font: Archivo (self-hosted variable font)
   Design: white base, green hero, dark blue footer
   ═══════════════════════════════════════════════════════════ */

/* ── Font face ── */
@font-face {
    font-family: 'Archivo';
    src: url('../fonts/archivo-variable.woff2') format('woff2');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Variables ── */
:root {
    --pw-font: 'Archivo', system-ui, -apple-system, sans-serif;
    --pw-max-width: 1200px;
    --pw-green: #419744;
    --pw-green-dark: #377f3a;
    --pw-blue-dark: #093a54;
    --pw-blue-nav: #21409a;
    --pw-teal: #194b47;
    --pw-footer-bg: #03468f;
    --pw-text: #1f1f1f;
    --pw-text-light: #696969;
    --pw-white: #ffffff;
    --pw-radius: 10px;
    --pw-hero-inset: 20px;
    --pw-green-cta: #007d45;
}

body {
    font-family: var(--pw-font);
    font-weight: 400;
    background: var(--pw-white);
    color: var(--pw-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ── Container ── */
.container {
    max-width: var(--pw-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   Background + image: nearly full viewport width
   Text content: constrained to 1200px container
   ═══════════════════════════════════════════════════════════ */
.hero {
    padding: var(--pw-hero-inset) var(--pw-hero-inset) 0 var(--pw-hero-inset);
}

.hero__bg {
    background: var(--pw-green-dark);
    border-radius: var(--pw-radius);
    position: relative;
    min-height: 615px;
    overflow: hidden;
}

/* ── Hero container (1200px text constraint) ── */
.hero__container {
    max-width: var(--pw-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Header inside hero ── */
.hero__header {
    position: relative;
    z-index: 10;
}

.hero__header .hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.hero__logo {
    display: flex;
    align-items: center;
}

.hero__logo img {
    height: 28px;
    width: auto;
}

.hero__nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero__nav-links {
    display: flex;
    gap: 1.5rem;
}

.hero__nav-links a {
    font-size: 1rem;
    color: var(--pw-white);
    transition: opacity 0.2s;
}

.hero__nav-links a:hover {
    opacity: 0.8;
}

.hero__lang {
    font-size: 1rem;
    color: var(--pw-green-dark);
    background: var(--pw-white);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.hero__lang:hover {
    background: var(--pw-green);
    color: var(--pw-white);
    transform: scale(1.05);
}

.hero__menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--pw-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

/* ── Hero body ── */
.hero__body {
    position: relative;
    z-index: 5;
}

.hero__content {
    max-width: 580px;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--pw-white);
    margin-bottom: 2rem;
}

.hero__desc {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--pw-white);
    max-width: 580px;
    margin-bottom: 2rem;
}

/* ── CTA button ── */
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--pw-white);
    color: var(--pw-green-cta);
    font-size: 1rem;
    font-weight: 400;
    padding: 0.7rem 1.5rem;
    border-radius: 110px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s;
    text-decoration: none;
}

.hero__cta:hover {
    transform: scale(1.04);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero__cta-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__cta:hover .hero__cta-arrow {
    transform: translateX(4px);
}

/* ── Hero image (full-width, positioned on bg, cropped right) ── */
.hero__image {
    position: absolute;
    right: -18%;
    bottom: 30px;
    top: 90px;
    width: 70%;
    z-index: 2;
    pointer-events: none;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}


/* ═══════════════════════════════════════════════════════════
   SECTION TITLE (shared)
   ═══════════════════════════════════════════════════════════ */
.section-title {
    font-family: var(--pw-font);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--pw-blue-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════
   PRESS RELEASES
   ═══════════════════════════════════════════════════════════ */
.press {
    padding: 3rem 0 4rem;
}

.press__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.press-card {
    display: flex;
    flex-direction: column;
    border-radius: 5px 20px 20px 20px;
    overflow: hidden;
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
}

.press-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.press-card__image {
    height: 210px;
    overflow: hidden;
    border-radius: 5px 20px 20px 20px;
}

.press-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.press-card:hover .press-card__image img {
    transform: scale(1.05);
}

.press-card__image--empty {
    background: #e8e8e8;
}

.press-card__body {
    padding: 1.2rem 0.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pw-blue-dark);
    margin-bottom: 0.5rem;
}

.press-card__excerpt {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--pw-text-light);
    margin-bottom: auto;
}

.press-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pw-green);
    margin-top: 0.8rem;
    transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.2s;
}

.press-card:hover .press-card__link {
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS
   ═══════════════════════════════════════════════════════════ */
.partners {
    padding: 3rem 0;
}

.partners .section-title {
    color: var(--pw-teal);
}

/* Kaixentec feature */
.kaixentec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.kaixentec__text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pw-teal);
    max-width: 340px;
}

.kaixentec__logo {
    max-width: 520px;
    height: auto;
}

/* Partner logos — infinite marquee (same as archdevelo) */
.partners__marquee {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: calc(2rem + 20px);
    padding: 10px 0;
}
.partners__row { overflow: hidden; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(var(--scroll-w)); }
}
@keyframes marquee-reverse {
    from { transform: translateX(var(--scroll-w)); }
    to   { transform: translateX(0); }
}
.partners__track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
}
.partners__track[data-running="1"] {
    will-change: transform;
    animation: marquee var(--marquee-dur, 50s) linear infinite;
}
.partners__track[data-running="1"][data-reverse="1"] {
    animation-name: marquee-reverse;
}
@media (hover: hover) {
    .partners__marquee:hover .partners__track[data-running="1"] {
        animation-play-state: paused;
    }
}
.partners__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.partner-logo {
    height: 45px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.4s, opacity 0.4s;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT SECTIONS (AC / DC)
   ═══════════════════════════════════════════════════════════ */
.product {
    padding: 4rem 0;
}

.product--alt {
    background: #f8f9fa;
}

.product__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.product__intro p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--pw-text);
    margin-bottom: 1rem;
}

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

/* Feature grid */
.product__subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pw-blue-dark);
    margin-bottom: 1.5rem;
}

.features__grid {
    display: grid;
    width: 100%;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.features__grid--3col {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 3rem;
}

.features__item {
    display: flex;
    flex-direction: column;
}

.features__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pw-blue-dark);
    margin-bottom: 0.5rem;
}

.features__item p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--pw-blue-nav);
}

/* Tech specs */
.specs {
    margin-bottom: 3rem;
}

.specs__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
}

.specs__item {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--pw-text);
    padding: 0.4rem 0;
}

.specs__item::before {
    content: '✓';
    color: var(--pw-green);
    font-weight: 700;
    flex-shrink: 0;
}

/* Integration block */
.integration {
    margin-bottom: 3rem;
}

.integration__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--pw-text);
    margin-bottom: 1rem;
}

.integration__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.integration__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--pw-text);
    background: var(--pw-white);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.5rem 1rem;
}

.integration__item::before {
    content: '⚙';
    font-size: 0.85rem;
}

/* Use cases */
.usecases {
    margin-bottom: 3rem;
}

.usecases__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.usecase-pill {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pw-green-dark);
    background: rgba(65, 151, 68, 0.1);
    border: 1px solid rgba(65, 151, 68, 0.25);
    border-radius: 100px;
    padding: 0.45rem 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.usecase-pill:hover {
    background: rgba(65, 151, 68, 0.18);
    transform: scale(1.03);
}

/* Install note */
.product__note {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pw-text);
    background: rgba(65, 151, 68, 0.06);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Key advantages summary list */
.advantages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    margin-bottom: 2rem;
}

.advantages__item {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--pw-text);
    padding: 0.4rem 0;
}

.advantages__item::before {
    content: '●';
    color: var(--pw-green);
    font-size: 0.6rem;
    flex-shrink: 0;
}

/* DC subsection blocks */
.dc-block {
    margin-bottom: 2.5rem;
}

.dc-block__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pw-blue-dark);
    margin-bottom: 0.75rem;
}

.dc-block__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pw-text);
    margin-bottom: 0.75rem;
}

.dc-block__list {
    list-style: none;
    padding: 0;
}

.dc-block__list li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--pw-text);
    padding: 0.3rem 0;
}

.dc-block__list li::before {
    content: '—';
    color: var(--pw-green);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   TURNKEY SECTION
   ═══════════════════════════════════════════════════════════ */
.turnkey {
    padding: 4rem 0;
}

.turnkey__intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--pw-text);
}

.turnkey__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.turnkey__item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--pw-white);
    border-radius: var(--pw-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s;
}

.turnkey__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.turnkey__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--pw-green);
    color: var(--pw-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.turnkey__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pw-blue-dark);
    line-height: 1.3;
}

.turnkey__note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pw-text-light);
}

/* ═══════════════════════════════════════════════════════════
   CERTIFIKACE
   ═══════════════════════════════════════════════════════════ */
.certifikace {
    padding: 3rem 0 4rem;
}

.certifikace .section-title {
    color: var(--pw-teal);
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--pw-footer-bg);
    color: var(--pw-white);
    padding: 3rem 0 2rem;
}

.footer__title {
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--pw-white);
    margin-bottom: 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    align-items: start;
}
.footer__logo {
    margin-bottom: 1rem;
    height: auto;
    max-width: 220px;
    filter: brightness(0) invert(1);
}
.footer__main-info { margin-bottom: 1rem; }
.footer__main-desc {
    font-size: 1rem;
    line-height: 1.47;
    color: rgba(255, 255, 255, 0.8);
}
.footer__main-desc--small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.3rem;
}
.footer__main-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__contact-link:hover { color: #fff; }
.footer__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}
.footer__cta-link:hover { opacity: 0.8; }

.footer__divisions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer__div-logo {
    height: 22px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}
.footer__div-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}
.footer__div-desc {
    font-size: 1rem;
    line-height: 1.47;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
}
.footer__div-link {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__div-link:hover { color: #fff; }
.footer__separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}

.footer__copyright {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.footer__copyright a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.footer__copyright a:hover {
    color: var(--pw-white);
}

/* ═══════════════════════════════════════════════════════════
   MICROINTERACTIONS — Keyframes
   ═══════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroSlideUp {
    from { transform: translateY(30px); }
    to   { transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroLogoIn {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Hero entrance (only when JS is ready) ── */
.js-ready .hero__logo {
    animation: heroLogoIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.js-ready .hero__nav {
    animation: heroFadeIn 0.5s ease 0.3s both;
}

.js-ready .hero__title {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.js-ready .hero__desc {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.js-ready .hero__cta {
    animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.js-ready .hero__image {
    animation: heroSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

/* ── Nav link underline hover ── */
.hero__nav-links a {
    position: relative;
    padding-bottom: 2px;
}

.hero__nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pw-white);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__nav-links a:hover::after {
    width: 100%;
}

.hero__nav-links a:hover {
    opacity: 1;
}

/* ── Scroll reveal base states (only when JS is ready) ── */
.js-ready [data-reveal="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-ready [data-reveal="fade-in"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

[data-reveal="fade-in"].is-visible {
    opacity: 1;
}

.js-ready [data-reveal="fade-left"] {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

.js-ready [data-reveal="fade-right"] {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Footer division hover ── */
.footer__division {
    padding-left: 0;
    transition: padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s;
}

.footer__division:hover {
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.footer__division-name {
    transition: color 0.2s;
}

.footer__division:hover .footer__division-name {
    color: var(--pw-white);
}

/* ── Kaixentec logo hover ── */
.kaixentec__logo {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.kaixentec__logo:hover {
    transform: scale(1.03);
}

/* ── Section title reveal accent ── */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--pw-green);
    margin: 0.8rem auto 0;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.section-title.is-visible::after {
    width: 50px;
}

/* ── Focus-visible (keyboard accessibility) ── */
.hero__nav-links a:focus-visible,
.hero__lang:focus-visible,
.hero__cta:focus-visible,
.press-card:focus-visible,
.footer__copyright a:focus-visible {
    outline: 2px solid var(--pw-white);
    outline-offset: 3px;
    border-radius: 3px;
}

.hero__menu-btn:focus-visible {
    outline: 2px solid var(--pw-white);
    outline-offset: 2px;
}

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

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__image {
        width: 60%;
        right: -15%;
    }

    .features__grid--3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

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

    .kaixentec__logo {
        max-width: 350px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer__divisions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --pw-hero-inset: 12px;
    }

    .container {
        padding: 0 1.2rem;
    }

    /* Hero */
    .hero__header .hero__container {
        padding-top: 1rem;
    }

    .hero__nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pw-green-dark);
        flex-direction: column;
        padding: 1rem 1.5rem;
        border-radius: 0 0 var(--pw-radius) var(--pw-radius);
        z-index: 20;
    }

    .hero__nav-links.open {
        display: flex;
    }

    .hero__nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero__nav-links li:last-child {
        border-bottom: none;
    }

    .hero__nav-links a {
        display: block;
        padding: 0.8rem 0;
    }

    .hero__menu-btn {
        display: block;
    }

    .hero__bg {
        min-height: auto;
    }

    .hero__content {
        max-width: 100%;
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero__desc {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero__image {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 90%;
        max-width: 400px;
        max-height: 320px;
        margin: 0 auto;
        overflow: hidden;
    }

    .hero__image img {
        object-fit: cover;
        object-position: top center;
    }

    /* Product sections */
    .features__grid--2col,
    .features__grid--3col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

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

    .product {
        padding: 3rem 0;
    }

    .turnkey {
        padding: 3rem 0;
    }

    /* Press */
    .press__grid {
        grid-template-columns: 1fr;
    }

    /* Kaixentec */
    .kaixentec {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 0;
    }

    .kaixentec__text {
        max-width: 100%;
    }

    .kaixentec__logo {
        max-width: 280px;
    }

    /* Partners */
    .partners__grid {
        gap: 1.5rem 2rem;
    }

    .partner__logo {
        height: 45px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer__divisions {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer__title {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --pw-hero-inset: 8px;
        --pw-radius: 8px;
    }

    .hero__header {
        padding: 1rem;
    }

    .hero__logo img {
        height: 22px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .footer__division-name {
        font-size: 1.3rem;
    }

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