html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #ffffff; color: #1d1d1f; }


.skip-nav {
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: 9999;
}
.skip-nav:focus {
    left: 16px;
    top: 16px;
    position: fixed;
    padding: 12px 24px;
    background: #0071e3;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}


:focus-visible {
    outline: 3px solid #0071e3;
    outline-offset: 3px;
    border-radius: 4px;
}


.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav__logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1d1d1f;
    text-decoration: none;
    text-transform: uppercase;
    flex-shrink: 0;
    line-height: 1;
}

.nav__logo-bwp {
    color: #0071e3;
}

.nav__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 14px;
    font-weight: 400;
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s;
}

.nav__links a:hover { color: #0071e3; }

.nav__cta {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #1d1d1f;
    padding: 10px 22px;
    border-radius: 980px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav__cta:hover { background: #0071e3; }


@media (max-width: 768px) {
    .nav { padding: 0 24px; }
    .nav__links { display: none; }
    .nav__cta { display: none; }
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1d1d1f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav__hamburger { display: flex; }
}


.nav__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    padding: 80px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.nav__mobile-menu.open {
    right: 0;
}

.nav__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #1d1d1f;
    padding: 8px;
}

.nav__mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav__mobile-links li a {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f7;
    transition: color 0.2s;
}

.nav__mobile-links li a:hover {
    color: #0071e3;
}

.nav__mobile-cta {
    width: 100%;
    text-align: center;
    margin-top: auto;
}


.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav__overlay.active {
    opacity: 1;
    pointer-events: all;
}


.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px 100px;
    background: #ffffff;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 56px;
}

.hero__eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroPop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero__title {
    font-size: clamp(48px, 9vw, 96px);
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroPop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero__subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroPop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroPop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}


.btn--hero-primary {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    background: #0071e3;
    color: #ffffff;
    transition: all 0.2s ease;
}

.btn--hero-primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.btn--hero-secondary {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    background: transparent;
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
    transition: all 0.2s ease;
}

.btn--hero-secondary:hover {
    background: #1d1d1f;
    color: #ffffff;
    transform: scale(1.02);
}

.btn--hero-primary:active,
.btn--hero-secondary:active {
    transform: scale(0.97);
}


.hero__image-wrap {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: #000000;
    border-radius: 28px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    animation: heroImageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    will-change: transform;
    transition: transform 0.05s linear;
}

.hero__image {
    width: 80%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: contain;
}

@keyframes heroPop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@media (max-width: 768px) {
    .hero {
        padding: 64px 20px 72px;
    }

    .hero__eyebrow {
        font-size: 12px;
        letter-spacing: 0.12em;
    }

    .hero__title {
        font-size: 44px;
        letter-spacing: -0.04em;
    }

    .hero__subtitle {
        font-size: 17px;
        padding: 0 8px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn--hero-primary,
    .btn--hero-secondary {
        width: 220px;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__image-wrap {
        max-width: 100%;
        border-radius: 20px;
        padding: 16px 12px;
    }

    .hero__image {
        width: 85%;
    }
}

@media (max-width: 375px) {
    .hero__title {
        font-size: 38px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__image {
        width: 90%;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 48px 20px 48px;
    }

    .hero__image-wrap {
        max-width: 400px;
        padding: 24px 16px;
    }
}


.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--primary {
    background: #0071e3;
    color: #ffffff;
}

.btn--primary:hover {
    background: #0077ed;
    transform: scale(1.02);
}

.btn--secondary {
    background: transparent;
    color: #0071e3;
    border: 2px solid #0071e3;
}

.btn--secondary:hover {
    background: #0071e3;
    color: #ffffff;
    transform: scale(1.02);
}


.products {
    padding: 100px 48px;
    background: #ffffff;
    text-align: center;
}

.products__eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.products__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.products__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 64px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}


.product-card {
    position: relative;
    background: #f5f5f7;
    border-radius: 20px;
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1d1d1f;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 980px;
}

.product-card__badge--new {
    background: #0071e3;
}

.product-card__image-wrap {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-card__image {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
}

.product-card__name {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 6px;
}

.product-card__tagline {
    font-size: 14px;
    font-weight: 400;
    color: #6e6e73;
    margin-bottom: 12px;
}

.product-card__price {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.product-card__btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 12px 24px;
}


@media (max-width: 768px) {
    .products { padding: 80px 24px; }
    .products__grid { grid-template-columns: 1fr; }
}


.why-us {
    padding: 100px 48px;
    background: #f5f5f7;
    text-align: center;
}

.why-us__eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-us__title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.why-us__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6e6e73;
    max-width: 560px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}


.trust-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 28px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.trust-card__icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.trust-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.trust-card__text {
    font-size: 15px;
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.65;
}


@media (max-width: 1024px) {
    .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-us { padding: 80px 24px; }
    .why-us__grid { grid-template-columns: 1fr; }
}


.contact {
    padding: 100px 48px;
    background: #ffffff;
}

.contact__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.contact__subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #6e6e73;
    line-height: 1.65;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__item-icon {
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact__item-label {
    font-size: 12px;
    font-weight: 600;
    color: #6e6e73;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact__item-value {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.5;
}

.contact__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


.btn--contact-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d1d1f;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--contact-primary svg {
    flex-shrink: 0;
}

.btn--contact-primary:hover {
    background: #0071e3;
    transform: scale(1.02);
}

.btn--contact-primary:active {
    transform: scale(0.97);
}

.btn--contact-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1d1d1f;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 980px;
    border: 2px solid #1d1d1f;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn--contact-secondary svg {
    flex-shrink: 0;
}

.btn--contact-secondary:hover {
    background: #1d1d1f;
    color: #ffffff;
    transform: scale(1.02);
}

.btn--contact-secondary:active {
    transform: scale(0.97);
}


.contact__map {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.contact__map--facade {
    background: #e8e4de;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.contact__map--facade:hover,
.contact__map--facade:focus {
    background: #ddd9d2;
    outline: none;
}

.map-facade__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
}

.map-facade__pin {
    flex-shrink: 0;
}

.map-facade__address {
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    line-height: 1.5;
}

.map-facade__btn {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 10px 22px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 600;
}


@media (max-width: 768px) {
    .contact { padding: 80px 24px; }
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact__actions { flex-direction: column; }
    .btn--contact-primary,
    .btn--contact-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .contact__map {
        height: 280px;
        border-radius: 16px;
    }
}


.reveal {
    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);
    will-change: opacity, transform;
}

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


.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}




.product-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}


.trust-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}


