
:root {
    --blue: #0885fc;
    --blue-dark: #1d4ed8;
    --dark: #111827;
    --muted: #6b7280;
    --soft: #f5f7fb;
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--dark);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 960px;
}

.container {
    width: var(--container);
    max-width: 92%;
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

.header-shell {
    pointer-events: auto;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.header-shell .nav-menu a {
    color: rgba(255,255,255,0.82);
}

.header-shell .nav-menu a:hover {
    color: #ffffff;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
}

.brand img {
    width: 168px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(17,24,39,0.72);
    font-size: 15px;
    font-weight: 600;
}

.nav-menu a {
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.header-store {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 11px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
    transition: transform 0.2s ease;
}

.header-store:hover {
    transform: translateY(-2px);
}

/* HERO */

.hero {
    position: relative;
    min-height: 1120px;
    overflow: hidden;
    padding: 148px 0 92px;
    background: linear-gradient(90deg, rgb(255 255 255 / 40%) 0%, rgb(255 255 255 / 40%) 28%, rgb(255 255 255 / 30%) 47%, rgba(15, 23, 42, 0.10) 69%, rgb(15 23 42 / 35%) 100%), radial-gradient(circle at 18% 38%, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 54%) 28%, rgb(255 255 255 / 25%) 56%), url(/images/hero-bg.webp);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,1) 100%),
        radial-gradient(circle at 78% 44%, rgba(37,99,235,0.20), transparent 40%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
}

.hero-copy {
    max-width: 560px;
    padding-top: 48px;
}

.hero-title {
    margin: 0 0 28px;
    font-size: 50px;
    line-height: 1.08;
    /* letter-spacing: -2.4px; */
    /* font-weight: 600; */
    color: #172033;
}

.hero-title span,
.section-title span,
.history-title span,
.planning-title span,
.mileage-title span,
.service-title span,
.security-visual-title span,
.reviews-title span,
.cta-title span {
    color: #d22014;
}

.hero-text {
    margin: 0 0 34px;
    max-width: 520px;
    color: rgba(31,41,55,0.76);
    font-size: 21px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.app-store {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 16px;
    color: #fff;
    background: #000;
    box-shadow: 0 22px 46px rgba(0,0,0,0.24);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.app-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 62px rgba(0,0,0,0.30);
}

.apple-header {
    font-size: 26px;
    line-height: 1;
}
.apple-mark {
    font-size: 30px;
    line-height: 1;
}

.store-header {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}
.store-header small {
    font-size: 8px;
    opacity: 0.78;
}

.store-header strong {
    font-size: 16px;
    font-weight: 600;
}

.store-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.store-copy small {
    font-size: 11px;
    opacity: 0.78;
}

.store-copy strong {
    font-size: 21px;
    font-weight: 600;
}

.secondary-link {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 8px;
}

.hero-trust {
    display: grid;
    gap: 12px;
    color: rgba(31,41,55,0.68);
    font-size: 15px;
    font-weight: 600;
}

.stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

/* PHONE MOCKUPS */

.phone-stage {
    position: relative;
    height: 760px;
}

.phone-glow {
    position: absolute;
    right: 112px;
    top: 160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(37,99,235,0.26);
    filter: blur(115px);
}

.phone {
    position: absolute;
    width: 284px;
    height: 612px;
    border-radius: 44px;
    background: #05070c;
    border: 10px solid #05070c;
    box-shadow:
        0 48px 90px rgba(0,0,0,0.34),
        0 18px 40px rgba(0,0,0,0.22);
    overflow: hidden;
}

.phone::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    z-index: 3;
    width: 80px;
    height: 20px;
    transform: translateX(-50%);
    background: #05070c;
    border-radius: 999px;
}

.phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 34px;
}

.phone-left {
    left: 12px;
    top: 112px;
    z-index: 1;
    transform: rotate(-7deg) scale(0.91);
}

.phone-center {
    left: 184px;
    top: 16px;
    z-index: 3;
}

.phone-right {
    right: 0;
    top: 120px;
    z-index: 2;
    transform: rotate(7deg) scale(0.91);
}

/* FLOATING BADGES */

.float-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow: 0 20px 50px rgba(15,23,42,0.16);
    backdrop-filter: none;
    color: #111827;
    font-size: 14px;
    font-weight: 750;
}

.float-badge small {
    display: block;
    margin-top: 2px;
    color: #6b7280;
    font-weight: 600;
}

.badge-reminder {
    left: 12px;
    bottom: 88px;
}

.badge-expense {
    right: 20px;
    top: 74px;
}

/* FEATURE STRIP */

.feature-strip {
    position: relative;
    z-index: 6;
    margin-top: -118px;
}

.feature-card {
    position: absolute;
    left: 50%;
    width: min(100%, 980px);
    transform: translateX(-50%);
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 28px 70px rgba(15,23,42,0.11);
    backdrop-filter: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature {
    text-align: center;
    padding: 18px 34px;
    border-right: 1px solid rgb(216 216 216);
}

.feature:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 14px;
}

.feature-title {
    margin-bottom: 10px;
    color: #111827;
    font-size: 19px;
    font-weight: 600;
}

.feature-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.55;
}

/* CONTENT SECTIONS */

.section {
    padding: 118px 0;
}

.section-soft {
    background: #f6f8fc;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 78px;
}

.kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-title {
    margin: 0 0 24px;
    color: #111827;
    font-size: 52px;
    line-height: 1.04;
    letter-spacing: -1.6px;
    font-weight: 600;
}

.section-text {
    margin: 0 0 30px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.75;
}

.check-list {
    display: grid;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #374151;
    font-size: 17px;
    font-weight: 650;
}

.check {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(37,99,235,0.10);
    font-size: 14px;
    font-weight: 600;
}

.visual-panel {
    min-height: 520px;
    border-radius: 42px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f7f9fd);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 26px 80px rgba(15,23,42,0.11);
}

.dashboard {
    height: 100%;
    min-height: 520px;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.dashboard-side {
    padding: 34px 24px;
    background: #fff;
    border-right: 1px solid #eef2f7;
}

.dashboard-title {
    margin-bottom: 26px;
    font-size: 28px;
    font-weight: 600;
}

.timeline-date {
    margin: 22px 0 14px;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 700;
}

.timeline-item {
    padding: 14px 0;
    border-bottom: 1px solid #eef2f7;
}

.timeline-item strong {
    display: block;
    margin-bottom: 4px;
    color: #111827;
    font-size: 15px;
}

.timeline-item span {
    color: #6b7280;
    font-size: 13px;
}

.dashboard-main {
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-card {
    margin-top: 22px;
    padding: 20px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}

.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    color: #4b5563;
    font-size: 15px;
}

.mini-row:last-child {
    border-bottom: 0;
}

/* CTA */

.cta {
    position: relative;
    overflow: hidden;
    padding: 128px 0;
    color: #fff;
    text-align: left;
    background: linear-gradient(110deg, rgba(11, 18, 32, 0.94), rgba(17, 24, 39, 0.86), rgba(30, 58, 138, 0.70)), url(/images/footer-bg.webp);
    background-size: auto;
    background-position: center center;
}


.cta .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.02;
    font-weight: 400;
    max-width: 760px;
}

.cta-text {
    max-width: 640px;
    margin: 0 0 34px;
    color: rgba(255,255,255,0.80);
    font-size: 20px;
    line-height: 1.7;
}

.cta-copyright {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    bottom: 50px;
    position: absolute;
}
.footer {
    padding: 26px 0;
    color: #6b7280;
    text-align: center;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .hero-layout,
    .split,
    .dashboard {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .phone-stage {
        height: 760px;
    }

    .phone-center {
        left: 50%;
        transform: translateX(-50%);
    }

    .phone-left {
        left: 3%;
    }

    .phone-right {
        right: 3%;
    }
}

@media (max-width: 860px) {
    .site-header {
        top: 10px;
    }

    .header-shell {
        height: auto;
        padding: 14px 16px;
    }

    .brand img {
        width: 140px;
    }

    .nav-menu {
        display: none;
    }

    .header-store {
        display: none;
    }

    .hero {
        padding-top: 118px;
        background: linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 28%, rgb(255 255 255 / 30%) 47%, rgba(15, 23, 42, 0.10) 69%, rgb(15 23 42 / 35%) 100%), radial-gradient(circle at 18% 38%, rgb(255 255 255 / 95%) 0%, rgb(255 255 255 / 54%) 28%, rgb(255 255 255 / 25%) 56%), url(/images/hero-bg.webp);
        background-size: cover;
        background-position: 66%;
        background-repeat: no-repeat;
    }

    .hero-title,
    .section-title,
    .cta-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-stage {
        height: 610px;
        transform: scale(0.78);
        transform-origin: top center;
    }

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

    .section {
        padding: 86px 0;
    }
}
.site-header {
    top: 0 !important;
    padding: 0 !important;
}

.site-header .container {
    width: 100% !important;
    max-width: 100% !important;
}

.header-shell {
    height: 78px !important;
    width: 100% !important;
    border-radius: 0 !important;
    padding-left: max(32px, calc((100vw - 1200px) / 2)) !important;
    padding-right: max(32px, calc((100vw - 1200px) / 2)) !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-shell {
    background: #ffffff !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
}

.site-header.is-scrolled .nav-menu a {
    color: #111827 !important;
}

.site-header.is-scrolled .nav-menu a:hover {
    color: #0885fc !important;
}

.nav-menu a {
    color: rgba(255,255,255,0.88) !important;
}

.nav-menu a:hover {
    color: #ffffff !important;
}


/* REFERENCE FEATURES + HISTORY */

.history-title {
    margin: 0 0 24px;
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: -1px;
    font-weight: 600;
    color: #111827;
}

.history-text {
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.history-list {
    display: grid;
    gap: 14px;
}

.history-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 650;
}

.history-check {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(37,99,235,0.10);
    color: #0885fc;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .feature-grid,
    .history-layout {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: none;
        border-bottom: 1px solid rgba(15,23,42,0.06);
    }

    .feature:last-child {
        border-bottom: none;
    }

    .history-title {
        font-size: 38px;
    }
}


.feature-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #0885fc;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.feature-app-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 16px;
}

.feature-app-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-blue {
    color: #0885fc;
    background: transparent;
}

.icon-red {
    color: #FF3B30;
    background: transparent;
}

.icon-orange {
    color: #FF8A1C;
    background: transparent;
}

.icon-blue-soft {
    color: #0885fc;
    background: transparent;
}


.feature-app-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: transparent !important;
}

.feature-app-icon svg {
    width: 42px;
    height: 42px;
    fill: currentColor;
    stroke: none;
}

