@import url("fonts.css");



.iti {
    width: 100%;
    height: 100%;
}

.iti__selected-flag {
    background: transparent !important;
    padding-left: 20px;
    outline: none;
}

.iti__country-list {
    z-index: 50;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    margin-top: 4px;
    font-family: sans-serif;
}

#phone-input {
    padding-left: 60px !important;
}



/* Apply Aktiv Grotesk globally */
html,
body,
* {
    font-family: 'Aktiv Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif !important;
}

/* ── Prevent horizontal overflow / sideways page drag ──
   Some elements (footer marquee, reveal animations that shift on the X axis)
   extend a few px past the viewport and create a horizontal scrollbar, which
   makes the fixed header look misaligned with the content. `clip` removes the
   sideways scroll without creating a scroll container, so position: sticky
   (e.g. the FAQ title) keeps working. */
html,
body {
    overflow-x: clip;
    max-width: 100%;
}

/* ── Draggable carousels (pricing + career) ── */
.x-carousel {
    cursor: grab;
    /* Full-bleed so the active card centres in the viewport. */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* Keep shadows / vertical card motion visible; horizontal stays contained
       (the side cards fade out via JS, so nothing is hard-cut). */
    overflow-x: clip;
    overflow-y: visible;
}

.x-carousel.is-dragging {
    cursor: grabbing;
}

.x-carousel.is-dragging .x-track {
    transition: none !important;
}

/* Don't let card links/buttons hijack the drag gesture */
.x-carousel.is-dragging a,
.x-carousel.is-dragging button {
    pointer-events: none;
}

.x-track {
    cursor: inherit;
}

/* ── Main header show/hide ── */
header.main-header {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.main-header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

header.main-header.header-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ── Header pill layout ── */
/* Robust centering for grid-cols-3 */
header.main-header .grid-cols-3 > * {
    min-width: 0;
}
header.main-header .grid-cols-3>*:first-child {
    justify-self: start;
    display: flex;
}

header.main-header .grid-cols-3>*:nth-child(2) {
    justify-self: center;
    display: flex;
}

header.main-header .grid-cols-3>*:last-child {
    justify-self: end;
    display: flex;
}

/* ── Dropdown menu panel — smooth slide down ── */
.main-menu-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.main-menu-panel>div {
    overflow: hidden;
}

.main-menu-panel.is-open {
    grid-template-rows: 1fr;
    pointer-events: auto;
}

/* ── Large typographic nav links ── */
.menu-big-link {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    color: #111827;
    text-decoration: none;
    line-height: 1.25;
    letter-spacing: -0.02em;
    padding: 2px 0;
    transition: .3s;
}

.menu-big-link:hover {
    transform: translateX(20px);
    opacity: .5;
}

/* ── Section label ── */
.menu-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9ca3af;
    padding-top: 2px;
}

/* ── Info links ── */
.menu-info-link {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
    width: fit-content;
}

.menu-info-link:hover {
    color: #111827;
}

/* ── Language buttons ── */
.menu-lang-btn {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #f3f4f6;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.menu-lang-btn:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #e5e7eb;
}

/* ── Hero inline navigation ── */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 28px 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-nav__left,
.hero-nav__right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-nav__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: absolute;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
}

.hero-nav a.hero-nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-nav a.hero-nav-link:hover {
    color: #fff;
}

.hero-nav__center .hero-brand-name {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
}

.hero-nav__center .hero-brand-name span {
    color: rgba(255, 255, 255, 0.35);
}

.hero-nav__center .hero-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.85;
}

/* Hero language switcher */
.hero-lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 0;
}

.hero-lang-btn:hover {
    color: #fff;
}

.hero-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    width: 130px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 50;
}

.hero-lang-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.hero-lang-dropdown button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Hero mobile menu button */
.hero-mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hero mobile dropdown */
.hero-mobile-dropdown {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    z-index: 40;
}