.btn:active {
    transform: scale(0.97);
}


.nav {
    animation: navSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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


.nav__mobile-menu.open .nav__mobile-links li {
    animation: mobileSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateX(30px);
}

.nav__mobile-menu.open .nav__mobile-links li:nth-child(1) { animation-delay: 0.05s; }
.nav__mobile-menu.open .nav__mobile-links li:nth-child(2) { animation-delay: 0.1s; }
.nav__mobile-menu.open .nav__mobile-links li:nth-child(3) { animation-delay: 0.15s; }
.nav__mobile-menu.open .nav__mobile-links li:nth-child(4) { animation-delay: 0.2s; }

@keyframes mobileSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.contact__left,
.contact__right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact__right {
    transform: translateX(40px);
}

.contact__left.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact__right.visible {
    opacity: 1;
    transform: translateX(0);
}


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




@supports (padding-top: env(safe-area-inset-top)) {
    .nav {
        padding-top: env(safe-area-inset-top);
    }
}


* {
    -webkit-tap-highlight-color: transparent;
}


body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


@media (max-width: 768px) {

    

    
    .products {
        padding: 64px 20px;
    }

    .products__title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .products__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .product-card {
        padding: 32px 20px 28px;
        border-radius: 16px;
    }

    .product-card__image-wrap {
        height: 180px;
        margin-bottom: 20px;
    }

    .product-card__name {
        font-size: 20px;
    }

    .product-card__price {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .product-card__btn {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
    }

    
    .why-us {
        padding: 64px 20px;
    }

    .why-us__title {
        font-size: 28px;
        line-height: 1.15;
        padding: 0 8px;
    }

    .why-us__subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .trust-card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .trust-card__icon {
        font-size: 14px;
        font-weight: 700;
        color: #0071e3;
        letter-spacing: 0.04em;
        margin-bottom: 14px;
    }

    .trust-card__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .trust-card__text {
        font-size: 14px;
        line-height: 1.6;
    }

    
    .contact {
        padding: 64px 20px;
    }

    .contact__title {
        font-size: 28px;
        line-height: 1.15;
    }

    .contact__subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .contact__item-value {
        font-size: 15px;
    }

    .contact__actions {
        gap: 12px;
    }

    .contact__actions .btn {
        min-height: 52px;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


@media (max-width: 768px) {

    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__hamburger {
        min-width: 44px;
        min-height: 44px;
    }

    .nav__mobile-close {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__mobile-links li a {
        min-height: 52px;
        display: flex;
        align-items: center;
    }
}


@media (max-width: 375px) {

    

    .products__title {
        font-size: 28px;
    }

    .why-us__title {
        font-size: 24px;
    }

    .contact__title {
        font-size: 24px;
    }

    .product-card {
        padding: 24px 16px 24px;
    }

    .trust-card {
        padding: 24px 20px;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    
}


@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}


.product-card__image {
    transition: opacity 0.4s ease;
}

img[src=""] {
    opacity: 0;
}


.hero__floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__float {
    position: absolute;
    filter: blur(0.5px);
    will-change: transform;
    object-fit: contain;
    background: transparent;
}


.hero__float--airpods {
    width: 100px;
    top: 12%;
    left: 6%;
    animation: heroDrift1 8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: 0s;
}

.hero__float--watch {
    width: 90px;
    top: 8%;
    right: 8%;
    animation: heroDrift2 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -1.5s;
}

.hero__float--macbook {
    width: 140px;
    bottom: 28%;
    left: 3%;
    animation: heroDrift3 10s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -3s;
}

.hero__float--ipad {
    width: 110px;
    bottom: 22%;
    right: 5%;
    animation: heroDrift1 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -4.5s;
}

.hero__float--charger {
    width: 80px;
    top: 45%;
    left: 2%;
    animation: heroDrift2 8.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -2s;
}

.hero__float--earpods {
    width: 80px;
    top: 40%;
    right: 3%;
    animation: heroDrift3 7.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-delay: -5s;
}


@keyframes heroDrift1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-15px) rotate(2deg); }
}

@keyframes heroDrift2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-18px) rotate(-3deg); }
}