.icon-blue {
    color: #0885fc;
}

.icon-red {
    color: #FF3B30;
}

.icon-orange {
    color: #FF8A1C;
}

.icon-blue-soft {
    color: #0885fc;
}


.feature-tab-icon {
    width: 58px !important;
    height: 58px !important;
    margin: 0 auto 14px !important;
    position: relative;
    display: grid;
    place-items: center;
    background: transparent !important;
}

.feature-tab-icon svg {
    width: 48px !important;
    height: 48px !important;
    display: block;
}

.icon-active {
    color: #0885fc !important;
}

.icon-active svg {
    fill: currentColor;
}

.icon-dark {
    color: #1d1d1f !important;
}

.icon-dark svg {
    fill: currentColor;
}

.icon-with-badge {
    width: 66px !important;
}

.icon-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FF3B30;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}


.feature-icon-clean {
    width: 54px !important;
    height: 54px !important;
    margin: 0 auto 16px !important;
    display: grid !important;
    place-items: center !important;
    background: transparent !important;
}

.feature-icon-clean svg {
    width: 42px !important;
    height: 42px !important;
    display: block !important;
}

.feature-icon-car {
    color: #0885fc !important;
}

.feature-icon-car svg {
    fill: currentColor !important;
    stroke: none !important;
}

.feature-icon-outline {
    color: #0885fc !important;
}

.feature-icon-outline svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 3.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


.feature-icon-car svg {
    fill: none !important;
    stroke: #0885fc !important;
    stroke-width: 3 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.feature-icon-car .car-dot {
    fill: #0885fc !important;
    stroke: none !important;
}


.feature-icon-car svg {
    width: 46px !important;
    height: 46px !important;
    fill: #0885fc !important;
    stroke: none !important;
}


.feature-icon-car svg {
    width: 44px !important;
    height: 44px !important;
    fill: none !important;
    stroke: none !important;
}


/* PLANNING BLOCK */

.planning-section {
    padding: 108px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.planning-card {
    min-height: 430px;
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 26px 70px rgba(15,23,42,0.10);
}

.planning-image {
    min-height: 430px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, rgba(255, 255, 255, 0.02) 62%, rgb(0 0 0 / 0%) 100%), url(/images/hero-bg.webp);
    background-size: cover;
    background-position: center right;
}

.planning-content {
    padding: 120px 74px 120px 74px;
}

.planning-title {
    margin: 0 0 22px;
    max-width: 520px;
    font-size: 36px;
    line-height: 1.16;
    letter-spacing: -0.6px;
    font-weight: 600;
    color: #111827;
}

.planning-text {
    margin: 0 0 28px;
    max-width: 520px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.planning-list {
    display: grid;
    gap: 13px;
}

.planning-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.planning-check {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(8,133,252,0.10);
    color: #0885fc;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .planning-card {
        grid-template-columns: 50% 50%;
    }

    .planning-content {
        padding: 120px 74px 120px 74px;
    }

    .planning-title {
        font-size: 30px;
    }
}



/* MILEAGE / REMINDERS BLOCK */

.mileage-section {
    padding: 108px 0;
    background: #ffffff;
}

.mileage-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.mileage-copy {
    max-width: 480px;
}

.mileage-title {
    margin: 0 0 20px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-weight: 600;
    color: #111827;
}

.mileage-text {
    margin: 0 0 30px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.task-list {
    display: grid;
    gap: 16px;
}

.task-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 14px 36px rgba(15,23,42,0.07);
}

.task-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #6b7280;
    background: #f5f7fb;
}

.task-icon svg {
    width: 25px;
    height: 25px;
}

.task-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
    color: #111827;
    font-size: 14px;
}

.task-row strong {
    font-weight: 600;
}

.task-row span {
    color: #4b5563;
    font-size: 13px;
    white-space: nowrap;
}

.task-subtitle {
    margin-bottom: 9px;
    color: #6b7280;
    font-size: 13px;
}

.progress {
    height: 5px;
    overflow: hidden;
    border-radius: 99px;
    background: #eef2f7;
}

.progress div {
    height: 100%;
    border-radius: inherit;
    background: #22c55e;
}

.progress-blue div {
    background: #0885fc;
}

.progress-green div {
    background: #22c55e;
}

.mileage-visual {
    overflow: hidden;
    border-radius: 0 28px 28px 0;
    box-shadow: 0 24px 70px rgba(15,23,42,0.16);
}

.mileage-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .mileage-layout {
        grid-template-columns: 50% 50%;
    }

    .mileage-copy {
        max-width: 480px;
    }

    .mileage-visual img {
        height: 360px;
    }
}



/* SERVICE / EXPENSES BLOCK */

.service-section {
    padding: 96px 0;
    background: #ffffff;
}

.service-card {
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: hidden;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 24px 70px rgba(15,23,42,0.10);
}

.service-image {
    min-height: 460px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
}

.service-content {
    padding: 112px 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    font-weight: 600;
    color: #111827;
}

.service-text {
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.service-list {
    display: grid;
    gap: 14px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.service-check {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(8,133,252,0.10);
    color: #0885fc;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 42px 28px;
    }

    .service-title {
        font-size: 32px;
    }
}



/* DATA PROTECTION BLOCK */

.data-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #eef3f9 0%, #ffffff 100%);
}

