:root {
    --bg: #f7fbff;
    --text: #1f2a37;
    --muted: #5c6a79;
    --brand: #0ea5a3;
    --brand-soft: #d8f5f2;
    --accent: #ffb703;
    --surface: #ffffff;
    --line: #e7eef5;
    --radius: 18px;
    --shadow: 0 18px 40px rgba(18, 45, 66, 0.08);
    --font-title: "Nunito", sans-serif;
    --font-text: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #7fcfce #eaf4f6;
    scrollbar-width: thin;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: #eaf4f6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7fd7d6 0%, #38aead 100%);
    border-radius: 999px;
    border: 2px solid #eaf4f6;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #67c9c8 0%, #2f9a99 100%);
}

body {
    font-family: var(--font-text);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body.is-loading {
    overflow: hidden;
}

.easyloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.easyloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.easyloader-image {
    width: min(180px, 36vw);
    height: auto;
    animation: loaderPulse 1.8s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes loaderPulse {
    0% { transform: scale(0.94); opacity: 0.82; }
    50% { transform: scale(1.06); opacity: 1; }
    100% { transform: scale(0.94); opacity: 0.82; }
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(450px 300px at 10% 5%, rgba(14, 165, 163, 0.15), transparent 70%),
        radial-gradient(500px 340px at 85% 15%, rgba(255, 183, 3, 0.18), transparent 70%),
        linear-gradient(180deg, #f9fdff 0%, #f5faff 100%);
}

.page-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: url("assets/images/pattern.png");
    background-repeat: repeat;
    background-size: 190px 190px;
    background-position: top left;
    opacity: 0.022;
}

.decor-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-sticker {
    position: absolute;
    display: block;
    opacity: 0.22;
    filter: drop-shadow(0 10px 20px rgba(35, 71, 94, 0.08));
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.decor-sticker-a {
    width: 80px;
    left: 1.5%;
    top: 14%;
}

.decor-sticker-b {
    width: 96px;
    right: 2%;
    top: 18%;
}

.decor-sticker-c {
    width: 72px;
    left: 2%;
    top: 47%;
}

.decor-sticker-d {
    width: 88px;
    right: 1.8%;
    top: 52%;
}

.decor-sticker-e {
    width: 78px;
    left: 3%;
    bottom: 14%;
}

.decor-sticker-f {
    width: 92px;
    right: 2.5%;
    bottom: 10%;
}

.layout {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 1.3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    position: sticky;
    top: 0.8rem;
    z-index: 10;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-horizontal {
    height: 40px;
    width: auto;
    display: block;
}

.logo-square {
    height: 38px;
    width: 38px;
    border-radius: 10px;
    display: none;
}

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

.menu {
    display: none;
}

.menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.88;
}

.menu a:hover {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lang-dropdown {
    position: relative;
}

.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid #dfeaf3;
    background: #f3f8fc;
    border-radius: 12px;
    padding: 0.44rem 0.56rem;
    font-size: 0.76rem;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
}

.lang-caret {
    color: #70839a;
    font-size: 0.8rem;
}

.lang-menu {
    list-style: none;
    margin: 0;
    padding: 0.28rem;
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    width: 148px;
    border: 1px solid #dfeaf3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(21, 48, 72, 0.12);
    z-index: 30;
}

.lang-menu[hidden] {
    display: none;
}

.lang-option {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 9px;
    padding: 0.4rem 0.45rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
}

.lang-option:hover,
.lang-option.active {
    background: #eff6fc;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-main {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(14, 165, 163, 0.3);
}

.btn-soft {
    background: var(--brand-soft);
    color: #0d6f6e;
}

.hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.02fr);
    gap: 1.6rem;
    align-items: center;
    padding: 2.5rem 0 2rem;
}

.hero-side {
    width: 100%;
}

.hero-copy {
    text-align: left;
    max-width: 620px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.77rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a8d8b;
    background: var(--brand-soft);
    border-radius: 999px;
    padding: 0.32rem 0.74rem;
    margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 0.9rem;
}

.lead {
    color: var(--muted);
    max-width: 56ch;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
    justify-content: flex-start;
}

.hero-parallax {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    --parallax-x: 0px;
    --parallax-y: 0px;
    --cloud-back-drift-x: 0px;
    --cloud-back-drift-y: 0px;
    --cloud-front-drift-x: 0px;
    --cloud-front-drift-y: 0px;
}

.hero-parallax-inner {
    position: absolute;
    inset: 0;
}

.hero-layer {
    position: absolute;
    display: block;
    user-select: none;
    pointer-events: none;
    will-change: transform;
}

.hero-layer-circle {
    width: 78%;
    left: 10%;
    top: 8%;
    z-index: 1;
    transform: translate3d(calc(var(--parallax-x) * 0.18), calc(var(--parallax-y) * 0.18), 0);
}

.hero-layer-clouds-back {
    width: 73%;
    left: 19%;
    top: 21%;
    z-index: 2;
    filter: drop-shadow(0 6px 10px rgba(109, 142, 173, 0.1));
    transform: translate3d(
        calc(var(--parallax-x) * 0.28 + var(--cloud-back-drift-x)),
        calc(var(--parallax-y) * 0.28 + var(--cloud-back-drift-y)),
        0
    );
}

.hero-layer-logo {
    width: 60%;
    left: 42%;
    top: 29%;
    z-index: 4;
    transform: translate3d(calc(var(--parallax-x) * 0.46), calc(var(--parallax-y) * 0.46), 0);
}

.hero-layer-bear {
    width: 42%;
    left: 2%;
    top: 22%;
    z-index: 5;
    transform: translate3d(calc(var(--parallax-x) * 0.72), calc(var(--parallax-y) * 0.72), 0);
}

.hero-layer-clouds-front {
    width: 58%;
    left: 0%;
    bottom: 20%;
    z-index: 3;
    filter: drop-shadow(0 6px 10px rgba(109, 142, 173, 0.12));
    transform: translate3d(
        calc(var(--parallax-x) * 0.56 + var(--cloud-front-drift-x)),
        calc(var(--parallax-y) * 0.56 + var(--cloud-front-drift-y)),
        0
    );
}

.hero-parallax.is-idle .hero-layer {
    transition: transform 0.5s ease;
}

.section {
    padding: 1.9rem 0;
}

.section-head {
    margin-bottom: 1.05rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.photo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.65rem;
    box-shadow: var(--shadow);
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid #e7edf4;
}

.photo-card h3 {
    font-size: 0.98rem;
    margin: 0.55rem 0.1rem 0.2rem;
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.category-card h3 {
    font-size: 1.02rem;
    margin-bottom: 0.35rem;
}

.category-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.section-why .benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.benefits article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
}

.benefits p {
    color: var(--muted);
}

.socials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.social-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: #cfe2f2;
}

