

/* Start:/compare/style.css?178367037114751*/
:root {
    --bg-color: #fcfcfc;
    --text-color: #121212;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --accent: #ef4836;
    --accent-hover: #d93d2d;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.2;
    overflow-x: hidden;
}
body.comparison-fullscreen-active {
    overflow: hidden;
}
.page-wrap {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px 60px;
}
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1);
}
.reveal-active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo svg {
    height: 70px;
    width: auto;
}
.logo rect[fill="white"] {
    fill: transparent;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header-contact span {
    font-weight: 600;
    font-size: 0.9rem;
}
.text-small {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent);
    margin-bottom: 1rem;
}
.text-massive {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.creative-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem auto 3.5rem;
}
.slogan-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-color);
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.7rem 2rem;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 2;
}
.slogan-arrow {
    margin: -2px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.slogan-main {
    margin-top: 0.5rem;
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--text-color);
}
.slogan-main .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a76 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    background: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(239, 72, 54, 0.3);
    border: 2px solid var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(239, 72, 54, 0.4);
}
.cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 3.5rem;
}
.comparison-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.comparison-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 5rem;
}
.view-toggles {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    z-index: 100;
}
.view-toggle-btn {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}
.view-toggle-btn:hover {
    border-color: #c0c0c0;
    color: var(--text-color);
}
.view-toggle-btn.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 72, 54, 0.3);
}
.comparison-slider {
    position: relative;
    width: 100%;
    user-select: none;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1000 / 506;
}
.comparison-view {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, filter 0.5s ease-in-out;
    transform: scale(1.05) rotateZ(2deg);
    filter: blur(8px);
    pointer-events: none;
}
.comparison-view.is-active {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
    filter: blur(0);
    pointer-events: auto;
}
.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.comparison-image--top {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: white;
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    transition: left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.comparison-handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}
.comparison-handle:hover .comparison-handle-icon {
    transform: translate(-50%, -50%) scale(1.1);
}
.comparison-handle-icon svg {
    color: white;
    width: 24px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.comparison-handle-icon.points-right svg {
    transform: rotate(180deg);
}
.comparison-labels {
    position: absolute;
    bottom: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 5;
}
.comparison-label {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    backdrop-filter: blur(8px);
}
.comparison-fullscreen-control {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    transition: all 0.3s;
}
.control-btn {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(8px);
}
.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}
.control-btn svg {
    width: 22px;
    height: 22px;
    color: white;
}
.control-btn .icon-exit-fullscreen {
    display: none;
}
.comparison-wrapper.is-fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    z-index: 9999;
    background: #000;
    padding: 0;
    margin: 0;
    display: block;
}
.comparison-wrapper.is-fullscreen .comparison-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    aspect-ratio: auto;
}
.comparison-wrapper.is-fullscreen .comparison-image {
    object-fit: cover;
}
.comparison-wrapper.is-fullscreen .view-toggles {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-wrapper.is-fullscreen .view-toggle-btn {
    background: transparent;
    border-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}
.comparison-wrapper.is-fullscreen .view-toggle-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}
.comparison-wrapper.is-fullscreen .view-toggle-btn.is-active {
    background: var(--accent);
    color: white;
}
.comparison-wrapper.is-fullscreen .comparison-fullscreen-control {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.comparison-wrapper.is-fullscreen .icon-fullscreen {
    display: none;
}
.comparison-wrapper.is-fullscreen .icon-exit-fullscreen {
    display: block;
}
.comparison-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    text-align: left;
}
.comparison-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}
.comparison-card.card-premium:hover {
    border-color: var(--accent);
}
.card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 3em;
}
.card-features h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.card-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.card-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-muted);
}
.card-features li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    font-size: 1rem;
}
.card-fit {
    background: #f9f9fa;
    border-left: 4px solid var(--accent);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}
.card-fit strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.card-fit p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0;
}
.card-footer {
    margin-top: auto;
    padding-top: 1rem;
}
.price-wrap {
    margin-bottom: 0;
}
.price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
    display: block;
}
.price-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: -0.02em;
}
.card-premium .price-value {
    color: var(--accent);
}
@media (max-width: 900px) {
    header {
        padding: 1.2rem;
    }
    .logo svg {
        height: 45px;
    }
    .header-contact span {
        font-size: 0.8rem;
    }
    .page-wrap {
        padding: 1rem 1.2rem 4rem 1.2rem;
    }
    .creative-slogan {
        margin-bottom: 3rem;
    }
    .slogan-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
    }
    .comparison-wrapper {
        margin-bottom: 3.5rem;
    }
    .comparison-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .comparison-card {
        padding: 2rem 1.5rem;
    }
    .card-desc {
        min-height: auto;
    }
    .btn-primary {
        width: 100%;
        font-size: 0.9rem;
        padding: 1.1rem 2rem;
    }
    .view-toggle-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    .comparison-labels {
        padding: 0 1rem;
        bottom: 1rem;
    }
    .comparison-label {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    .comparison-wrapper.is-fullscreen .view-toggles {
        top: 1.5rem;
        width: max-content;
    }
    .comparison-wrapper.is-fullscreen .comparison-fullscreen-control {
        top: 1.5rem;
        right: 1rem;
    }
}
.comparison-columns {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    gap: 20px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    flex-wrap: wrap;
}
.comparison-kicker {
    margin: 0 0 0.65rem;
    white-space: nowrap;
    text-align: center;
}
.comparison-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.comparison-col-left {
    text-align: left;
}
.comparison-col-right {
    text-align: left;
}
.comparison-category {
    font-size: clamp(1rem, 2vw, 1.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-color);
    white-space: nowrap;
    text-transform: none;
}
.comparison-title-name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    display: block;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}
.comparison-title-vs {
    justify-self: center;
    font-size: 0.95em;
    display: block;
    font-weight: 900;
    line-height: 1;
    margin: 0;
}
@media (max-width: 768px) {
    .comparison-columns {
        flex-direction: column;
        align-items: center;
    }
}
.comparison-heading {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 1.5rem;
    text-align: center;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
/* End */
/* /compare/style.css?178367037114751 */