.data-card {
    position: relative;
    min-height: 440px;
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 74% 48%, rgba(8,133,252,0.20) 0%, rgba(8,133,252,0.00) 36%),
        linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 45%, rgba(235,242,250,0.92) 100%);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 28px 80px rgba(15,23,42,0.10);
}

.data-content {
    padding: 96px 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.data-title {
    margin: 0 0 22px;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    font-weight: 600;
    color: #111827;
}

.data-text {
    max-width: 500px;
    margin: 0 0 28px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.data-list {
    display: grid;
    gap: 14px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.data-check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: url('/images/check-circle.svg') center / contain no-repeat;
    color: transparent;
    font-size: 0;
}

.data-visual {
    position: relative;
    min-height: 440px;
    overflow: hidden;
}

.cloud-shape {
    position: absolute;
    left: 58px;
    top: 126px;
    width: 250px;
    height: 150px;
    border-radius: 80px;
    background: linear-gradient(180deg, rgba(8,133,252,0.18), rgba(8,133,252,0.06));
    filter: blur(0.2px);
}

.cloud-shape::before,
.cloud-shape::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}

.cloud-shape::before {
    width: 120px;
    height: 120px;
    left: 34px;
    top: -58px;
}

.cloud-shape::after {
    width: 150px;
    height: 150px;
    right: 24px;
    top: -76px;
}

.cloud-shape span {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: rgba(8,133,252,0.16);
    filter: blur(55px);
}

























@media (max-width: 900px) {
    .data-card {
        grid-template-columns: 1fr;
    }

    .data-content {
        padding: 42px 28px;
    }

    .data-title {
        font-size: 32px;
    }

    .data-visual {
        min-height: 420px;
    }
}



/* SECURITY VISUAL BLOCK ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â reference style */


/* REVIEWS BLOCK EXACT */

.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 108px 0 100px;
    background:
        radial-gradient(circle at 17% 28%, rgba(8,133,252,0.10) 0%, rgba(8,133,252,0) 34%),
        radial-gradient(circle at 85% 18%, rgba(8,133,252,0.08) 0%, rgba(8,133,252,0) 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.reviews-head {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.reviews-eyebrow {
    margin-bottom: 16px;
    color: #0885fc;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.reviews-title {
    margin: 0 0 20px;
    color: #111827;
    font-size: 50px;
    line-height: 1.06;
    letter-spacing: -1px;
    font-weight: 600;
}

.reviews-subtitle {
    margin: 0 auto;
    color: #667085;
    font-size: 20px;
    line-height: 1.55;
}

.reviews-slider {
    position: relative;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.review-card {
    width: 100%;
    min-width: 0;
    position: relative;
    min-height: 390px;
    padding: 30px 30px 86px;
    border-radius: 28px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 24px 70px rgba(15,23,42,0.075);
    backdrop-filter: none;
}

.review-card:hover {
    border-color: rgba(8,133,252,0.15);
}

.review-header {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 26px;
}

.review-photo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 14px 34px rgba(15,23,42,0.16);
}


.review-person {
    min-width: 0;
}

.review-name {
    color: #111827;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 600;
}

.review-meta {
    margin-top: 8px;
    color: #667085;
    font-size: 15px;
    white-space: nowrap;
}

.review-meta span {
    margin: 0 6px;
    color: #98a2b3;
}

.review-stars {
    align-self: start;
    margin-top: 4px;
    color: #f5b800;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.review-quote {
    margin-bottom: 12px;
    color: rgba(8,133,252,0.24);
    font-size: 64px;
    line-height: 0.66;
    font-weight: 600;
}

.review-text {
    margin: 0;
    max-width: 350px;
    color: #111827;
    font-size: 16px;
    line-height: 1.58;
    min-width: 0;
}

.review-tag {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    max-width: calc(100% - 60px);
}

.review-tag svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-tag-blue {
    color: #2563eb;
    background: rgba(37,99,235,0.10);
}

.review-tag-green {
    color: #16a34a;
    background: rgba(22,163,74,0.12);
}

.review-tag-purple {
    color: #7c3aed;
    background: rgba(124,58,237,0.11);
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    color: #0885fc;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 40px rgba(15,23,42,0.10);
}

.reviews-arrow svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reviews-arrow-left {
    left: -78px;
    right: auto;
}

.reviews-arrow-right {
    right: -78px;
    left: auto;
}

.reviews-dots {
    margin: 28px auto 54px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.reviews-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c9d1dd;
}

.reviews-dots .active {
    background: #0885fc;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(15,23,42,0.06);
    box-shadow: 0 20px 60px rgba(15,23,42,0.07);
    backdrop-filter: none;
}

.review-stat {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    padding: 26px 30px;
    border-right: 1px solid rgba(15,23,42,0.07);
}

.review-stat:last-child {
    border-right: none;
}

.review-stat-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #0885fc;
    background: rgba(8,133,252,0.09);
}

.review-stat-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-stat strong {
    display: block;
    color: #111827;
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
}

.review-stat span {
    display: block;
    margin-top: 6px;
    color: #475467;
    font-size: 14px;
}

@media (max-width: 1180px) {
    .reviews-arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .reviews-section {
        padding: 72px 0;
    }

    .reviews-title {
        font-size: 36px;
    }

    .reviews-subtitle {
        font-size: 17px;
    }

    .reviews-grid,
    .reviews-stats {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 390px;
    }

    .review-stat {
        border-right: none;
        border-bottom: 1px solid rgba(15,23,42,0.07);
    }

    .review-stat:last-child {
        border-bottom: none;
    }
}



/* REVIEWS SLIDER STATE */
.review-card {
    transition: opacity 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.reviews-grid.is-changing .review-card {
    opacity: 0;
}

.reviews-arrow {
    cursor: pointer;
}

.reviews-dots span {
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-dots span.active {
    transform: scale(1.15);
}



/* HISTORY FINAL CLEAN BLOCK */

.history-section {
    padding: 264px 0 0 !important;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%) !important;
    overflow: hidden !important;
}

.history-layout {
    display: grid !important;
    grid-template-columns: 0.92fr 1.08fr !important;
    gap: 84px !important;
    min-height: 690px !important;
    align-items: center !important;
    background: transparent !important;
}

.history-phone-wrap {
    height: 690px !important;
    min-height: 690px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding-right: 0 !important;
    overflow: hidden !important;
    background: transparent !important;
}

.history-phone-wrap::before,
.history-phone-wrap::after,
.history-phone-glow {
    display: none !important;
    content: none !important;
    background: transparent !important;
}

.history-phone {
    position: relative !important;
    width: 365px !important;
    height: 778px !important;
    border-radius: 50px !important;
    padding: 10px !important;
    overflow: hidden !important;
    transform: translateY(72px) !important;
    background: #05070c !important;
    box-shadow: none !important;
    filter: none !important;
}

.history-phone img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 40px !important;
    background: transparent !important;
}

.history-copy {
    align-self: center !important;
    padding-bottom: 0 !important;
    transform: none !important;
    background: transparent !important;
}

/* GLOBAL CONTENT WIDTH */

:root {
    --content-max: 1180px;
}

.container {
    width: min(var(--content-max), calc(100% - 15px)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Header stays full width */
.site-header .container {
    width: 100% !important;
    max-width: 100% !important;
}

.header-shell {
    padding-left: max(24px, calc((100vw - var(--content-max)) / 2)) !important;
    padding-right: max(24px, calc((100vw - var(--content-max)) / 2)) !important;
}



/* SERVICE SECTION BACKGROUND FIX */
.service-section {
    padding: 108px 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(8,133,252,0.08) 0%, rgba(8,133,252,0) 34%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%) !important;
}

.service-card {
    background: rgba(255,255,255,0.96) !important;
    box-shadow: 0 28px 80px rgba(15,23,42,0.12) !important;
}



/* GLOBAL CHECK ICON */
.history-check,
.planning-check,
.service-check,
.check {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    background: url('/images/check-circle.svg') center / contain no-repeat !important;
    color: transparent !important;
    font-size: 0 !important;
    border-radius: 0 !important;
}




/* HISTORY APP STORE BUTTON */

.history-store-button {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
    opacity: 0;
    transform: translateY(120px) scale(0.88);
    transition:
        opacity 1.15s ease,
        transform 2.2s cubic-bezier(0.12, 1, 0.22, 1),
        box-shadow 0.25s ease;
    will-change: opacity, transform;
}

.history-store-button.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.history-store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 62px rgba(0, 0, 0, 0.30);
}



@media (max-width: 900px) {
    .history-store-button {
        margin-top: 26px;
    }
}



/* Extracted final inline CSS block */
@media (max-width: 900px) {

    .feature-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        transform: none !important;
        padding: 34px 26px !important;
    }

    .history-section {
        padding: 64px 0 !important;
    }

    .hero {
        min-height: auto !important;
    }
}


/* History bar fill widths */
.history-bar-fill-67 { width: 67%; }
.history-bar-fill-34 { width: 34%; }
.history-bar-fill-75 { width: 75%; }

/* Mobile fix: planning and mileage sections */
@media (max-width: 900px) {
    .planning-section {
        padding: 64px 0;
    }

    .planning-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        border-radius: 28px !important;
    }

    .planning-image {
        min-height: 360px !important;
        height: 360px !important;
        background-position: center center !important;
    }

    .planning-content {
        padding: 44px 32px 48px !important;
    }

    .planning-title {
        max-width: none !important;
        font-size: 32px !important;
        line-height: 1.14 !important;
    }

    .planning-text {
        max-width: none !important;
        font-size: 17px !important;
    }

    .mileage-section {
        padding: 64px 0;
    }

    .mileage-layout {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .mileage-copy {
        max-width: none !important;
        width: 100% !important;
    }

    .mileage-title {
        font-size: 34px !important;
        line-height: 1.14 !important;
    }

    .mileage-text {
        max-width: none !important;
    }

    .mileage-visual {
        width: 100% !important;
        border-radius: 28px !important;
    }

    .mileage-visual img {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }
}

@media (max-width: 520px) {
    .planning-content {
        padding: 38px 24px 42px !important;
    }

    .planning-image {
        height: 320px !important;
        min-height: 320px !important;
    }

    .planning-title,
    .mileage-title {
        font-size: 30px !important;
    }

    .task-card {
        grid-template-columns: 46px 1fr !important;
        padding: 16px !important;
    }

    .task-row {
        display: grid !important;
        gap: 4px !important;
    }

    .task-row span {
        white-space: normal !important;
    }
}

/* Task progress bars animation on scroll */
.progress div {
    transform: scaleX(0);
    transform-origin: left center;
}

.mileage-section.is-visible .progress div {
    animation: progressFill 1.15s ease-out both;
}

.mileage-section.is-visible .task-card:nth-child(1) .progress div {
    animation-delay: 0.10s;
}

.mileage-section.is-visible .task-card:nth-child(2) .progress div {
    animation-delay: 0.24s;
}

.mileage-section.is-visible .task-card:nth-child(3) .progress div {
    animation-delay: 0.38s;
}

@keyframes progressFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .progress div {
        animation: none !important;
        transform: scaleX(1);
    }
}