.social-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.card-top {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.social-card strong {
    font-size: 1rem;
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 20px;
}

.flag-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.35);
    flex: 0 0 18px;
}

.note {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.note a {
    color: #0b7f7e;
    font-weight: 600;
}

.footer {
    margin-top: 1.1rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(213, 223, 233, 0.92);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 36px rgba(173, 189, 205, 0.14);
    color: var(--muted);
    font-size: 0.9rem;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.9fr);
    gap: 1.2rem;
    align-items: center;
}

.footer-meta {
    min-width: 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-brand-copy {
    min-width: 0;
}

.footer-brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    flex: 0 0 56px;
    box-shadow: 0 10px 22px rgba(155, 176, 196, 0.18);
}

.footer-tagline {
    margin: 0;
    font-size: 0.95rem;
}

.footer-legal {
    margin-top: 0.7rem;
    max-width: 760px;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #51606e;
}

.footer-legal p {
    margin: 0.32rem 0;
}

.footer-legal-name {
    font-weight: 700;
    color: #243040;
    letter-spacing: 0.02em;
}

.footer-qr-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.94), rgba(241, 247, 252, 0.9));
    border: 1px solid rgba(214, 226, 236, 0.92);
}

.footer-qr-slot {
    width: 110px;
    aspect-ratio: 1 / 1;
    flex: 0 0 110px;
    border-radius: 24px;
    border: 1px dashed #b8cbda;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 249, 253, 0.92)),
        repeating-linear-gradient(
            0deg,
            rgba(184, 203, 218, 0.1) 0,
            rgba(184, 203, 218, 0.1) 6px,
            rgba(255, 255, 255, 0) 6px,
            rgba(255, 255, 255, 0) 12px
        );
    display: grid;
    place-items: center;
    color: #7a92a8;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    overflow: hidden;
    text-decoration: none;
}