.hero-mobile-dropdown.open {
    display: block;
}

.hero-mobile-dropdown a,
.hero-mobile-dropdown button.hero-mob-action {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
}

.hero-mobile-dropdown a:hover,
.hero-mobile-dropdown button.hero-mob-action:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.hero-mobile-dropdown .mob-lang-section {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-mobile-dropdown .mob-lang-section .mob-lang-title {
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.hero-mobile-dropdown .mob-lang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px 8px;
}

.hero-mobile-dropdown .mob-lang-grid button {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.hero-mobile-dropdown .mob-lang-grid button:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

@media (max-width: 768px) {
    /* On mobile the hero's own inline nav is hidden — use the classic floating
       header instead, and keep it always visible (scroll never hides it). */
    .hero-nav {
        display: none;
    }

    header.main-header.header-hidden,
    header.main-header.header-visible {
        transform: translateY(0);
        opacity: 1;
    }

    .hero-nav__left,
    .hero-nav__right .hero-nav-link,
    .hero-nav__right .hero-lang-wrapper {
        display: none;
    }

    .hero-nav__center {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }

    .hero-mobile-menu-btn {
        display: flex;
    }


    .header__contacts {
        flex-direction: column;
    }

    .header__contacts span {
        width: 100%;
        min-width: 0;
    }
}

#mobile-menu {
    transform: translateY(-40px);
}

/* ── Process / Training Cards ── */
.process-section {
    position: relative;
}

.process-left {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.process-card {
    position: relative;
    background: #fff;
    padding: 32px 36px 28px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    /* Default hidden state = "below": the card rises up as you scroll down to it */
    transform: translateY(70px) scale(0.96) rotate(0deg);
    will-change: transform, opacity;
}

.process-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--card-rotate, 0deg));
}

/* Hidden state when the card has left through the TOP (scrolling down past it):
   it flies up & fades. Scrolling back up replays the entrance. */
.process-card.exit-up {
    opacity: 0;
    transform: translateY(-70px) scale(0.96) rotate(0deg);
}

.process-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 36px;
    right: 36px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.process-card .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #111827;
}

.process-card .card-num {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    font-family: 'Inter', sans-serif;
}

.process-card .card-desc {
    font-family: monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.8;
    color: #4B5563;
    text-transform: uppercase;
    padding-bottom: 20px;
}

@media (max-width: 1023px) {
    .process-left {
        position: relative;
        top: auto;
    }

    .process-card {
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .process-card {
        padding: 24px 28px 20px;
    }

    .process-card .card-title {
        font-size: 20px;
    }

    .process-card .card-num {
        font-size: 18px;
    }
    
    .process-card::after {
        left: 28px;
        right: 28px;
    }
}

/* Footer marquee — smaller text on mobile to avoid overflow */
@media (max-width: 480px) {
    .animate-scroll-marquee img {
        height: 5rem !important;
    }

    .animate-scroll-marquee span {
        font-size: 5rem !important;
    }

    .animate-scroll-marquee {
        animation-duration: 25s;
    }
}

/* Partners — smaller decorative images on tablet, hide further on mobile */
@media (max-width: 1023px) {
    #partners img[alt="Crock"] {
        display: none;
    }
}

.faq__left__content .katiska-title {
    position: sticky;
    top: 112px;
}


@media (max-width: 375px) {

    .faq__left__content {
        align-items: center;
    }

    .faq__left__content img {
        align-self: center;
    }

}








@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll-marquee {
    animation: scroll-marquee 40s linear infinite;
    display: flex;
    width: max-content;
}

/* 
#pricing {
    position: relative;
    background: url(/images/all/water.png) no-repeat center center fixed;
    background-size: cover;
    background-color: #999;
} */

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */

.reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-up,
.reveal-down {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.92);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ══════════════════════════════════════
   FLOATING HEADER — RESPONSIVE FIXES
══════════════════════════════════════ */