/* HISTORY MOBILE FIX */

@media (max-width: 900px) {

    .history-layout {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .history-phone-wrap {
        height: 520px !important;
        min-height: 520px !important;
        justify-content: center !important;
        align-items: flex-start !important;
        overflow: hidden !important;
    }

    .history-phone {
        width: 311px !important;
        height: 653px !important;
        transform: translateY(0) !important;
    }

    .history-copy {
        width: 100% !important;
        max-width: none !important;
    }

    .history-title {
        font-size: 42px !important;
    }
}


/* MOBILE HEADER APP STORE REVEAL */

@media (max-width: 900px) {
    .site-header .header-store {
        display: inline-flex !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-12px) scale(0.94) !important;
        transition:
            opacity 0.45s ease,
            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .site-header.has-mobile-store .header-store {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }
}

/* MOBILE HEADER APP STORE FULL BUTTON */

@media (max-width: 900px) {
    .site-header .header-store {
        min-height: 46px !important;
        padding: 0 14px !important;
        gap: 9px !important;
        border-radius: 15px !important;
    }

    .site-header .header-store .apple-mark {
        font-size: 22px !important;
        line-height: 1 !important;
    }

    .site-header .header-store .store-copy {
        display: grid !important;
        gap: 1px !important;
        line-height: 1 !important;
    }

    .site-header .header-store .store-copy small {
        display: block !important;
        font-size: 9px !important;
        line-height: 1 !important;
        font-weight: 400 !important;
        opacity: 0.9 !important;
    }

    .site-header .header-store .store-copy strong {
        display: block !important;
        font-size: 17px !important;
        line-height: 1 !important;
        font-weight: 600 !important;
        letter-spacing: -0.2px !important;
    }
}

@media (max-width: 380px) {
    .site-header .brand img {
        width: 140px !important;
    }

    .site-header .header-store {
        min-height: 42px !important;
        padding: 0 12px !important;
        gap: 8px !important;
    }

    .site-header .header-store .apple-mark {
        font-size: 20px !important;
    }

    .site-header .header-store .store-copy small {
        font-size: 8px !important;
    }

    .site-header .header-store .store-copy strong {
        font-size: 15px !important;
    }
}


/* SECURITY VISUAL SECTION RESTORED */

.security-visual-section {
    padding: 0;
    background: transparent !important;
}

.security-visual-section > .container {
    width: 100% !important;
    max-width: 100% !important;
}

.security-visual-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 0 !important;
    border: none;
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-en.webp);
    background-size: cover;
    background-position: 50% 30%;
    background-repeat: no-repeat;
    box-shadow: none;
}