.footer-qr-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-qr-copy {
    min-width: 0;
}

.footer-qr-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #243040;
}

.footer-qr-note {
    margin: 0.28rem 0 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: #5d7082;
}

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

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

.scroll-top {
    position: fixed;
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1;
    color: #ffffff;
    background: #0ea5a3;
    box-shadow: 0 10px 20px rgba(14, 165, 163, 0.34);
    z-index: 25;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }

    .hero-side {
        display: flex;
        justify-content: center;
    }

    .hero-copy {
        max-width: none;
        text-align: center;
    }

    .lead {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-parallax {
        max-width: 430px;
    }

    .photo-grid,
    .categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-why .benefits {
        grid-template-columns: 1fr;
    }

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

    .footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

@media (max-width: 720px) {
    .decor-sticker {
        opacity: 0.16;
    }

    .decor-sticker-a,
    .decor-sticker-c,
    .decor-sticker-e {
        left: -8px;
    }

    .decor-sticker-b,
    .decor-sticker-d,
    .decor-sticker-f {
        right: -10px;
    }

    .decor-sticker-a {
        width: 54px;
        top: 18%;
    }

    .decor-sticker-b {
        width: 62px;
        top: 26%;
    }

    .decor-sticker-c {
        width: 52px;
        top: 50%;
    }

    .decor-sticker-d {
        width: 58px;
        top: 58%;
    }

    .decor-sticker-e {
        width: 50px;
        bottom: 17%;
    }

    .decor-sticker-f {
        width: 58px;
        bottom: 12%;
    }

    .topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 18px;
        padding: 0.8rem;
        gap: 0.65rem;
        position: static;
    }

    .brand {
        justify-content: flex-start;
    }

    .logo-horizontal {
        height: 28px;
    }

    .menu {
        display: none;
    }

    .header-actions {
        width: auto;
        display: flex;
        justify-content: flex-end;
        gap: 0.45rem;
        position: static;
        transform: none;
    }

    .lang-dropdown {
        width: auto;
    }

    .lang-trigger {
        width: auto;
        justify-content: flex-start;
        min-width: 96px;
    }

    .lang-menu {
        left: 0;
        right: auto;
        width: 144px;
    }

    .logo-horizontal {
        display: block;
    }

    .logo-square {
        display: none;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-parallax {
        max-width: 320px;
    }

    .photo-grid,
    .categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer {
        padding: 1rem;
        gap: 0.9rem;
        border-radius: 22px;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-brand {
        gap: 0.7rem;
    }

    .footer-brand-logo {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        flex-basis: 48px;
    }

    .footer-legal {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .footer-qr-card {
        padding: 0.8rem;
        gap: 0.7rem;
        border-radius: 18px;
    }

    .footer-qr-slot {
        width: 84px;
        flex-basis: 84px;
        border-radius: 18px;
    }

    .footer-qr-title {
        font-size: 0.95rem;
    }

    .footer-qr-note {
        font-size: 0.78rem;
    }

    .scroll-top {
        display: inline-flex;
    }
}