/* Ensure header doesn't overflow on very small screens */
@media (max-width: 440px) {
    header.main-header {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    header.main-header .grid-cols-3 {
        padding-left: 12px;
        padding-right: 12px;
        gap: 4px;
    }

    header.main-header a span.text-2xl {
        font-size: 1.1rem;
    }
    
    header.main-header img {
        width: 36px;
        height: 36px;
    }
}

/* Menu panel fixes */
@media (max-width: 540px) {
    .main-menu-panel .grid-cols-\[75px_1fr\] {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .menu-section-label {
        padding-top: 0;
    }
    
    .menu-big-link {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

@media (max-width: 480px) {
    .subscribe-btn a,
    .subscribe-btn span,
    .subscribe-btn svg {
        font-size: 16px;
    }
}

/* ══════════════════════════════════════
   HERO NAV — RESPONSIVE FIXES
══════════════════════════════════════ */

/* Fix hero center logo being too large on mobile */
@media (max-width: 480px) {
    .hero-nav__center .hero-logo-img {
        width: 56px;
        height: 56px;
    }

    .hero-nav__center .hero-brand-name {
        font-size: 20px;
    }
}

/* Hero nav flex layout fix on mobile — prevent center overlapping right */
@media (max-width: 768px) {
    .hero-nav {
        flex-wrap: nowrap;
        gap: 0;
    }

    .hero-nav__center {
        flex: 1;
        align-items: flex-start;
    }
}

/* ══════════════════════════════════════
   HERO SECTION — ALWAYS ≥ VIEWPORT HEIGHT
══════════════════════════════════════ */

/* Always at least full viewport tall (uses dvh for mobile browsers) */
#hero {
    min-height: 100vh;
    min-height: 100dvh;
}

/* ── Tablet (≤1023px) ── */
@media (max-width: 1023px) {
    #hero {
        padding-top: 5rem !important;
        padding-bottom: 11rem !important;
    }
}

/* ── Mobile (≤768px) — Hero compact layout, fits viewport ── */
@media (max-width: 768px) {
    #hero {
        padding-top: 4.5rem !important;
        padding-bottom: 9rem !important;
    }

    /* Headline — keep stagger alignments but smaller font + safe line-height */
    #hero h1 {
        font-size: clamp(2.25rem, 10vw, 4.5rem) !important;
        line-height: 1.1 !important;
    }

    /* Bottom block — keep ABSOLUTE at bottom, side-by-side row */
    #hero>.absolute.bottom-6 {
        flex-direction: row !important;
        align-items: flex-end !important;
        gap: 0.75rem !important;
        bottom: 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    #hero>.absolute.bottom-6>div:first-child {
        flex-shrink: 0;
        max-width: 50%;
        margin-top: 0 !important;
    }

    /* #hero > .absolute.bottom-6 > div:first-child > div {
        width: 140px !important;
        height: 90px !important;
    } */

    /* Bottom-Right: text & CTA — flex grow, text alignment kept right */
    #hero>.absolute.bottom-6>div:last-child {
        width: 50%;
        max-width: none !important;
    }

    /* Cat — smaller, sits on top-right of video card */
    #hero>.absolute.bottom-6 img[alt="Cat Animation"] {
        width: 50px !important;
        top: -36px !important;
        right: 6px !important;
    }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
    #hero {
        padding-top: 4.5rem !important;
        padding-bottom: 8.5rem !important;
    }

    #hero h1 {
        font-size: clamp(1.85rem, 9vw, 3rem) !important;
        line-height: 1.12 !important;
    }

    #hero>.absolute.bottom-6 {
        gap: 0.5rem !important;
    }

    #hero>.absolute.bottom-6>div:first-child>div {
        width: 100% !important;
        /* height: auto; */
    }

    #hero>.absolute.bottom-6>div:last-child p {
        font-size: 10px !important;
        line-height: 1.5 !important;
    }

    #hero>.absolute.bottom-6>div:last-child a {
        font-size: 10px !important;
        width: 100% !important;
        /* gap: 0.5rem !important; */
    }

    #hero>.absolute.bottom-6>div:last-child a span.bg-white {
        width: 1.5rem !important;
    }

    #hero>.absolute.bottom-6 img[alt="Cat Animation"] {
        width: 42px !important;
        top: -30px !important;
    }

    /* Smaller logo in hero center */
    .hero-nav__center .hero-logo-img {
        width: 48px;
        height: 48px;
    }

    .hero-nav__center .hero-brand-name {
        font-size: 18px;
    }
}