.security-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 30%, rgba(8,133,252,0.10), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.00) 70%, rgba(255,255,255,0.18) 100%);
    pointer-events: none;
}

.security-visual-content {
    position: relative;
    z-index: 2;
    width: 42%;
    min-height: 620px;
    padding-top: 96px;
    padding-bottom: 96px;
    padding-left: max(24px, calc((100vw - var(--content-max)) / 2));
    padding-right: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.security-visual-title {
    margin: 0 0 22px;
    max-width: 470px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    font-weight: 600;
    color: #111827;
}

.security-visual-text {
    margin: 0 0 28px;
    max-width: 500px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.7;
}

.security-visual-list {
    display: grid;
    gap: 14px;
}

.security-visual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.security-visual-check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    background: url('/images/check-circle.svg') center / contain no-repeat;
    color: transparent;
    font-size: 0;
}

@media (max-width: 900px) {
    .security-visual-card {
        min-height: 540px;
        background-position: 35% center;
    }

    .security-visual-content {
        width: 100%;
        min-height: auto;
        padding: 82px 28px;
    }

    .security-visual-title {
        font-size: 32px;
    }
}


@media (max-width: 900px) {
    .service-section {
        padding: 64px 0;
    }
}


/* LANGUAGE SECURITY IMAGE OVERRIDES */
body.lang-ru .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-ru.webp);
}

body.lang-ua .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-ua.webp);
}

body.lang-en .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-en.webp);
}


body.lang-de .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-de.webp);
}


body.lang-fr .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-fr.webp);
}


body.lang-it .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-it.webp);
}


body.lang-es .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-es.webp);
}


body.lang-pt .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-pt.webp);
}


body.lang-ko .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-ko.webp);
}


body.lang-ja .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-ja.webp);
}


body.lang-zh-cn .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-zh-cn.webp);
}


body.lang-zh-tw .security-visual-card {
    background-image:
        linear-gradient(90deg, rgb(255 255 255 / 0%) 0%, rgba(255, 255, 255, 0.88) 34%, rgb(255 255 255 / 38%) 54%, rgba(255, 255, 255, 0.00) 76%),
        radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.48) 28%, rgb(255 255 255 / 0%) 54%),
        url(/images/icloud-zh-tw.webp);
}

/* LANGUAGE SWITCHER */
.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.language-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(8, 133, 252, 0.12);
}