@keyframes heroDrift3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-12px) rotate(2.5deg); }
}


@media (max-width: 1024px) {
    .hero__float--charger { display: none; }
    .hero__float--earpods { display: none; }

    .hero__float--airpods { width: 80px; }
    .hero__float--watch   { width: 75px; }
    .hero__float--macbook { width: 110px; }
    .hero__float--ipad    { width: 90px; }
}


@media (max-width: 768px) {
    .hero__float--macbook { display: none; }
    .hero__float--ipad    { display: none; }
    .hero__float--charger { display: none; }
    .hero__float--earpods { display: none; }

    .hero__float--airpods {
        width: 60px;
        top: 6%;
        left: 4%;
    }

    .hero__float--watch {
        width: 55px;
        top: 5%;
        right: 5%;
    }
}


@media (prefers-reduced-motion: reduce) {
    .hero__float {
        animation: none !important;
    }
}


.footer {
    background: #1d1d1f;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 48px 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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


.footer__logo {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.footer__logo-bwp {
    color: #e8813a;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 260px;
    margin-bottom: 28px;
}

.footer__contact-quick {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer__pill {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 980px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.footer__pill:hover {
    background: #0071e3;
    border-color: #0071e3;
}


.footer__col-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: #ffffff;
}


.footer__links--hours {
    gap: 10px;
}

.footer__links--hours li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    gap: 12px;
}

.footer__links--hours li span:last-child {
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.footer__location {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.35);
}


.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

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

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
}


@media (max-width: 1024px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__tagline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 64px 24px 0;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding-bottom: 48px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .footer__inner {
        grid-template-columns: 1fr;
    }
}


@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}



.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 9998;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, box-shadow .2s ease, background .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.wa-float.wa-float--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-float:hover {
    background: #1ebe5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.05);
}

.wa-float:active {
    transform: translateY(0) scale(0.98);
}

.wa-float__icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
}

.wa-float__pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: 1;
    animation: waPulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

.wa-float__tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #1d1d1f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wa-float__tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #1d1d1f;
}

.wa-float:hover .wa-float__tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .wa-float__icon { width: 26px; height: 26px; }
    .wa-float__tooltip { display: none; }
}

@supports (padding: env(safe-area-inset-bottom)) {
    .wa-float {
        bottom: calc(24px + env(safe-area-inset-bottom));
    }
    @media (max-width: 767px) {
        .wa-float {
            bottom: calc(20px + env(safe-area-inset-bottom));
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float, .wa-float__tooltip {
        transition: opacity .2s ease, visibility .2s ease;
    }
    .wa-float__pulse {
        animation: none;
        display: none;
    }
    .wa-float:hover {
        transform: none;
    }
}



.reviews {
    padding: 120px 24px;
    background: #fbfbfd;
    text-align: center;
}

.reviews__header {
    max-width: 720px;
    margin: 0 auto 56px;
}

.reviews__eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.reviews__title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.reviews__subtitle {
    font-size: 19px;
    color: #6e6e73;
    line-height: 1.5;
    font-weight: 400;
}

.reviews__rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto 64px;
    padding: 40px 32px;
    background: #fff;
    border-radius: 24px;
    max-width: 480px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reviews__big-score {
    font-size: 72px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1;
    letter-spacing: -3px;
}

.reviews__stars {
    display: flex;
    gap: 4px;
    color: #ffb800;
}

.reviews__count {
    font-size: 15px;
    color: #6e6e73;
    margin-top: 4px;
}

.reviews__count strong {
    color: #1d1d1f;
    font-weight: 600;
}

.reviews__google-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
    transition: color .2s ease;
}

.reviews__google-link:hover {
    color: #004499;
    text-decoration: underline;
}

.reviews__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    color: #ffb800;
}

.review-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #1d1d1f;
    margin: 0;
    font-weight: 400;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f2;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d1d1f, #3a3a3c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
}

.review-card__date {
    font-size: 13px;
    color: #6e6e73;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .reviews {
        padding: 80px 20px;
    }
    .reviews__title {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .reviews__subtitle {
        font-size: 16px;
    }
    .reviews__big-score {
        font-size: 56px;
    }
    .reviews__rating-block {
        padding: 32px 24px;
    }
    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .review-card {
        padding: 24px;
    }
    .review-card__text {
        font-size: 15px;
    }
}



.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.footer__social {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer__social:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-2px);
}

.footer__social:active {
    transform: translateY(0);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .footer__socials {
        gap: 10px;
    }
    .footer__social {
        width: 40px;
        height: 40px;
    }
}