/* ── Very small phones (≤360px) — stack bottom block vertically as last resort ── */
@media (max-width: 360px) {
    #hero {
        padding-bottom: 11rem !important;
    }

    #hero h1 {
        font-size: 1.7rem !important;
        line-height: 1.15 !important;
    }

    #hero>.absolute.bottom-6 {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }

    #hero>.absolute.bottom-6>div:first-child {
        width: 100% !important;
        max-width: 100% !important;
    }

    #hero>.absolute.bottom-6>div:last-child {
        text-align: left !important;
        align-items: flex-start !important;
        width: 100%;
    }

    #hero>.absolute.bottom-6>div:last-child p {
        text-align: left !important;
    }

    #hero>.absolute.bottom-6 img[alt="Cat Animation"] {
        right: 12px !important;
    }
}


.remen-iz-img {
    width: 100%;
    height: 50px;
    background: url(/images/all/remen.jpeg) center center;
    background-size: auto 100%;
    margin-bottom: 2.5rem;
}

.subscribe-btn {
    margin: 5px;
    padding: 10px;
    border-radius: calc(1rem - 5px);
    background: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}

.subscribe-btn a,
.subscribe-btn span,
.subscribe-btn svg {
    color: #fff;
    font-size: 20px
}


.header__contacts span {
    width: 25%;
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

/* Pricing Liquid Blob Animations - Variant 1 (Warm/Purple) */
.liquid-blob-1 {
    background: linear-gradient(135deg, #FFC105 0%, #FF5500 40%, #6E33CC 80%);
    background-size: 200% 200%;
    animation: morph-blob 8s ease-in-out infinite, gradient-shift 8s ease-in-out infinite;
}
.liquid-blob-secondary-1 {
    background: linear-gradient(135deg, #FFC105 0%, #FF5500 100%);
    border-radius: 50%;
}

/* Variant 2 (Blue/Purple) */
.liquid-blob-2 {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 40%, #8E2DE2 80%);
    background-size: 200% 200%;
    animation: morph-blob 9s ease-in-out infinite, gradient-shift 7s ease-in-out infinite;
}
.liquid-blob-secondary-2 {
    background: linear-gradient(135deg, #00C6FF 0%, #8E2DE2 100%);
    border-radius: 50%;
}

/* Variant 3 (Green/Cyan) */
.liquid-blob-3 {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 40%, #00C9FF 80%);
    background-size: 200% 200%;
    animation: morph-blob 7s ease-in-out infinite, gradient-shift 9s ease-in-out infinite;
}
.liquid-blob-secondary-3 {
    background: linear-gradient(135deg, #38ef7d 0%, #00C9FF 100%);
    border-radius: 50%;
}

@keyframes morph-blob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(14px, -22px) scale(1.12); }
    66%      { transform: translate(-12px, 16px) scale(0.92); }
}
.animate-blob-float { animation: blob-float 7s ease-in-out infinite; }
.animation-delay-2000 { animation-delay: 2.3s; }

/* Event Cards — smooth scroll entrance */
.event-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.event-card:nth-child(3) { transition-delay: 0.1s; }
.event-card:nth-child(4) { transition-delay: 0.25s; }
.event-card:nth-child(5) { transition-delay: 0.4s; }