.language-tabs a,
.language-dropdown-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #4b5563;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-tabs a:hover,
.language-dropdown-menu a:hover {
    color: #0885fc;
    background: rgba(8, 133, 252, 0.08);
}

.language-tabs a.is-active,
.language-dropdown-menu a.is-active {
    color: #ffffff;
    background: #0885fc;
}

.language-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-self: end;
}

.language-dropdown summary {
    list-style: none;
    cursor: pointer;
    min-width: 156px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(8, 133, 252, 0.14);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-dropdown summary::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.language-dropdown[open] summary {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(8, 133, 252, 0.26);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
}

.language-dropdown[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.language-globe {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.language-globe svg {
    width: 20px;
    height: 20px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.language-current {
    white-space: nowrap;
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 120;
    display: none;
    gap: 4px;
    min-width: 100%;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.20);
    backdrop-filter: blur(18px);
}

.language-dropdown[open] .language-dropdown-menu {
    display: grid;
}

.language-dropdown .language-dropdown-menu a {
    min-width: 156px;
    height: 30px;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    border-radius: 12px;
    color: #111827;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.language-dropdown .language-dropdown-menu a:hover {
    color: #0885fc;
    background: rgba(8, 133, 252, 0.08);
}

.language-dropdown .language-dropdown-menu a.is-active {
    color: #0885fc;
    background: transparent;
}

.language-dropdown .language-dropdown-menu a.is-active::after {
    content: "";
    width: 5px;
    height: 10px;
    margin-left: auto;
    border-right: 2px solid #0885fc;
    border-bottom: 2px solid #0885fc;
    transform: rotate(45deg) translateY(-3px);
}

@media (max-width: 900px) {
    .language-tabs {
        display: none;
    }
}


/* MOBILE BURGER MENU */
.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 86px;
    left: max(18px, calc((100vw - var(--content-max)) / 2));
    right: max(18px, calc((100vw - var(--content-max)) / 2));
    z-index: 110;
    padding: 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.mobile-menu-nav {
    display: grid;
    gap: 14px;
}

.mobile-menu-nav a {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-menu-languages {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.mobile-menu-languages .language-tabs {
    width: 100%;
    justify-content: center;
    background: rgba(8, 133, 252, 0.06);
}

.mobile-menu-store {
    margin-top: 18px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-radius: 17px;
    background: #000;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

.mobile-menu-store .apple-header {
    font-size: 25px;
    line-height: 1;
}

.mobile-menu-store .store-header {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.mobile-menu-store .store-header small {
    font-size: 10px;
    font-weight: 400;
}

.mobile-menu-store .store-header strong {
    font-size: 19px;
    font-weight: 700;
}

@media (min-width: 901px) {
    .header-shell {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 28px;
    }

    .nav-menu {
        justify-self: center;
    }

    .language-switcher {
        justify-self: end;
    }
}

@media (max-width: 900px) {
    .header-shell {
        justify-content: space-between !important;
    }

    .nav-menu,
    .header-shell > .language-switcher {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-header.is-menu-open .mobile-menu {
        display: block;
    }
}

/* MOBILE DRAWER MENU */


.mobile-menu,
.mobile-menu *,
.mobile-menu-overlay {
    pointer-events: auto !important;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-close {
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 900px) {

    .mobile-menu-toggle {
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 4px !important;
    }

    .mobile-menu-toggle span {
        width: 26px !important;
        height: 3px !important;
        background: #ffffff !important;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(8px);
    }

    .mobile-menu {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        right: 0 !important;
        width: 88%;
        max-width: 380px;
        height: 100vh;
        z-index: 9999;
        border-radius: 0 !important;
        padding: 28px 24px !important;
        background: rgb(17 24 39 / 70%) !important;
        box-shadow: 24px 0 60px rgba(0,0,0,.35) !important;
        display: flex !important;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform .28s ease;
    }

    .mobile-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 36px;
    }

    .mobile-menu-languages {
        display: flex;
        gap: 18px;
    }

    .mobile-menu-languages a {
        color: rgb(133 133 133);
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
    }

    .mobile-menu-languages a.is-active {
        color: #ffffff;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .mobile-menu-nav a {
        color: #ffffff;
        font-size: 22px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-menu-store {
        margin-top: auto !important;
        width: fit-content !important;
    }

    .site-header.is-menu-open .mobile-menu {
        transform: translateX(0);
    }

    .site-header.is-menu-open .mobile-menu-overlay {
        display: block;
    }
}

@media (max-width: 900px) {

    .mobile-menu-logo {
        margin-bottom: 28px;
    }

    .mobile-menu-logo img {
        width: 150px;
        height: auto;
        display: block;
    }

    .mobile-menu-top {
        margin-bottom: 32px !important;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .mobile-menu-languages {
        gap: 22px !important;
    }

    .mobile-menu-languages a {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: .4px;
    }

    .mobile-menu-close {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 34px;
        padding: 0;
    }
}

@media (max-width: 900px) {

    .mobile-menu-store {
        margin-top: auto !important;
        width: 100% !important;
        min-height: 56px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 18px !important;
        gap: 10px !important;

        background: #ffffff !important;
        color: #111827 !important;

        border-radius: 16px !important;
        box-shadow: 0 16px 34px rgba(0,0,0,.22) !important;
    }

    .mobile-menu-store .apple-header {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .mobile-menu-store .store-header {
        display: grid !important;
        gap: 1px !important;
        line-height: 1 !important;
    }

    .mobile-menu-store .store-header small {
        display: block !important;
        font-size: 9px !important;
        font-weight: 400 !important;
    }

    .mobile-menu-store .store-header strong {
        display: block !important;
        font-size: 17px !important;
        font-weight: 600 !important;
    }
}

@media (max-width: 900px) {
    .mobile-menu-top .mobile-menu-logo {
        margin-bottom: 0 !important;
    }

    .mobile-menu-top .mobile-menu-logo img {
        width: 150px !important;
    }
}

@media (max-width: 900px) {
    .mobile-menu-close {
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        z-index: 10001 !important;
    }

    .mobile-menu-top {
        display: block !important;
        margin-bottom: 32px !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .mobile-menu-logo {
        padding-right: 56px;
    }
}

@media (max-width: 900px) {
    .mobile-app-store {
        margin-top: 34px;
        align-self: flex-start;
        background: #ffffff;
        color: #111827;
    }

    .mobile-app-store .apple-mark,
    .mobile-app-store .store-copy,
    .mobile-app-store .store-copy small,
    .mobile-app-store .store-copy strong {
        color: #111827;
    }
}

/* Exact anchor position for History section */
#history {
    scroll-margin-top: -264px;
}

/* Header logo theme switch */
.brand .logo-dark {
    display: none;
}

.site-header.is-scrolled .brand .logo-light {
    display: none;
}

.site-header.is-scrolled .brand .logo-dark {
    display: block;
}

/* Mobile burger color after header becomes white */
@media (max-width: 900px) {
    .site-header.is-scrolled .mobile-menu-toggle span {
        background: #111827 !important;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 24px 0 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}


.footer-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-inline a {
    color: inherit;
    text-decoration: none;
}

.footer-inline a:hover {
    color: #ffffff;
}


.footer-inline > span {
    order: 0;
}

.footer-inline a[href$="privacy"] {
    order: 1;
}

.footer-inline a[href$="terms"] {
    order: 2;
}

.footer-inline a[href$="support"] {
    order: 3;
}

.footer-inline a[href$="terms"]::before,
.footer-inline a[href$="support"]::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    vertical-align: middle;
    transform: translateY(-1px);
}





@media (max-width: 640px) {
    .footer-inline {
        column-gap: 12px;
        row-gap: 10px;
    }

    .footer-inline > span {
        flex: 0 0 100%;
        text-align: center;
    }
}


.legal-page {
    padding: 150px 0 128px;
    background: #f5f7fb;
    color: #111827;
}

.legal-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 90px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.legal-card h1 {
    margin: 0 0 22px;
    color: #111827;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.legal-card p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.legal-card a {
    color: #0885fc;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}


@media (max-width: 760px) {
    .legal-page {
        padding: 128px 14px 64px;
    }

    .legal-card {
        padding: 28px 32px;
        border-radius: 22px;
    }

    .legal-card h1 {
        font-size: 32px;
    }

    .legal-card p {
        font-size: 14px;
    }
}


.legal-cta {
    margin-top: 0;
}

.legal-card h2 {
    margin: 34px 0 14px;
    color: #111827;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.legal-card ul {
    margin: 0 0 18px 22px;
    padding: 0;
    color: #475569;
}

.legal-card li {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* Thin first two feature icons only */
.feature-grid .feature:nth-child(1) .feature-icon-clean svg *,
.feature-grid .feature:nth-child(2) .feature-icon-clean svg * {
    stroke-width: 0.55 !important;
}

/* MOBILE LANGUAGE DROPDOWN */
@media (max-width: 900px) {
    .mobile-menu-languages {
        min-width: 0;
    }

    .mobile-language-dropdown {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        color: #ffffff;
    }

    .mobile-language-dropdown summary {
        list-style: none;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
        cursor: pointer;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .mobile-language-dropdown summary::-webkit-details-marker {
        display: none;
    }

    .mobile-language-dropdown summary::after {
        content: "";
        width: 8px;
        height: 8px;
        margin-left: 2px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 0.2s ease;
    }

    .mobile-language-dropdown[open] summary {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .mobile-language-dropdown[open] summary::after {
        transform: translateY(2px) rotate(225deg);
    }

    .mobile-language-globe {
        width: 18px;
        height: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .mobile-language-globe svg {
        width: 18px;
        height: 18px;
        display: block;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .mobile-language-current {
        white-space: nowrap;
    }

    .mobile-language-list {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        z-index: 4;
        display: none;
        width: min(248px, calc(100vw - 96px));
        max-height: min(320px, calc(100vh - 190px));
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.92);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(18px);
    }

    .mobile-language-dropdown[open] .mobile-language-list {
        display: grid;
        gap: 4px;
    }

    .mobile-menu-languages .mobile-language-list a {
        min-height: 38px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0 12px;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0;
    }

    .mobile-menu-languages .mobile-language-list a:hover,
    .mobile-menu-languages .mobile-language-list a.is-active {
        color: #ffffff;
        background: rgba(8, 133, 252, 0.20);
    }

    .mobile-menu-languages .mobile-language-list a.is-active::after {
        content: "";
        width: 6px;
        height: 11px;
        margin-left: auto;
        border-right: 2px solid #0885fc;
        border-bottom: 2px solid #0885fc;
        transform: rotate(45deg) translateY(-1px);
    }
}

