/* ==========================================================================
   TEKA BARISTA SERIES - OFFICIAL LANDING PAGE STYLES
   ========================================================================== */

:root {
    --teka-red: #c8102e;
    --teka-red-text: #ee2e4b;
    --teka-red-text-on-anthracite: #f74662;
    --teka-red-glow: rgba(200, 16, 46, 0.35);
    --teka-red-hover: #e01234;
    --bg-black: #0b0b0b;
    --bg-dark: #121212;
    --bg-card: #181818;
    --bg-card-hover: #202020;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(200, 16, 46, 0.4);
    
    --header-bg-scrolled: #222222;
    
    --text-white: #ffffff;
    --text-light: #e6e6e6;
    --text-muted: #9c9c9c;
    --text-dim: #6e6e6e;
    --text-scroll: #888888;
    
    --font-main: 'Exo 2', sans-serif;
    --font-display: 'Exo 2', sans-serif;
    
    --container-max: 1000px;
    --header-height: 126px;
    --header-height-scrolled: 70px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Focus Visible (WCAG 2.4.7) */
:focus-visible {
    outline: 2px solid var(--teka-red-text, #ee2e4b);
    outline-offset: 3px;
}

/* Skip link (WCAG 2.4.1) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background-color: var(--teka-red);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-black);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-black);
}

/* Images & Media */
img, picture, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header Typography (Unified Site-Wide) */
.section-header {
    margin-bottom: 56px;
    text-align: center;
}

.section-header--center {
    text-align: center;
}

.section-header__overline {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teka-red-text, #ee2e4b);
    margin-bottom: 14px;
}

.section-header__title {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-header__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    color: #888888;
    line-height: 1.5;
    max-width: 620px;
    margin: 0 auto;
}

.section-header--center .section-header__subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: var(--teka-red);
    border-color: var(--teka-red);
    box-shadow: 0 0 20px var(--teka-red-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
    background: transparent;
    height: var(--header-height);
}

.header.is-scrolled {
    background: var(--header-bg-scrolled);
    height: var(--header-height-scrolled);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.header__logo-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    line-height: 0;
}

.header__logo {
    width: 126px;
    height: 126px;
    object-fit: contain;
    display: block;
    filter: none;
    box-shadow: none;
    transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), height 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.is-scrolled .header__logo {
    width: 92px;
    height: 92px;
    filter: none;
    box-shadow: none;
}

.header__nav {
    margin-left: auto;
    padding-top: 25px;
    transition: padding-top 0.25s ease;
}

.header.is-scrolled .header__nav {
    padding-top: 25px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav-link {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.header__nav-link:hover {
    color: var(--teka-red);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--teka-red);
    transition: var(--transition-smooth);
}

.header__nav-link:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.header__mobile-toggle {
    display: none;
    position: absolute;
    right: 20px;
    top: 25px;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 19px;
    z-index: 1002;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

.header__mobile-toggle.is-active .header__hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.header__mobile-toggle.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.header__mobile-toggle.is-active .header__hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header__mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 120px 32px 40px;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__mobile-drawer.is-open {
    transform: translateY(0);
}

.header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.header__mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
}

.header__mobile-nav-link--highlight {
    color: var(--teka-red-text, #ee2e4b);
}

/* ==========================================================================
   HERO / INTRO SECTION
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 728px;
    overflow: hidden;
    background-color: #000000;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero__bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
    pointer-events: none;
}

.hero__scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

.hero__scroll-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-scroll); /* #888888 */
    transition: color 0.2s ease;
}

.hero__scroll-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.hero__scroll-down:hover .hero__scroll-chevron {
    transform: translateY(6px);
}

.hero__sound-toggle {
    position: absolute;
    bottom: 36px;
    right: 0;
    width: 26px;
    height: 26px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__sound-toggle:hover {
    opacity: 1;
    transform: scale(1.08);
}

.hero__sound-toggle.is-muted .hero__sound-wave {
    display: none;
}

.hero__sound-toggle.is-muted .hero__sound-cross {
    display: block;
}

.hero__sound-toggle:not(.is-muted) .hero__sound-cross {
    display: none;
}

.hero__sound-toggle:not(.is-muted) .hero__sound-wave {
    display: block;
}

/* ==========================================================================
   BRAND MANIFESTO / LEAD
   ========================================================================== */
.manifesto {
    padding: 60px 0 80px;
    background-color: var(--bg-black);
    position: relative;
}

.manifesto__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.manifesto__accent-line,
.manifesto__headline,
.manifesto__tagline {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.manifesto.is-visible .manifesto__accent-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.manifesto.is-visible .manifesto__headline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.manifesto.is-visible .manifesto__tagline {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.manifesto__accent-line {
    width: 80px;
    height: 3px;
    background-color: var(--teka-red);
    margin-bottom: 22px;
    border-radius: 2px;
}

.manifesto__headline {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: normal;
}

.manifesto__tagline {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 662px;
    line-height: 1.5;
}

.manifesto__highlight {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--teka-red-text, #ee2e4b);
}

/* ==========================================================================
   MODEL REVEAL (WYBIERZ SWÓJ MODEL)
   ========================================================================== */
.models-reveal {
    position: relative;
    padding: 100px 0 120px;
    background-color: #000000;
    overflow: hidden;
}

/* Video Presentation on Scroll - overlays the section with zero layout shift */
.models-reveal__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Black gradient overlays at top and bottom to blend seamlessly into background */
.models-reveal__video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.models-reveal__video-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 3;
    pointer-events: none;
}

.models-reveal.is-revealed .models-reveal__video-wrap {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.models-reveal__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    background: #000000;
}

/* Content Fade In after video - pure fade-in in place without vertical sliding */
.models-reveal__content {
    position: relative;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.models-reveal.is-revealed .models-reveal__content {
    opacity: 1;
    pointer-events: auto;
}

.models-reveal__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header typography */
.models-reveal .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.models-reveal .section-header__overline {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--teka-red-text, #ee2e4b);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.models-reveal .section-header__title {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: normal;
}

.models-reveal .section-header__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    color: #888888;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Models Grid - 2 columns, transparent background */
.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

/* Model Card: No gray apla, transparent */
.model-card {
    position: relative;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transform: none !important;
    user-select: none;
    outline: none;
}

/* Red glow behind the machine ("czerwone pobicie") */
.model-card__glow-aura {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #c8102e;
    filter: blur(30px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Machine Image Wrap & Image */
.model-card__image-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.model-card__image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.85));
    transform: scale(1);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Hover: ONLY machine scale and red glow aura ("czerwone pobicie") */
.model-card:hover .model-card__image,
.model-card.is-active .model-card__image {
    transform: scale(1.06);
}

.model-card:hover .model-card__glow-aura,
.model-card.is-active .model-card__glow-aura {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

/* Card Information */
.model-card__info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.model-card__name {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
    letter-spacing: normal;
}

.model-card__subtitle {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: none;
}

.model-card__btn-wrap {
    display: flex;
    justify-content: center;
}

/* Button with white border as in buttons.json (button_ghost_light) */
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-ghost-light:hover,
.model-card:hover .btn-ghost-light,
.model-card.is-active .btn-ghost-light {
    border-color: var(--teka-red);
    color: var(--teka-red);
}

/* ==========================================================================
   INTERACTIVE TOOLTIP / POPOVER (Frame 428)
   ========================================================================== */
.model-tooltip {
    display: none;
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 40px auto 0;
    background-color: #222222;
    border-radius: 4px;
    padding: 40px 48px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
    z-index: 10;
    animation: tooltipFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.model-tooltip.is-open {
    display: block;
}

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

/* Triangle Arrow pointing up */
.model-tooltip__arrow {
    position: absolute;
    top: -14px;
    left: 25%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 14px solid #222222;
    transition: left 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.model-tooltip__arrow.is-right {
    left: 75%;
}

/* Close Button */
.model-tooltip__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: transparent;
    border: none;
    color: #888888;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.model-tooltip__close:hover {
    color: #ffffff;
    transform: scale(1.15);
}

/* Tooltip Panels */
.model-tooltip__panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-tooltip__panel.is-active {
    display: block;
    opacity: 1;
}

.model-tooltip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.model-tooltip__feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.model-tooltip__feature-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.model-tooltip__icon-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-tooltip__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.model-tooltip__titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.model-tooltip__badge {
    display: block;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 700;
    color: var(--teka-red-text, #ee2e4b);
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.model-tooltip__title {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.model-tooltip__desc {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    line-height: 16px;
    margin: 0;
    width: 100%;
    opacity: 0.95;
}

/* ==========================================================================
   FEATURES GRID (NAJWAŻNIEJSZE & POZOSTAŁE FUNKCJE)
   ========================================================================== */
.features-main,
.features-extra {
    padding: 100px 0 120px;
    background-color: #000000;
    position: relative;
}

.features-main__container,
.features-extra__container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header for Features */
.features-main .section-header,
.features-extra .section-header {
    text-align: center;
    margin-bottom: 56px;
}

.features-main .section-header__overline,
.features-extra .section-header__overline {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--teka-red-text, #ee2e4b);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.features-main .section-header__title,
.features-extra .section-header__title {
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: normal;
}

.features-main .section-header__subtitle,
.features-extra .section-header__subtitle {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 300;
    color: #888888;
    line-height: 1.5;
    max-width: 620px;
    margin: 0 auto;
}

/* 4 kolumny: flex-wrap with centered items */
.features-grid,
.features-extra__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
    max-width: 1040px;
    margin: 0 auto;
}

/* Feature Card: bez apli, bez obramowania, treść wyśrodkowana */
.feature-card {
    flex: 0 1 225px;
    max-width: 240px;
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-radius: 5px;
    box-shadow: none !important;
    padding: 20px 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background-color 0.25s ease;
}

/* Hover state from icons_hover.json (anthracite #222222 fill) */
.feature-card:hover {
    background-color: #222222 !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.feature-card--secondary {
    background: transparent !important;
}

/* Icon wrap: 70x70 centered */
.feature-card__icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    display: block;
    color: #ffffff;
    transition: color 0.25s ease;
}

.feature-card__icon path,
.feature-card__icon rect,
.feature-card__icon circle,
.feature-card__icon line {
    transition: fill 0.25s ease, stroke 0.25s ease;
}

/* Hover state: icon transitions directly to Teka red without any intermediate color shift */
.feature-card:hover .feature-card__icon {
    color: var(--teka-red);
}

/* Tytuł pod ikoną 16px bold */
.feature-card__title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Podpis 14px weight 300 */
.feature-card__text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* ==========================================================================
   TECHNOLOGY CAROUSEL (VIDEO SHOWCASE)
   ========================================================================== */
.technology {
    padding: 120px 0;
    background-color: var(--bg-black);
    overflow: hidden;
    width: 100%;
}

.technology__container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.carousel {
    --card-w: 688px;
    --card-h: 400px;
    --peek-w: 220px;
    --peek-h: 140px;
    --peek-offset: 390px;
    --far-offset: 630px;
    margin-top: 48px;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.carousel__stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: var(--card-h);
    margin: 0 auto;
    overflow: hidden;
}

.carousel__slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                width 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                left 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.5s ease;
    will-change: transform, opacity, left, width, height;
    user-select: none;
}

.carousel__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Positions matching Figma Design & Carousel Container.png */
.carousel__slide[data-pos="active"] {
    width: var(--card-w);
    height: var(--card-h);
    left: 50%;
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.carousel__slide[data-pos="prev"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% - var(--peek-offset));
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
}

.carousel__slide[data-pos="next"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% + var(--peek-offset));
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
}

.carousel__slide[data-pos="far-prev"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% - var(--far-offset));
    opacity: 0.15;
    z-index: 1;
    cursor: pointer;
}

.carousel__slide[data-pos="far-next"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% + var(--far-offset));
    opacity: 0.15;
    z-index: 1;
    cursor: pointer;
}

.carousel__slide[data-pos="hidden-left"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% - var(--far-offset) - 220px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.carousel__slide[data-pos="hidden-right"] {
    width: var(--peek-w);
    height: var(--peek-h);
    left: calc(50% + var(--far-offset) + 220px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

/* Hover on peek slides */
.carousel__slide[data-pos="prev"]:hover,
.carousel__slide[data-pos="next"]:hover {
    opacity: 0.85;
}

/* Edge Navigation Arrows */
.carousel__arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    transform: translate(-50%, -50%);
}

.carousel__arrow--prev {
    left: calc(50% - var(--card-w) / 2);
}

.carousel__arrow--next {
    left: calc(50% + var(--card-w) / 2);
}

.carousel__arrow:hover {
    background: #1f1f1f;
    border-color: var(--teka-red);
    color: var(--teka-red);
    transform: translate(-50%, -50%) scale(1.08);
}

.carousel__arrow.is-disabled {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Active Card Text Below Stage */
.carousel__text-wrap {
    position: relative;
    max-width: 688px;
    margin: 28px auto 0;
    text-align: center;
    min-height: 110px;
}

.carousel__text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    transform: translateY(6px);
    pointer-events: none;
}

.carousel__text-item.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.carousel__slide-title {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 8px;
    text-align: center;
}

.carousel__slide-text {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

/* Pagination Dots */
.carousel__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel__dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
}

.carousel__dot::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444444;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.carousel__dot:hover::after {
    background: #777777;
}

.carousel__dot.is-active::after {
    background: var(--teka-red);
    transform: scale(1.1);
}

.carousel__dot.is-active {
    cursor: default;
}

/* ==========================================================================
   ANATOMIA EKSPRESU (HOTSPOTY)
   ========================================================================== */
.anatomy {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: var(--bg-black);
    overflow: hidden;
}

.anatomy__stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    border: none;
    background: transparent;
}

.anatomy__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.anatomy__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.5) 60%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.anatomy__bg-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Header positioned directly on top of the lifestyle graphic */
.anatomy__header {
    position: absolute;
    top: clamp(84px, 8vw, 110px);
    left: 0;
    right: 0;
    z-index: 15;
    text-align: center;
    pointer-events: none;
    padding: 0 24px;
}

.anatomy__header .section-header {
    margin-bottom: 0;
}

.anatomy__header .section-header__title {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

/* Awards badge in corner (apla removed, crisp transparent layout) */
.anatomy__awards-badge {
    position: absolute;
    bottom: 36px;
    right: 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.anatomy__award-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* Hotspot Markers */
.hotspot {
    position: absolute;
    z-index: 20;
    width: 35px;
    height: 35px;
    transform: translate(-50%, -50%);
}

.hotspot__btn {
    position: relative;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    background: #c8102e;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, background-color 0.3s ease;
    transform: rotate(0deg) scale(1);
}

.hotspot__icon {
    width: 14px;
    height: 14px;
    display: block;
    pointer-events: none;
}

/* Hover & Active states: 90 deg rotation, slight enlargement, vivid red glow */
.hotspot:hover .hotspot__btn,
.hotspot.is-active .hotspot__btn {
    transform: rotate(90deg) scale(1.15);
    background-color: #d41232;
    box-shadow: 0 0 20px rgba(200, 16, 46, 1), 0 0 38px rgba(200, 16, 46, 0.7);
}

/* Tooltip Popover (Anthracite box #222222, 16px Exo 2, centered) */
.hotspot__tooltip {
    position: absolute;
    background: #222222;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 30;
    transition: opacity 0.25s ease, transform 0.25s ease;
    white-space: normal;
}

.hotspot__tooltip-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

/* 21px Connector Line in Teka red (#c8102e) */
.hotspot__tooltip::before {
    content: '';
    position: absolute;
    background-color: #c8102e;
}

/* Direction: RIGHT */
.hotspot[data-direction="right"] .hotspot__tooltip {
    left: calc(100% + 21px);
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    width: max-content;
}

.hotspot[data-direction="right"] .hotspot__tooltip::before {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 1px;
}

.hotspot[data-direction="right"] .hotspot__tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    width: 25px;
}

.hotspot[data-direction="right"]:hover .hotspot__tooltip,
.hotspot[data-direction="right"].is-active .hotspot__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

/* Direction: LEFT */
.hotspot[data-direction="left"] .hotspot__tooltip {
    right: calc(100% + 21px);
    top: 50%;
    transform: translateY(-50%) translateX(4px);
    width: max-content;
}

.hotspot[data-direction="left"] .hotspot__tooltip::before {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 1px;
}

.hotspot[data-direction="left"] .hotspot__tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 25px;
}

.hotspot[data-direction="left"]:hover .hotspot__tooltip,
.hotspot[data-direction="left"].is-active .hotspot__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

/* Direction: BOTTOM */
.hotspot[data-direction="bottom"] .hotspot__tooltip {
    top: calc(100% + 21px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: max-content;
}

.hotspot[data-direction="bottom"] .hotspot__tooltip::before {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 21px;
}

.hotspot[data-direction="bottom"] .hotspot__tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 25px;
}

.hotspot[data-direction="bottom"]:hover .hotspot__tooltip,
.hotspot[data-direction="bottom"].is-active .hotspot__tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Specific tooltip max-widths matching hotspots.json */
.hotspot[data-hotspot="panel"] .hotspot__tooltip {
    max-width: 195px;
}

.hotspot[data-hotspot="menu"] .hotspot__tooltip {
    max-width: 270px;
}

.hotspot[data-hotspot="ifd"] .hotspot__tooltip {
    max-width: 250px;
}

.hotspot[data-hotspot="design"] .hotspot__tooltip {
    max-width: 300px;
}

.hotspot[data-hotspot="rozmiar"] .hotspot__tooltip {
    max-width: 200px;
}

/* ==========================================================================
   POZOSTAŁE FUNKCJE (6 KAFELKÓW) - Shares unified styling with .features-main
   ========================================================================== */

/* ==========================================================================
   SPECYFIKACJA TECHNICZNA
   ========================================================================== */
.specs {
    padding: 100px 0 120px;
    background-color: var(--bg-black);
}

.specs__container {
    max-width: 1240px;
    margin: 0 auto;
}

.specs__content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.specs__table-wrap {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
}

.specs__table {
    width: 100%;
    border-collapse: collapse;
}

.specs__table tr {
    border-bottom: 1px solid #c8102e;
}

.specs__table tr:last-child {
    border-bottom: none;
}

.specs__th {
    text-align: left;
    padding: 22px 16px 22px 0;
    font-family: var(--font-main);
    font-size: clamp(16px, 1.2vw, 18px);
    font-weight: 400;
    color: #9e9e9e;
    vertical-align: middle;
}

.specs__td {
    text-align: right;
    padding: 22px 0 22px 16px;
    font-family: var(--font-main);
    font-size: clamp(16px, 1.25vw, 19px);
    font-weight: 700;
    color: #ffffff;
    vertical-align: middle;
    white-space: nowrap;
}

.specs__td--multiline {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding: 18px 0 18px 16px;
}

.specs__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.specs__visual-img {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
}

/* ==========================================================================
   W ZESTAWIE (AKCESORIA)
   ========================================================================== */
.accessories {
    position: relative;
    width: 100%;
    padding: 0;
    background-color: var(--bg-black);
    overflow: hidden;
}

.accessories__stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    overflow: hidden;
}

.accessories__media-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Top and bottom subtle vignettes */
.accessories__media-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.accessories__media-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.95) 100%);
    pointer-events: none;
    z-index: 5;
}

.accessories__img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header overlaid on graphic */
.accessories__header {
    position: absolute;
    top: clamp(48px, 6.5vw, 84px);
    left: 0;
    right: 0;
    z-index: 15;
    text-align: center;
    pointer-events: none;
    padding: 0 24px;
}

.accessories__header .section-header {
    margin-bottom: 0;
}

.accessories__header .section-header__title {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

/* Pointer labels on graphic */
.accessories__labels {
    position: absolute;
    inset: 0;
    z-index: 12;
    pointer-events: none;
}

.accessories__label {
    position: absolute;
    transform: translateX(-50%);
    font-family: var(--font-main);
    font-size: clamp(12px, 1.25vw, 16px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 16px rgba(0, 0, 0, 0.8);
    white-space: normal;
}

/* Specific label widths matching figma */
.accessories__label--scoop {
    max-width: 250px;
}

.accessories__label--cloth {
    max-width: 170px;
}

.accessories__label--descaling {
    max-width: 180px;
}

.accessories__label--filter {
    max-width: 250px;
}

.accessories__label--brush {
    max-width: 240px;
}

.accessories__label--cleaning-tabs {
    max-width: 230px;
}

.accessories__label--strip {
    max-width: 210px;
}

/* Bottom Bar: Milk Container & Manual */
.accessories__bottom-bar {
    position: absolute;
    bottom: clamp(20px, 4vw, 44px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4.5vw, 64px);
    z-index: 15;
    width: max-content;
    max-width: 90%;
}

.accessories__bottom-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: default;
}

.accessories__plus-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    background: #c8102e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.accessories__bottom-text {
    font-family: var(--font-main);
    font-size: clamp(14px, 1.25vw, 16px);
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   SKLEPY PARTNERSKIE (GDZIE KUPIĆ)
   ========================================================================== */
.retailers {
    padding: clamp(60px, 6.25vw, 80px) 0;
    background-color: #222222;
}

.retailers__container {
    max-width: 1000px;
}

.retailers .section-header {
    margin-bottom: clamp(32px, 3.5vw, 44px);
}

.retailers .section-header__overline {
    color: var(--teka-red-text-on-anthracite, #f74662);
    margin-bottom: 12px;
}

.retailers .section-header__title {
    margin-bottom: 14px;
}

.retailers .section-header__subtitle {
    color: #9c9c9c;
    line-height: 1.45;
}

.retailers__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.retailer-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 241px;
    height: 80px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.retailer-card__text {
    max-width: 90%;
    display: block;
    margin: auto
}

.retailer-card:hover,
.retailer-card:focus-visible {
    background-color: #000000;
}

.retailer-card:hover .retailer-card__text,
.retailer-card:focus-visible .retailer-card__text {
    color: #ffffff;
    font-size: 28px;
}

/* ==========================================================================
   CLOSING BANNER + BEANS
   ========================================================================== */
.brand-banner {
    position: relative;
    width: 100%;
    background-color: #000000;
    overflow: hidden;
}

/* Stage container holding photo, title, and overlapping beans */
.brand-banner__stage {
    position: relative;
    width: 100%;
    background-color: #000000;
    line-height: 0;
}

.brand-banner__picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.brand-banner__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Left-aligned title container */
.brand-banner__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: clamp(80px, 17.5vw, 225px);
    z-index: 2;
    pointer-events: none;
}

.brand-banner__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.brand-banner__title {
    font-family: var(--font-main);
    font-size: clamp(26px, 3.125vw, 40px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    text-align: left;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}

/* Coffee beans overlapping onto the banner photo */
.brand-banner__beans {
    position: relative;
    width: 100%;
    margin-top: -12vw;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}

.brand-banner__beans-picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.brand-banner__beans-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Red line centered at 1000px max-width */
.brand-banner__divider {
    width: 100%;
    background-color: #000000;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.brand-banner__red-border {
    width: 100%;
    max-width: var(--container-max);
    height: 3px;
    background-color: var(--teka-red);
    margin: 0 auto;
}

/* Disclaimer below red border */
.brand-banner__disclaimer {
    width: 100%;
    padding: 14px 24px 20px;
    background-color: #000000;
    text-align: center;
}

.brand-banner__disclaimer p {
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 300;
    color: #888888;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0b0b0b;
    border-top: none;
    padding: 80px 0 60px;
}

.footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 0;
}

.footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 300px;
    max-width: 100%;
}

.footer__logo-link {
    display: block;
    line-height: 0;
}

.footer__logo {
    width: 89px;
    height: 89px;
    object-fit: contain;
    display: block;
}

.footer__copyright {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    line-height: 1.5;
    margin: 0;
}

.footer__nav-group {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer__col--socials {
    width: 150px;
    gap: 16px;
}

.footer__col-title {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: normal;
    margin: 0;
}

.footer__link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__link {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 400;
    color: #888888;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--teka-red);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.footer__social-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 5px;
    background-color: #222222;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer__social-btn img,
.footer__social-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}

.footer__social-btn:hover {
    background-color: var(--teka-red);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Viewports below 1040px */
@media (max-width: 1040px) {
    .header__inner {
        padding: 0 20px;
    }
    .header__logo-link {
        left: 20px;
    }
    .hero__container {
        padding: 0 20px;
    }
    .hero__sound-toggle {
        right: 20px;
    }
}

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .features-grid,
    .features-extra__grid {
        gap: 32px 16px;
    }

    .feature-card {
        flex: 0 1 calc(50% - 16px);
        max-width: 280px;
    }

    .carousel {
        --card-w: 560px;
        --card-h: 326px;
        --peek-w: 160px;
        --peek-h: 93px;
        --peek-offset: 320px;
        --far-offset: 480px;
    }

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

    .footer__columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header__title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .manifesto {
        padding: 60px 0 50px;
    }

    .manifesto__headline {
        font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    }

    .header__nav {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .header__mobile-drawer {
        display: flex;
    }

    .header__logo-link {
        left: 20px;
    }

    .header__logo {
        width: 72px;
        height: 72px;
    }

    .header.is-scrolled .header__logo {
        width: 60px;
        height: 60px;
    }

    .hero {
        height: 580px;
        min-height: 500px;
        padding-bottom: 32px;
    }

    .models-reveal {
        padding: 70px 0 80px;
    }

    .models-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 36px;
    }

    .model-card {
        padding: 0 !important;
        background: transparent !important;
    }

    .model-card__image-wrap {
        height: 320px;
        max-width: 320px;
    }

    .model-tooltip {
        padding: 30px 20px;
        margin-top: 28px;
    }

    .model-tooltip__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .model-tooltip__arrow {
        display: none;
    }

    .features-main,
    .features-extra {
        padding: 60px 0 70px;
    }

    .features-main .section-header,
    .features-extra .section-header {
        margin-bottom: 36px;
    }

    .features-main .section-header__title,
    .features-extra .section-header__title {
        font-size: 28px;
    }

    .features-grid,
    .features-extra__grid {
        gap: 24px 12px;
    }

    .feature-card {
        flex: 0 1 100%;
        max-width: 320px;
        padding: 16px 8px;
    }

    .technology {
        padding: 80px 0;
    }

    .carousel {
        --card-w: calc(100% - 64px);
        --card-h: 240px;
        --peek-w: 0px;
        --peek-h: 0px;
        --peek-offset: 150%;
        --far-offset: 250%;
    }

    .carousel__stage {
        height: 240px;
    }

    .carousel__arrow--prev {
        left: 20px;
        transform: translateY(-50%);
    }

    .carousel__arrow--next {
        left: auto;
        right: 20px;
        transform: translateY(-50%);
    }

    .carousel__arrow:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .carousel__text-wrap {
        padding: 0 16px;
        min-height: 130px;
    }

    .anatomy {
        padding: 0;
    }

    .anatomy__header {
        top: 24px;
        padding: 0 16px;
    }

    .anatomy__awards-badge {
        bottom: 16px;
        right: 16px;
        gap: 12px;
    }

    .anatomy__award-img {
        width: 38px;
        height: 38px;
    }

    .specs {
        padding: 60px 0 70px;
    }

    .specs__content {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 32px;
    }

    .specs__th {
        padding: 16px 8px 16px 0;
        font-size: 15px;
    }

    .specs__td {
        padding: 16px 0 16px 8px;
        font-size: 15px;
    }

    .specs__td--multiline {
        padding: 14px 0 14px 8px;
    }

    .specs__visual-img {
        max-width: 100%;
    }

    .accessories {
        padding: 0;
    }

    .accessories__header {
        top: 20px;
        padding: 0 16px;
    }

    .accessories__label {
        font-size: clamp(8px, 1.8vw, 11px);
    }

    .accessories__bottom-bar {
        bottom: 12px;
        gap: 16px;
    }

    .accessories__plus-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    .accessories__plus-icon svg {
        width: 10px;
        height: 10px;
    }

    .accessories__bottom-text {
        font-size: clamp(10px, 2.4vw, 12px);
    }

    .retailers {
        padding: 56px 0;
    }

    .retailers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .retailer-card {
        max-width: 100%;
        height: 64px;
    }

    .retailer-card__text {
        font-size: 20px;
    }

    .retailer-card:hover .retailer-card__text,
    .retailer-card:focus-visible .retailer-card__text {
        font-size: 24px;
    }

    .brand-banner__beans {
        margin-top: -30px;
    }

    .brand-banner__title {
        font-size: 28px;
    }

    .brand-banner__disclaimer p {
        font-size: 10px;
    }

    .footer {
        padding: 48px 0 40px;
    }

    .footer__columns {
        flex-direction: column;
        gap: 36px;
        align-items: flex-start;
    }

    .footer__col--brand {
        width: 100%;
    }

    .footer__nav-group {
        width: 100%;
        gap: 48px;
    }

    .footer__col--socials {
        width: 100%;
    }

    .hero__quiet-badge {
        bottom: 20px;
        left: 16px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .hotspot {
        width: 28px;
        height: 28px;
    }

    .hotspot__btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }

    .hotspot__icon {
        width: 12px;
        height: 12px;
    }

    .hotspot__tooltip {
        padding: 8px 12px;
    }

    .hotspot__tooltip-text {
        font-size: 13px;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header__mobile-toggle {
        right: 16px;
    }

    .header__logo-link {
        left: 16px;
    }

    .carousel {
        --card-w: calc(100% - 24px);
        --card-h: 190px;
    }

    .carousel__stage {
        height: 190px;
    }

    .carousel__arrow {
        width: 38px;
        height: 38px;
    }

    .carousel__arrow--prev {
        left: 10px;
    }

    .carousel__arrow--next {
        right: 10px;
    }

    .section-header__title {
        font-size: 1.45rem;
    }

    .manifesto__headline {
        font-size: 1.75rem;
    }

    .brand-banner__title {
        font-size: 24px;
    }

    .footer__nav-group {
        flex-direction: column;
        gap: 28px;
    }
}

